blob: 401dfb2a94e811a858f21d8d90677a47af506fb3 [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>
Chris Mason39279cc2007-06-12 06:35:45 -040029#include <linux/backing-dev.h>
30#include <linux/mpage.h>
31#include <linux/swap.h>
32#include <linux/writeback.h>
33#include <linux/statfs.h>
34#include <linux/compat.h>
Chris Mason9ebefb182007-06-15 13:50:00 -040035#include <linux/bit_spinlock.h>
Josef Bacik5103e942007-11-16 11:45:54 -050036#include <linux/xattr.h>
Josef Bacik33268ea2008-07-24 12:16:36 -040037#include <linux/posix_acl.h>
Yan Zhengd899e052008-10-30 14:25:28 -040038#include <linux/falloc.h>
Chris Mason4b4e25f2008-11-20 10:22:27 -050039#include "compat.h"
Chris Mason39279cc2007-06-12 06:35:45 -040040#include "ctree.h"
41#include "disk-io.h"
42#include "transaction.h"
43#include "btrfs_inode.h"
44#include "ioctl.h"
45#include "print-tree.h"
Chris Mason0b86a832008-03-24 15:01:56 -040046#include "volumes.h"
Chris Masone6dcd2d2008-07-17 12:53:50 -040047#include "ordered-data.h"
Christoph Hellwig95819c02008-08-28 06:21:17 -040048#include "xattr.h"
Chris Masone02119d2008-09-05 16:13:11 -040049#include "tree-log.h"
Chris Masonc8b97812008-10-29 14:49:59 -040050#include "compression.h"
Chris Masonb4ce94d2009-02-04 09:25:08 -050051#include "locking.h"
Chris Mason39279cc2007-06-12 06:35:45 -040052
53struct btrfs_iget_args {
54 u64 ino;
55 struct btrfs_root *root;
56};
57
58static struct inode_operations btrfs_dir_inode_operations;
59static struct inode_operations btrfs_symlink_inode_operations;
60static struct inode_operations btrfs_dir_ro_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -040061static struct inode_operations btrfs_special_inode_operations;
Chris Mason39279cc2007-06-12 06:35:45 -040062static struct inode_operations btrfs_file_inode_operations;
63static struct address_space_operations btrfs_aops;
64static struct address_space_operations btrfs_symlink_aops;
65static struct file_operations btrfs_dir_file_operations;
Chris Masond1310b22008-01-24 16:13:08 -050066static struct extent_io_ops btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -040067
68static struct kmem_cache *btrfs_inode_cachep;
69struct kmem_cache *btrfs_trans_handle_cachep;
70struct kmem_cache *btrfs_transaction_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040071struct kmem_cache *btrfs_path_cachep;
72
73#define S_SHIFT 12
74static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
75 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
76 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
77 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
78 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
79 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
80 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
81 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
82};
83
Josef Bacik7b128762008-07-24 12:17:14 -040084static void btrfs_truncate(struct inode *inode);
Chris Masonc8b97812008-10-29 14:49:59 -040085static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end);
Chris Mason771ed682008-11-06 22:02:51 -050086static noinline int cow_file_range(struct inode *inode,
87 struct page *locked_page,
88 u64 start, u64 end, int *page_started,
89 unsigned long *nr_written, int unlock);
Josef Bacik7b128762008-07-24 12:17:14 -040090
Jim Owens0279b4c2009-02-04 09:29:13 -050091static int btrfs_init_inode_security(struct inode *inode, struct inode *dir)
92{
93 int err;
94
95 err = btrfs_init_acl(inode, dir);
96 if (!err)
97 err = btrfs_xattr_security_init(inode, dir);
98 return err;
99}
100
Chris Masond352ac62008-09-29 15:18:18 -0400101/*
Chris Masonc8b97812008-10-29 14:49:59 -0400102 * this does all the hard work for inserting an inline extent into
103 * the btree. The caller should have done a btrfs_drop_extents so that
104 * no overlapping inline items exist in the btree
105 */
Chris Masond3977122009-01-05 21:25:51 -0500106static noinline int insert_inline_extent(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400107 struct btrfs_root *root, struct inode *inode,
108 u64 start, size_t size, size_t compressed_size,
109 struct page **compressed_pages)
110{
111 struct btrfs_key key;
112 struct btrfs_path *path;
113 struct extent_buffer *leaf;
114 struct page *page = NULL;
115 char *kaddr;
116 unsigned long ptr;
117 struct btrfs_file_extent_item *ei;
118 int err = 0;
119 int ret;
120 size_t cur_size = size;
121 size_t datasize;
122 unsigned long offset;
123 int use_compress = 0;
124
125 if (compressed_size && compressed_pages) {
126 use_compress = 1;
127 cur_size = compressed_size;
128 }
129
Chris Masond3977122009-01-05 21:25:51 -0500130 path = btrfs_alloc_path();
131 if (!path)
Chris Masonc8b97812008-10-29 14:49:59 -0400132 return -ENOMEM;
133
Chris Masonb9473432009-03-13 11:00:37 -0400134 path->leave_spinning = 1;
Chris Masonc8b97812008-10-29 14:49:59 -0400135 btrfs_set_trans_block_group(trans, inode);
136
137 key.objectid = inode->i_ino;
138 key.offset = start;
139 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
Chris Masonc8b97812008-10-29 14:49:59 -0400140 datasize = btrfs_file_extent_calc_inline_size(cur_size);
141
142 inode_add_bytes(inode, size);
143 ret = btrfs_insert_empty_item(trans, root, path, &key,
144 datasize);
145 BUG_ON(ret);
146 if (ret) {
147 err = ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400148 goto fail;
149 }
150 leaf = path->nodes[0];
151 ei = btrfs_item_ptr(leaf, path->slots[0],
152 struct btrfs_file_extent_item);
153 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
154 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
155 btrfs_set_file_extent_encryption(leaf, ei, 0);
156 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
157 btrfs_set_file_extent_ram_bytes(leaf, ei, size);
158 ptr = btrfs_file_extent_inline_start(ei);
159
160 if (use_compress) {
161 struct page *cpage;
162 int i = 0;
Chris Masond3977122009-01-05 21:25:51 -0500163 while (compressed_size > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -0400164 cpage = compressed_pages[i];
Chris Mason5b050f02008-11-11 09:34:41 -0500165 cur_size = min_t(unsigned long, compressed_size,
Chris Masonc8b97812008-10-29 14:49:59 -0400166 PAGE_CACHE_SIZE);
167
Chris Masonb9473432009-03-13 11:00:37 -0400168 kaddr = kmap_atomic(cpage, KM_USER0);
Chris Masonc8b97812008-10-29 14:49:59 -0400169 write_extent_buffer(leaf, kaddr, ptr, cur_size);
Chris Masonb9473432009-03-13 11:00:37 -0400170 kunmap_atomic(kaddr, KM_USER0);
Chris Masonc8b97812008-10-29 14:49:59 -0400171
172 i++;
173 ptr += cur_size;
174 compressed_size -= cur_size;
175 }
176 btrfs_set_file_extent_compression(leaf, ei,
177 BTRFS_COMPRESS_ZLIB);
178 } else {
179 page = find_get_page(inode->i_mapping,
180 start >> PAGE_CACHE_SHIFT);
181 btrfs_set_file_extent_compression(leaf, ei, 0);
182 kaddr = kmap_atomic(page, KM_USER0);
183 offset = start & (PAGE_CACHE_SIZE - 1);
184 write_extent_buffer(leaf, kaddr + offset, ptr, size);
185 kunmap_atomic(kaddr, KM_USER0);
186 page_cache_release(page);
187 }
188 btrfs_mark_buffer_dirty(leaf);
189 btrfs_free_path(path);
190
191 BTRFS_I(inode)->disk_i_size = inode->i_size;
192 btrfs_update_inode(trans, root, inode);
193 return 0;
194fail:
195 btrfs_free_path(path);
196 return err;
197}
198
199
200/*
201 * conditionally insert an inline extent into the file. This
202 * does the checks required to make sure the data is small enough
203 * to fit as an inline extent.
204 */
Chris Mason7f366cf2009-03-12 20:12:45 -0400205static noinline int cow_file_range_inline(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400206 struct btrfs_root *root,
207 struct inode *inode, u64 start, u64 end,
208 size_t compressed_size,
209 struct page **compressed_pages)
210{
211 u64 isize = i_size_read(inode);
212 u64 actual_end = min(end + 1, isize);
213 u64 inline_len = actual_end - start;
214 u64 aligned_end = (end + root->sectorsize - 1) &
215 ~((u64)root->sectorsize - 1);
216 u64 hint_byte;
217 u64 data_len = inline_len;
218 int ret;
219
220 if (compressed_size)
221 data_len = compressed_size;
222
223 if (start > 0 ||
Chris Mason70b99e62008-10-31 12:46:39 -0400224 actual_end >= PAGE_CACHE_SIZE ||
Chris Masonc8b97812008-10-29 14:49:59 -0400225 data_len >= BTRFS_MAX_INLINE_DATA_SIZE(root) ||
226 (!compressed_size &&
227 (actual_end & (root->sectorsize - 1)) == 0) ||
228 end + 1 < isize ||
229 data_len > root->fs_info->max_inline) {
230 return 1;
231 }
232
Chris Masonc8b97812008-10-29 14:49:59 -0400233 ret = btrfs_drop_extents(trans, root, inode, start,
Chris Masona1ed8352009-09-11 12:27:37 -0400234 aligned_end, aligned_end, start,
235 &hint_byte, 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400236 BUG_ON(ret);
237
238 if (isize > actual_end)
239 inline_len = min_t(u64, isize, actual_end);
240 ret = insert_inline_extent(trans, root, inode, start,
241 inline_len, compressed_size,
242 compressed_pages);
243 BUG_ON(ret);
Chris Masona1ed8352009-09-11 12:27:37 -0400244 btrfs_drop_extent_cache(inode, start, aligned_end - 1, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400245 return 0;
246}
247
Chris Mason771ed682008-11-06 22:02:51 -0500248struct async_extent {
249 u64 start;
250 u64 ram_size;
251 u64 compressed_size;
252 struct page **pages;
253 unsigned long nr_pages;
254 struct list_head list;
255};
256
257struct async_cow {
258 struct inode *inode;
259 struct btrfs_root *root;
260 struct page *locked_page;
261 u64 start;
262 u64 end;
263 struct list_head extents;
264 struct btrfs_work work;
265};
266
267static noinline int add_async_extent(struct async_cow *cow,
268 u64 start, u64 ram_size,
269 u64 compressed_size,
270 struct page **pages,
271 unsigned long nr_pages)
272{
273 struct async_extent *async_extent;
274
275 async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS);
276 async_extent->start = start;
277 async_extent->ram_size = ram_size;
278 async_extent->compressed_size = compressed_size;
279 async_extent->pages = pages;
280 async_extent->nr_pages = nr_pages;
281 list_add_tail(&async_extent->list, &cow->extents);
282 return 0;
283}
284
Chris Masonc8b97812008-10-29 14:49:59 -0400285/*
Chris Mason771ed682008-11-06 22:02:51 -0500286 * we create compressed extents in two phases. The first
287 * phase compresses a range of pages that have already been
288 * locked (both pages and state bits are locked).
Chris Masonc8b97812008-10-29 14:49:59 -0400289 *
Chris Mason771ed682008-11-06 22:02:51 -0500290 * This is done inside an ordered work queue, and the compression
291 * is spread across many cpus. The actual IO submission is step
292 * two, and the ordered work queue takes care of making sure that
293 * happens in the same order things were put onto the queue by
294 * writepages and friends.
Chris Masonc8b97812008-10-29 14:49:59 -0400295 *
Chris Mason771ed682008-11-06 22:02:51 -0500296 * If this code finds it can't get good compression, it puts an
297 * entry onto the work queue to write the uncompressed bytes. This
298 * makes sure that both compressed inodes and uncompressed inodes
299 * are written in the same order that pdflush sent them down.
Chris Masond352ac62008-09-29 15:18:18 -0400300 */
Chris Mason771ed682008-11-06 22:02:51 -0500301static noinline int compress_file_range(struct inode *inode,
302 struct page *locked_page,
303 u64 start, u64 end,
304 struct async_cow *async_cow,
305 int *num_added)
Chris Masonb888db22007-08-27 16:49:44 -0400306{
307 struct btrfs_root *root = BTRFS_I(inode)->root;
308 struct btrfs_trans_handle *trans;
Chris Masondb945352007-10-15 16:15:53 -0400309 u64 num_bytes;
Chris Masonc8b97812008-10-29 14:49:59 -0400310 u64 orig_start;
311 u64 disk_num_bytes;
Chris Masondb945352007-10-15 16:15:53 -0400312 u64 blocksize = root->sectorsize;
Chris Masonc8b97812008-10-29 14:49:59 -0400313 u64 actual_end;
Chris Mason42dc7ba2008-12-15 11:44:56 -0500314 u64 isize = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400315 int ret = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400316 struct page **pages = NULL;
317 unsigned long nr_pages;
318 unsigned long nr_pages_ret = 0;
319 unsigned long total_compressed = 0;
320 unsigned long total_in = 0;
321 unsigned long max_compressed = 128 * 1024;
Chris Mason771ed682008-11-06 22:02:51 -0500322 unsigned long max_uncompressed = 128 * 1024;
Chris Masonc8b97812008-10-29 14:49:59 -0400323 int i;
324 int will_compress;
Chris Masonb888db22007-08-27 16:49:44 -0400325
Chris Masonc8b97812008-10-29 14:49:59 -0400326 orig_start = start;
Chris Masonbe20aa92007-12-17 20:14:01 -0500327
Chris Mason42dc7ba2008-12-15 11:44:56 -0500328 actual_end = min_t(u64, isize, end + 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400329again:
330 will_compress = 0;
331 nr_pages = (end >> PAGE_CACHE_SHIFT) - (start >> PAGE_CACHE_SHIFT) + 1;
332 nr_pages = min(nr_pages, (128 * 1024UL) / PAGE_CACHE_SIZE);
333
Chris Masonf03d9302009-02-04 09:31:06 -0500334 /*
335 * we don't want to send crud past the end of i_size through
336 * compression, that's just a waste of CPU time. So, if the
337 * end of the file is before the start of our current
338 * requested range of bytes, we bail out to the uncompressed
339 * cleanup code that can deal with all of this.
340 *
341 * It isn't really the fastest way to fix things, but this is a
342 * very uncommon corner.
343 */
344 if (actual_end <= start)
345 goto cleanup_and_bail_uncompressed;
346
Chris Masonc8b97812008-10-29 14:49:59 -0400347 total_compressed = actual_end - start;
348
349 /* we want to make sure that amount of ram required to uncompress
350 * an extent is reasonable, so we limit the total size in ram
Chris Mason771ed682008-11-06 22:02:51 -0500351 * of a compressed extent to 128k. This is a crucial number
352 * because it also controls how easily we can spread reads across
353 * cpus for decompression.
354 *
355 * We also want to make sure the amount of IO required to do
356 * a random read is reasonably small, so we limit the size of
357 * a compressed extent to 128k.
Chris Masonc8b97812008-10-29 14:49:59 -0400358 */
359 total_compressed = min(total_compressed, max_uncompressed);
Chris Masondb945352007-10-15 16:15:53 -0400360 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
Chris Masonbe20aa92007-12-17 20:14:01 -0500361 num_bytes = max(blocksize, num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -0400362 disk_num_bytes = num_bytes;
363 total_in = 0;
364 ret = 0;
Chris Masondb945352007-10-15 16:15:53 -0400365
Chris Mason771ed682008-11-06 22:02:51 -0500366 /*
367 * we do compression for mount -o compress and when the
368 * inode has not been flagged as nocompress. This flag can
369 * change at any time if we discover bad compression ratios.
Chris Masonc8b97812008-10-29 14:49:59 -0400370 */
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200371 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS) &&
Chris Masonc8b97812008-10-29 14:49:59 -0400372 btrfs_test_opt(root, COMPRESS)) {
373 WARN_ON(pages);
Chris Masoncfbc2462008-10-30 13:22:14 -0400374 pages = kzalloc(sizeof(struct page *) * nr_pages, GFP_NOFS);
Chris Mason179e29e2007-11-01 11:28:41 -0400375
Chris Masonc8b97812008-10-29 14:49:59 -0400376 ret = btrfs_zlib_compress_pages(inode->i_mapping, start,
377 total_compressed, pages,
378 nr_pages, &nr_pages_ret,
379 &total_in,
380 &total_compressed,
381 max_compressed);
382
383 if (!ret) {
384 unsigned long offset = total_compressed &
385 (PAGE_CACHE_SIZE - 1);
386 struct page *page = pages[nr_pages_ret - 1];
387 char *kaddr;
388
389 /* zero the tail end of the last page, we might be
390 * sending it down to disk
391 */
392 if (offset) {
393 kaddr = kmap_atomic(page, KM_USER0);
394 memset(kaddr + offset, 0,
395 PAGE_CACHE_SIZE - offset);
396 kunmap_atomic(kaddr, KM_USER0);
397 }
398 will_compress = 1;
399 }
400 }
401 if (start == 0) {
Chris Mason771ed682008-11-06 22:02:51 -0500402 trans = btrfs_join_transaction(root, 1);
403 BUG_ON(!trans);
404 btrfs_set_trans_block_group(trans, inode);
405
Chris Masonc8b97812008-10-29 14:49:59 -0400406 /* lets try to make an inline extent */
Chris Mason771ed682008-11-06 22:02:51 -0500407 if (ret || total_in < (actual_end - start)) {
Chris Masonc8b97812008-10-29 14:49:59 -0400408 /* we didn't compress the entire range, try
Chris Mason771ed682008-11-06 22:02:51 -0500409 * to make an uncompressed inline extent.
Chris Masonc8b97812008-10-29 14:49:59 -0400410 */
411 ret = cow_file_range_inline(trans, root, inode,
412 start, end, 0, NULL);
413 } else {
Chris Mason771ed682008-11-06 22:02:51 -0500414 /* try making a compressed inline extent */
Chris Masonc8b97812008-10-29 14:49:59 -0400415 ret = cow_file_range_inline(trans, root, inode,
416 start, end,
417 total_compressed, pages);
418 }
Chris Mason771ed682008-11-06 22:02:51 -0500419 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400420 if (ret == 0) {
Chris Mason771ed682008-11-06 22:02:51 -0500421 /*
422 * inline extent creation worked, we don't need
423 * to create any more async work items. Unlock
424 * and free up our temp pages.
425 */
Chris Masonc8b97812008-10-29 14:49:59 -0400426 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400427 &BTRFS_I(inode)->io_tree,
428 start, end, NULL,
429 EXTENT_CLEAR_UNLOCK_PAGE | EXTENT_CLEAR_DIRTY |
Chris Masona3429ab2009-10-08 12:30:20 -0400430 EXTENT_CLEAR_DELALLOC |
Chris Masona791e352009-10-08 11:27:10 -0400431 EXTENT_SET_WRITEBACK | EXTENT_END_WRITEBACK);
Chris Masonc8b97812008-10-29 14:49:59 -0400432 ret = 0;
433 goto free_pages_out;
434 }
435 }
436
437 if (will_compress) {
438 /*
439 * we aren't doing an inline extent round the compressed size
440 * up to a block size boundary so the allocator does sane
441 * things
442 */
443 total_compressed = (total_compressed + blocksize - 1) &
444 ~(blocksize - 1);
445
446 /*
447 * one last check to make sure the compression is really a
448 * win, compare the page count read with the blocks on disk
449 */
450 total_in = (total_in + PAGE_CACHE_SIZE - 1) &
451 ~(PAGE_CACHE_SIZE - 1);
452 if (total_compressed >= total_in) {
453 will_compress = 0;
454 } else {
455 disk_num_bytes = total_compressed;
456 num_bytes = total_in;
457 }
458 }
459 if (!will_compress && pages) {
460 /*
461 * the compression code ran but failed to make things smaller,
462 * free any pages it allocated and our page pointer array
463 */
464 for (i = 0; i < nr_pages_ret; i++) {
Chris Mason70b99e62008-10-31 12:46:39 -0400465 WARN_ON(pages[i]->mapping);
Chris Masonc8b97812008-10-29 14:49:59 -0400466 page_cache_release(pages[i]);
467 }
468 kfree(pages);
469 pages = NULL;
470 total_compressed = 0;
471 nr_pages_ret = 0;
472
473 /* flag the file so we don't compress in the future */
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200474 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
Chris Masonc8b97812008-10-29 14:49:59 -0400475 }
Chris Mason771ed682008-11-06 22:02:51 -0500476 if (will_compress) {
477 *num_added += 1;
478
479 /* the async work queues will take care of doing actual
480 * allocation on disk for these compressed pages,
481 * and will submit them to the elevator.
482 */
483 add_async_extent(async_cow, start, num_bytes,
484 total_compressed, pages, nr_pages_ret);
485
Chris Mason42dc7ba2008-12-15 11:44:56 -0500486 if (start + num_bytes < end && start + num_bytes < actual_end) {
Chris Mason771ed682008-11-06 22:02:51 -0500487 start += num_bytes;
488 pages = NULL;
489 cond_resched();
490 goto again;
491 }
492 } else {
Chris Masonf03d9302009-02-04 09:31:06 -0500493cleanup_and_bail_uncompressed:
Chris Mason771ed682008-11-06 22:02:51 -0500494 /*
495 * No compression, but we still need to write the pages in
496 * the file we've been given so far. redirty the locked
497 * page if it corresponds to our extent and set things up
498 * for the async work queue to run cow_file_range to do
499 * the normal delalloc dance
500 */
501 if (page_offset(locked_page) >= start &&
502 page_offset(locked_page) <= end) {
503 __set_page_dirty_nobuffers(locked_page);
504 /* unlocked later on in the async handlers */
505 }
506 add_async_extent(async_cow, start, end - start + 1, 0, NULL, 0);
507 *num_added += 1;
508 }
509
510out:
511 return 0;
512
513free_pages_out:
514 for (i = 0; i < nr_pages_ret; i++) {
515 WARN_ON(pages[i]->mapping);
516 page_cache_release(pages[i]);
517 }
Chris Masond3977122009-01-05 21:25:51 -0500518 kfree(pages);
Chris Mason771ed682008-11-06 22:02:51 -0500519
520 goto out;
521}
522
523/*
524 * phase two of compressed writeback. This is the ordered portion
525 * of the code, which only gets called in the order the work was
526 * queued. We walk all the async extents created by compress_file_range
527 * and send them down to the disk.
528 */
529static noinline int submit_compressed_extents(struct inode *inode,
530 struct async_cow *async_cow)
531{
532 struct async_extent *async_extent;
533 u64 alloc_hint = 0;
534 struct btrfs_trans_handle *trans;
535 struct btrfs_key ins;
536 struct extent_map *em;
537 struct btrfs_root *root = BTRFS_I(inode)->root;
538 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
539 struct extent_io_tree *io_tree;
540 int ret;
541
542 if (list_empty(&async_cow->extents))
543 return 0;
544
545 trans = btrfs_join_transaction(root, 1);
546
Chris Masond3977122009-01-05 21:25:51 -0500547 while (!list_empty(&async_cow->extents)) {
Chris Mason771ed682008-11-06 22:02:51 -0500548 async_extent = list_entry(async_cow->extents.next,
549 struct async_extent, list);
550 list_del(&async_extent->list);
551
552 io_tree = &BTRFS_I(inode)->io_tree;
553
554 /* did the compression code fall back to uncompressed IO? */
555 if (!async_extent->pages) {
556 int page_started = 0;
557 unsigned long nr_written = 0;
558
559 lock_extent(io_tree, async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500560 async_extent->start +
561 async_extent->ram_size - 1, GFP_NOFS);
Chris Mason771ed682008-11-06 22:02:51 -0500562
563 /* allocate blocks */
564 cow_file_range(inode, async_cow->locked_page,
565 async_extent->start,
566 async_extent->start +
567 async_extent->ram_size - 1,
568 &page_started, &nr_written, 0);
569
570 /*
571 * if page_started, cow_file_range inserted an
572 * inline extent and took care of all the unlocking
573 * and IO for us. Otherwise, we need to submit
574 * all those pages down to the drive.
575 */
576 if (!page_started)
577 extent_write_locked_range(io_tree,
578 inode, async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500579 async_extent->start +
Chris Mason771ed682008-11-06 22:02:51 -0500580 async_extent->ram_size - 1,
581 btrfs_get_extent,
582 WB_SYNC_ALL);
583 kfree(async_extent);
584 cond_resched();
585 continue;
586 }
587
588 lock_extent(io_tree, async_extent->start,
589 async_extent->start + async_extent->ram_size - 1,
590 GFP_NOFS);
591 /*
592 * here we're doing allocation and writeback of the
593 * compressed pages
594 */
595 btrfs_drop_extent_cache(inode, async_extent->start,
596 async_extent->start +
597 async_extent->ram_size - 1, 0);
598
599 ret = btrfs_reserve_extent(trans, root,
600 async_extent->compressed_size,
601 async_extent->compressed_size,
602 0, alloc_hint,
603 (u64)-1, &ins, 1);
604 BUG_ON(ret);
605 em = alloc_extent_map(GFP_NOFS);
606 em->start = async_extent->start;
607 em->len = async_extent->ram_size;
Chris Mason445a6942008-11-10 11:53:33 -0500608 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500609
610 em->block_start = ins.objectid;
611 em->block_len = ins.offset;
612 em->bdev = root->fs_info->fs_devices->latest_bdev;
613 set_bit(EXTENT_FLAG_PINNED, &em->flags);
614 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
615
Chris Masond3977122009-01-05 21:25:51 -0500616 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400617 write_lock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500618 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400619 write_unlock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500620 if (ret != -EEXIST) {
621 free_extent_map(em);
622 break;
623 }
624 btrfs_drop_extent_cache(inode, async_extent->start,
625 async_extent->start +
626 async_extent->ram_size - 1, 0);
627 }
628
629 ret = btrfs_add_ordered_extent(inode, async_extent->start,
630 ins.objectid,
631 async_extent->ram_size,
632 ins.offset,
633 BTRFS_ORDERED_COMPRESSED);
634 BUG_ON(ret);
635
636 btrfs_end_transaction(trans, root);
637
638 /*
639 * clear dirty, set writeback and unlock the pages.
640 */
641 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400642 &BTRFS_I(inode)->io_tree,
643 async_extent->start,
644 async_extent->start +
645 async_extent->ram_size - 1,
646 NULL, EXTENT_CLEAR_UNLOCK_PAGE |
647 EXTENT_CLEAR_UNLOCK |
Chris Masona3429ab2009-10-08 12:30:20 -0400648 EXTENT_CLEAR_DELALLOC |
Chris Masona791e352009-10-08 11:27:10 -0400649 EXTENT_CLEAR_DIRTY | EXTENT_SET_WRITEBACK);
Chris Mason771ed682008-11-06 22:02:51 -0500650
651 ret = btrfs_submit_compressed_write(inode,
Chris Masond3977122009-01-05 21:25:51 -0500652 async_extent->start,
653 async_extent->ram_size,
654 ins.objectid,
655 ins.offset, async_extent->pages,
656 async_extent->nr_pages);
Chris Mason771ed682008-11-06 22:02:51 -0500657
658 BUG_ON(ret);
659 trans = btrfs_join_transaction(root, 1);
660 alloc_hint = ins.objectid + ins.offset;
661 kfree(async_extent);
662 cond_resched();
663 }
664
665 btrfs_end_transaction(trans, root);
666 return 0;
667}
668
669/*
670 * when extent_io.c finds a delayed allocation range in the file,
671 * the call backs end up in this code. The basic idea is to
672 * allocate extents on disk for the range, and create ordered data structs
673 * in ram to track those extents.
674 *
675 * locked_page is the page that writepage had locked already. We use
676 * it to make sure we don't do extra locks or unlocks.
677 *
678 * *page_started is set to one if we unlock locked_page and do everything
679 * required to start IO on it. It may be clean and already done with
680 * IO when we return.
681 */
682static noinline int cow_file_range(struct inode *inode,
683 struct page *locked_page,
684 u64 start, u64 end, int *page_started,
685 unsigned long *nr_written,
686 int unlock)
687{
688 struct btrfs_root *root = BTRFS_I(inode)->root;
689 struct btrfs_trans_handle *trans;
690 u64 alloc_hint = 0;
691 u64 num_bytes;
692 unsigned long ram_size;
693 u64 disk_num_bytes;
694 u64 cur_alloc_size;
695 u64 blocksize = root->sectorsize;
696 u64 actual_end;
Chris Mason42dc7ba2008-12-15 11:44:56 -0500697 u64 isize = i_size_read(inode);
Chris Mason771ed682008-11-06 22:02:51 -0500698 struct btrfs_key ins;
699 struct extent_map *em;
700 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
701 int ret = 0;
702
703 trans = btrfs_join_transaction(root, 1);
704 BUG_ON(!trans);
705 btrfs_set_trans_block_group(trans, inode);
706
Chris Mason42dc7ba2008-12-15 11:44:56 -0500707 actual_end = min_t(u64, isize, end + 1);
Chris Mason771ed682008-11-06 22:02:51 -0500708
709 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
710 num_bytes = max(blocksize, num_bytes);
711 disk_num_bytes = num_bytes;
712 ret = 0;
713
714 if (start == 0) {
715 /* lets try to make an inline extent */
716 ret = cow_file_range_inline(trans, root, inode,
717 start, end, 0, NULL);
718 if (ret == 0) {
719 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400720 &BTRFS_I(inode)->io_tree,
721 start, end, NULL,
722 EXTENT_CLEAR_UNLOCK_PAGE |
723 EXTENT_CLEAR_UNLOCK |
724 EXTENT_CLEAR_DELALLOC |
725 EXTENT_CLEAR_DIRTY |
726 EXTENT_SET_WRITEBACK |
727 EXTENT_END_WRITEBACK);
Chris Mason771ed682008-11-06 22:02:51 -0500728 *nr_written = *nr_written +
729 (end - start + PAGE_CACHE_SIZE) / PAGE_CACHE_SIZE;
730 *page_started = 1;
731 ret = 0;
732 goto out;
733 }
734 }
Chris Masonc8b97812008-10-29 14:49:59 -0400735
736 BUG_ON(disk_num_bytes >
737 btrfs_super_total_bytes(&root->fs_info->super_copy));
738
Chris Masonb917b7c2009-09-18 16:07:03 -0400739
740 read_lock(&BTRFS_I(inode)->extent_tree.lock);
741 em = search_extent_mapping(&BTRFS_I(inode)->extent_tree,
742 start, num_bytes);
743 if (em) {
744 alloc_hint = em->block_start;
745 free_extent_map(em);
746 }
747 read_unlock(&BTRFS_I(inode)->extent_tree.lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400748 btrfs_drop_extent_cache(inode, start, start + num_bytes - 1, 0);
Chris Mason3b951512008-04-17 11:29:12 -0400749
Chris Masond3977122009-01-05 21:25:51 -0500750 while (disk_num_bytes > 0) {
Chris Masona791e352009-10-08 11:27:10 -0400751 unsigned long op;
752
Chris Masonc8b97812008-10-29 14:49:59 -0400753 cur_alloc_size = min(disk_num_bytes, root->fs_info->max_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400754 ret = btrfs_reserve_extent(trans, root, cur_alloc_size,
Chris Mason771ed682008-11-06 22:02:51 -0500755 root->sectorsize, 0, alloc_hint,
Chris Masone6dcd2d2008-07-17 12:53:50 -0400756 (u64)-1, &ins, 1);
Chris Masond3977122009-01-05 21:25:51 -0500757 BUG_ON(ret);
758
Chris Masone6dcd2d2008-07-17 12:53:50 -0400759 em = alloc_extent_map(GFP_NOFS);
760 em->start = start;
Chris Mason445a6942008-11-10 11:53:33 -0500761 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500762 ram_size = ins.offset;
763 em->len = ins.offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400764
Chris Masone6dcd2d2008-07-17 12:53:50 -0400765 em->block_start = ins.objectid;
Chris Masonc8b97812008-10-29 14:49:59 -0400766 em->block_len = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400767 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -0400768 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -0400769
Chris Masond3977122009-01-05 21:25:51 -0500770 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400771 write_lock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400772 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400773 write_unlock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400774 if (ret != -EEXIST) {
775 free_extent_map(em);
776 break;
777 }
778 btrfs_drop_extent_cache(inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -0400779 start + ram_size - 1, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400780 }
781
Chris Mason98d20f62008-04-14 09:46:10 -0400782 cur_alloc_size = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400783 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
Chris Mason771ed682008-11-06 22:02:51 -0500784 ram_size, cur_alloc_size, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400785 BUG_ON(ret);
Chris Masonc8b97812008-10-29 14:49:59 -0400786
Yan Zheng17d217f2008-12-12 10:03:38 -0500787 if (root->root_key.objectid ==
788 BTRFS_DATA_RELOC_TREE_OBJECTID) {
789 ret = btrfs_reloc_clone_csums(inode, start,
790 cur_alloc_size);
791 BUG_ON(ret);
792 }
793
Chris Masond3977122009-01-05 21:25:51 -0500794 if (disk_num_bytes < cur_alloc_size)
Chris Mason3b951512008-04-17 11:29:12 -0400795 break;
Chris Masond3977122009-01-05 21:25:51 -0500796
Chris Masonc8b97812008-10-29 14:49:59 -0400797 /* we're not doing compressed IO, don't unlock the first
798 * page (which the caller expects to stay locked), don't
799 * clear any dirty bits and don't set any writeback bits
Chris Mason8b62b722009-09-02 16:53:46 -0400800 *
801 * Do set the Private2 bit so we know this page was properly
802 * setup for writepage
Chris Masonc8b97812008-10-29 14:49:59 -0400803 */
Chris Masona791e352009-10-08 11:27:10 -0400804 op = unlock ? EXTENT_CLEAR_UNLOCK_PAGE : 0;
805 op |= EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
806 EXTENT_SET_PRIVATE2;
807
Chris Masonc8b97812008-10-29 14:49:59 -0400808 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
809 start, start + ram_size - 1,
Chris Masona791e352009-10-08 11:27:10 -0400810 locked_page, op);
Chris Masonc8b97812008-10-29 14:49:59 -0400811 disk_num_bytes -= cur_alloc_size;
Chris Masonc59f8952007-12-17 20:14:04 -0500812 num_bytes -= cur_alloc_size;
813 alloc_hint = ins.objectid + ins.offset;
814 start += cur_alloc_size;
Chris Masonb888db22007-08-27 16:49:44 -0400815 }
Chris Masonb888db22007-08-27 16:49:44 -0400816out:
Chris Mason771ed682008-11-06 22:02:51 -0500817 ret = 0;
Chris Masonb888db22007-08-27 16:49:44 -0400818 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400819
Chris Masonbe20aa92007-12-17 20:14:01 -0500820 return ret;
Chris Mason771ed682008-11-06 22:02:51 -0500821}
Chris Masonc8b97812008-10-29 14:49:59 -0400822
Chris Mason771ed682008-11-06 22:02:51 -0500823/*
824 * work queue call back to started compression on a file and pages
825 */
826static noinline void async_cow_start(struct btrfs_work *work)
827{
828 struct async_cow *async_cow;
829 int num_added = 0;
830 async_cow = container_of(work, struct async_cow, work);
831
832 compress_file_range(async_cow->inode, async_cow->locked_page,
833 async_cow->start, async_cow->end, async_cow,
834 &num_added);
835 if (num_added == 0)
836 async_cow->inode = NULL;
837}
838
839/*
840 * work queue call back to submit previously compressed pages
841 */
842static noinline void async_cow_submit(struct btrfs_work *work)
843{
844 struct async_cow *async_cow;
845 struct btrfs_root *root;
846 unsigned long nr_pages;
847
848 async_cow = container_of(work, struct async_cow, work);
849
850 root = async_cow->root;
851 nr_pages = (async_cow->end - async_cow->start + PAGE_CACHE_SIZE) >>
852 PAGE_CACHE_SHIFT;
853
854 atomic_sub(nr_pages, &root->fs_info->async_delalloc_pages);
855
856 if (atomic_read(&root->fs_info->async_delalloc_pages) <
857 5 * 1042 * 1024 &&
858 waitqueue_active(&root->fs_info->async_submit_wait))
859 wake_up(&root->fs_info->async_submit_wait);
860
Chris Masond3977122009-01-05 21:25:51 -0500861 if (async_cow->inode)
Chris Mason771ed682008-11-06 22:02:51 -0500862 submit_compressed_extents(async_cow->inode, async_cow);
Chris Mason771ed682008-11-06 22:02:51 -0500863}
Chris Masonc8b97812008-10-29 14:49:59 -0400864
Chris Mason771ed682008-11-06 22:02:51 -0500865static noinline void async_cow_free(struct btrfs_work *work)
866{
867 struct async_cow *async_cow;
868 async_cow = container_of(work, struct async_cow, work);
869 kfree(async_cow);
870}
871
872static int cow_file_range_async(struct inode *inode, struct page *locked_page,
873 u64 start, u64 end, int *page_started,
874 unsigned long *nr_written)
875{
876 struct async_cow *async_cow;
877 struct btrfs_root *root = BTRFS_I(inode)->root;
878 unsigned long nr_pages;
879 u64 cur_end;
880 int limit = 10 * 1024 * 1042;
881
Chris Masona3429ab2009-10-08 12:30:20 -0400882 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED,
883 1, 0, NULL, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -0500884 while (start < end) {
Chris Mason771ed682008-11-06 22:02:51 -0500885 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
886 async_cow->inode = inode;
887 async_cow->root = root;
888 async_cow->locked_page = locked_page;
889 async_cow->start = start;
890
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200891 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS)
Chris Mason771ed682008-11-06 22:02:51 -0500892 cur_end = end;
893 else
894 cur_end = min(end, start + 512 * 1024 - 1);
895
896 async_cow->end = cur_end;
897 INIT_LIST_HEAD(&async_cow->extents);
898
899 async_cow->work.func = async_cow_start;
900 async_cow->work.ordered_func = async_cow_submit;
901 async_cow->work.ordered_free = async_cow_free;
902 async_cow->work.flags = 0;
903
Chris Mason771ed682008-11-06 22:02:51 -0500904 nr_pages = (cur_end - start + PAGE_CACHE_SIZE) >>
905 PAGE_CACHE_SHIFT;
906 atomic_add(nr_pages, &root->fs_info->async_delalloc_pages);
907
908 btrfs_queue_worker(&root->fs_info->delalloc_workers,
909 &async_cow->work);
910
911 if (atomic_read(&root->fs_info->async_delalloc_pages) > limit) {
912 wait_event(root->fs_info->async_submit_wait,
913 (atomic_read(&root->fs_info->async_delalloc_pages) <
914 limit));
915 }
916
Chris Masond3977122009-01-05 21:25:51 -0500917 while (atomic_read(&root->fs_info->async_submit_draining) &&
Chris Mason771ed682008-11-06 22:02:51 -0500918 atomic_read(&root->fs_info->async_delalloc_pages)) {
919 wait_event(root->fs_info->async_submit_wait,
920 (atomic_read(&root->fs_info->async_delalloc_pages) ==
921 0));
922 }
923
924 *nr_written += nr_pages;
925 start = cur_end + 1;
926 }
927 *page_started = 1;
928 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -0500929}
930
Chris Masond3977122009-01-05 21:25:51 -0500931static noinline int csum_exist_in_range(struct btrfs_root *root,
Yan Zheng17d217f2008-12-12 10:03:38 -0500932 u64 bytenr, u64 num_bytes)
933{
934 int ret;
935 struct btrfs_ordered_sum *sums;
936 LIST_HEAD(list);
937
Yan Zheng07d400a2009-01-06 11:42:00 -0500938 ret = btrfs_lookup_csums_range(root->fs_info->csum_root, bytenr,
939 bytenr + num_bytes - 1, &list);
Yan Zheng17d217f2008-12-12 10:03:38 -0500940 if (ret == 0 && list_empty(&list))
941 return 0;
942
943 while (!list_empty(&list)) {
944 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
945 list_del(&sums->list);
946 kfree(sums);
947 }
948 return 1;
949}
950
Chris Masond352ac62008-09-29 15:18:18 -0400951/*
952 * when nowcow writeback call back. This checks for snapshots or COW copies
953 * of the extents that exist in the file, and COWs the file as required.
954 *
955 * If no cow copies or snapshots exist, we write directly to the existing
956 * blocks on disk
957 */
Chris Mason7f366cf2009-03-12 20:12:45 -0400958static noinline int run_delalloc_nocow(struct inode *inode,
959 struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -0500960 u64 start, u64 end, int *page_started, int force,
961 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -0500962{
Chris Masonbe20aa92007-12-17 20:14:01 -0500963 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zheng7ea394f2008-08-05 13:05:02 -0400964 struct btrfs_trans_handle *trans;
Chris Masonbe20aa92007-12-17 20:14:01 -0500965 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -0500966 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -0400967 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -0500968 struct btrfs_key found_key;
Yan Zheng80ff3852008-10-30 14:20:02 -0400969 u64 cow_start;
970 u64 cur_offset;
971 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400972 u64 extent_offset;
Yan Zheng80ff3852008-10-30 14:20:02 -0400973 u64 disk_bytenr;
974 u64 num_bytes;
975 int extent_type;
976 int ret;
Yan Zhengd899e052008-10-30 14:25:28 -0400977 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -0400978 int nocow;
979 int check_prev = 1;
Chris Masonbe20aa92007-12-17 20:14:01 -0500980
981 path = btrfs_alloc_path();
982 BUG_ON(!path);
Yan Zheng7ea394f2008-08-05 13:05:02 -0400983 trans = btrfs_join_transaction(root, 1);
984 BUG_ON(!trans);
Chris Masonbe20aa92007-12-17 20:14:01 -0500985
Yan Zheng80ff3852008-10-30 14:20:02 -0400986 cow_start = (u64)-1;
987 cur_offset = start;
988 while (1) {
989 ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino,
990 cur_offset, 0);
991 BUG_ON(ret < 0);
992 if (ret > 0 && path->slots[0] > 0 && check_prev) {
993 leaf = path->nodes[0];
994 btrfs_item_key_to_cpu(leaf, &found_key,
995 path->slots[0] - 1);
996 if (found_key.objectid == inode->i_ino &&
997 found_key.type == BTRFS_EXTENT_DATA_KEY)
998 path->slots[0]--;
999 }
1000 check_prev = 0;
1001next_slot:
1002 leaf = path->nodes[0];
1003 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1004 ret = btrfs_next_leaf(root, path);
1005 if (ret < 0)
1006 BUG_ON(1);
1007 if (ret > 0)
1008 break;
1009 leaf = path->nodes[0];
1010 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001011
Yan Zheng80ff3852008-10-30 14:20:02 -04001012 nocow = 0;
1013 disk_bytenr = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -05001014 num_bytes = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001015 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05001016
Yan Zheng80ff3852008-10-30 14:20:02 -04001017 if (found_key.objectid > inode->i_ino ||
1018 found_key.type > BTRFS_EXTENT_DATA_KEY ||
1019 found_key.offset > end)
1020 break;
Chris Masonbe20aa92007-12-17 20:14:01 -05001021
Yan Zheng80ff3852008-10-30 14:20:02 -04001022 if (found_key.offset > cur_offset) {
1023 extent_end = found_key.offset;
1024 goto out_check;
1025 }
Chris Masonc31f8832008-01-08 15:46:31 -05001026
Yan Zheng80ff3852008-10-30 14:20:02 -04001027 fi = btrfs_item_ptr(leaf, path->slots[0],
1028 struct btrfs_file_extent_item);
1029 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -05001030
Yan Zhengd899e052008-10-30 14:25:28 -04001031 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1032 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001033 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001034 extent_offset = btrfs_file_extent_offset(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001035 extent_end = found_key.offset +
1036 btrfs_file_extent_num_bytes(leaf, fi);
1037 if (extent_end <= start) {
1038 path->slots[0]++;
1039 goto next_slot;
1040 }
Yan Zheng17d217f2008-12-12 10:03:38 -05001041 if (disk_bytenr == 0)
1042 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001043 if (btrfs_file_extent_compression(leaf, fi) ||
1044 btrfs_file_extent_encryption(leaf, fi) ||
1045 btrfs_file_extent_other_encoding(leaf, fi))
1046 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001047 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1048 goto out_check;
Yan Zhengd2fb3432008-12-11 16:30:39 -05001049 if (btrfs_extent_readonly(root, disk_bytenr))
Yan Zheng80ff3852008-10-30 14:20:02 -04001050 goto out_check;
Yan Zheng17d217f2008-12-12 10:03:38 -05001051 if (btrfs_cross_ref_exist(trans, root, inode->i_ino,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001052 found_key.offset -
1053 extent_offset, disk_bytenr))
Yan Zheng17d217f2008-12-12 10:03:38 -05001054 goto out_check;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001055 disk_bytenr += extent_offset;
Yan Zheng17d217f2008-12-12 10:03:38 -05001056 disk_bytenr += cur_offset - found_key.offset;
1057 num_bytes = min(end + 1, extent_end) - cur_offset;
1058 /*
1059 * force cow if csum exists in the range.
1060 * this ensure that csum for a given extent are
1061 * either valid or do not exist.
1062 */
1063 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
1064 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001065 nocow = 1;
1066 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1067 extent_end = found_key.offset +
1068 btrfs_file_extent_inline_len(leaf, fi);
1069 extent_end = ALIGN(extent_end, root->sectorsize);
1070 } else {
1071 BUG_ON(1);
1072 }
1073out_check:
1074 if (extent_end <= start) {
1075 path->slots[0]++;
1076 goto next_slot;
1077 }
1078 if (!nocow) {
1079 if (cow_start == (u64)-1)
1080 cow_start = cur_offset;
1081 cur_offset = extent_end;
1082 if (cur_offset > end)
1083 break;
1084 path->slots[0]++;
1085 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001086 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001087
Yan Zheng7ea394f2008-08-05 13:05:02 -04001088 btrfs_release_path(root, path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001089 if (cow_start != (u64)-1) {
1090 ret = cow_file_range(inode, locked_page, cow_start,
Chris Mason771ed682008-11-06 22:02:51 -05001091 found_key.offset - 1, page_started,
1092 nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001093 BUG_ON(ret);
1094 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001095 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001096
Yan Zhengd899e052008-10-30 14:25:28 -04001097 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1098 struct extent_map *em;
1099 struct extent_map_tree *em_tree;
1100 em_tree = &BTRFS_I(inode)->extent_tree;
1101 em = alloc_extent_map(GFP_NOFS);
1102 em->start = cur_offset;
Chris Mason445a6942008-11-10 11:53:33 -05001103 em->orig_start = em->start;
Yan Zhengd899e052008-10-30 14:25:28 -04001104 em->len = num_bytes;
1105 em->block_len = num_bytes;
1106 em->block_start = disk_bytenr;
1107 em->bdev = root->fs_info->fs_devices->latest_bdev;
1108 set_bit(EXTENT_FLAG_PINNED, &em->flags);
1109 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04001110 write_lock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001111 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04001112 write_unlock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001113 if (ret != -EEXIST) {
1114 free_extent_map(em);
1115 break;
1116 }
1117 btrfs_drop_extent_cache(inode, em->start,
1118 em->start + em->len - 1, 0);
1119 }
1120 type = BTRFS_ORDERED_PREALLOC;
1121 } else {
1122 type = BTRFS_ORDERED_NOCOW;
1123 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001124
1125 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001126 num_bytes, num_bytes, type);
1127 BUG_ON(ret);
Chris Mason771ed682008-11-06 22:02:51 -05001128
Yan Zhengd899e052008-10-30 14:25:28 -04001129 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
Chris Masona791e352009-10-08 11:27:10 -04001130 cur_offset, cur_offset + num_bytes - 1,
1131 locked_page, EXTENT_CLEAR_UNLOCK_PAGE |
1132 EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
1133 EXTENT_SET_PRIVATE2);
Yan Zheng80ff3852008-10-30 14:20:02 -04001134 cur_offset = extent_end;
1135 if (cur_offset > end)
1136 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001137 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001138 btrfs_release_path(root, path);
1139
1140 if (cur_offset <= end && cow_start == (u64)-1)
1141 cow_start = cur_offset;
1142 if (cow_start != (u64)-1) {
1143 ret = cow_file_range(inode, locked_page, cow_start, end,
Chris Mason771ed682008-11-06 22:02:51 -05001144 page_started, nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001145 BUG_ON(ret);
1146 }
1147
1148 ret = btrfs_end_transaction(trans, root);
1149 BUG_ON(ret);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001150 btrfs_free_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001151 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001152}
1153
Chris Masond352ac62008-09-29 15:18:18 -04001154/*
1155 * extent_io.c call back to do delayed allocation processing
1156 */
Chris Masonc8b97812008-10-29 14:49:59 -04001157static int run_delalloc_range(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001158 u64 start, u64 end, int *page_started,
1159 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001160{
Chris Masonbe20aa92007-12-17 20:14:01 -05001161 int ret;
Chris Mason7f366cf2009-03-12 20:12:45 -04001162 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masona2135012008-06-25 16:01:30 -04001163
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001164 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW)
Chris Masonc8b97812008-10-29 14:49:59 -04001165 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001166 page_started, 1, nr_written);
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001167 else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC)
Yan Zhengd899e052008-10-30 14:25:28 -04001168 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001169 page_started, 0, nr_written);
Chris Mason7f366cf2009-03-12 20:12:45 -04001170 else if (!btrfs_test_opt(root, COMPRESS))
1171 ret = cow_file_range(inode, locked_page, start, end,
1172 page_started, nr_written, 1);
Chris Masonbe20aa92007-12-17 20:14:01 -05001173 else
Chris Mason771ed682008-11-06 22:02:51 -05001174 ret = cow_file_range_async(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001175 page_started, nr_written);
Chris Masonb888db22007-08-27 16:49:44 -04001176 return ret;
1177}
1178
Josef Bacik9ed74f22009-09-11 16:12:44 -04001179static int btrfs_split_extent_hook(struct inode *inode,
1180 struct extent_state *orig, u64 split)
1181{
1182 struct btrfs_root *root = BTRFS_I(inode)->root;
1183 u64 size;
1184
1185 if (!(orig->state & EXTENT_DELALLOC))
1186 return 0;
1187
1188 size = orig->end - orig->start + 1;
1189 if (size > root->fs_info->max_extent) {
1190 u64 num_extents;
1191 u64 new_size;
1192
1193 new_size = orig->end - split + 1;
1194 num_extents = div64_u64(size + root->fs_info->max_extent - 1,
1195 root->fs_info->max_extent);
1196
1197 /*
1198 * if we break a large extent up then leave delalloc_extents be,
1199 * since we've already accounted for the large extent.
1200 */
1201 if (div64_u64(new_size + root->fs_info->max_extent - 1,
1202 root->fs_info->max_extent) < num_extents)
1203 return 0;
1204 }
1205
1206 BTRFS_I(inode)->delalloc_extents++;
1207
1208 return 0;
1209}
1210
1211/*
1212 * extent_io.c merge_extent_hook, used to track merged delayed allocation
1213 * extents so we can keep track of new extents that are just merged onto old
1214 * extents, such as when we are doing sequential writes, so we can properly
1215 * account for the metadata space we'll need.
1216 */
1217static int btrfs_merge_extent_hook(struct inode *inode,
1218 struct extent_state *new,
1219 struct extent_state *other)
1220{
1221 struct btrfs_root *root = BTRFS_I(inode)->root;
1222 u64 new_size, old_size;
1223 u64 num_extents;
1224
1225 /* not delalloc, ignore it */
1226 if (!(other->state & EXTENT_DELALLOC))
1227 return 0;
1228
1229 old_size = other->end - other->start + 1;
1230 if (new->start < other->start)
1231 new_size = other->end - new->start + 1;
1232 else
1233 new_size = new->end - other->start + 1;
1234
1235 /* we're not bigger than the max, unreserve the space and go */
1236 if (new_size <= root->fs_info->max_extent) {
1237 BTRFS_I(inode)->delalloc_extents--;
1238 return 0;
1239 }
1240
1241 /*
1242 * If we grew by another max_extent, just return, we want to keep that
1243 * reserved amount.
1244 */
1245 num_extents = div64_u64(old_size + root->fs_info->max_extent - 1,
1246 root->fs_info->max_extent);
1247 if (div64_u64(new_size + root->fs_info->max_extent - 1,
1248 root->fs_info->max_extent) > num_extents)
1249 return 0;
1250
1251 BTRFS_I(inode)->delalloc_extents--;
1252
1253 return 0;
1254}
1255
Chris Masond352ac62008-09-29 15:18:18 -04001256/*
1257 * extent_io.c set_bit_hook, used to track delayed allocation
1258 * bytes in this file, and to maintain the list of inodes that
1259 * have pending delalloc work to be done.
1260 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001261static int btrfs_set_bit_hook(struct inode *inode, u64 start, u64 end,
Chris Masonb0c68f82008-01-31 11:05:37 -05001262 unsigned long old, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -05001263{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001264
Chris Mason75eff682008-12-15 15:54:40 -05001265 /*
1266 * set_bit and clear bit hooks normally require _irqsave/restore
1267 * but in this case, we are only testeing for the DELALLOC
1268 * bit, which is only set or cleared with irqs on
1269 */
Chris Masonb0c68f82008-01-31 11:05:37 -05001270 if (!(old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001271 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001272
1273 BTRFS_I(inode)->delalloc_extents++;
Josef Bacik6a632092009-02-20 11:00:09 -05001274 btrfs_delalloc_reserve_space(root, inode, end - start + 1);
Chris Mason75eff682008-12-15 15:54:40 -05001275 spin_lock(&root->fs_info->delalloc_lock);
Chris Mason90692182008-02-08 13:49:28 -05001276 BTRFS_I(inode)->delalloc_bytes += end - start + 1;
Chris Mason291d6732008-01-29 15:55:23 -05001277 root->fs_info->delalloc_bytes += end - start + 1;
Chris Masonea8c2812008-08-04 23:17:27 -04001278 if (list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1279 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1280 &root->fs_info->delalloc_inodes);
1281 }
Chris Mason75eff682008-12-15 15:54:40 -05001282 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001283 }
1284 return 0;
1285}
1286
Chris Masond352ac62008-09-29 15:18:18 -04001287/*
1288 * extent_io.c clear_bit_hook, see set_bit_hook for why
1289 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001290static int btrfs_clear_bit_hook(struct inode *inode,
1291 struct extent_state *state, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -05001292{
Chris Mason75eff682008-12-15 15:54:40 -05001293 /*
1294 * set_bit and clear bit hooks normally require _irqsave/restore
1295 * but in this case, we are only testeing for the DELALLOC
1296 * bit, which is only set or cleared with irqs on
1297 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001298 if ((state->state & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001299 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonbcbfce82008-04-22 13:26:47 -04001300
Josef Bacik9ed74f22009-09-11 16:12:44 -04001301 BTRFS_I(inode)->delalloc_extents--;
1302 btrfs_unreserve_metadata_for_delalloc(root, inode, 1);
1303
Chris Mason75eff682008-12-15 15:54:40 -05001304 spin_lock(&root->fs_info->delalloc_lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001305 if (state->end - state->start + 1 >
1306 root->fs_info->delalloc_bytes) {
Chris Masond3977122009-01-05 21:25:51 -05001307 printk(KERN_INFO "btrfs warning: delalloc account "
1308 "%llu %llu\n",
Josef Bacik9ed74f22009-09-11 16:12:44 -04001309 (unsigned long long)
1310 state->end - state->start + 1,
Chris Masond3977122009-01-05 21:25:51 -05001311 (unsigned long long)
1312 root->fs_info->delalloc_bytes);
Josef Bacik6a632092009-02-20 11:00:09 -05001313 btrfs_delalloc_free_space(root, inode, (u64)-1);
Chris Masonb0c68f82008-01-31 11:05:37 -05001314 root->fs_info->delalloc_bytes = 0;
Chris Mason90692182008-02-08 13:49:28 -05001315 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masonb0c68f82008-01-31 11:05:37 -05001316 } else {
Josef Bacik6a632092009-02-20 11:00:09 -05001317 btrfs_delalloc_free_space(root, inode,
Josef Bacik9ed74f22009-09-11 16:12:44 -04001318 state->end -
1319 state->start + 1);
1320 root->fs_info->delalloc_bytes -= state->end -
1321 state->start + 1;
1322 BTRFS_I(inode)->delalloc_bytes -= state->end -
1323 state->start + 1;
Chris Masonb0c68f82008-01-31 11:05:37 -05001324 }
Chris Masonea8c2812008-08-04 23:17:27 -04001325 if (BTRFS_I(inode)->delalloc_bytes == 0 &&
1326 !list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1327 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
1328 }
Chris Mason75eff682008-12-15 15:54:40 -05001329 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001330 }
1331 return 0;
1332}
1333
Chris Masond352ac62008-09-29 15:18:18 -04001334/*
1335 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1336 * we don't create bios that span stripes or chunks
1337 */
Chris Mason239b14b2008-03-24 15:02:07 -04001338int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001339 size_t size, struct bio *bio,
1340 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001341{
1342 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
1343 struct btrfs_mapping_tree *map_tree;
Chris Masona62b9402008-10-03 16:31:08 -04001344 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001345 u64 length = 0;
1346 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001347 int ret;
1348
Chris Mason771ed682008-11-06 22:02:51 -05001349 if (bio_flags & EXTENT_BIO_COMPRESSED)
1350 return 0;
1351
Chris Masonf2d8d742008-04-21 10:03:05 -04001352 length = bio->bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001353 map_tree = &root->fs_info->mapping_tree;
1354 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04001355 ret = btrfs_map_block(map_tree, READ, logical,
Chris Masonf1885912008-04-09 16:28:12 -04001356 &map_length, NULL, 0);
Chris Masoncea9e442008-04-09 16:28:12 -04001357
Chris Masond3977122009-01-05 21:25:51 -05001358 if (map_length < length + size)
Chris Mason239b14b2008-03-24 15:02:07 -04001359 return 1;
Chris Mason239b14b2008-03-24 15:02:07 -04001360 return 0;
1361}
1362
Chris Masond352ac62008-09-29 15:18:18 -04001363/*
1364 * in order to insert checksums into the metadata in large chunks,
1365 * we wait until bio submission time. All the pages in the bio are
1366 * checksummed and sums are attached onto the ordered extent record.
1367 *
1368 * At IO completion time the cums attached on the ordered extent record
1369 * are inserted into the btree
1370 */
Chris Masond3977122009-01-05 21:25:51 -05001371static int __btrfs_submit_bio_start(struct inode *inode, int rw,
1372 struct bio *bio, int mirror_num,
1373 unsigned long bio_flags)
Chris Mason065631f2008-02-20 12:07:25 -05001374{
Chris Mason065631f2008-02-20 12:07:25 -05001375 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason065631f2008-02-20 12:07:25 -05001376 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001377
Chris Masond20f7042008-12-08 16:58:54 -05001378 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
Chris Mason44b8bd72008-04-16 11:14:51 -04001379 BUG_ON(ret);
Chris Mason4a69a412008-11-06 22:03:00 -05001380 return 0;
1381}
Chris Masone0156402008-04-16 11:15:20 -04001382
Chris Mason4a69a412008-11-06 22:03:00 -05001383/*
1384 * in order to insert checksums into the metadata in large chunks,
1385 * we wait until bio submission time. All the pages in the bio are
1386 * checksummed and sums are attached onto the ordered extent record.
1387 *
1388 * At IO completion time the cums attached on the ordered extent record
1389 * are inserted into the btree
1390 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001391static int __btrfs_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
Chris Mason4a69a412008-11-06 22:03:00 -05001392 int mirror_num, unsigned long bio_flags)
1393{
1394 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason8b712842008-06-11 16:50:36 -04001395 return btrfs_map_bio(root, rw, bio, mirror_num, 1);
Chris Mason44b8bd72008-04-16 11:14:51 -04001396}
1397
Chris Masond352ac62008-09-29 15:18:18 -04001398/*
Chris Masoncad321a2008-12-17 14:51:42 -05001399 * extent_io.c submission hook. This does the right thing for csum calculation
1400 * on write, or reading the csums from the tree before a read
Chris Masond352ac62008-09-29 15:18:18 -04001401 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001402static int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masonc8b97812008-10-29 14:49:59 -04001403 int mirror_num, unsigned long bio_flags)
Chris Mason44b8bd72008-04-16 11:14:51 -04001404{
1405 struct btrfs_root *root = BTRFS_I(inode)->root;
1406 int ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001407 int skip_sum;
Chris Mason44b8bd72008-04-16 11:14:51 -04001408
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001409 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masoncad321a2008-12-17 14:51:42 -05001410
Chris Masone6dcd2d2008-07-17 12:53:50 -04001411 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
1412 BUG_ON(ret);
Chris Mason065631f2008-02-20 12:07:25 -05001413
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001414 if (!(rw & (1 << BIO_RW))) {
Chris Masond20f7042008-12-08 16:58:54 -05001415 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Chris Masonc8b97812008-10-29 14:49:59 -04001416 return btrfs_submit_compressed_read(inode, bio,
1417 mirror_num, bio_flags);
Chris Masond20f7042008-12-08 16:58:54 -05001418 } else if (!skip_sum)
1419 btrfs_lookup_bio_sums(root, inode, bio, NULL);
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001420 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001421 } else if (!skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001422 /* csum items have already been cloned */
1423 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1424 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001425 /* we're doing a write, do the async checksumming */
1426 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
Chris Mason44b8bd72008-04-16 11:14:51 -04001427 inode, rw, bio, mirror_num,
Chris Mason4a69a412008-11-06 22:03:00 -05001428 bio_flags, __btrfs_submit_bio_start,
1429 __btrfs_submit_bio_done);
Chris Mason19b9bdb2008-10-30 14:23:13 -04001430 }
1431
Chris Mason0b86a832008-03-24 15:01:56 -04001432mapit:
Chris Mason8b712842008-06-11 16:50:36 -04001433 return btrfs_map_bio(root, rw, bio, mirror_num, 0);
Chris Mason065631f2008-02-20 12:07:25 -05001434}
Chris Mason6885f302008-02-20 16:11:05 -05001435
Chris Masond352ac62008-09-29 15:18:18 -04001436/*
1437 * given a list of ordered sums record them in the inode. This happens
1438 * at IO completion time based on sums calculated at bio submission time.
1439 */
Chris Masonba1da2f2008-07-17 12:54:15 -04001440static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -04001441 struct inode *inode, u64 file_offset,
1442 struct list_head *list)
1443{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001444 struct btrfs_ordered_sum *sum;
1445
1446 btrfs_set_trans_block_group(trans, inode);
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001447
1448 list_for_each_entry(sum, list, list) {
Chris Masond20f7042008-12-08 16:58:54 -05001449 btrfs_csum_file_blocks(trans,
1450 BTRFS_I(inode)->root->fs_info->csum_root, sum);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001451 }
1452 return 0;
1453}
1454
Chris Masonea8c2812008-08-04 23:17:27 -04001455int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end)
1456{
Chris Masond3977122009-01-05 21:25:51 -05001457 if ((end & (PAGE_CACHE_SIZE - 1)) == 0)
Chris Mason771ed682008-11-06 22:02:51 -05001458 WARN_ON(1);
Chris Masonea8c2812008-08-04 23:17:27 -04001459 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
1460 GFP_NOFS);
1461}
1462
Chris Masond352ac62008-09-29 15:18:18 -04001463/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04001464struct btrfs_writepage_fixup {
1465 struct page *page;
1466 struct btrfs_work work;
1467};
1468
Christoph Hellwigb2950862008-12-02 09:54:17 -05001469static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04001470{
1471 struct btrfs_writepage_fixup *fixup;
1472 struct btrfs_ordered_extent *ordered;
1473 struct page *page;
1474 struct inode *inode;
1475 u64 page_start;
1476 u64 page_end;
1477
1478 fixup = container_of(work, struct btrfs_writepage_fixup, work);
1479 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04001480again:
Chris Mason247e7432008-07-17 12:53:51 -04001481 lock_page(page);
1482 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
1483 ClearPageChecked(page);
1484 goto out_page;
1485 }
1486
1487 inode = page->mapping->host;
1488 page_start = page_offset(page);
1489 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
1490
1491 lock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001492
1493 /* already ordered? We're done */
Chris Mason8b62b722009-09-02 16:53:46 -04001494 if (PagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001495 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04001496
1497 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1498 if (ordered) {
1499 unlock_extent(&BTRFS_I(inode)->io_tree, page_start,
1500 page_end, GFP_NOFS);
1501 unlock_page(page);
1502 btrfs_start_ordered_extent(inode, ordered, 1);
1503 goto again;
1504 }
Chris Mason247e7432008-07-17 12:53:51 -04001505
Chris Masonea8c2812008-08-04 23:17:27 -04001506 btrfs_set_extent_delalloc(inode, page_start, page_end);
Chris Mason247e7432008-07-17 12:53:51 -04001507 ClearPageChecked(page);
1508out:
1509 unlock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end, GFP_NOFS);
1510out_page:
1511 unlock_page(page);
1512 page_cache_release(page);
1513}
1514
1515/*
1516 * There are a few paths in the higher layers of the kernel that directly
1517 * set the page dirty bit without asking the filesystem if it is a
1518 * good idea. This causes problems because we want to make sure COW
1519 * properly happens and the data=ordered rules are followed.
1520 *
Chris Masonc8b97812008-10-29 14:49:59 -04001521 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04001522 * hasn't been properly setup for IO. We kick off an async process
1523 * to fix it up. The async helper will wait for ordered extents, set
1524 * the delalloc bit and make it safe to write the page.
1525 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001526static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04001527{
1528 struct inode *inode = page->mapping->host;
1529 struct btrfs_writepage_fixup *fixup;
1530 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason247e7432008-07-17 12:53:51 -04001531
Chris Mason8b62b722009-09-02 16:53:46 -04001532 /* this page is properly in the ordered list */
1533 if (TestClearPagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001534 return 0;
1535
1536 if (PageChecked(page))
1537 return -EAGAIN;
1538
1539 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
1540 if (!fixup)
1541 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04001542
Chris Mason247e7432008-07-17 12:53:51 -04001543 SetPageChecked(page);
1544 page_cache_get(page);
1545 fixup->work.func = btrfs_writepage_fixup_worker;
1546 fixup->page = page;
1547 btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work);
1548 return -EAGAIN;
1549}
1550
Yan Zhengd899e052008-10-30 14:25:28 -04001551static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
1552 struct inode *inode, u64 file_pos,
1553 u64 disk_bytenr, u64 disk_num_bytes,
1554 u64 num_bytes, u64 ram_bytes,
Chris Masone980b502009-04-24 14:39:24 -04001555 u64 locked_end,
Yan Zhengd899e052008-10-30 14:25:28 -04001556 u8 compression, u8 encryption,
1557 u16 other_encoding, int extent_type)
1558{
1559 struct btrfs_root *root = BTRFS_I(inode)->root;
1560 struct btrfs_file_extent_item *fi;
1561 struct btrfs_path *path;
1562 struct extent_buffer *leaf;
1563 struct btrfs_key ins;
1564 u64 hint;
1565 int ret;
1566
1567 path = btrfs_alloc_path();
1568 BUG_ON(!path);
1569
Chris Masonb9473432009-03-13 11:00:37 -04001570 path->leave_spinning = 1;
Chris Masona1ed8352009-09-11 12:27:37 -04001571
1572 /*
1573 * we may be replacing one extent in the tree with another.
1574 * The new extent is pinned in the extent map, and we don't want
1575 * to drop it from the cache until it is completely in the btree.
1576 *
1577 * So, tell btrfs_drop_extents to leave this extent in the cache.
1578 * the caller is expected to unpin it and allow it to be merged
1579 * with the others.
1580 */
Yan Zhengd899e052008-10-30 14:25:28 -04001581 ret = btrfs_drop_extents(trans, root, inode, file_pos,
Chris Masone980b502009-04-24 14:39:24 -04001582 file_pos + num_bytes, locked_end,
Chris Masona1ed8352009-09-11 12:27:37 -04001583 file_pos, &hint, 0);
Yan Zhengd899e052008-10-30 14:25:28 -04001584 BUG_ON(ret);
1585
1586 ins.objectid = inode->i_ino;
1587 ins.offset = file_pos;
1588 ins.type = BTRFS_EXTENT_DATA_KEY;
1589 ret = btrfs_insert_empty_item(trans, root, path, &ins, sizeof(*fi));
1590 BUG_ON(ret);
1591 leaf = path->nodes[0];
1592 fi = btrfs_item_ptr(leaf, path->slots[0],
1593 struct btrfs_file_extent_item);
1594 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
1595 btrfs_set_file_extent_type(leaf, fi, extent_type);
1596 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
1597 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
1598 btrfs_set_file_extent_offset(leaf, fi, 0);
1599 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
1600 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
1601 btrfs_set_file_extent_compression(leaf, fi, compression);
1602 btrfs_set_file_extent_encryption(leaf, fi, encryption);
1603 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
Chris Masonb9473432009-03-13 11:00:37 -04001604
1605 btrfs_unlock_up_safe(path, 1);
1606 btrfs_set_lock_blocking(leaf);
1607
Yan Zhengd899e052008-10-30 14:25:28 -04001608 btrfs_mark_buffer_dirty(leaf);
1609
1610 inode_add_bytes(inode, num_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -04001611
1612 ins.objectid = disk_bytenr;
1613 ins.offset = disk_num_bytes;
1614 ins.type = BTRFS_EXTENT_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001615 ret = btrfs_alloc_reserved_file_extent(trans, root,
1616 root->root_key.objectid,
1617 inode->i_ino, file_pos, &ins);
Yan Zhengd899e052008-10-30 14:25:28 -04001618 BUG_ON(ret);
Yan Zhengd899e052008-10-30 14:25:28 -04001619 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04001620
Yan Zhengd899e052008-10-30 14:25:28 -04001621 return 0;
1622}
1623
Chris Mason5d13a982009-03-13 11:41:46 -04001624/*
1625 * helper function for btrfs_finish_ordered_io, this
1626 * just reads in some of the csum leaves to prime them into ram
1627 * before we start the transaction. It limits the amount of btree
1628 * reads required while inside the transaction.
1629 */
1630static noinline void reada_csum(struct btrfs_root *root,
1631 struct btrfs_path *path,
1632 struct btrfs_ordered_extent *ordered_extent)
1633{
1634 struct btrfs_ordered_sum *sum;
1635 u64 bytenr;
1636
1637 sum = list_entry(ordered_extent->list.next, struct btrfs_ordered_sum,
1638 list);
1639 bytenr = sum->sums[0].bytenr;
1640
1641 /*
1642 * we don't care about the results, the point of this search is
1643 * just to get the btree leaves into ram
1644 */
1645 btrfs_lookup_csum(NULL, root->fs_info->csum_root, path, bytenr, 0);
1646}
1647
Chris Masond352ac62008-09-29 15:18:18 -04001648/* as ordered data IO finishes, this gets called so we can finish
1649 * an ordered extent if the range of bytes in the file it covers are
1650 * fully written.
1651 */
Chris Mason211f90e2008-07-18 11:56:15 -04001652static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001653{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001654 struct btrfs_root *root = BTRFS_I(inode)->root;
1655 struct btrfs_trans_handle *trans;
Chris Mason5d13a982009-03-13 11:41:46 -04001656 struct btrfs_ordered_extent *ordered_extent = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001657 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masonb7ec40d2009-03-12 20:12:45 -04001658 struct btrfs_path *path;
Yan Zhengd899e052008-10-30 14:25:28 -04001659 int compressed = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001660 int ret;
1661
1662 ret = btrfs_dec_test_ordered_pending(inode, start, end - start + 1);
Chris Masonba1da2f2008-07-17 12:54:15 -04001663 if (!ret)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001664 return 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001665
Chris Masonb7ec40d2009-03-12 20:12:45 -04001666 /*
1667 * before we join the transaction, try to do some of our IO.
1668 * This will limit the amount of IO that we have to do with
1669 * the transaction running. We're unlikely to need to do any
1670 * IO if the file extents are new, the disk_i_size checks
1671 * covers the most common case.
1672 */
1673 if (start < BTRFS_I(inode)->disk_i_size) {
1674 path = btrfs_alloc_path();
1675 if (path) {
1676 ret = btrfs_lookup_file_extent(NULL, root, path,
1677 inode->i_ino,
1678 start, 0);
Chris Mason5d13a982009-03-13 11:41:46 -04001679 ordered_extent = btrfs_lookup_ordered_extent(inode,
1680 start);
1681 if (!list_empty(&ordered_extent->list)) {
1682 btrfs_release_path(root, path);
1683 reada_csum(root, path, ordered_extent);
1684 }
Chris Masonb7ec40d2009-03-12 20:12:45 -04001685 btrfs_free_path(path);
1686 }
1687 }
1688
Chris Masonf9295742008-07-17 12:54:14 -04001689 trans = btrfs_join_transaction(root, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001690
Chris Mason5d13a982009-03-13 11:41:46 -04001691 if (!ordered_extent)
1692 ordered_extent = btrfs_lookup_ordered_extent(inode, start);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001693 BUG_ON(!ordered_extent);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001694 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags))
1695 goto nocow;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001696
1697 lock_extent(io_tree, ordered_extent->file_offset,
1698 ordered_extent->file_offset + ordered_extent->len - 1,
1699 GFP_NOFS);
1700
Chris Masonc8b97812008-10-29 14:49:59 -04001701 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Yan Zhengd899e052008-10-30 14:25:28 -04001702 compressed = 1;
1703 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
1704 BUG_ON(compressed);
1705 ret = btrfs_mark_extent_written(trans, root, inode,
1706 ordered_extent->file_offset,
1707 ordered_extent->file_offset +
1708 ordered_extent->len);
1709 BUG_ON(ret);
1710 } else {
1711 ret = insert_reserved_file_extent(trans, inode,
1712 ordered_extent->file_offset,
1713 ordered_extent->start,
1714 ordered_extent->disk_len,
1715 ordered_extent->len,
1716 ordered_extent->len,
Chris Masone980b502009-04-24 14:39:24 -04001717 ordered_extent->file_offset +
1718 ordered_extent->len,
Yan Zhengd899e052008-10-30 14:25:28 -04001719 compressed, 0, 0,
1720 BTRFS_FILE_EXTENT_REG);
Chris Masona1ed8352009-09-11 12:27:37 -04001721 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
1722 ordered_extent->file_offset,
1723 ordered_extent->len);
Yan Zhengd899e052008-10-30 14:25:28 -04001724 BUG_ON(ret);
1725 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001726 unlock_extent(io_tree, ordered_extent->file_offset,
1727 ordered_extent->file_offset + ordered_extent->len - 1,
1728 GFP_NOFS);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001729nocow:
Chris Masone6dcd2d2008-07-17 12:53:50 -04001730 add_pending_csums(trans, inode, ordered_extent->file_offset,
1731 &ordered_extent->list);
1732
Chris Mason34353022008-09-23 20:19:49 -04001733 mutex_lock(&BTRFS_I(inode)->extent_mutex);
Chris Masondbe674a2008-07-17 12:54:05 -04001734 btrfs_ordered_update_i_size(inode, ordered_extent);
Chris Masone02119d2008-09-05 16:13:11 -04001735 btrfs_update_inode(trans, root, inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001736 btrfs_remove_ordered_extent(inode, ordered_extent);
Chris Mason34353022008-09-23 20:19:49 -04001737 mutex_unlock(&BTRFS_I(inode)->extent_mutex);
Chris Mason7f3c74f2008-07-18 12:01:11 -04001738
Chris Masone6dcd2d2008-07-17 12:53:50 -04001739 /* once for us */
1740 btrfs_put_ordered_extent(ordered_extent);
1741 /* once for the tree */
1742 btrfs_put_ordered_extent(ordered_extent);
1743
Chris Masone6dcd2d2008-07-17 12:53:50 -04001744 btrfs_end_transaction(trans, root);
1745 return 0;
1746}
1747
Christoph Hellwigb2950862008-12-02 09:54:17 -05001748static int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04001749 struct extent_state *state, int uptodate)
1750{
Chris Mason8b62b722009-09-02 16:53:46 -04001751 ClearPagePrivate2(page);
Chris Mason211f90e2008-07-18 11:56:15 -04001752 return btrfs_finish_ordered_io(page->mapping->host, start, end);
1753}
1754
Chris Masond352ac62008-09-29 15:18:18 -04001755/*
1756 * When IO fails, either with EIO or csum verification fails, we
1757 * try other mirrors that might have a good copy of the data. This
1758 * io_failure_record is used to record state as we go through all the
1759 * mirrors. If another mirror has good data, the page is set up to date
1760 * and things continue. If a good mirror can't be found, the original
1761 * bio end_io callback is called to indicate things have failed.
1762 */
Chris Mason7e383262008-04-09 16:28:12 -04001763struct io_failure_record {
1764 struct page *page;
1765 u64 start;
1766 u64 len;
1767 u64 logical;
Chris Masond20f7042008-12-08 16:58:54 -05001768 unsigned long bio_flags;
Chris Mason7e383262008-04-09 16:28:12 -04001769 int last_mirror;
1770};
1771
Christoph Hellwigb2950862008-12-02 09:54:17 -05001772static int btrfs_io_failed_hook(struct bio *failed_bio,
Chris Mason1259ab72008-05-12 13:39:03 -04001773 struct page *page, u64 start, u64 end,
1774 struct extent_state *state)
Chris Mason7e383262008-04-09 16:28:12 -04001775{
1776 struct io_failure_record *failrec = NULL;
1777 u64 private;
1778 struct extent_map *em;
1779 struct inode *inode = page->mapping->host;
1780 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Chris Mason3b951512008-04-17 11:29:12 -04001781 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason7e383262008-04-09 16:28:12 -04001782 struct bio *bio;
1783 int num_copies;
1784 int ret;
Chris Mason1259ab72008-05-12 13:39:03 -04001785 int rw;
Chris Mason7e383262008-04-09 16:28:12 -04001786 u64 logical;
1787
1788 ret = get_state_private(failure_tree, start, &private);
1789 if (ret) {
Chris Mason7e383262008-04-09 16:28:12 -04001790 failrec = kmalloc(sizeof(*failrec), GFP_NOFS);
1791 if (!failrec)
1792 return -ENOMEM;
1793 failrec->start = start;
1794 failrec->len = end - start + 1;
1795 failrec->last_mirror = 0;
Chris Masond20f7042008-12-08 16:58:54 -05001796 failrec->bio_flags = 0;
Chris Mason7e383262008-04-09 16:28:12 -04001797
Chris Mason890871b2009-09-02 16:24:52 -04001798 read_lock(&em_tree->lock);
Chris Mason3b951512008-04-17 11:29:12 -04001799 em = lookup_extent_mapping(em_tree, start, failrec->len);
1800 if (em->start > start || em->start + em->len < start) {
1801 free_extent_map(em);
1802 em = NULL;
1803 }
Chris Mason890871b2009-09-02 16:24:52 -04001804 read_unlock(&em_tree->lock);
Chris Mason7e383262008-04-09 16:28:12 -04001805
1806 if (!em || IS_ERR(em)) {
1807 kfree(failrec);
1808 return -EIO;
1809 }
1810 logical = start - em->start;
1811 logical = em->block_start + logical;
Chris Masond20f7042008-12-08 16:58:54 -05001812 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
1813 logical = em->block_start;
1814 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
1815 }
Chris Mason7e383262008-04-09 16:28:12 -04001816 failrec->logical = logical;
1817 free_extent_map(em);
1818 set_extent_bits(failure_tree, start, end, EXTENT_LOCKED |
1819 EXTENT_DIRTY, GFP_NOFS);
Chris Mason587f7702008-04-11 12:16:46 -04001820 set_state_private(failure_tree, start,
1821 (u64)(unsigned long)failrec);
Chris Mason7e383262008-04-09 16:28:12 -04001822 } else {
Chris Mason587f7702008-04-11 12:16:46 -04001823 failrec = (struct io_failure_record *)(unsigned long)private;
Chris Mason7e383262008-04-09 16:28:12 -04001824 }
1825 num_copies = btrfs_num_copies(
1826 &BTRFS_I(inode)->root->fs_info->mapping_tree,
1827 failrec->logical, failrec->len);
1828 failrec->last_mirror++;
1829 if (!state) {
Chris Masoncad321a2008-12-17 14:51:42 -05001830 spin_lock(&BTRFS_I(inode)->io_tree.lock);
Chris Mason7e383262008-04-09 16:28:12 -04001831 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
1832 failrec->start,
1833 EXTENT_LOCKED);
1834 if (state && state->start != failrec->start)
1835 state = NULL;
Chris Masoncad321a2008-12-17 14:51:42 -05001836 spin_unlock(&BTRFS_I(inode)->io_tree.lock);
Chris Mason7e383262008-04-09 16:28:12 -04001837 }
1838 if (!state || failrec->last_mirror > num_copies) {
1839 set_state_private(failure_tree, failrec->start, 0);
1840 clear_extent_bits(failure_tree, failrec->start,
1841 failrec->start + failrec->len - 1,
1842 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
1843 kfree(failrec);
1844 return -EIO;
1845 }
1846 bio = bio_alloc(GFP_NOFS, 1);
1847 bio->bi_private = state;
1848 bio->bi_end_io = failed_bio->bi_end_io;
1849 bio->bi_sector = failrec->logical >> 9;
1850 bio->bi_bdev = failed_bio->bi_bdev;
Chris Masone1c4b742008-04-22 13:26:46 -04001851 bio->bi_size = 0;
Chris Masond20f7042008-12-08 16:58:54 -05001852
Chris Mason7e383262008-04-09 16:28:12 -04001853 bio_add_page(bio, page, failrec->len, start - page_offset(page));
Chris Mason1259ab72008-05-12 13:39:03 -04001854 if (failed_bio->bi_rw & (1 << BIO_RW))
1855 rw = WRITE;
1856 else
1857 rw = READ;
1858
1859 BTRFS_I(inode)->io_tree.ops->submit_bio_hook(inode, rw, bio,
Chris Masonc8b97812008-10-29 14:49:59 -04001860 failrec->last_mirror,
Chris Masond20f7042008-12-08 16:58:54 -05001861 failrec->bio_flags);
Chris Mason1259ab72008-05-12 13:39:03 -04001862 return 0;
1863}
1864
Chris Masond352ac62008-09-29 15:18:18 -04001865/*
1866 * each time an IO finishes, we do a fast check in the IO failure tree
1867 * to see if we need to process or clean up an io_failure_record
1868 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001869static int btrfs_clean_io_failures(struct inode *inode, u64 start)
Chris Mason1259ab72008-05-12 13:39:03 -04001870{
1871 u64 private;
1872 u64 private_failure;
1873 struct io_failure_record *failure;
1874 int ret;
1875
1876 private = 0;
1877 if (count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
1878 (u64)-1, 1, EXTENT_DIRTY)) {
1879 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree,
1880 start, &private_failure);
1881 if (ret == 0) {
1882 failure = (struct io_failure_record *)(unsigned long)
1883 private_failure;
1884 set_state_private(&BTRFS_I(inode)->io_failure_tree,
1885 failure->start, 0);
1886 clear_extent_bits(&BTRFS_I(inode)->io_failure_tree,
1887 failure->start,
1888 failure->start + failure->len - 1,
1889 EXTENT_DIRTY | EXTENT_LOCKED,
1890 GFP_NOFS);
1891 kfree(failure);
1892 }
1893 }
Chris Mason7e383262008-04-09 16:28:12 -04001894 return 0;
1895}
1896
Chris Masond352ac62008-09-29 15:18:18 -04001897/*
1898 * when reads are done, we need to check csums to verify the data is correct
1899 * if there's a match, we allow the bio to finish. If not, we go through
1900 * the io_failure_record routines to find good copies
1901 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001902static int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason70dec802008-01-29 09:59:12 -05001903 struct extent_state *state)
Chris Mason07157aa2007-08-30 08:50:51 -04001904{
Chris Mason35ebb932007-10-30 16:56:53 -04001905 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -04001906 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05001907 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -04001908 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -05001909 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -04001910 int ret;
Chris Masonff79f812007-10-15 16:22:25 -04001911 struct btrfs_root *root = BTRFS_I(inode)->root;
1912 u32 csum = ~(u32)0;
Chris Masond1310b22008-01-24 16:13:08 -05001913
Chris Masond20f7042008-12-08 16:58:54 -05001914 if (PageChecked(page)) {
1915 ClearPageChecked(page);
1916 goto good;
1917 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001918
1919 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Chris Masonb6cda9b2007-12-14 15:30:32 -05001920 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05001921
Yan Zheng17d217f2008-12-12 10:03:38 -05001922 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04001923 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001924 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM,
1925 GFP_NOFS);
1926 return 0;
1927 }
1928
Yanc2e639f2008-02-04 08:57:25 -05001929 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -05001930 private = state->private;
1931 ret = 0;
1932 } else {
1933 ret = get_state_private(io_tree, start, &private);
1934 }
Chris Mason9ab86c82009-01-07 09:48:51 -05001935 kaddr = kmap_atomic(page, KM_USER0);
Chris Masond3977122009-01-05 21:25:51 -05001936 if (ret)
Chris Mason07157aa2007-08-30 08:50:51 -04001937 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05001938
Chris Masonff79f812007-10-15 16:22:25 -04001939 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
1940 btrfs_csum_final(csum, (char *)&csum);
Chris Masond3977122009-01-05 21:25:51 -05001941 if (csum != private)
Chris Mason07157aa2007-08-30 08:50:51 -04001942 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05001943
Chris Mason9ab86c82009-01-07 09:48:51 -05001944 kunmap_atomic(kaddr, KM_USER0);
Chris Masond20f7042008-12-08 16:58:54 -05001945good:
Chris Mason7e383262008-04-09 16:28:12 -04001946 /* if the io failure tree for this inode is non-empty,
1947 * check to see if we've recovered from a failed IO
1948 */
Chris Mason1259ab72008-05-12 13:39:03 -04001949 btrfs_clean_io_failures(inode, start);
Chris Mason07157aa2007-08-30 08:50:51 -04001950 return 0;
1951
1952zeroit:
Chris Mason193f2842009-04-27 07:29:05 -04001953 if (printk_ratelimit()) {
1954 printk(KERN_INFO "btrfs csum failed ino %lu off %llu csum %u "
1955 "private %llu\n", page->mapping->host->i_ino,
1956 (unsigned long long)start, csum,
1957 (unsigned long long)private);
1958 }
Chris Masondb945352007-10-15 16:15:53 -04001959 memset(kaddr + offset, 1, end - start + 1);
1960 flush_dcache_page(page);
Chris Mason9ab86c82009-01-07 09:48:51 -05001961 kunmap_atomic(kaddr, KM_USER0);
Chris Mason3b951512008-04-17 11:29:12 -04001962 if (private == 0)
1963 return 0;
Chris Mason7e383262008-04-09 16:28:12 -04001964 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -04001965}
Chris Masonb888db22007-08-27 16:49:44 -04001966
Josef Bacik7b128762008-07-24 12:17:14 -04001967/*
1968 * This creates an orphan entry for the given inode in case something goes
1969 * wrong in the middle of an unlink/truncate.
1970 */
1971int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
1972{
1973 struct btrfs_root *root = BTRFS_I(inode)->root;
1974 int ret = 0;
1975
Yanbcc63ab2008-07-30 16:29:20 -04001976 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001977
1978 /* already on the orphan list, we're good */
1979 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
Yanbcc63ab2008-07-30 16:29:20 -04001980 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001981 return 0;
1982 }
1983
1984 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
1985
Yanbcc63ab2008-07-30 16:29:20 -04001986 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001987
1988 /*
1989 * insert an orphan item to track this unlinked/truncated file
1990 */
1991 ret = btrfs_insert_orphan_item(trans, root, inode->i_ino);
1992
1993 return ret;
1994}
1995
1996/*
1997 * We have done the truncate/delete so we can go ahead and remove the orphan
1998 * item for this particular inode.
1999 */
2000int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode)
2001{
2002 struct btrfs_root *root = BTRFS_I(inode)->root;
2003 int ret = 0;
2004
Yanbcc63ab2008-07-30 16:29:20 -04002005 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002006
2007 if (list_empty(&BTRFS_I(inode)->i_orphan)) {
Yanbcc63ab2008-07-30 16:29:20 -04002008 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002009 return 0;
2010 }
2011
2012 list_del_init(&BTRFS_I(inode)->i_orphan);
2013 if (!trans) {
Yanbcc63ab2008-07-30 16:29:20 -04002014 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002015 return 0;
2016 }
2017
Yanbcc63ab2008-07-30 16:29:20 -04002018 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002019
2020 ret = btrfs_del_orphan_item(trans, root, inode->i_ino);
2021
2022 return ret;
2023}
2024
2025/*
2026 * this cleans up any orphans that may be left on the list from the last use
2027 * of this root.
2028 */
2029void btrfs_orphan_cleanup(struct btrfs_root *root)
2030{
2031 struct btrfs_path *path;
2032 struct extent_buffer *leaf;
2033 struct btrfs_item *item;
2034 struct btrfs_key key, found_key;
2035 struct btrfs_trans_handle *trans;
2036 struct inode *inode;
2037 int ret = 0, nr_unlink = 0, nr_truncate = 0;
2038
Josef Bacik7b128762008-07-24 12:17:14 -04002039 path = btrfs_alloc_path();
2040 if (!path)
2041 return;
2042 path->reada = -1;
2043
2044 key.objectid = BTRFS_ORPHAN_OBJECTID;
2045 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
2046 key.offset = (u64)-1;
2047
Josef Bacik7b128762008-07-24 12:17:14 -04002048
2049 while (1) {
2050 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2051 if (ret < 0) {
2052 printk(KERN_ERR "Error searching slot for orphan: %d"
2053 "\n", ret);
2054 break;
2055 }
2056
2057 /*
2058 * if ret == 0 means we found what we were searching for, which
2059 * is weird, but possible, so only screw with path if we didnt
2060 * find the key and see if we have stuff that matches
2061 */
2062 if (ret > 0) {
2063 if (path->slots[0] == 0)
2064 break;
2065 path->slots[0]--;
2066 }
2067
2068 /* pull out the item */
2069 leaf = path->nodes[0];
2070 item = btrfs_item_nr(leaf, path->slots[0]);
2071 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2072
2073 /* make sure the item matches what we want */
2074 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
2075 break;
2076 if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY)
2077 break;
2078
2079 /* release the path since we're done with it */
2080 btrfs_release_path(root, path);
2081
2082 /*
2083 * this is where we are basically btrfs_lookup, without the
2084 * crossing root thing. we store the inode number in the
2085 * offset of the orphan item.
2086 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002087 found_key.objectid = found_key.offset;
2088 found_key.type = BTRFS_INODE_ITEM_KEY;
2089 found_key.offset = 0;
2090 inode = btrfs_iget(root->fs_info->sb, &found_key, root);
2091 if (IS_ERR(inode))
Josef Bacik7b128762008-07-24 12:17:14 -04002092 break;
2093
Josef Bacik7b128762008-07-24 12:17:14 -04002094 /*
2095 * add this inode to the orphan list so btrfs_orphan_del does
2096 * the proper thing when we hit it
2097 */
Yanbcc63ab2008-07-30 16:29:20 -04002098 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002099 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
Yanbcc63ab2008-07-30 16:29:20 -04002100 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002101
2102 /*
2103 * if this is a bad inode, means we actually succeeded in
2104 * removing the inode, but not the orphan record, which means
2105 * we need to manually delete the orphan since iput will just
2106 * do a destroy_inode
2107 */
2108 if (is_bad_inode(inode)) {
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002109 trans = btrfs_start_transaction(root, 1);
Josef Bacik7b128762008-07-24 12:17:14 -04002110 btrfs_orphan_del(trans, inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002111 btrfs_end_transaction(trans, root);
Josef Bacik7b128762008-07-24 12:17:14 -04002112 iput(inode);
2113 continue;
2114 }
2115
2116 /* if we have links, this was a truncate, lets do that */
2117 if (inode->i_nlink) {
2118 nr_truncate++;
2119 btrfs_truncate(inode);
2120 } else {
2121 nr_unlink++;
2122 }
2123
2124 /* this will do delete_inode and everything for us */
2125 iput(inode);
2126 }
2127
2128 if (nr_unlink)
2129 printk(KERN_INFO "btrfs: unlinked %d orphans\n", nr_unlink);
2130 if (nr_truncate)
2131 printk(KERN_INFO "btrfs: truncated %d orphans\n", nr_truncate);
2132
2133 btrfs_free_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04002134}
2135
Chris Masond352ac62008-09-29 15:18:18 -04002136/*
Chris Mason46a53cc2009-04-27 11:47:50 -04002137 * very simple check to peek ahead in the leaf looking for xattrs. If we
2138 * don't find any xattrs, we know there can't be any acls.
2139 *
2140 * slot is the slot the inode is in, objectid is the objectid of the inode
2141 */
2142static noinline int acls_after_inode_item(struct extent_buffer *leaf,
2143 int slot, u64 objectid)
2144{
2145 u32 nritems = btrfs_header_nritems(leaf);
2146 struct btrfs_key found_key;
2147 int scanned = 0;
2148
2149 slot++;
2150 while (slot < nritems) {
2151 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2152
2153 /* we found a different objectid, there must not be acls */
2154 if (found_key.objectid != objectid)
2155 return 0;
2156
2157 /* we found an xattr, assume we've got an acl */
2158 if (found_key.type == BTRFS_XATTR_ITEM_KEY)
2159 return 1;
2160
2161 /*
2162 * we found a key greater than an xattr key, there can't
2163 * be any acls later on
2164 */
2165 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
2166 return 0;
2167
2168 slot++;
2169 scanned++;
2170
2171 /*
2172 * it goes inode, inode backrefs, xattrs, extents,
2173 * so if there are a ton of hard links to an inode there can
2174 * be a lot of backrefs. Don't waste time searching too hard,
2175 * this is just an optimization
2176 */
2177 if (scanned >= 8)
2178 break;
2179 }
2180 /* we hit the end of the leaf before we found an xattr or
2181 * something larger than an xattr. We have to assume the inode
2182 * has acls
2183 */
2184 return 1;
2185}
2186
2187/*
Chris Masond352ac62008-09-29 15:18:18 -04002188 * read an inode from the btree into the in-memory inode
2189 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002190static void btrfs_read_locked_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002191{
2192 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002193 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002194 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -04002195 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -04002196 struct btrfs_root *root = BTRFS_I(inode)->root;
2197 struct btrfs_key location;
Chris Mason46a53cc2009-04-27 11:47:50 -04002198 int maybe_acls;
Chris Mason39279cc2007-06-12 06:35:45 -04002199 u64 alloc_group_block;
Josef Bacik618e21d2007-07-11 10:18:17 -04002200 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04002201 int ret;
2202
2203 path = btrfs_alloc_path();
2204 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -04002205 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05002206
Chris Mason39279cc2007-06-12 06:35:45 -04002207 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002208 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04002209 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -04002210
Chris Mason5f39d392007-10-15 16:14:19 -04002211 leaf = path->nodes[0];
2212 inode_item = btrfs_item_ptr(leaf, path->slots[0],
2213 struct btrfs_inode_item);
2214
2215 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
2216 inode->i_nlink = btrfs_inode_nlink(leaf, inode_item);
2217 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
2218 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
Chris Masondbe674a2008-07-17 12:54:05 -04002219 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002220
2221 tspec = btrfs_inode_atime(inode_item);
2222 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2223 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2224
2225 tspec = btrfs_inode_mtime(inode_item);
2226 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2227 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2228
2229 tspec = btrfs_inode_ctime(inode_item);
2230 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2231 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2232
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002233 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04002234 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Chris Masonc3027eb2008-12-08 16:40:21 -05002235 BTRFS_I(inode)->sequence = btrfs_inode_sequence(leaf, inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04002236 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04002237 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002238 rdev = btrfs_inode_rdev(leaf, inode_item);
2239
Josef Bacikaec74772008-07-24 12:12:38 -04002240 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05002241 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Josef Bacikaec74772008-07-24 12:12:38 -04002242
Chris Mason5f39d392007-10-15 16:14:19 -04002243 alloc_group_block = btrfs_inode_block_group(leaf, inode_item);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002244
Chris Mason46a53cc2009-04-27 11:47:50 -04002245 /*
2246 * try to precache a NULL acl entry for files that don't have
2247 * any xattrs or acls
2248 */
2249 maybe_acls = acls_after_inode_item(leaf, path->slots[0], inode->i_ino);
Al Viro72c04902009-06-24 16:58:48 -04002250 if (!maybe_acls)
2251 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04002252
Yan Zhengd2fb3432008-12-11 16:30:39 -05002253 BTRFS_I(inode)->block_group = btrfs_find_block_group(root, 0,
2254 alloc_group_block, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002255 btrfs_free_path(path);
2256 inode_item = NULL;
2257
Chris Mason39279cc2007-06-12 06:35:45 -04002258 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04002259 case S_IFREG:
2260 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04002261 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05002262 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04002263 inode->i_fop = &btrfs_file_operations;
2264 inode->i_op = &btrfs_file_inode_operations;
2265 break;
2266 case S_IFDIR:
2267 inode->i_fop = &btrfs_dir_file_operations;
2268 if (root == root->fs_info->tree_root)
2269 inode->i_op = &btrfs_dir_ro_inode_operations;
2270 else
2271 inode->i_op = &btrfs_dir_inode_operations;
2272 break;
2273 case S_IFLNK:
2274 inode->i_op = &btrfs_symlink_inode_operations;
2275 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04002276 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04002277 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04002278 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05002279 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04002280 init_special_inode(inode, inode->i_mode, rdev);
2281 break;
Chris Mason39279cc2007-06-12 06:35:45 -04002282 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002283
2284 btrfs_update_iflags(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002285 return;
2286
2287make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04002288 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002289 make_bad_inode(inode);
2290}
2291
Chris Masond352ac62008-09-29 15:18:18 -04002292/*
2293 * given a leaf and an inode, copy the inode fields into the leaf
2294 */
Chris Masone02119d2008-09-05 16:13:11 -04002295static void fill_inode_item(struct btrfs_trans_handle *trans,
2296 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04002297 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04002298 struct inode *inode)
2299{
Chris Mason5f39d392007-10-15 16:14:19 -04002300 btrfs_set_inode_uid(leaf, item, inode->i_uid);
2301 btrfs_set_inode_gid(leaf, item, inode->i_gid);
Chris Masondbe674a2008-07-17 12:54:05 -04002302 btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size);
Chris Mason5f39d392007-10-15 16:14:19 -04002303 btrfs_set_inode_mode(leaf, item, inode->i_mode);
2304 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
2305
2306 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
2307 inode->i_atime.tv_sec);
2308 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
2309 inode->i_atime.tv_nsec);
2310
2311 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
2312 inode->i_mtime.tv_sec);
2313 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
2314 inode->i_mtime.tv_nsec);
2315
2316 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
2317 inode->i_ctime.tv_sec);
2318 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
2319 inode->i_ctime.tv_nsec);
2320
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002321 btrfs_set_inode_nbytes(leaf, item, inode_get_bytes(inode));
Chris Masone02119d2008-09-05 16:13:11 -04002322 btrfs_set_inode_generation(leaf, item, BTRFS_I(inode)->generation);
Chris Masonc3027eb2008-12-08 16:40:21 -05002323 btrfs_set_inode_sequence(leaf, item, BTRFS_I(inode)->sequence);
Chris Masone02119d2008-09-05 16:13:11 -04002324 btrfs_set_inode_transid(leaf, item, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002325 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -05002326 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Yan Zhengd2fb3432008-12-11 16:30:39 -05002327 btrfs_set_inode_block_group(leaf, item, BTRFS_I(inode)->block_group);
Chris Mason39279cc2007-06-12 06:35:45 -04002328}
2329
Chris Masond352ac62008-09-29 15:18:18 -04002330/*
2331 * copy everything in the in-memory inode into the btree.
2332 */
Chris Masond3977122009-01-05 21:25:51 -05002333noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
2334 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002335{
2336 struct btrfs_inode_item *inode_item;
2337 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002338 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002339 int ret;
2340
2341 path = btrfs_alloc_path();
2342 BUG_ON(!path);
Chris Masonb9473432009-03-13 11:00:37 -04002343 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002344 ret = btrfs_lookup_inode(trans, root, path,
2345 &BTRFS_I(inode)->location, 1);
2346 if (ret) {
2347 if (ret > 0)
2348 ret = -ENOENT;
2349 goto failed;
2350 }
2351
Chris Masonb4ce94d2009-02-04 09:25:08 -05002352 btrfs_unlock_up_safe(path, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002353 leaf = path->nodes[0];
2354 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04002355 struct btrfs_inode_item);
2356
Chris Masone02119d2008-09-05 16:13:11 -04002357 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002358 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002359 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002360 ret = 0;
2361failed:
Chris Mason39279cc2007-06-12 06:35:45 -04002362 btrfs_free_path(path);
2363 return ret;
2364}
2365
2366
Chris Masond352ac62008-09-29 15:18:18 -04002367/*
2368 * unlink helper that gets used here in inode.c and in the tree logging
2369 * recovery code. It remove a link in a directory with a given name, and
2370 * also drops the back refs in the inode to the directory
2371 */
Chris Masone02119d2008-09-05 16:13:11 -04002372int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2373 struct btrfs_root *root,
2374 struct inode *dir, struct inode *inode,
2375 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04002376{
2377 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04002378 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002379 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002380 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04002381 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04002382 u64 index;
Chris Mason39279cc2007-06-12 06:35:45 -04002383
2384 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002385 if (!path) {
2386 ret = -ENOMEM;
2387 goto err;
2388 }
2389
Chris Masonb9473432009-03-13 11:00:37 -04002390 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002391 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
2392 name, name_len, -1);
2393 if (IS_ERR(di)) {
2394 ret = PTR_ERR(di);
2395 goto err;
2396 }
2397 if (!di) {
2398 ret = -ENOENT;
2399 goto err;
2400 }
Chris Mason5f39d392007-10-15 16:14:19 -04002401 leaf = path->nodes[0];
2402 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04002403 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04002404 if (ret)
2405 goto err;
Chris Mason39279cc2007-06-12 06:35:45 -04002406 btrfs_release_path(root, path);
2407
Josef Bacikaec74772008-07-24 12:12:38 -04002408 ret = btrfs_del_inode_ref(trans, root, name, name_len,
Chris Masone02119d2008-09-05 16:13:11 -04002409 inode->i_ino,
2410 dir->i_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04002411 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05002412 printk(KERN_INFO "btrfs failed to delete reference to %.*s, "
Josef Bacikaec74772008-07-24 12:12:38 -04002413 "inode %lu parent %lu\n", name_len, name,
Chris Masone02119d2008-09-05 16:13:11 -04002414 inode->i_ino, dir->i_ino);
Josef Bacikaec74772008-07-24 12:12:38 -04002415 goto err;
2416 }
2417
Chris Mason39279cc2007-06-12 06:35:45 -04002418 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
Josef Bacikaec74772008-07-24 12:12:38 -04002419 index, name, name_len, -1);
Chris Mason39279cc2007-06-12 06:35:45 -04002420 if (IS_ERR(di)) {
2421 ret = PTR_ERR(di);
2422 goto err;
2423 }
2424 if (!di) {
2425 ret = -ENOENT;
2426 goto err;
2427 }
2428 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason925baed2008-06-25 16:01:30 -04002429 btrfs_release_path(root, path);
Chris Mason39279cc2007-06-12 06:35:45 -04002430
Chris Masone02119d2008-09-05 16:13:11 -04002431 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
2432 inode, dir->i_ino);
Chris Mason49eb7e42008-09-11 15:53:12 -04002433 BUG_ON(ret != 0 && ret != -ENOENT);
Chris Masone02119d2008-09-05 16:13:11 -04002434
2435 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
2436 dir, index);
2437 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04002438err:
2439 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002440 if (ret)
2441 goto out;
2442
2443 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
2444 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
2445 btrfs_update_inode(trans, root, dir);
2446 btrfs_drop_nlink(inode);
2447 ret = btrfs_update_inode(trans, root, inode);
Chris Masone02119d2008-09-05 16:13:11 -04002448out:
Chris Mason39279cc2007-06-12 06:35:45 -04002449 return ret;
2450}
2451
2452static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
2453{
2454 struct btrfs_root *root;
2455 struct btrfs_trans_handle *trans;
Josef Bacik7b128762008-07-24 12:17:14 -04002456 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002457 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05002458 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002459
2460 root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05002461
Chris Mason39279cc2007-06-12 06:35:45 -04002462 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002463
Chris Mason39279cc2007-06-12 06:35:45 -04002464 btrfs_set_trans_block_group(trans, dir);
Chris Mason12fcfd22009-03-24 10:24:20 -04002465
2466 btrfs_record_unlink_dir(trans, dir, dentry->d_inode, 0);
2467
Chris Masone02119d2008-09-05 16:13:11 -04002468 ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
2469 dentry->d_name.name, dentry->d_name.len);
Josef Bacik7b128762008-07-24 12:17:14 -04002470
2471 if (inode->i_nlink == 0)
2472 ret = btrfs_orphan_add(trans, inode);
2473
Chris Masond3c2fdc2007-09-17 10:58:06 -04002474 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -04002475
Chris Mason89ce8a62008-06-25 16:01:31 -04002476 btrfs_end_transaction_throttle(trans, root);
Chris Masond3c2fdc2007-09-17 10:58:06 -04002477 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002478 return ret;
2479}
2480
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002481int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
2482 struct btrfs_root *root,
2483 struct inode *dir, u64 objectid,
2484 const char *name, int name_len)
2485{
2486 struct btrfs_path *path;
2487 struct extent_buffer *leaf;
2488 struct btrfs_dir_item *di;
2489 struct btrfs_key key;
2490 u64 index;
2491 int ret;
2492
2493 path = btrfs_alloc_path();
2494 if (!path)
2495 return -ENOMEM;
2496
2497 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
2498 name, name_len, -1);
2499 BUG_ON(!di || IS_ERR(di));
2500
2501 leaf = path->nodes[0];
2502 btrfs_dir_item_key_to_cpu(leaf, di, &key);
2503 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
2504 ret = btrfs_delete_one_dir_name(trans, root, path, di);
2505 BUG_ON(ret);
2506 btrfs_release_path(root, path);
2507
2508 ret = btrfs_del_root_ref(trans, root->fs_info->tree_root,
2509 objectid, root->root_key.objectid,
2510 dir->i_ino, &index, name, name_len);
2511 if (ret < 0) {
2512 BUG_ON(ret != -ENOENT);
2513 di = btrfs_search_dir_index_item(root, path, dir->i_ino,
2514 name, name_len);
2515 BUG_ON(!di || IS_ERR(di));
2516
2517 leaf = path->nodes[0];
2518 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2519 btrfs_release_path(root, path);
2520 index = key.offset;
2521 }
2522
2523 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
2524 index, name, name_len, -1);
2525 BUG_ON(!di || IS_ERR(di));
2526
2527 leaf = path->nodes[0];
2528 btrfs_dir_item_key_to_cpu(leaf, di, &key);
2529 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
2530 ret = btrfs_delete_one_dir_name(trans, root, path, di);
2531 BUG_ON(ret);
2532 btrfs_release_path(root, path);
2533
2534 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
2535 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
2536 ret = btrfs_update_inode(trans, root, dir);
2537 BUG_ON(ret);
2538 dir->i_sb->s_dirt = 1;
2539
2540 btrfs_free_path(path);
2541 return 0;
2542}
2543
Chris Mason39279cc2007-06-12 06:35:45 -04002544static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
2545{
2546 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002547 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002548 int ret;
2549 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002550 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -05002551 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002552
Chris Mason3394e162008-11-17 20:42:26 -05002553 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002554 inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan134d4512007-10-25 15:49:25 -04002555 return -ENOTEMPTY;
2556
Chris Mason39279cc2007-06-12 06:35:45 -04002557 trans = btrfs_start_transaction(root, 1);
2558 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -04002559
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002560 if (unlikely(inode->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
2561 err = btrfs_unlink_subvol(trans, root, dir,
2562 BTRFS_I(inode)->location.objectid,
2563 dentry->d_name.name,
2564 dentry->d_name.len);
2565 goto out;
2566 }
2567
Josef Bacik7b128762008-07-24 12:17:14 -04002568 err = btrfs_orphan_add(trans, inode);
2569 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002570 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04002571
Chris Mason39279cc2007-06-12 06:35:45 -04002572 /* now the directory is empty */
Chris Masone02119d2008-09-05 16:13:11 -04002573 err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
2574 dentry->d_name.name, dentry->d_name.len);
Chris Masond3977122009-01-05 21:25:51 -05002575 if (!err)
Chris Masondbe674a2008-07-17 12:54:05 -04002576 btrfs_i_size_write(inode, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002577out:
Chris Masond3c2fdc2007-09-17 10:58:06 -04002578 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04002579 ret = btrfs_end_transaction_throttle(trans, root);
Chris Masond3c2fdc2007-09-17 10:58:06 -04002580 btrfs_btree_balance_dirty(root, nr);
Chris Mason39544012007-12-12 14:38:19 -05002581
Chris Mason39279cc2007-06-12 06:35:45 -04002582 if (ret && !err)
2583 err = ret;
2584 return err;
2585}
2586
Chris Masond20f7042008-12-08 16:58:54 -05002587#if 0
Chris Mason39279cc2007-06-12 06:35:45 -04002588/*
Chris Mason323ac952008-10-01 19:05:46 -04002589 * when truncating bytes in a file, it is possible to avoid reading
2590 * the leaves that contain only checksum items. This can be the
2591 * majority of the IO required to delete a large file, but it must
2592 * be done carefully.
2593 *
2594 * The keys in the level just above the leaves are checked to make sure
2595 * the lowest key in a given leaf is a csum key, and starts at an offset
2596 * after the new size.
2597 *
2598 * Then the key for the next leaf is checked to make sure it also has
2599 * a checksum item for the same file. If it does, we know our target leaf
2600 * contains only checksum items, and it can be safely freed without reading
2601 * it.
2602 *
2603 * This is just an optimization targeted at large files. It may do
2604 * nothing. It will return 0 unless things went badly.
2605 */
2606static noinline int drop_csum_leaves(struct btrfs_trans_handle *trans,
2607 struct btrfs_root *root,
2608 struct btrfs_path *path,
2609 struct inode *inode, u64 new_size)
2610{
2611 struct btrfs_key key;
2612 int ret;
2613 int nritems;
2614 struct btrfs_key found_key;
2615 struct btrfs_key other_key;
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002616 struct btrfs_leaf_ref *ref;
2617 u64 leaf_gen;
2618 u64 leaf_start;
Chris Mason323ac952008-10-01 19:05:46 -04002619
2620 path->lowest_level = 1;
2621 key.objectid = inode->i_ino;
2622 key.type = BTRFS_CSUM_ITEM_KEY;
2623 key.offset = new_size;
2624again:
2625 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
2626 if (ret < 0)
2627 goto out;
2628
2629 if (path->nodes[1] == NULL) {
2630 ret = 0;
2631 goto out;
2632 }
2633 ret = 0;
2634 btrfs_node_key_to_cpu(path->nodes[1], &found_key, path->slots[1]);
2635 nritems = btrfs_header_nritems(path->nodes[1]);
2636
2637 if (!nritems)
2638 goto out;
2639
2640 if (path->slots[1] >= nritems)
2641 goto next_node;
2642
2643 /* did we find a key greater than anything we want to delete? */
2644 if (found_key.objectid > inode->i_ino ||
2645 (found_key.objectid == inode->i_ino && found_key.type > key.type))
2646 goto out;
2647
2648 /* we check the next key in the node to make sure the leave contains
2649 * only checksum items. This comparison doesn't work if our
2650 * leaf is the last one in the node
2651 */
2652 if (path->slots[1] + 1 >= nritems) {
2653next_node:
2654 /* search forward from the last key in the node, this
2655 * will bring us into the next node in the tree
2656 */
2657 btrfs_node_key_to_cpu(path->nodes[1], &found_key, nritems - 1);
2658
2659 /* unlikely, but we inc below, so check to be safe */
2660 if (found_key.offset == (u64)-1)
2661 goto out;
2662
2663 /* search_forward needs a path with locks held, do the
2664 * search again for the original key. It is possible
2665 * this will race with a balance and return a path that
2666 * we could modify, but this drop is just an optimization
2667 * and is allowed to miss some leaves.
2668 */
2669 btrfs_release_path(root, path);
2670 found_key.offset++;
2671
2672 /* setup a max key for search_forward */
2673 other_key.offset = (u64)-1;
2674 other_key.type = key.type;
2675 other_key.objectid = key.objectid;
2676
2677 path->keep_locks = 1;
2678 ret = btrfs_search_forward(root, &found_key, &other_key,
2679 path, 0, 0);
2680 path->keep_locks = 0;
2681 if (ret || found_key.objectid != key.objectid ||
2682 found_key.type != key.type) {
2683 ret = 0;
2684 goto out;
2685 }
2686
2687 key.offset = found_key.offset;
2688 btrfs_release_path(root, path);
2689 cond_resched();
2690 goto again;
2691 }
2692
2693 /* we know there's one more slot after us in the tree,
2694 * read that key so we can verify it is also a checksum item
2695 */
2696 btrfs_node_key_to_cpu(path->nodes[1], &other_key, path->slots[1] + 1);
2697
2698 if (found_key.objectid < inode->i_ino)
2699 goto next_key;
2700
2701 if (found_key.type != key.type || found_key.offset < new_size)
2702 goto next_key;
2703
2704 /*
2705 * if the key for the next leaf isn't a csum key from this objectid,
2706 * we can't be sure there aren't good items inside this leaf.
2707 * Bail out
2708 */
2709 if (other_key.objectid != inode->i_ino || other_key.type != key.type)
2710 goto out;
2711
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002712 leaf_start = btrfs_node_blockptr(path->nodes[1], path->slots[1]);
2713 leaf_gen = btrfs_node_ptr_generation(path->nodes[1], path->slots[1]);
Chris Mason323ac952008-10-01 19:05:46 -04002714 /*
2715 * it is safe to delete this leaf, it contains only
2716 * csum items from this inode at an offset >= new_size
2717 */
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002718 ret = btrfs_del_leaf(trans, root, path, leaf_start);
Chris Mason323ac952008-10-01 19:05:46 -04002719 BUG_ON(ret);
2720
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002721 if (root->ref_cows && leaf_gen < trans->transid) {
2722 ref = btrfs_alloc_leaf_ref(root, 0);
2723 if (ref) {
2724 ref->root_gen = root->root_key.offset;
2725 ref->bytenr = leaf_start;
2726 ref->owner = 0;
2727 ref->generation = leaf_gen;
2728 ref->nritems = 0;
2729
Chris Masonbd56b302009-02-04 09:27:02 -05002730 btrfs_sort_leaf_ref(ref);
2731
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002732 ret = btrfs_add_leaf_ref(root, ref, 0);
2733 WARN_ON(ret);
2734 btrfs_free_leaf_ref(root, ref);
2735 } else {
2736 WARN_ON(1);
2737 }
2738 }
Chris Mason323ac952008-10-01 19:05:46 -04002739next_key:
2740 btrfs_release_path(root, path);
2741
2742 if (other_key.objectid == inode->i_ino &&
2743 other_key.type == key.type && other_key.offset > key.offset) {
2744 key.offset = other_key.offset;
2745 cond_resched();
2746 goto again;
2747 }
2748 ret = 0;
2749out:
2750 /* fixup any changes we've made to the path */
2751 path->lowest_level = 0;
2752 path->keep_locks = 0;
2753 btrfs_release_path(root, path);
2754 return ret;
2755}
2756
Chris Masond20f7042008-12-08 16:58:54 -05002757#endif
2758
Chris Mason323ac952008-10-01 19:05:46 -04002759/*
Chris Mason39279cc2007-06-12 06:35:45 -04002760 * this can truncate away extent items, csum items and directory items.
2761 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04002762 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04002763 *
2764 * csum items that cross the new i_size are truncated to the new size
2765 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04002766 *
2767 * min_type is the minimum key type to truncate down to. If set to 0, this
2768 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04002769 */
Chris Masone02119d2008-09-05 16:13:11 -04002770noinline int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
2771 struct btrfs_root *root,
2772 struct inode *inode,
2773 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04002774{
2775 int ret;
2776 struct btrfs_path *path;
2777 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04002778 struct btrfs_key found_key;
Chris Mason06d9a8d2009-02-04 09:30:58 -05002779 u32 found_type = (u8)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04002780 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002781 struct btrfs_file_extent_item *fi;
2782 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04002783 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002784 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002785 u64 item_end = 0;
2786 int found_extent;
2787 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05002788 int pending_del_nr = 0;
2789 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04002790 int extent_type = -1;
Chris Mason771ed682008-11-06 22:02:51 -05002791 int encoding;
Chris Mason3b951512008-04-17 11:29:12 -04002792 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002793
Chris Masone02119d2008-09-05 16:13:11 -04002794 if (root->ref_cows)
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002795 btrfs_drop_extent_cache(inode, new_size & (~mask), (u64)-1, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002796 path = btrfs_alloc_path();
2797 BUG_ON(!path);
Julia Lawall33c17ad2009-07-22 16:49:01 -04002798 path->reada = -1;
Chris Mason5f39d392007-10-15 16:14:19 -04002799
Chris Mason39279cc2007-06-12 06:35:45 -04002800 /* FIXME, add redo link to tree so we don't leak on crash */
2801 key.objectid = inode->i_ino;
2802 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04002803 key.type = (u8)-1;
2804
Chris Mason85e21ba2008-01-29 15:11:36 -05002805search_again:
Chris Masonb9473432009-03-13 11:00:37 -04002806 path->leave_spinning = 1;
Chris Mason85e21ba2008-01-29 15:11:36 -05002807 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Chris Masond3977122009-01-05 21:25:51 -05002808 if (ret < 0)
Chris Mason85e21ba2008-01-29 15:11:36 -05002809 goto error;
Chris Masond3977122009-01-05 21:25:51 -05002810
Chris Mason85e21ba2008-01-29 15:11:36 -05002811 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04002812 /* there are no items in the tree for us to truncate, we're
2813 * done
2814 */
2815 if (path->slots[0] == 0) {
2816 ret = 0;
2817 goto error;
2818 }
Chris Mason85e21ba2008-01-29 15:11:36 -05002819 path->slots[0]--;
2820 }
2821
Chris Masond3977122009-01-05 21:25:51 -05002822 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04002823 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04002824 leaf = path->nodes[0];
2825 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2826 found_type = btrfs_key_type(&found_key);
Chris Mason771ed682008-11-06 22:02:51 -05002827 encoding = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002828
Chris Mason5f39d392007-10-15 16:14:19 -04002829 if (found_key.objectid != inode->i_ino)
Chris Mason39279cc2007-06-12 06:35:45 -04002830 break;
Chris Mason5f39d392007-10-15 16:14:19 -04002831
Chris Mason85e21ba2008-01-29 15:11:36 -05002832 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04002833 break;
2834
Chris Mason5f39d392007-10-15 16:14:19 -04002835 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04002836 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04002837 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04002838 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04002839 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05002840 encoding = btrfs_file_extent_compression(leaf, fi);
2841 encoding |= btrfs_file_extent_encryption(leaf, fi);
2842 encoding |= btrfs_file_extent_other_encoding(leaf, fi);
2843
Chris Mason179e29e2007-11-01 11:28:41 -04002844 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04002845 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04002846 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04002847 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04002848 item_end += btrfs_file_extent_inline_len(leaf,
Chris Masonc8b97812008-10-29 14:49:59 -04002849 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04002850 }
Yan008630c2007-11-07 13:31:09 -05002851 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04002852 }
Chris Masone02119d2008-09-05 16:13:11 -04002853 if (item_end < new_size) {
Chris Masond3977122009-01-05 21:25:51 -05002854 if (found_type == BTRFS_DIR_ITEM_KEY)
Chris Masonb888db22007-08-27 16:49:44 -04002855 found_type = BTRFS_INODE_ITEM_KEY;
Chris Masond3977122009-01-05 21:25:51 -05002856 else if (found_type == BTRFS_EXTENT_ITEM_KEY)
Chris Masond20f7042008-12-08 16:58:54 -05002857 found_type = BTRFS_EXTENT_DATA_KEY;
Chris Masond3977122009-01-05 21:25:51 -05002858 else if (found_type == BTRFS_EXTENT_DATA_KEY)
Chris Mason85e21ba2008-01-29 15:11:36 -05002859 found_type = BTRFS_XATTR_ITEM_KEY;
Chris Masond3977122009-01-05 21:25:51 -05002860 else if (found_type == BTRFS_XATTR_ITEM_KEY)
Chris Mason85e21ba2008-01-29 15:11:36 -05002861 found_type = BTRFS_INODE_REF_KEY;
Chris Masond3977122009-01-05 21:25:51 -05002862 else if (found_type)
Chris Masonb888db22007-08-27 16:49:44 -04002863 found_type--;
Chris Masond3977122009-01-05 21:25:51 -05002864 else
Chris Masonb888db22007-08-27 16:49:44 -04002865 break;
Yana61721d2007-09-17 11:08:38 -04002866 btrfs_set_key_type(&key, found_type);
Chris Mason85e21ba2008-01-29 15:11:36 -05002867 goto next;
Chris Mason39279cc2007-06-12 06:35:45 -04002868 }
Chris Masone02119d2008-09-05 16:13:11 -04002869 if (found_key.offset >= new_size)
Chris Mason39279cc2007-06-12 06:35:45 -04002870 del_item = 1;
2871 else
2872 del_item = 0;
2873 found_extent = 0;
2874
2875 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04002876 if (found_type != BTRFS_EXTENT_DATA_KEY)
2877 goto delete;
2878
2879 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04002880 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04002881 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05002882 if (!del_item && !encoding) {
Chris Masondb945352007-10-15 16:15:53 -04002883 u64 orig_num_bytes =
2884 btrfs_file_extent_num_bytes(leaf, fi);
Chris Masone02119d2008-09-05 16:13:11 -04002885 extent_num_bytes = new_size -
Chris Mason5f39d392007-10-15 16:14:19 -04002886 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -05002887 extent_num_bytes = extent_num_bytes &
2888 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04002889 btrfs_set_file_extent_num_bytes(leaf, fi,
2890 extent_num_bytes);
2891 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05002892 extent_num_bytes);
Chris Masone02119d2008-09-05 16:13:11 -04002893 if (root->ref_cows && extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002894 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04002895 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04002896 } else {
Chris Masondb945352007-10-15 16:15:53 -04002897 extent_num_bytes =
2898 btrfs_file_extent_disk_num_bytes(leaf,
2899 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002900 extent_offset = found_key.offset -
2901 btrfs_file_extent_offset(leaf, fi);
2902
Chris Mason39279cc2007-06-12 06:35:45 -04002903 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05002904 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04002905 if (extent_start != 0) {
2906 found_extent = 1;
Chris Masone02119d2008-09-05 16:13:11 -04002907 if (root->ref_cows)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002908 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04002909 }
2910 }
Chris Mason90692182008-02-08 13:49:28 -05002911 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04002912 /*
2913 * we can't truncate inline items that have had
2914 * special encodings
2915 */
2916 if (!del_item &&
2917 btrfs_file_extent_compression(leaf, fi) == 0 &&
2918 btrfs_file_extent_encryption(leaf, fi) == 0 &&
2919 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04002920 u32 size = new_size - found_key.offset;
2921
2922 if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002923 inode_sub_bytes(inode, item_end + 1 -
2924 new_size);
Chris Masone02119d2008-09-05 16:13:11 -04002925 }
2926 size =
2927 btrfs_file_extent_calc_inline_size(size);
Chris Mason90692182008-02-08 13:49:28 -05002928 ret = btrfs_truncate_item(trans, root, path,
Chris Masone02119d2008-09-05 16:13:11 -04002929 size, 1);
Chris Mason90692182008-02-08 13:49:28 -05002930 BUG_ON(ret);
Chris Masone02119d2008-09-05 16:13:11 -04002931 } else if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002932 inode_sub_bytes(inode, item_end + 1 -
2933 found_key.offset);
Chris Mason90692182008-02-08 13:49:28 -05002934 }
Chris Mason39279cc2007-06-12 06:35:45 -04002935 }
Chris Mason179e29e2007-11-01 11:28:41 -04002936delete:
Chris Mason39279cc2007-06-12 06:35:45 -04002937 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05002938 if (!pending_del_nr) {
2939 /* no pending yet, add ourselves */
2940 pending_del_slot = path->slots[0];
2941 pending_del_nr = 1;
2942 } else if (pending_del_nr &&
2943 path->slots[0] + 1 == pending_del_slot) {
2944 /* hop on the pending chunk */
2945 pending_del_nr++;
2946 pending_del_slot = path->slots[0];
2947 } else {
Chris Masond3977122009-01-05 21:25:51 -05002948 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05002949 }
Chris Mason39279cc2007-06-12 06:35:45 -04002950 } else {
2951 break;
2952 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002953 if (found_extent && root->ref_cows) {
Chris Masonb9473432009-03-13 11:00:37 -04002954 btrfs_set_path_blocking(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002955 ret = btrfs_free_extent(trans, root, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002956 extent_num_bytes, 0,
2957 btrfs_header_owner(leaf),
2958 inode->i_ino, extent_offset);
Chris Mason39279cc2007-06-12 06:35:45 -04002959 BUG_ON(ret);
2960 }
Chris Mason85e21ba2008-01-29 15:11:36 -05002961next:
2962 if (path->slots[0] == 0) {
2963 if (pending_del_nr)
2964 goto del_pending;
2965 btrfs_release_path(root, path);
Chris Mason06d9a8d2009-02-04 09:30:58 -05002966 if (found_type == BTRFS_INODE_ITEM_KEY)
2967 break;
Chris Mason85e21ba2008-01-29 15:11:36 -05002968 goto search_again;
2969 }
2970
2971 path->slots[0]--;
2972 if (pending_del_nr &&
2973 path->slots[0] + 1 != pending_del_slot) {
2974 struct btrfs_key debug;
2975del_pending:
2976 btrfs_item_key_to_cpu(path->nodes[0], &debug,
2977 pending_del_slot);
2978 ret = btrfs_del_items(trans, root, path,
2979 pending_del_slot,
2980 pending_del_nr);
2981 BUG_ON(ret);
2982 pending_del_nr = 0;
2983 btrfs_release_path(root, path);
Chris Mason06d9a8d2009-02-04 09:30:58 -05002984 if (found_type == BTRFS_INODE_ITEM_KEY)
2985 break;
Chris Mason85e21ba2008-01-29 15:11:36 -05002986 goto search_again;
2987 }
Chris Mason39279cc2007-06-12 06:35:45 -04002988 }
2989 ret = 0;
2990error:
Chris Mason85e21ba2008-01-29 15:11:36 -05002991 if (pending_del_nr) {
2992 ret = btrfs_del_items(trans, root, path, pending_del_slot,
2993 pending_del_nr);
2994 }
Chris Mason39279cc2007-06-12 06:35:45 -04002995 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002996 return ret;
2997}
2998
Chris Masona52d9a82007-08-27 16:49:44 -04002999/*
3000 * taken from block_truncate_page, but does cow as it zeros out
3001 * any bytes left in the last page in the file.
3002 */
3003static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
3004{
3005 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -04003006 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003007 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
3008 struct btrfs_ordered_extent *ordered;
3009 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04003010 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04003011 pgoff_t index = from >> PAGE_CACHE_SHIFT;
3012 unsigned offset = from & (PAGE_CACHE_SIZE-1);
3013 struct page *page;
3014 int ret = 0;
3015 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003016 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04003017
3018 if ((offset & (blocksize - 1)) == 0)
3019 goto out;
3020
3021 ret = -ENOMEM;
Chris Mason211c17f2008-05-15 09:13:45 -04003022again:
Chris Masona52d9a82007-08-27 16:49:44 -04003023 page = grab_cache_page(mapping, index);
3024 if (!page)
3025 goto out;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003026
3027 page_start = page_offset(page);
3028 page_end = page_start + PAGE_CACHE_SIZE - 1;
3029
Chris Masona52d9a82007-08-27 16:49:44 -04003030 if (!PageUptodate(page)) {
3031 ret = btrfs_readpage(NULL, page);
3032 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04003033 if (page->mapping != mapping) {
3034 unlock_page(page);
3035 page_cache_release(page);
3036 goto again;
3037 }
Chris Masona52d9a82007-08-27 16:49:44 -04003038 if (!PageUptodate(page)) {
3039 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04003040 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04003041 }
3042 }
Chris Mason211c17f2008-05-15 09:13:45 -04003043 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003044
3045 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
3046 set_page_extent_mapped(page);
3047
3048 ordered = btrfs_lookup_ordered_extent(inode, page_start);
3049 if (ordered) {
3050 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
3051 unlock_page(page);
3052 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04003053 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003054 btrfs_put_ordered_extent(ordered);
3055 goto again;
3056 }
3057
Josef Bacik9ed74f22009-09-11 16:12:44 -04003058 ret = btrfs_set_extent_delalloc(inode, page_start, page_end);
3059 if (ret) {
3060 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
3061 goto out_unlock;
3062 }
3063
Chris Masone6dcd2d2008-07-17 12:53:50 -04003064 ret = 0;
3065 if (offset != PAGE_CACHE_SIZE) {
3066 kaddr = kmap(page);
3067 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
3068 flush_dcache_page(page);
3069 kunmap(page);
3070 }
Chris Mason247e7432008-07-17 12:53:51 -04003071 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003072 set_page_dirty(page);
3073 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04003074
Chris Mason89642222008-07-24 09:41:53 -04003075out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04003076 unlock_page(page);
3077 page_cache_release(page);
3078out:
3079 return ret;
3080}
3081
Yan Zheng9036c102008-10-30 14:19:41 -04003082int btrfs_cont_expand(struct inode *inode, loff_t size)
3083{
3084 struct btrfs_trans_handle *trans;
3085 struct btrfs_root *root = BTRFS_I(inode)->root;
3086 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
3087 struct extent_map *em;
3088 u64 mask = root->sectorsize - 1;
3089 u64 hole_start = (inode->i_size + mask) & ~mask;
3090 u64 block_end = (size + mask) & ~mask;
3091 u64 last_byte;
3092 u64 cur_offset;
3093 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003094 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003095
3096 if (size <= hole_start)
3097 return 0;
3098
Yan Zheng9036c102008-10-30 14:19:41 -04003099 btrfs_truncate_page(inode->i_mapping, inode->i_size);
3100
3101 while (1) {
3102 struct btrfs_ordered_extent *ordered;
3103 btrfs_wait_ordered_range(inode, hole_start,
3104 block_end - hole_start);
3105 lock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
3106 ordered = btrfs_lookup_ordered_extent(inode, hole_start);
3107 if (!ordered)
3108 break;
3109 unlock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
3110 btrfs_put_ordered_extent(ordered);
3111 }
3112
3113 trans = btrfs_start_transaction(root, 1);
3114 btrfs_set_trans_block_group(trans, inode);
3115
3116 cur_offset = hole_start;
3117 while (1) {
3118 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
3119 block_end - cur_offset, 0);
3120 BUG_ON(IS_ERR(em) || !em);
3121 last_byte = min(extent_map_end(em), block_end);
3122 last_byte = (last_byte + mask) & ~mask;
3123 if (test_bit(EXTENT_FLAG_VACANCY, &em->flags)) {
Chris Mason771ed682008-11-06 22:02:51 -05003124 u64 hint_byte = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003125 hole_size = last_byte - cur_offset;
Chris Mason771ed682008-11-06 22:02:51 -05003126 err = btrfs_drop_extents(trans, root, inode,
3127 cur_offset,
3128 cur_offset + hole_size,
Chris Masone980b502009-04-24 14:39:24 -04003129 block_end,
Chris Masona1ed8352009-09-11 12:27:37 -04003130 cur_offset, &hint_byte, 1);
Chris Mason771ed682008-11-06 22:02:51 -05003131 if (err)
3132 break;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003133
3134 err = btrfs_reserve_metadata_space(root, 1);
3135 if (err)
3136 break;
3137
Yan Zheng9036c102008-10-30 14:19:41 -04003138 err = btrfs_insert_file_extent(trans, root,
3139 inode->i_ino, cur_offset, 0,
3140 0, hole_size, 0, hole_size,
3141 0, 0, 0);
3142 btrfs_drop_extent_cache(inode, hole_start,
3143 last_byte - 1, 0);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003144 btrfs_unreserve_metadata_space(root, 1);
Yan Zheng9036c102008-10-30 14:19:41 -04003145 }
3146 free_extent_map(em);
3147 cur_offset = last_byte;
3148 if (err || cur_offset >= block_end)
3149 break;
3150 }
3151
3152 btrfs_end_transaction(trans, root);
3153 unlock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
3154 return err;
3155}
3156
Chris Mason39279cc2007-06-12 06:35:45 -04003157static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
3158{
3159 struct inode *inode = dentry->d_inode;
3160 int err;
3161
3162 err = inode_change_ok(inode, attr);
3163 if (err)
3164 return err;
3165
Chris Mason5a3f23d2009-03-31 13:27:11 -04003166 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
3167 if (attr->ia_size > inode->i_size) {
3168 err = btrfs_cont_expand(inode, attr->ia_size);
3169 if (err)
3170 return err;
3171 } else if (inode->i_size > 0 &&
3172 attr->ia_size == 0) {
3173
3174 /* we're truncating a file that used to have good
3175 * data down to zero. Make sure it gets into
3176 * the ordered flush list so that any new writes
3177 * get down to disk quickly.
3178 */
3179 BTRFS_I(inode)->ordered_data_close = 1;
3180 }
Chris Mason39279cc2007-06-12 06:35:45 -04003181 }
Yan Zheng9036c102008-10-30 14:19:41 -04003182
Chris Mason39279cc2007-06-12 06:35:45 -04003183 err = inode_setattr(inode, attr);
Josef Bacik33268ea2008-07-24 12:16:36 -04003184
3185 if (!err && ((attr->ia_valid & ATTR_MODE)))
3186 err = btrfs_acl_chmod(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003187 return err;
3188}
Chris Mason61295eb2008-01-14 16:24:38 -05003189
Chris Mason39279cc2007-06-12 06:35:45 -04003190void btrfs_delete_inode(struct inode *inode)
3191{
3192 struct btrfs_trans_handle *trans;
3193 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond3c2fdc2007-09-17 10:58:06 -04003194 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04003195 int ret;
3196
3197 truncate_inode_pages(&inode->i_data, 0);
3198 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04003199 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003200 goto no_delete;
3201 }
Chris Mason4a096752008-07-21 10:29:44 -04003202 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04003203
Yan, Zheng76dda932009-09-21 16:00:26 -04003204 if (inode->i_nlink > 0) {
3205 BUG_ON(btrfs_root_refs(&root->root_item) != 0);
3206 goto no_delete;
3207 }
3208
Chris Masondbe674a2008-07-17 12:54:05 -04003209 btrfs_i_size_write(inode, 0);
Yan Zheng180591b2009-01-06 09:58:06 -05003210 trans = btrfs_join_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04003211
Chris Mason39279cc2007-06-12 06:35:45 -04003212 btrfs_set_trans_block_group(trans, inode);
Chris Masone02119d2008-09-05 16:13:11 -04003213 ret = btrfs_truncate_inode_items(trans, root, inode, inode->i_size, 0);
Josef Bacik7b128762008-07-24 12:17:14 -04003214 if (ret) {
3215 btrfs_orphan_del(NULL, inode);
Chris Mason54aa1f42007-06-22 14:16:25 -04003216 goto no_delete_lock;
Josef Bacik7b128762008-07-24 12:17:14 -04003217 }
3218
3219 btrfs_orphan_del(trans, inode);
Chris Mason85e21ba2008-01-29 15:11:36 -05003220
Chris Masond3c2fdc2007-09-17 10:58:06 -04003221 nr = trans->blocks_used;
Chris Mason85e21ba2008-01-29 15:11:36 -05003222 clear_inode(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04003223
Chris Mason39279cc2007-06-12 06:35:45 -04003224 btrfs_end_transaction(trans, root);
Chris Masond3c2fdc2007-09-17 10:58:06 -04003225 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003226 return;
Chris Mason54aa1f42007-06-22 14:16:25 -04003227
3228no_delete_lock:
Chris Masond3c2fdc2007-09-17 10:58:06 -04003229 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04003230 btrfs_end_transaction(trans, root);
Chris Masond3c2fdc2007-09-17 10:58:06 -04003231 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003232no_delete:
3233 clear_inode(inode);
3234}
3235
3236/*
3237 * this returns the key found in the dir entry in the location pointer.
3238 * If no dir entries were found, location->objectid is 0.
3239 */
3240static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
3241 struct btrfs_key *location)
3242{
3243 const char *name = dentry->d_name.name;
3244 int namelen = dentry->d_name.len;
3245 struct btrfs_dir_item *di;
3246 struct btrfs_path *path;
3247 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04003248 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003249
3250 path = btrfs_alloc_path();
3251 BUG_ON(!path);
Chris Mason39544012007-12-12 14:38:19 -05003252
Chris Mason39279cc2007-06-12 06:35:45 -04003253 di = btrfs_lookup_dir_item(NULL, root, path, dir->i_ino, name,
3254 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04003255 if (IS_ERR(di))
3256 ret = PTR_ERR(di);
Chris Masond3977122009-01-05 21:25:51 -05003257
3258 if (!di || IS_ERR(di))
Chris Mason39544012007-12-12 14:38:19 -05003259 goto out_err;
Chris Masond3977122009-01-05 21:25:51 -05003260
Chris Mason5f39d392007-10-15 16:14:19 -04003261 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04003262out:
Chris Mason39279cc2007-06-12 06:35:45 -04003263 btrfs_free_path(path);
3264 return ret;
Chris Mason39544012007-12-12 14:38:19 -05003265out_err:
3266 location->objectid = 0;
3267 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04003268}
3269
3270/*
3271 * when we hit a tree root in a directory, the btrfs part of the inode
3272 * needs to be changed to reflect the root directory of the tree root. This
3273 * is kind of like crossing a mount point.
3274 */
3275static int fixup_tree_root_location(struct btrfs_root *root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003276 struct inode *dir,
3277 struct dentry *dentry,
3278 struct btrfs_key *location,
3279 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04003280{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003281 struct btrfs_path *path;
3282 struct btrfs_root *new_root;
3283 struct btrfs_root_ref *ref;
3284 struct extent_buffer *leaf;
3285 int ret;
3286 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003287
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003288 path = btrfs_alloc_path();
3289 if (!path) {
3290 err = -ENOMEM;
3291 goto out;
3292 }
Chris Mason39279cc2007-06-12 06:35:45 -04003293
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003294 err = -ENOENT;
3295 ret = btrfs_find_root_ref(root->fs_info->tree_root, path,
3296 BTRFS_I(dir)->root->root_key.objectid,
3297 location->objectid);
3298 if (ret) {
3299 if (ret < 0)
3300 err = ret;
3301 goto out;
3302 }
Chris Mason39279cc2007-06-12 06:35:45 -04003303
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003304 leaf = path->nodes[0];
3305 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
3306 if (btrfs_root_ref_dirid(leaf, ref) != dir->i_ino ||
3307 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
3308 goto out;
3309
3310 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
3311 (unsigned long)(ref + 1),
3312 dentry->d_name.len);
3313 if (ret)
3314 goto out;
3315
3316 btrfs_release_path(root->fs_info->tree_root, path);
3317
3318 new_root = btrfs_read_fs_root_no_name(root->fs_info, location);
3319 if (IS_ERR(new_root)) {
3320 err = PTR_ERR(new_root);
3321 goto out;
3322 }
3323
3324 if (btrfs_root_refs(&new_root->root_item) == 0) {
3325 err = -ENOENT;
3326 goto out;
3327 }
3328
3329 *sub_root = new_root;
3330 location->objectid = btrfs_root_dirid(&new_root->root_item);
3331 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04003332 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003333 err = 0;
3334out:
3335 btrfs_free_path(path);
3336 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003337}
3338
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003339static void inode_tree_add(struct inode *inode)
3340{
3341 struct btrfs_root *root = BTRFS_I(inode)->root;
3342 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003343 struct rb_node **p;
3344 struct rb_node *parent;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003345again:
3346 p = &root->inode_tree.rb_node;
3347 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003348
Yan, Zheng76dda932009-09-21 16:00:26 -04003349 if (hlist_unhashed(&inode->i_hash))
3350 return;
3351
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003352 spin_lock(&root->inode_lock);
3353 while (*p) {
3354 parent = *p;
3355 entry = rb_entry(parent, struct btrfs_inode, rb_node);
3356
3357 if (inode->i_ino < entry->vfs_inode.i_ino)
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003358 p = &parent->rb_left;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003359 else if (inode->i_ino > entry->vfs_inode.i_ino)
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003360 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003361 else {
3362 WARN_ON(!(entry->vfs_inode.i_state &
3363 (I_WILL_FREE | I_FREEING | I_CLEAR)));
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003364 rb_erase(parent, &root->inode_tree);
3365 RB_CLEAR_NODE(parent);
3366 spin_unlock(&root->inode_lock);
3367 goto again;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003368 }
3369 }
3370 rb_link_node(&BTRFS_I(inode)->rb_node, parent, p);
3371 rb_insert_color(&BTRFS_I(inode)->rb_node, &root->inode_tree);
3372 spin_unlock(&root->inode_lock);
3373}
3374
3375static void inode_tree_del(struct inode *inode)
3376{
3377 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04003378 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003379
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003380 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003381 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003382 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003383 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04003384 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003385 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003386 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04003387
3388 if (empty && btrfs_root_refs(&root->root_item) == 0) {
3389 synchronize_srcu(&root->fs_info->subvol_srcu);
3390 spin_lock(&root->inode_lock);
3391 empty = RB_EMPTY_ROOT(&root->inode_tree);
3392 spin_unlock(&root->inode_lock);
3393 if (empty)
3394 btrfs_add_dead_root(root);
3395 }
3396}
3397
3398int btrfs_invalidate_inodes(struct btrfs_root *root)
3399{
3400 struct rb_node *node;
3401 struct rb_node *prev;
3402 struct btrfs_inode *entry;
3403 struct inode *inode;
3404 u64 objectid = 0;
3405
3406 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
3407
3408 spin_lock(&root->inode_lock);
3409again:
3410 node = root->inode_tree.rb_node;
3411 prev = NULL;
3412 while (node) {
3413 prev = node;
3414 entry = rb_entry(node, struct btrfs_inode, rb_node);
3415
3416 if (objectid < entry->vfs_inode.i_ino)
3417 node = node->rb_left;
3418 else if (objectid > entry->vfs_inode.i_ino)
3419 node = node->rb_right;
3420 else
3421 break;
3422 }
3423 if (!node) {
3424 while (prev) {
3425 entry = rb_entry(prev, struct btrfs_inode, rb_node);
3426 if (objectid <= entry->vfs_inode.i_ino) {
3427 node = prev;
3428 break;
3429 }
3430 prev = rb_next(prev);
3431 }
3432 }
3433 while (node) {
3434 entry = rb_entry(node, struct btrfs_inode, rb_node);
3435 objectid = entry->vfs_inode.i_ino + 1;
3436 inode = igrab(&entry->vfs_inode);
3437 if (inode) {
3438 spin_unlock(&root->inode_lock);
3439 if (atomic_read(&inode->i_count) > 1)
3440 d_prune_aliases(inode);
3441 /*
3442 * btrfs_drop_inode will remove it from
3443 * the inode cache when its usage count
3444 * hits zero.
3445 */
3446 iput(inode);
3447 cond_resched();
3448 spin_lock(&root->inode_lock);
3449 goto again;
3450 }
3451
3452 if (cond_resched_lock(&root->inode_lock))
3453 goto again;
3454
3455 node = rb_next(node);
3456 }
3457 spin_unlock(&root->inode_lock);
3458 return 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003459}
3460
Chris Masone02119d2008-09-05 16:13:11 -04003461static noinline void init_btrfs_i(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003462{
Chris Masone02119d2008-09-05 16:13:11 -04003463 struct btrfs_inode *bi = BTRFS_I(inode);
3464
Chris Masone02119d2008-09-05 16:13:11 -04003465 bi->generation = 0;
Chris Masonc3027eb2008-12-08 16:40:21 -05003466 bi->sequence = 0;
Chris Masone02119d2008-09-05 16:13:11 -04003467 bi->last_trans = 0;
3468 bi->logged_trans = 0;
3469 bi->delalloc_bytes = 0;
Josef Bacik6a632092009-02-20 11:00:09 -05003470 bi->reserved_bytes = 0;
Chris Masone02119d2008-09-05 16:13:11 -04003471 bi->disk_i_size = 0;
3472 bi->flags = 0;
3473 bi->index_cnt = (u64)-1;
Chris Mason12fcfd22009-03-24 10:24:20 -04003474 bi->last_unlink_trans = 0;
Chris Mason27574952009-05-14 13:10:02 -04003475 bi->ordered_data_close = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003476 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
3477 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masonb888db22007-08-27 16:49:44 -04003478 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04003479 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
3480 inode->i_mapping, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04003481 INIT_LIST_HEAD(&BTRFS_I(inode)->delalloc_inodes);
Chris Mason5a3f23d2009-03-31 13:27:11 -04003482 INIT_LIST_HEAD(&BTRFS_I(inode)->ordered_operations);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003483 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Chris Masonba1da2f2008-07-17 12:54:15 -04003484 btrfs_ordered_inode_tree_init(&BTRFS_I(inode)->ordered_tree);
Chris Masonee6e6502008-07-17 12:54:40 -04003485 mutex_init(&BTRFS_I(inode)->extent_mutex);
Chris Masone02119d2008-09-05 16:13:11 -04003486 mutex_init(&BTRFS_I(inode)->log_mutex);
3487}
3488
3489static int btrfs_init_locked_inode(struct inode *inode, void *p)
3490{
3491 struct btrfs_iget_args *args = p;
3492 inode->i_ino = args->ino;
3493 init_btrfs_i(inode);
3494 BTRFS_I(inode)->root = args->root;
Josef Bacik6a632092009-02-20 11:00:09 -05003495 btrfs_set_inode_space_info(args->root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003496 return 0;
3497}
3498
3499static int btrfs_find_actor(struct inode *inode, void *opaque)
3500{
3501 struct btrfs_iget_args *args = opaque;
Chris Masond3977122009-01-05 21:25:51 -05003502 return args->ino == inode->i_ino &&
3503 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003504}
3505
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003506static struct inode *btrfs_iget_locked(struct super_block *s,
3507 u64 objectid,
3508 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04003509{
3510 struct inode *inode;
3511 struct btrfs_iget_args args;
3512 args.ino = objectid;
3513 args.root = root;
3514
3515 inode = iget5_locked(s, objectid, btrfs_find_actor,
3516 btrfs_init_locked_inode,
3517 (void *)&args);
3518 return inode;
3519}
3520
Balaji Rao1a54ef82008-07-21 02:01:04 +05303521/* Get an inode object given its location and corresponding root.
3522 * Returns in *is_new if the inode was read from disk
3523 */
3524struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003525 struct btrfs_root *root)
Balaji Rao1a54ef82008-07-21 02:01:04 +05303526{
3527 struct inode *inode;
3528
3529 inode = btrfs_iget_locked(s, location->objectid, root);
3530 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003531 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05303532
3533 if (inode->i_state & I_NEW) {
3534 BTRFS_I(inode)->root = root;
3535 memcpy(&BTRFS_I(inode)->location, location, sizeof(*location));
3536 btrfs_read_locked_inode(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003537
3538 inode_tree_add(inode);
Balaji Rao1a54ef82008-07-21 02:01:04 +05303539 unlock_new_inode(inode);
Balaji Rao1a54ef82008-07-21 02:01:04 +05303540 }
3541
3542 return inode;
3543}
3544
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003545static struct inode *new_simple_dir(struct super_block *s,
3546 struct btrfs_key *key,
3547 struct btrfs_root *root)
3548{
3549 struct inode *inode = new_inode(s);
3550
3551 if (!inode)
3552 return ERR_PTR(-ENOMEM);
3553
3554 init_btrfs_i(inode);
3555
3556 BTRFS_I(inode)->root = root;
3557 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
3558 BTRFS_I(inode)->dummy_inode = 1;
3559
3560 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
3561 inode->i_op = &simple_dir_inode_operations;
3562 inode->i_fop = &simple_dir_operations;
3563 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
3564 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
3565
3566 return inode;
3567}
3568
Chris Mason3de45862008-11-17 21:02:50 -05003569struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04003570{
Chris Masond3977122009-01-05 21:25:51 -05003571 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003572 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003573 struct btrfs_root *sub_root = root;
3574 struct btrfs_key location;
Yan, Zheng76dda932009-09-21 16:00:26 -04003575 int index;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003576 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04003577
Yan, Zheng76dda932009-09-21 16:00:26 -04003578 dentry->d_op = &btrfs_dentry_operations;
3579
Chris Mason39279cc2007-06-12 06:35:45 -04003580 if (dentry->d_name.len > BTRFS_NAME_LEN)
3581 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04003582
Chris Mason39279cc2007-06-12 06:35:45 -04003583 ret = btrfs_inode_by_name(dir, dentry, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04003584
Chris Mason39279cc2007-06-12 06:35:45 -04003585 if (ret < 0)
3586 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04003587
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003588 if (location.objectid == 0)
3589 return NULL;
3590
3591 if (location.type == BTRFS_INODE_ITEM_KEY) {
3592 inode = btrfs_iget(dir->i_sb, &location, root);
3593 return inode;
3594 }
3595
3596 BUG_ON(location.type != BTRFS_ROOT_ITEM_KEY);
3597
Yan, Zheng76dda932009-09-21 16:00:26 -04003598 index = srcu_read_lock(&root->fs_info->subvol_srcu);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003599 ret = fixup_tree_root_location(root, dir, dentry,
3600 &location, &sub_root);
3601 if (ret < 0) {
3602 if (ret != -ENOENT)
3603 inode = ERR_PTR(ret);
3604 else
3605 inode = new_simple_dir(dir->i_sb, &location, sub_root);
3606 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003607 inode = btrfs_iget(dir->i_sb, &location, sub_root);
Chris Mason39279cc2007-06-12 06:35:45 -04003608 }
Yan, Zheng76dda932009-09-21 16:00:26 -04003609 srcu_read_unlock(&root->fs_info->subvol_srcu, index);
3610
Chris Mason3de45862008-11-17 21:02:50 -05003611 return inode;
3612}
3613
Yan, Zheng76dda932009-09-21 16:00:26 -04003614static int btrfs_dentry_delete(struct dentry *dentry)
3615{
3616 struct btrfs_root *root;
3617
3618 if (!dentry->d_inode)
3619 return 0;
3620
3621 root = BTRFS_I(dentry->d_inode)->root;
3622 if (btrfs_root_refs(&root->root_item) == 0)
3623 return 1;
3624 return 0;
3625}
3626
Chris Mason3de45862008-11-17 21:02:50 -05003627static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
3628 struct nameidata *nd)
3629{
3630 struct inode *inode;
3631
Chris Mason3de45862008-11-17 21:02:50 -05003632 inode = btrfs_lookup_dentry(dir, dentry);
3633 if (IS_ERR(inode))
3634 return ERR_CAST(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04003635
Chris Mason39279cc2007-06-12 06:35:45 -04003636 return d_splice_alias(inode, dentry);
3637}
3638
Chris Mason39279cc2007-06-12 06:35:45 -04003639static unsigned char btrfs_filetype_table[] = {
3640 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
3641};
3642
David Woodhousecbdf5a22008-08-06 19:42:33 +01003643static int btrfs_real_readdir(struct file *filp, void *dirent,
3644 filldir_t filldir)
Chris Mason39279cc2007-06-12 06:35:45 -04003645{
Chris Mason6da6aba2007-12-18 16:15:09 -05003646 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04003647 struct btrfs_root *root = BTRFS_I(inode)->root;
3648 struct btrfs_item *item;
3649 struct btrfs_dir_item *di;
3650 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04003651 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04003652 struct btrfs_path *path;
3653 int ret;
3654 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04003655 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003656 int slot;
3657 int advance;
3658 unsigned char d_type;
3659 int over = 0;
3660 u32 di_cur;
3661 u32 di_total;
3662 u32 di_len;
3663 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04003664 char tmp_name[32];
3665 char *name_ptr;
3666 int name_len;
Chris Mason39279cc2007-06-12 06:35:45 -04003667
3668 /* FIXME, use a real flag for deciding about the key type */
3669 if (root->fs_info->tree_root == root)
3670 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04003671
Chris Mason39544012007-12-12 14:38:19 -05003672 /* special case for "." */
3673 if (filp->f_pos == 0) {
3674 over = filldir(dirent, ".", 1,
3675 1, inode->i_ino,
3676 DT_DIR);
3677 if (over)
3678 return 0;
3679 filp->f_pos = 1;
3680 }
Chris Mason39544012007-12-12 14:38:19 -05003681 /* special case for .., just use the back ref */
3682 if (filp->f_pos == 1) {
David Woodhouse5ecc7e52008-08-17 15:14:48 +01003683 u64 pino = parent_ino(filp->f_path.dentry);
Chris Mason39544012007-12-12 14:38:19 -05003684 over = filldir(dirent, "..", 2,
David Woodhouse5ecc7e52008-08-17 15:14:48 +01003685 2, pino, DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05003686 if (over)
David Woodhouse49593bf2008-08-17 17:08:36 +01003687 return 0;
Chris Mason39544012007-12-12 14:38:19 -05003688 filp->f_pos = 2;
3689 }
David Woodhouse49593bf2008-08-17 17:08:36 +01003690 path = btrfs_alloc_path();
3691 path->reada = 2;
3692
Chris Mason39279cc2007-06-12 06:35:45 -04003693 btrfs_set_key_type(&key, key_type);
3694 key.offset = filp->f_pos;
David Woodhouse49593bf2008-08-17 17:08:36 +01003695 key.objectid = inode->i_ino;
Chris Mason5f39d392007-10-15 16:14:19 -04003696
Chris Mason39279cc2007-06-12 06:35:45 -04003697 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3698 if (ret < 0)
3699 goto err;
3700 advance = 0;
David Woodhouse49593bf2008-08-17 17:08:36 +01003701
3702 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04003703 leaf = path->nodes[0];
3704 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003705 slot = path->slots[0];
3706 if (advance || slot >= nritems) {
David Woodhouse49593bf2008-08-17 17:08:36 +01003707 if (slot >= nritems - 1) {
Chris Mason39279cc2007-06-12 06:35:45 -04003708 ret = btrfs_next_leaf(root, path);
3709 if (ret)
3710 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003711 leaf = path->nodes[0];
3712 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003713 slot = path->slots[0];
3714 } else {
3715 slot++;
3716 path->slots[0]++;
3717 }
3718 }
Chris Mason3de45862008-11-17 21:02:50 -05003719
Chris Mason39279cc2007-06-12 06:35:45 -04003720 advance = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04003721 item = btrfs_item_nr(leaf, slot);
3722 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3723
3724 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04003725 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003726 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003727 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003728 if (found_key.offset < filp->f_pos)
Chris Mason39279cc2007-06-12 06:35:45 -04003729 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04003730
3731 filp->f_pos = found_key.offset;
David Woodhouse49593bf2008-08-17 17:08:36 +01003732
Chris Mason39279cc2007-06-12 06:35:45 -04003733 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
3734 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003735 di_total = btrfs_item_size(leaf, item);
David Woodhouse49593bf2008-08-17 17:08:36 +01003736
3737 while (di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04003738 struct btrfs_key location;
3739
3740 name_len = btrfs_dir_name_len(leaf, di);
David Woodhouse49593bf2008-08-17 17:08:36 +01003741 if (name_len <= sizeof(tmp_name)) {
Chris Mason5f39d392007-10-15 16:14:19 -04003742 name_ptr = tmp_name;
3743 } else {
3744 name_ptr = kmalloc(name_len, GFP_NOFS);
David Woodhouse49593bf2008-08-17 17:08:36 +01003745 if (!name_ptr) {
3746 ret = -ENOMEM;
3747 goto err;
3748 }
Chris Mason5f39d392007-10-15 16:14:19 -04003749 }
3750 read_extent_buffer(leaf, name_ptr,
3751 (unsigned long)(di + 1), name_len);
3752
3753 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
3754 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason3de45862008-11-17 21:02:50 -05003755
3756 /* is this a reference to our own snapshot? If so
3757 * skip it
3758 */
3759 if (location.type == BTRFS_ROOT_ITEM_KEY &&
3760 location.objectid == root->root_key.objectid) {
3761 over = 0;
3762 goto skip;
3763 }
Chris Mason5f39d392007-10-15 16:14:19 -04003764 over = filldir(dirent, name_ptr, name_len,
David Woodhouse49593bf2008-08-17 17:08:36 +01003765 found_key.offset, location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04003766 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04003767
Chris Mason3de45862008-11-17 21:02:50 -05003768skip:
Chris Mason5f39d392007-10-15 16:14:19 -04003769 if (name_ptr != tmp_name)
3770 kfree(name_ptr);
3771
Chris Mason39279cc2007-06-12 06:35:45 -04003772 if (over)
3773 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05003774 di_len = btrfs_dir_name_len(leaf, di) +
David Woodhouse49593bf2008-08-17 17:08:36 +01003775 btrfs_dir_data_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04003776 di_cur += di_len;
3777 di = (struct btrfs_dir_item *)((char *)di + di_len);
3778 }
3779 }
David Woodhouse49593bf2008-08-17 17:08:36 +01003780
3781 /* Reached end of directory/root. Bump pos past the last item. */
Yan Zheng5e591a02008-02-19 11:41:02 -05003782 if (key_type == BTRFS_DIR_INDEX_KEY)
Chris Mason89f135d2009-01-28 15:34:27 -05003783 filp->f_pos = INT_LIMIT(off_t);
Yan Zheng5e591a02008-02-19 11:41:02 -05003784 else
3785 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04003786nopos:
3787 ret = 0;
3788err:
Chris Mason39279cc2007-06-12 06:35:45 -04003789 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003790 return ret;
3791}
3792
3793int btrfs_write_inode(struct inode *inode, int wait)
3794{
3795 struct btrfs_root *root = BTRFS_I(inode)->root;
3796 struct btrfs_trans_handle *trans;
3797 int ret = 0;
3798
Yan Zhengc146afa2008-11-12 14:34:12 -05003799 if (root->fs_info->btree_inode == inode)
Chris Mason4ca8b412008-08-05 13:30:48 -04003800 return 0;
3801
Chris Mason39279cc2007-06-12 06:35:45 -04003802 if (wait) {
Chris Masonf9295742008-07-17 12:54:14 -04003803 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003804 btrfs_set_trans_block_group(trans, inode);
3805 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04003806 }
3807 return ret;
3808}
3809
3810/*
Chris Mason54aa1f42007-06-22 14:16:25 -04003811 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04003812 * inode changes. But, it is most likely to find the inode in cache.
3813 * FIXME, needs more benchmarking...there are no reasons other than performance
3814 * to keep or drop this code.
3815 */
3816void btrfs_dirty_inode(struct inode *inode)
3817{
3818 struct btrfs_root *root = BTRFS_I(inode)->root;
3819 struct btrfs_trans_handle *trans;
3820
Chris Masonf9295742008-07-17 12:54:14 -04003821 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003822 btrfs_set_trans_block_group(trans, inode);
3823 btrfs_update_inode(trans, root, inode);
3824 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04003825}
3826
Chris Masond352ac62008-09-29 15:18:18 -04003827/*
3828 * find the highest existing sequence number in a directory
3829 * and then set the in-memory index_cnt variable to reflect
3830 * free sequence numbers
3831 */
Josef Bacikaec74772008-07-24 12:12:38 -04003832static int btrfs_set_inode_index_count(struct inode *inode)
3833{
3834 struct btrfs_root *root = BTRFS_I(inode)->root;
3835 struct btrfs_key key, found_key;
3836 struct btrfs_path *path;
3837 struct extent_buffer *leaf;
3838 int ret;
3839
3840 key.objectid = inode->i_ino;
3841 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
3842 key.offset = (u64)-1;
3843
3844 path = btrfs_alloc_path();
3845 if (!path)
3846 return -ENOMEM;
3847
3848 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3849 if (ret < 0)
3850 goto out;
3851 /* FIXME: we should be able to handle this */
3852 if (ret == 0)
3853 goto out;
3854 ret = 0;
3855
3856 /*
3857 * MAGIC NUMBER EXPLANATION:
3858 * since we search a directory based on f_pos we have to start at 2
3859 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
3860 * else has to start at 2
3861 */
3862 if (path->slots[0] == 0) {
3863 BTRFS_I(inode)->index_cnt = 2;
3864 goto out;
3865 }
3866
3867 path->slots[0]--;
3868
3869 leaf = path->nodes[0];
3870 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3871
3872 if (found_key.objectid != inode->i_ino ||
3873 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
3874 BTRFS_I(inode)->index_cnt = 2;
3875 goto out;
3876 }
3877
3878 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
3879out:
3880 btrfs_free_path(path);
3881 return ret;
3882}
3883
Chris Masond352ac62008-09-29 15:18:18 -04003884/*
3885 * helper to find a free sequence number in a given directory. This current
3886 * code is very simple, later versions will do smarter things in the btree
3887 */
Chris Mason3de45862008-11-17 21:02:50 -05003888int btrfs_set_inode_index(struct inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04003889{
3890 int ret = 0;
3891
3892 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
3893 ret = btrfs_set_inode_index_count(dir);
Chris Masond3977122009-01-05 21:25:51 -05003894 if (ret)
Josef Bacikaec74772008-07-24 12:12:38 -04003895 return ret;
3896 }
3897
Chris Mason00e4e6b2008-08-05 11:18:09 -04003898 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04003899 BTRFS_I(dir)->index_cnt++;
3900
3901 return ret;
3902}
3903
Chris Mason39279cc2007-06-12 06:35:45 -04003904static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
3905 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04003906 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05003907 const char *name, int name_len,
Yan Zhengd2fb3432008-12-11 16:30:39 -05003908 u64 ref_objectid, u64 objectid,
3909 u64 alloc_hint, int mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04003910{
3911 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04003912 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04003913 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04003914 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05003915 struct btrfs_inode_ref *ref;
3916 struct btrfs_key key[2];
3917 u32 sizes[2];
3918 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04003919 int ret;
3920 int owner;
3921
Chris Mason5f39d392007-10-15 16:14:19 -04003922 path = btrfs_alloc_path();
3923 BUG_ON(!path);
3924
Chris Mason39279cc2007-06-12 06:35:45 -04003925 inode = new_inode(root->fs_info->sb);
3926 if (!inode)
3927 return ERR_PTR(-ENOMEM);
3928
Josef Bacikaec74772008-07-24 12:12:38 -04003929 if (dir) {
Chris Mason3de45862008-11-17 21:02:50 -05003930 ret = btrfs_set_inode_index(dir, index);
Shen Feng09771432009-04-02 16:46:06 -04003931 if (ret) {
3932 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04003933 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04003934 }
Josef Bacikaec74772008-07-24 12:12:38 -04003935 }
3936 /*
3937 * index_cnt is ignored for everything but a dir,
3938 * btrfs_get_inode_index_count has an explanation for the magic
3939 * number
3940 */
Chris Masone02119d2008-09-05 16:13:11 -04003941 init_btrfs_i(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04003942 BTRFS_I(inode)->index_cnt = 2;
Chris Mason39279cc2007-06-12 06:35:45 -04003943 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04003944 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik6a632092009-02-20 11:00:09 -05003945 btrfs_set_inode_space_info(root, inode);
Chris Masonb888db22007-08-27 16:49:44 -04003946
Chris Mason39279cc2007-06-12 06:35:45 -04003947 if (mode & S_IFDIR)
3948 owner = 0;
3949 else
3950 owner = 1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05003951 BTRFS_I(inode)->block_group =
3952 btrfs_find_block_group(root, 0, alloc_hint, owner);
Chris Mason9c583092008-01-29 15:15:18 -05003953
3954 key[0].objectid = objectid;
3955 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
3956 key[0].offset = 0;
3957
3958 key[1].objectid = objectid;
3959 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
3960 key[1].offset = ref_objectid;
3961
3962 sizes[0] = sizeof(struct btrfs_inode_item);
3963 sizes[1] = name_len + sizeof(*ref);
3964
Chris Masonb9473432009-03-13 11:00:37 -04003965 path->leave_spinning = 1;
Chris Mason9c583092008-01-29 15:15:18 -05003966 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
3967 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04003968 goto fail;
3969
Chris Mason79683f22008-11-19 22:00:53 -05003970 inode->i_uid = current_fsuid();
Chris Ball8c087b52009-02-04 09:29:54 -05003971
Chris Mason42f15d72009-02-06 11:35:57 -05003972 if (dir && (dir->i_mode & S_ISGID)) {
Chris Ball8c087b52009-02-04 09:29:54 -05003973 inode->i_gid = dir->i_gid;
3974 if (S_ISDIR(mode))
3975 mode |= S_ISGID;
3976 } else
3977 inode->i_gid = current_fsgid();
3978
Chris Mason39279cc2007-06-12 06:35:45 -04003979 inode->i_mode = mode;
3980 inode->i_ino = objectid;
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003981 inode_set_bytes(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04003982 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04003983 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
3984 struct btrfs_inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04003985 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05003986
3987 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
3988 struct btrfs_inode_ref);
3989 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
Chris Mason00e4e6b2008-08-05 11:18:09 -04003990 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
Chris Mason9c583092008-01-29 15:15:18 -05003991 ptr = (unsigned long)(ref + 1);
3992 write_extent_buffer(path->nodes[0], name, ptr, name_len);
3993
Chris Mason5f39d392007-10-15 16:14:19 -04003994 btrfs_mark_buffer_dirty(path->nodes[0]);
3995 btrfs_free_path(path);
3996
Chris Mason39279cc2007-06-12 06:35:45 -04003997 location = &BTRFS_I(inode)->location;
3998 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04003999 location->offset = 0;
4000 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
4001
Christoph Hellwig6cbff002009-04-17 10:37:41 +02004002 btrfs_inherit_iflags(inode, dir);
4003
Chris Mason94272162009-07-02 12:26:06 -04004004 if ((mode & S_IFREG)) {
4005 if (btrfs_test_opt(root, NODATASUM))
4006 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
4007 if (btrfs_test_opt(root, NODATACOW))
4008 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
4009 }
4010
Chris Mason39279cc2007-06-12 06:35:45 -04004011 insert_inode_hash(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004012 inode_tree_add(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004013 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004014fail:
Josef Bacikaec74772008-07-24 12:12:38 -04004015 if (dir)
4016 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04004017 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004018 iput(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004019 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004020}
4021
4022static inline u8 btrfs_inode_type(struct inode *inode)
4023{
4024 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
4025}
4026
Chris Masond352ac62008-09-29 15:18:18 -04004027/*
4028 * utility function to add 'inode' into 'parent_inode' with
4029 * a give name and a given sequence number.
4030 * if 'add_backref' is true, also insert a backref from the
4031 * inode to the parent directory.
4032 */
Chris Masone02119d2008-09-05 16:13:11 -04004033int btrfs_add_link(struct btrfs_trans_handle *trans,
4034 struct inode *parent_inode, struct inode *inode,
4035 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004036{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004037 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004038 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04004039 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Chris Mason5f39d392007-10-15 16:14:19 -04004040
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004041 if (unlikely(inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
4042 memcpy(&key, &BTRFS_I(inode)->root->root_key, sizeof(key));
4043 } else {
4044 key.objectid = inode->i_ino;
4045 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
4046 key.offset = 0;
4047 }
Chris Mason39279cc2007-06-12 06:35:45 -04004048
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004049 if (unlikely(inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
4050 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
4051 key.objectid, root->root_key.objectid,
4052 parent_inode->i_ino,
4053 index, name, name_len);
4054 } else if (add_backref) {
4055 ret = btrfs_insert_inode_ref(trans, root,
4056 name, name_len, inode->i_ino,
4057 parent_inode->i_ino, index);
4058 }
4059
Chris Mason39279cc2007-06-12 06:35:45 -04004060 if (ret == 0) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004061 ret = btrfs_insert_dir_item(trans, root, name, name_len,
4062 parent_inode->i_ino, &key,
4063 btrfs_inode_type(inode), index);
4064 BUG_ON(ret);
4065
Chris Masondbe674a2008-07-17 12:54:05 -04004066 btrfs_i_size_write(parent_inode, parent_inode->i_size +
Chris Masone02119d2008-09-05 16:13:11 -04004067 name_len * 2);
Chris Mason79c44582007-06-25 10:09:33 -04004068 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
Chris Masone02119d2008-09-05 16:13:11 -04004069 ret = btrfs_update_inode(trans, root, parent_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004070 }
4071 return ret;
4072}
4073
4074static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Chris Mason9c583092008-01-29 15:15:18 -05004075 struct dentry *dentry, struct inode *inode,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004076 int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004077{
Chris Masone02119d2008-09-05 16:13:11 -04004078 int err = btrfs_add_link(trans, dentry->d_parent->d_inode,
4079 inode, dentry->d_name.name,
4080 dentry->d_name.len, backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004081 if (!err) {
4082 d_instantiate(dentry, inode);
4083 return 0;
4084 }
4085 if (err > 0)
4086 err = -EEXIST;
4087 return err;
4088}
4089
Josef Bacik618e21d2007-07-11 10:18:17 -04004090static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
4091 int mode, dev_t rdev)
4092{
4093 struct btrfs_trans_handle *trans;
4094 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004095 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04004096 int err;
4097 int drop_inode = 0;
4098 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05004099 unsigned long nr = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004100 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04004101
4102 if (!new_valid_dev(rdev))
4103 return -EINVAL;
4104
Josef Bacik9ed74f22009-09-11 16:12:44 -04004105 /*
4106 * 2 for inode item and ref
4107 * 2 for dir items
4108 * 1 for xattr if selinux is on
4109 */
4110 err = btrfs_reserve_metadata_space(root, 5);
Chris Mason1832a6d2007-12-21 16:27:21 -05004111 if (err)
Josef Bacik9ed74f22009-09-11 16:12:44 -04004112 return err;
Chris Mason1832a6d2007-12-21 16:27:21 -05004113
Josef Bacik618e21d2007-07-11 10:18:17 -04004114 trans = btrfs_start_transaction(root, 1);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004115 if (!trans)
4116 goto fail;
Josef Bacik618e21d2007-07-11 10:18:17 -04004117 btrfs_set_trans_block_group(trans, dir);
4118
4119 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
4120 if (err) {
4121 err = -ENOSPC;
4122 goto out_unlock;
4123 }
4124
Josef Bacikaec74772008-07-24 12:12:38 -04004125 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05004126 dentry->d_name.len,
4127 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004128 BTRFS_I(dir)->block_group, mode, &index);
Josef Bacik618e21d2007-07-11 10:18:17 -04004129 err = PTR_ERR(inode);
4130 if (IS_ERR(inode))
4131 goto out_unlock;
4132
Jim Owens0279b4c2009-02-04 09:29:13 -05004133 err = btrfs_init_inode_security(inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04004134 if (err) {
4135 drop_inode = 1;
4136 goto out_unlock;
4137 }
4138
Josef Bacik618e21d2007-07-11 10:18:17 -04004139 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004140 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Josef Bacik618e21d2007-07-11 10:18:17 -04004141 if (err)
4142 drop_inode = 1;
4143 else {
4144 inode->i_op = &btrfs_special_inode_operations;
4145 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04004146 btrfs_update_inode(trans, root, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04004147 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004148 btrfs_update_inode_block_group(trans, inode);
4149 btrfs_update_inode_block_group(trans, dir);
4150out_unlock:
Chris Masond3c2fdc2007-09-17 10:58:06 -04004151 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04004152 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004153fail:
Josef Bacik9ed74f22009-09-11 16:12:44 -04004154 btrfs_unreserve_metadata_space(root, 5);
Josef Bacik618e21d2007-07-11 10:18:17 -04004155 if (drop_inode) {
4156 inode_dec_link_count(inode);
4157 iput(inode);
4158 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04004159 btrfs_btree_balance_dirty(root, nr);
Josef Bacik618e21d2007-07-11 10:18:17 -04004160 return err;
4161}
4162
Chris Mason39279cc2007-06-12 06:35:45 -04004163static int btrfs_create(struct inode *dir, struct dentry *dentry,
4164 int mode, struct nameidata *nd)
4165{
4166 struct btrfs_trans_handle *trans;
4167 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004168 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004169 int err;
4170 int drop_inode = 0;
Chris Mason1832a6d2007-12-21 16:27:21 -05004171 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004172 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004173 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004174
Josef Bacik9ed74f22009-09-11 16:12:44 -04004175 /*
4176 * 2 for inode item and ref
4177 * 2 for dir items
4178 * 1 for xattr if selinux is on
4179 */
4180 err = btrfs_reserve_metadata_space(root, 5);
Chris Mason1832a6d2007-12-21 16:27:21 -05004181 if (err)
Josef Bacik9ed74f22009-09-11 16:12:44 -04004182 return err;
4183
Chris Mason39279cc2007-06-12 06:35:45 -04004184 trans = btrfs_start_transaction(root, 1);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004185 if (!trans)
4186 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04004187 btrfs_set_trans_block_group(trans, dir);
4188
4189 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
4190 if (err) {
4191 err = -ENOSPC;
4192 goto out_unlock;
4193 }
4194
Josef Bacikaec74772008-07-24 12:12:38 -04004195 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05004196 dentry->d_name.len,
4197 dentry->d_parent->d_inode->i_ino,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004198 objectid, BTRFS_I(dir)->block_group, mode,
4199 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04004200 err = PTR_ERR(inode);
4201 if (IS_ERR(inode))
4202 goto out_unlock;
4203
Jim Owens0279b4c2009-02-04 09:29:13 -05004204 err = btrfs_init_inode_security(inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04004205 if (err) {
4206 drop_inode = 1;
4207 goto out_unlock;
4208 }
4209
Chris Mason39279cc2007-06-12 06:35:45 -04004210 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004211 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004212 if (err)
4213 drop_inode = 1;
4214 else {
4215 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04004216 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04004217 inode->i_fop = &btrfs_file_operations;
4218 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05004219 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04004220 }
Chris Mason39279cc2007-06-12 06:35:45 -04004221 btrfs_update_inode_block_group(trans, inode);
4222 btrfs_update_inode_block_group(trans, dir);
4223out_unlock:
Chris Masond3c2fdc2007-09-17 10:58:06 -04004224 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004225 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004226fail:
Josef Bacik9ed74f22009-09-11 16:12:44 -04004227 btrfs_unreserve_metadata_space(root, 5);
Chris Mason39279cc2007-06-12 06:35:45 -04004228 if (drop_inode) {
4229 inode_dec_link_count(inode);
4230 iput(inode);
4231 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04004232 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004233 return err;
4234}
4235
4236static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
4237 struct dentry *dentry)
4238{
4239 struct btrfs_trans_handle *trans;
4240 struct btrfs_root *root = BTRFS_I(dir)->root;
4241 struct inode *inode = old_dentry->d_inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004242 u64 index;
Chris Mason1832a6d2007-12-21 16:27:21 -05004243 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004244 int err;
4245 int drop_inode = 0;
4246
4247 if (inode->i_nlink == 0)
4248 return -ENOENT;
4249
Josef Bacik9ed74f22009-09-11 16:12:44 -04004250 /*
4251 * 1 item for inode ref
4252 * 2 items for dir items
4253 */
4254 err = btrfs_reserve_metadata_space(root, 3);
Chris Mason1832a6d2007-12-21 16:27:21 -05004255 if (err)
Josef Bacik9ed74f22009-09-11 16:12:44 -04004256 return err;
4257
4258 btrfs_inc_nlink(inode);
4259
Chris Mason3de45862008-11-17 21:02:50 -05004260 err = btrfs_set_inode_index(dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04004261 if (err)
4262 goto fail;
4263
Chris Mason39279cc2007-06-12 06:35:45 -04004264 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04004265
Chris Mason39279cc2007-06-12 06:35:45 -04004266 btrfs_set_trans_block_group(trans, dir);
4267 atomic_inc(&inode->i_count);
Josef Bacikaec74772008-07-24 12:12:38 -04004268
Chris Mason00e4e6b2008-08-05 11:18:09 -04004269 err = btrfs_add_nondir(trans, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04004270
Yan, Zhenga5719522009-09-24 09:17:31 -04004271 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04004272 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04004273 } else {
4274 btrfs_update_inode_block_group(trans, dir);
4275 err = btrfs_update_inode(trans, root, inode);
4276 BUG_ON(err);
4277 btrfs_log_new_name(trans, inode, NULL, dentry->d_parent);
4278 }
Chris Mason39279cc2007-06-12 06:35:45 -04004279
Chris Masond3c2fdc2007-09-17 10:58:06 -04004280 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004281 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004282fail:
Josef Bacik9ed74f22009-09-11 16:12:44 -04004283 btrfs_unreserve_metadata_space(root, 3);
Chris Mason39279cc2007-06-12 06:35:45 -04004284 if (drop_inode) {
4285 inode_dec_link_count(inode);
4286 iput(inode);
4287 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04004288 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004289 return err;
4290}
4291
Chris Mason39279cc2007-06-12 06:35:45 -04004292static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
4293{
Chris Masonb9d86662008-05-02 16:13:49 -04004294 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004295 struct btrfs_trans_handle *trans;
4296 struct btrfs_root *root = BTRFS_I(dir)->root;
4297 int err = 0;
4298 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04004299 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004300 u64 index = 0;
Chris Masond3c2fdc2007-09-17 10:58:06 -04004301 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04004302
Josef Bacik9ed74f22009-09-11 16:12:44 -04004303 /*
4304 * 2 items for inode and ref
4305 * 2 items for dir items
4306 * 1 for xattr if selinux is on
4307 */
4308 err = btrfs_reserve_metadata_space(root, 5);
Chris Mason1832a6d2007-12-21 16:27:21 -05004309 if (err)
Josef Bacik9ed74f22009-09-11 16:12:44 -04004310 return err;
Chris Mason1832a6d2007-12-21 16:27:21 -05004311
Chris Mason39279cc2007-06-12 06:35:45 -04004312 trans = btrfs_start_transaction(root, 1);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004313 if (!trans) {
4314 err = -ENOMEM;
Chris Mason39279cc2007-06-12 06:35:45 -04004315 goto out_unlock;
4316 }
Josef Bacik9ed74f22009-09-11 16:12:44 -04004317 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -04004318
4319 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
4320 if (err) {
4321 err = -ENOSPC;
4322 goto out_unlock;
4323 }
4324
Josef Bacikaec74772008-07-24 12:12:38 -04004325 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05004326 dentry->d_name.len,
4327 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004328 BTRFS_I(dir)->block_group, S_IFDIR | mode,
4329 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04004330 if (IS_ERR(inode)) {
4331 err = PTR_ERR(inode);
4332 goto out_fail;
4333 }
Chris Mason5f39d392007-10-15 16:14:19 -04004334
Chris Mason39279cc2007-06-12 06:35:45 -04004335 drop_on_err = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -04004336
Jim Owens0279b4c2009-02-04 09:29:13 -05004337 err = btrfs_init_inode_security(inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04004338 if (err)
4339 goto out_fail;
4340
Chris Mason39279cc2007-06-12 06:35:45 -04004341 inode->i_op = &btrfs_dir_inode_operations;
4342 inode->i_fop = &btrfs_dir_file_operations;
4343 btrfs_set_trans_block_group(trans, inode);
4344
Chris Masondbe674a2008-07-17 12:54:05 -04004345 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004346 err = btrfs_update_inode(trans, root, inode);
4347 if (err)
4348 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04004349
Chris Masone02119d2008-09-05 16:13:11 -04004350 err = btrfs_add_link(trans, dentry->d_parent->d_inode,
4351 inode, dentry->d_name.name,
4352 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004353 if (err)
4354 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04004355
Chris Mason39279cc2007-06-12 06:35:45 -04004356 d_instantiate(dentry, inode);
4357 drop_on_err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004358 btrfs_update_inode_block_group(trans, inode);
4359 btrfs_update_inode_block_group(trans, dir);
4360
4361out_fail:
Chris Masond3c2fdc2007-09-17 10:58:06 -04004362 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004363 btrfs_end_transaction_throttle(trans, root);
Chris Mason5f39d392007-10-15 16:14:19 -04004364
Chris Mason39279cc2007-06-12 06:35:45 -04004365out_unlock:
Josef Bacik9ed74f22009-09-11 16:12:44 -04004366 btrfs_unreserve_metadata_space(root, 5);
Chris Mason39279cc2007-06-12 06:35:45 -04004367 if (drop_on_err)
4368 iput(inode);
Chris Masond3c2fdc2007-09-17 10:58:06 -04004369 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004370 return err;
4371}
4372
Chris Masond352ac62008-09-29 15:18:18 -04004373/* helper for btfs_get_extent. Given an existing extent in the tree,
4374 * and an extent that you want to insert, deal with overlap and insert
4375 * the new extent into the tree.
4376 */
Chris Mason3b951512008-04-17 11:29:12 -04004377static int merge_extent_mapping(struct extent_map_tree *em_tree,
4378 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04004379 struct extent_map *em,
4380 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04004381{
4382 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04004383
Chris Masone6dcd2d2008-07-17 12:53:50 -04004384 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
4385 start_diff = map_start - em->start;
4386 em->start = map_start;
4387 em->len = map_len;
Chris Masonc8b97812008-10-29 14:49:59 -04004388 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
4389 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04004390 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04004391 em->block_len -= start_diff;
4392 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004393 return add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04004394}
4395
Chris Masonc8b97812008-10-29 14:49:59 -04004396static noinline int uncompress_inline(struct btrfs_path *path,
4397 struct inode *inode, struct page *page,
4398 size_t pg_offset, u64 extent_offset,
4399 struct btrfs_file_extent_item *item)
4400{
4401 int ret;
4402 struct extent_buffer *leaf = path->nodes[0];
4403 char *tmp;
4404 size_t max_size;
4405 unsigned long inline_size;
4406 unsigned long ptr;
4407
4408 WARN_ON(pg_offset != 0);
4409 max_size = btrfs_file_extent_ram_bytes(leaf, item);
4410 inline_size = btrfs_file_extent_inline_item_len(leaf,
4411 btrfs_item_nr(leaf, path->slots[0]));
4412 tmp = kmalloc(inline_size, GFP_NOFS);
4413 ptr = btrfs_file_extent_inline_start(item);
4414
4415 read_extent_buffer(leaf, tmp, ptr, inline_size);
4416
Chris Mason5b050f02008-11-11 09:34:41 -05004417 max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size);
Chris Masonc8b97812008-10-29 14:49:59 -04004418 ret = btrfs_zlib_decompress(tmp, page, extent_offset,
4419 inline_size, max_size);
4420 if (ret) {
4421 char *kaddr = kmap_atomic(page, KM_USER0);
4422 unsigned long copy_size = min_t(u64,
4423 PAGE_CACHE_SIZE - pg_offset,
4424 max_size - extent_offset);
4425 memset(kaddr + pg_offset, 0, copy_size);
4426 kunmap_atomic(kaddr, KM_USER0);
4427 }
4428 kfree(tmp);
4429 return 0;
4430}
4431
Chris Masond352ac62008-09-29 15:18:18 -04004432/*
4433 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05004434 * the ugly parts come from merging extents from the disk with the in-ram
4435 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04004436 * where the in-ram extents might be locked pending data=ordered completion.
4437 *
4438 * This also copies inline extents directly into the page.
4439 */
Chris Masond3977122009-01-05 21:25:51 -05004440
Chris Masona52d9a82007-08-27 16:49:44 -04004441struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05004442 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04004443 int create)
4444{
4445 int ret;
4446 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04004447 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04004448 u64 extent_start = 0;
4449 u64 extent_end = 0;
4450 u64 objectid = inode->i_ino;
4451 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04004452 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04004453 struct btrfs_root *root = BTRFS_I(inode)->root;
4454 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04004455 struct extent_buffer *leaf;
4456 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04004457 struct extent_map *em = NULL;
4458 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05004459 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04004460 struct btrfs_trans_handle *trans = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04004461 int compressed;
Chris Masona52d9a82007-08-27 16:49:44 -04004462
Chris Masona52d9a82007-08-27 16:49:44 -04004463again:
Chris Mason890871b2009-09-02 16:24:52 -04004464 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05004465 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04004466 if (em)
4467 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04004468 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05004469
Chris Masona52d9a82007-08-27 16:49:44 -04004470 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04004471 if (em->start > start || em->start + em->len <= start)
4472 free_extent_map(em);
4473 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05004474 free_extent_map(em);
4475 else
4476 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004477 }
Chris Masond1310b22008-01-24 16:13:08 -05004478 em = alloc_extent_map(GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04004479 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05004480 err = -ENOMEM;
4481 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004482 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004483 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05004484 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05004485 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05004486 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04004487 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04004488
4489 if (!path) {
4490 path = btrfs_alloc_path();
4491 BUG_ON(!path);
4492 }
4493
Chris Mason179e29e2007-11-01 11:28:41 -04004494 ret = btrfs_lookup_file_extent(trans, root, path,
4495 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04004496 if (ret < 0) {
4497 err = ret;
4498 goto out;
4499 }
4500
4501 if (ret != 0) {
4502 if (path->slots[0] == 0)
4503 goto not_found;
4504 path->slots[0]--;
4505 }
4506
Chris Mason5f39d392007-10-15 16:14:19 -04004507 leaf = path->nodes[0];
4508 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04004509 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04004510 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04004511 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4512 found_type = btrfs_key_type(&found_key);
4513 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04004514 found_type != BTRFS_EXTENT_DATA_KEY) {
4515 goto not_found;
4516 }
4517
Chris Mason5f39d392007-10-15 16:14:19 -04004518 found_type = btrfs_file_extent_type(leaf, item);
4519 extent_start = found_key.offset;
Chris Masonc8b97812008-10-29 14:49:59 -04004520 compressed = btrfs_file_extent_compression(leaf, item);
Yan Zhengd899e052008-10-30 14:25:28 -04004521 if (found_type == BTRFS_FILE_EXTENT_REG ||
4522 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04004523 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04004524 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04004525 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
4526 size_t size;
4527 size = btrfs_file_extent_inline_len(leaf, item);
4528 extent_end = (extent_start + size + root->sectorsize - 1) &
4529 ~((u64)root->sectorsize - 1);
4530 }
4531
4532 if (start >= extent_end) {
4533 path->slots[0]++;
4534 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
4535 ret = btrfs_next_leaf(root, path);
4536 if (ret < 0) {
4537 err = ret;
4538 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004539 }
Yan Zheng9036c102008-10-30 14:19:41 -04004540 if (ret > 0)
4541 goto not_found;
4542 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04004543 }
Yan Zheng9036c102008-10-30 14:19:41 -04004544 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4545 if (found_key.objectid != objectid ||
4546 found_key.type != BTRFS_EXTENT_DATA_KEY)
4547 goto not_found;
4548 if (start + len <= found_key.offset)
4549 goto not_found;
4550 em->start = start;
4551 em->len = found_key.offset - start;
4552 goto not_found_em;
4553 }
4554
Yan Zhengd899e052008-10-30 14:25:28 -04004555 if (found_type == BTRFS_FILE_EXTENT_REG ||
4556 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng9036c102008-10-30 14:19:41 -04004557 em->start = extent_start;
4558 em->len = extent_end - extent_start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -05004559 em->orig_start = extent_start -
4560 btrfs_file_extent_offset(leaf, item);
Chris Masondb945352007-10-15 16:15:53 -04004561 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
4562 if (bytenr == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04004563 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04004564 goto insert;
4565 }
Chris Masonc8b97812008-10-29 14:49:59 -04004566 if (compressed) {
4567 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
4568 em->block_start = bytenr;
4569 em->block_len = btrfs_file_extent_disk_num_bytes(leaf,
4570 item);
4571 } else {
4572 bytenr += btrfs_file_extent_offset(leaf, item);
4573 em->block_start = bytenr;
4574 em->block_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04004575 if (found_type == BTRFS_FILE_EXTENT_PREALLOC)
4576 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -04004577 }
Chris Masona52d9a82007-08-27 16:49:44 -04004578 goto insert;
4579 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04004580 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04004581 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04004582 size_t size;
4583 size_t extent_offset;
4584 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04004585
Chris Masona52d9a82007-08-27 16:49:44 -04004586 em->block_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04004587 if (!page || create) {
Yan689f9342007-10-29 11:41:07 -04004588 em->start = extent_start;
Yan Zheng9036c102008-10-30 14:19:41 -04004589 em->len = extent_end - extent_start;
Yan689f9342007-10-29 11:41:07 -04004590 goto out;
4591 }
4592
Yan Zheng9036c102008-10-30 14:19:41 -04004593 size = btrfs_file_extent_inline_len(leaf, item);
4594 extent_offset = page_offset(page) + pg_offset - extent_start;
Chris Mason70dec802008-01-29 09:59:12 -05004595 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04004596 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04004597 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05004598 em->len = (copy_size + root->sectorsize - 1) &
4599 ~((u64)root->sectorsize - 1);
Yan Zhengff5b7ee2008-11-10 07:34:43 -05004600 em->orig_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04004601 if (compressed)
4602 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Yan689f9342007-10-29 11:41:07 -04004603 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04004604 if (create == 0 && !PageUptodate(page)) {
Chris Masonc8b97812008-10-29 14:49:59 -04004605 if (btrfs_file_extent_compression(leaf, item) ==
4606 BTRFS_COMPRESS_ZLIB) {
4607 ret = uncompress_inline(path, inode, page,
4608 pg_offset,
4609 extent_offset, item);
4610 BUG_ON(ret);
4611 } else {
4612 map = kmap(page);
4613 read_extent_buffer(leaf, map + pg_offset, ptr,
4614 copy_size);
Chris Mason93c82d52009-09-11 12:36:29 -04004615 if (pg_offset + copy_size < PAGE_CACHE_SIZE) {
4616 memset(map + pg_offset + copy_size, 0,
4617 PAGE_CACHE_SIZE - pg_offset -
4618 copy_size);
4619 }
Chris Masonc8b97812008-10-29 14:49:59 -04004620 kunmap(page);
4621 }
Chris Mason179e29e2007-11-01 11:28:41 -04004622 flush_dcache_page(page);
4623 } else if (create && PageUptodate(page)) {
4624 if (!trans) {
4625 kunmap(page);
4626 free_extent_map(em);
4627 em = NULL;
4628 btrfs_release_path(root, path);
Chris Masonf9295742008-07-17 12:54:14 -04004629 trans = btrfs_join_transaction(root, 1);
Chris Mason179e29e2007-11-01 11:28:41 -04004630 goto again;
4631 }
Chris Masonc8b97812008-10-29 14:49:59 -04004632 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05004633 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04004634 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04004635 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04004636 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04004637 }
Chris Masond1310b22008-01-24 16:13:08 -05004638 set_extent_uptodate(io_tree, em->start,
4639 extent_map_end(em) - 1, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04004640 goto insert;
4641 } else {
Chris Masond3977122009-01-05 21:25:51 -05004642 printk(KERN_ERR "btrfs unknown found_type %d\n", found_type);
Chris Masona52d9a82007-08-27 16:49:44 -04004643 WARN_ON(1);
4644 }
4645not_found:
4646 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05004647 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04004648not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04004649 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04004650 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04004651insert:
4652 btrfs_release_path(root, path);
Chris Masond1310b22008-01-24 16:13:08 -05004653 if (em->start > start || extent_map_end(em) <= start) {
Chris Masond3977122009-01-05 21:25:51 -05004654 printk(KERN_ERR "Btrfs: bad extent! em: [%llu %llu] passed "
4655 "[%llu %llu]\n", (unsigned long long)em->start,
4656 (unsigned long long)em->len,
4657 (unsigned long long)start,
4658 (unsigned long long)len);
Chris Masona52d9a82007-08-27 16:49:44 -04004659 err = -EIO;
4660 goto out;
4661 }
Chris Masond1310b22008-01-24 16:13:08 -05004662
4663 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04004664 write_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04004665 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04004666 /* it is possible that someone inserted the extent into the tree
4667 * while we had the lock dropped. It is also possible that
4668 * an overlapping map exists in the tree
4669 */
Chris Masona52d9a82007-08-27 16:49:44 -04004670 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04004671 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004672
4673 ret = 0;
4674
Chris Mason3b951512008-04-17 11:29:12 -04004675 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04004676 if (existing && (existing->start > start ||
4677 existing->start + existing->len <= start)) {
4678 free_extent_map(existing);
4679 existing = NULL;
4680 }
Chris Mason3b951512008-04-17 11:29:12 -04004681 if (!existing) {
4682 existing = lookup_extent_mapping(em_tree, em->start,
4683 em->len);
4684 if (existing) {
4685 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04004686 em, start,
4687 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04004688 free_extent_map(existing);
4689 if (err) {
4690 free_extent_map(em);
4691 em = NULL;
4692 }
4693 } else {
4694 err = -EIO;
Chris Mason3b951512008-04-17 11:29:12 -04004695 free_extent_map(em);
4696 em = NULL;
4697 }
4698 } else {
4699 free_extent_map(em);
4700 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004701 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04004702 }
Chris Masona52d9a82007-08-27 16:49:44 -04004703 }
Chris Mason890871b2009-09-02 16:24:52 -04004704 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04004705out:
Chris Masonf4219502008-07-22 11:18:09 -04004706 if (path)
4707 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04004708 if (trans) {
4709 ret = btrfs_end_transaction(trans, root);
Chris Masond3977122009-01-05 21:25:51 -05004710 if (!err)
Chris Masona52d9a82007-08-27 16:49:44 -04004711 err = ret;
4712 }
Chris Masona52d9a82007-08-27 16:49:44 -04004713 if (err) {
4714 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04004715 return ERR_PTR(err);
4716 }
4717 return em;
4718}
4719
Chris Mason16432982008-04-10 10:23:21 -04004720static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
4721 const struct iovec *iov, loff_t offset,
4722 unsigned long nr_segs)
4723{
Chris Masone1c4b742008-04-22 13:26:46 -04004724 return -EINVAL;
Chris Mason16432982008-04-10 10:23:21 -04004725}
4726
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004727static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
4728 __u64 start, __u64 len)
4729{
4730 return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent);
4731}
4732
Chris Mason9ebefb182007-06-15 13:50:00 -04004733int btrfs_readpage(struct file *file, struct page *page)
4734{
Chris Masond1310b22008-01-24 16:13:08 -05004735 struct extent_io_tree *tree;
4736 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04004737 return extent_read_full_page(tree, page, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04004738}
Chris Mason1832a6d2007-12-21 16:27:21 -05004739
Chris Mason39279cc2007-06-12 06:35:45 -04004740static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
4741{
Chris Masond1310b22008-01-24 16:13:08 -05004742 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04004743
4744
4745 if (current->flags & PF_MEMALLOC) {
4746 redirty_page_for_writepage(wbc, page);
4747 unlock_page(page);
4748 return 0;
4749 }
Chris Masond1310b22008-01-24 16:13:08 -05004750 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04004751 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
4752}
Chris Mason39279cc2007-06-12 06:35:45 -04004753
Chris Masonf4219502008-07-22 11:18:09 -04004754int btrfs_writepages(struct address_space *mapping,
4755 struct writeback_control *wbc)
Chris Masonb293f022007-11-01 19:45:34 -04004756{
Chris Masond1310b22008-01-24 16:13:08 -05004757 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05004758
Chris Masond1310b22008-01-24 16:13:08 -05004759 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04004760 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
4761}
4762
Chris Mason3ab2fb52007-11-08 10:59:22 -05004763static int
4764btrfs_readpages(struct file *file, struct address_space *mapping,
4765 struct list_head *pages, unsigned nr_pages)
4766{
Chris Masond1310b22008-01-24 16:13:08 -05004767 struct extent_io_tree *tree;
4768 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05004769 return extent_readpages(tree, mapping, pages, nr_pages,
4770 btrfs_get_extent);
4771}
Chris Masone6dcd2d2008-07-17 12:53:50 -04004772static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04004773{
Chris Masond1310b22008-01-24 16:13:08 -05004774 struct extent_io_tree *tree;
4775 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04004776 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004777
Chris Masond1310b22008-01-24 16:13:08 -05004778 tree = &BTRFS_I(page->mapping->host)->io_tree;
4779 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05004780 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04004781 if (ret == 1) {
4782 ClearPagePrivate(page);
4783 set_page_private(page, 0);
4784 page_cache_release(page);
4785 }
4786 return ret;
4787}
Chris Mason39279cc2007-06-12 06:35:45 -04004788
Chris Masone6dcd2d2008-07-17 12:53:50 -04004789static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
4790{
Chris Mason98509cf2008-09-11 15:51:43 -04004791 if (PageWriteback(page) || PageDirty(page))
4792 return 0;
Yan Zhengb335b002009-02-12 10:06:04 -05004793 return __btrfs_releasepage(page, gfp_flags & GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004794}
4795
Chris Masona52d9a82007-08-27 16:49:44 -04004796static void btrfs_invalidatepage(struct page *page, unsigned long offset)
4797{
Chris Masond1310b22008-01-24 16:13:08 -05004798 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004799 struct btrfs_ordered_extent *ordered;
4800 u64 page_start = page_offset(page);
4801 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04004802
Chris Mason8b62b722009-09-02 16:53:46 -04004803
4804 /*
4805 * we have the page locked, so new writeback can't start,
4806 * and the dirty bit won't be cleared while we are here.
4807 *
4808 * Wait for IO on this page so that we can safely clear
4809 * the PagePrivate2 bit and do ordered accounting
4810 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04004811 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04004812
Chris Masond1310b22008-01-24 16:13:08 -05004813 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004814 if (offset) {
4815 btrfs_releasepage(page, GFP_NOFS);
4816 return;
4817 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004818 lock_extent(tree, page_start, page_end, GFP_NOFS);
4819 ordered = btrfs_lookup_ordered_extent(page->mapping->host,
4820 page_offset(page));
4821 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04004822 /*
4823 * IO on this page will never be started, so we need
4824 * to account for any ordered extents now
4825 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04004826 clear_extent_bit(tree, page_start, page_end,
4827 EXTENT_DIRTY | EXTENT_DELALLOC |
Chris Mason2c64c532009-09-02 15:04:12 -04004828 EXTENT_LOCKED, 1, 0, NULL, GFP_NOFS);
Chris Mason8b62b722009-09-02 16:53:46 -04004829 /*
4830 * whoever cleared the private bit is responsible
4831 * for the finish_ordered_io
4832 */
4833 if (TestClearPagePrivate2(page)) {
4834 btrfs_finish_ordered_io(page->mapping->host,
4835 page_start, page_end);
4836 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004837 btrfs_put_ordered_extent(ordered);
4838 lock_extent(tree, page_start, page_end, GFP_NOFS);
4839 }
4840 clear_extent_bit(tree, page_start, page_end,
Chris Mason8b62b722009-09-02 16:53:46 -04004841 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC,
Chris Mason2c64c532009-09-02 15:04:12 -04004842 1, 1, NULL, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004843 __btrfs_releasepage(page, GFP_NOFS);
4844
Chris Mason4a096752008-07-21 10:29:44 -04004845 ClearPageChecked(page);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04004846 if (PagePrivate(page)) {
Chris Mason9ad6b7b2008-04-18 16:11:30 -04004847 ClearPagePrivate(page);
4848 set_page_private(page, 0);
4849 page_cache_release(page);
4850 }
Chris Mason39279cc2007-06-12 06:35:45 -04004851}
4852
Chris Mason9ebefb182007-06-15 13:50:00 -04004853/*
4854 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
4855 * called from a page fault handler when a page is first dirtied. Hence we must
4856 * be careful to check for EOF conditions here. We set the page up correctly
4857 * for a written page which means we get ENOSPC checking when writing into
4858 * holes and correct delalloc and unwritten extent mapping on filesystems that
4859 * support these features.
4860 *
4861 * We are not allowed to take the i_mutex here so we have to play games to
4862 * protect against truncate races as the page could now be beyond EOF. Because
4863 * vmtruncate() writes the inode size before removing pages, once we have the
4864 * page lock we can determine safely if the page is beyond EOF. If it is not
4865 * beyond EOF, then the page is guaranteed safe against truncation until we
4866 * unlock the page.
4867 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07004868int btrfs_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04004869{
Nick Pigginc2ec1752009-03-31 15:23:21 -07004870 struct page *page = vmf->page;
Chris Mason6da6aba2007-12-18 16:15:09 -05004871 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05004872 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004873 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
4874 struct btrfs_ordered_extent *ordered;
4875 char *kaddr;
4876 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04004877 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05004878 int ret;
Chris Masona52d9a82007-08-27 16:49:44 -04004879 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004880 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04004881
Josef Bacik6a632092009-02-20 11:00:09 -05004882 ret = btrfs_check_data_free_space(root, inode, PAGE_CACHE_SIZE);
Nick Piggin56a76f82009-03-31 15:23:23 -07004883 if (ret) {
4884 if (ret == -ENOMEM)
4885 ret = VM_FAULT_OOM;
4886 else /* -ENOSPC, -EIO, etc */
4887 ret = VM_FAULT_SIGBUS;
Chris Mason1832a6d2007-12-21 16:27:21 -05004888 goto out;
Nick Piggin56a76f82009-03-31 15:23:23 -07004889 }
Chris Mason1832a6d2007-12-21 16:27:21 -05004890
Josef Bacik9ed74f22009-09-11 16:12:44 -04004891 ret = btrfs_reserve_metadata_for_delalloc(root, inode, 1);
4892 if (ret) {
4893 btrfs_free_reserved_data_space(root, inode, PAGE_CACHE_SIZE);
4894 ret = VM_FAULT_SIGBUS;
4895 goto out;
4896 }
4897
Nick Piggin56a76f82009-03-31 15:23:23 -07004898 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04004899again:
Chris Mason9ebefb182007-06-15 13:50:00 -04004900 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04004901 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004902 page_start = page_offset(page);
4903 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04004904
Chris Mason9ebefb182007-06-15 13:50:00 -04004905 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04004906 (page_start >= size)) {
Josef Bacik6a632092009-02-20 11:00:09 -05004907 btrfs_free_reserved_data_space(root, inode, PAGE_CACHE_SIZE);
Chris Mason9ebefb182007-06-15 13:50:00 -04004908 /* page got truncated out from underneath us */
4909 goto out_unlock;
4910 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004911 wait_on_page_writeback(page);
4912
4913 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
4914 set_page_extent_mapped(page);
4915
Chris Masoneb84ae02008-07-17 13:53:27 -04004916 /*
4917 * we can't set the delalloc bits if there are pending ordered
4918 * extents. Drop our locks and wait for them to finish
4919 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04004920 ordered = btrfs_lookup_ordered_extent(inode, page_start);
4921 if (ordered) {
4922 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
4923 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04004924 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004925 btrfs_put_ordered_extent(ordered);
4926 goto again;
4927 }
4928
Josef Bacikfbf19082009-10-01 17:10:23 -04004929 /*
4930 * XXX - page_mkwrite gets called every time the page is dirtied, even
4931 * if it was already dirty, so for space accounting reasons we need to
4932 * clear any delalloc bits for the range we are fixing to save. There
4933 * is probably a better way to do this, but for now keep consistent with
4934 * prepare_pages in the normal write path.
4935 */
4936 clear_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end,
4937 EXTENT_DIRTY | EXTENT_DELALLOC, GFP_NOFS);
4938
Josef Bacik9ed74f22009-09-11 16:12:44 -04004939 ret = btrfs_set_extent_delalloc(inode, page_start, page_end);
4940 if (ret) {
4941 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
4942 ret = VM_FAULT_SIGBUS;
Josef Bacikfbf19082009-10-01 17:10:23 -04004943 btrfs_free_reserved_data_space(root, inode, PAGE_CACHE_SIZE);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004944 goto out_unlock;
4945 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004946 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04004947
4948 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04004949 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04004950 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04004951 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04004952 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04004953
Chris Masone6dcd2d2008-07-17 12:53:50 -04004954 if (zero_start != PAGE_CACHE_SIZE) {
4955 kaddr = kmap(page);
4956 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
4957 flush_dcache_page(page);
4958 kunmap(page);
4959 }
Chris Mason247e7432008-07-17 12:53:51 -04004960 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004961 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04004962 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04004963
4964 BTRFS_I(inode)->last_trans = root->fs_info->generation + 1;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004965 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04004966
4967out_unlock:
Josef Bacik9ed74f22009-09-11 16:12:44 -04004968 btrfs_unreserve_metadata_for_delalloc(root, inode, 1);
Chris Mason50a9b212009-09-11 12:33:12 -04004969 if (!ret)
4970 return VM_FAULT_LOCKED;
Chris Mason9ebefb182007-06-15 13:50:00 -04004971 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05004972out:
Chris Mason9ebefb182007-06-15 13:50:00 -04004973 return ret;
4974}
4975
Chris Mason39279cc2007-06-12 06:35:45 -04004976static void btrfs_truncate(struct inode *inode)
4977{
4978 struct btrfs_root *root = BTRFS_I(inode)->root;
4979 int ret;
4980 struct btrfs_trans_handle *trans;
Chris Masond3c2fdc2007-09-17 10:58:06 -04004981 unsigned long nr;
Chris Masondbe674a2008-07-17 12:54:05 -04004982 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -04004983
4984 if (!S_ISREG(inode->i_mode))
4985 return;
4986 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
4987 return;
4988
4989 btrfs_truncate_page(inode->i_mapping, inode->i_size);
Chris Mason4a096752008-07-21 10:29:44 -04004990 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -04004991
Chris Mason39279cc2007-06-12 06:35:45 -04004992 trans = btrfs_start_transaction(root, 1);
Chris Mason5a3f23d2009-03-31 13:27:11 -04004993
4994 /*
4995 * setattr is responsible for setting the ordered_data_close flag,
4996 * but that is only tested during the last file release. That
4997 * could happen well after the next commit, leaving a great big
4998 * window where new writes may get lost if someone chooses to write
4999 * to this file after truncating to zero
5000 *
5001 * The inode doesn't have any dirty data here, and so if we commit
5002 * this is a noop. If someone immediately starts writing to the inode
5003 * it is very likely we'll catch some of their writes in this
5004 * transaction, and the commit will find this file on the ordered
5005 * data list with good things to send down.
5006 *
5007 * This is a best effort solution, there is still a window where
5008 * using truncate to replace the contents of the file will
5009 * end up with a zero length file after a crash.
5010 */
5011 if (inode->i_size == 0 && BTRFS_I(inode)->ordered_data_close)
5012 btrfs_add_ordered_operation(trans, root, inode);
5013
Chris Mason39279cc2007-06-12 06:35:45 -04005014 btrfs_set_trans_block_group(trans, inode);
Chris Masondbe674a2008-07-17 12:54:05 -04005015 btrfs_i_size_write(inode, inode->i_size);
Chris Mason39279cc2007-06-12 06:35:45 -04005016
Josef Bacik7b128762008-07-24 12:17:14 -04005017 ret = btrfs_orphan_add(trans, inode);
5018 if (ret)
5019 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04005020 /* FIXME, add redo link to tree so we don't leak on crash */
Chris Masone02119d2008-09-05 16:13:11 -04005021 ret = btrfs_truncate_inode_items(trans, root, inode, inode->i_size,
Chris Mason85e21ba2008-01-29 15:11:36 -05005022 BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04005023 btrfs_update_inode(trans, root, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04005024
Josef Bacik7b128762008-07-24 12:17:14 -04005025 ret = btrfs_orphan_del(trans, inode);
5026 BUG_ON(ret);
5027
5028out:
5029 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04005030 ret = btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04005031 BUG_ON(ret);
Chris Masond3c2fdc2007-09-17 10:58:06 -04005032 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04005033}
5034
Sven Wegener3b963622008-06-09 21:57:42 -04005035/*
Chris Masond352ac62008-09-29 15:18:18 -04005036 * create a new subvolume directory/inode (helper for the ioctl).
5037 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05005038int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Yan, Zheng76dda932009-09-21 16:00:26 -04005039 struct btrfs_root *new_root,
Yan Zhengd2fb3432008-12-11 16:30:39 -05005040 u64 new_dirid, u64 alloc_hint)
Chris Mason39279cc2007-06-12 06:35:45 -04005041{
Chris Mason39279cc2007-06-12 06:35:45 -04005042 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04005043 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005044 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005045
Josef Bacikaec74772008-07-24 12:12:38 -04005046 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2, new_dirid,
Yan Zhengd2fb3432008-12-11 16:30:39 -05005047 new_dirid, alloc_hint, S_IFDIR | 0700, &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04005048 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005049 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04005050 inode->i_op = &btrfs_dir_inode_operations;
5051 inode->i_fop = &btrfs_dir_file_operations;
5052
Chris Mason39279cc2007-06-12 06:35:45 -04005053 inode->i_nlink = 1;
Chris Masondbe674a2008-07-17 12:54:05 -04005054 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04005055
Yan, Zheng76dda932009-09-21 16:00:26 -04005056 err = btrfs_update_inode(trans, new_root, inode);
5057 BUG_ON(err);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04005058
Yan, Zheng76dda932009-09-21 16:00:26 -04005059 iput(inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04005060 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005061}
5062
Chris Masond352ac62008-09-29 15:18:18 -04005063/* helper function for file defrag and space balancing. This
5064 * forces readahead on a given range of bytes in an inode
5065 */
Chris Masonedbd8d42007-12-21 16:27:24 -05005066unsigned long btrfs_force_ra(struct address_space *mapping,
Chris Mason86479a02007-09-10 19:58:16 -04005067 struct file_ra_state *ra, struct file *file,
5068 pgoff_t offset, pgoff_t last_index)
5069{
Chris Mason8e7bf942008-04-28 09:02:36 -04005070 pgoff_t req_size = last_index - offset + 1;
Chris Mason86479a02007-09-10 19:58:16 -04005071
Chris Mason86479a02007-09-10 19:58:16 -04005072 page_cache_sync_readahead(mapping, ra, file, offset, req_size);
5073 return offset + req_size;
Chris Mason86479a02007-09-10 19:58:16 -04005074}
5075
Chris Mason39279cc2007-06-12 06:35:45 -04005076struct inode *btrfs_alloc_inode(struct super_block *sb)
5077{
5078 struct btrfs_inode *ei;
5079
5080 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
5081 if (!ei)
5082 return NULL;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04005083 ei->last_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04005084 ei->logged_trans = 0;
Josef Bacik9ed74f22009-09-11 16:12:44 -04005085 ei->delalloc_extents = 0;
5086 ei->delalloc_reserved_extents = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005087 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Josef Bacik7b128762008-07-24 12:17:14 -04005088 INIT_LIST_HEAD(&ei->i_orphan);
Chris Mason5a3f23d2009-03-31 13:27:11 -04005089 INIT_LIST_HEAD(&ei->ordered_operations);
Chris Mason39279cc2007-06-12 06:35:45 -04005090 return &ei->vfs_inode;
5091}
5092
5093void btrfs_destroy_inode(struct inode *inode)
5094{
Chris Masone6dcd2d2008-07-17 12:53:50 -04005095 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04005096 struct btrfs_root *root = BTRFS_I(inode)->root;
5097
Chris Mason39279cc2007-06-12 06:35:45 -04005098 WARN_ON(!list_empty(&inode->i_dentry));
5099 WARN_ON(inode->i_data.nrpages);
5100
Chris Mason5a3f23d2009-03-31 13:27:11 -04005101 /*
5102 * Make sure we're properly removed from the ordered operation
5103 * lists.
5104 */
5105 smp_mb();
5106 if (!list_empty(&BTRFS_I(inode)->ordered_operations)) {
5107 spin_lock(&root->fs_info->ordered_extent_lock);
5108 list_del_init(&BTRFS_I(inode)->ordered_operations);
5109 spin_unlock(&root->fs_info->ordered_extent_lock);
5110 }
5111
5112 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04005113 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
5114 printk(KERN_ERR "BTRFS: inode %lu: inode still on the orphan"
5115 " list\n", inode->i_ino);
5116 dump_stack();
5117 }
Chris Mason5a3f23d2009-03-31 13:27:11 -04005118 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04005119
Chris Masond3977122009-01-05 21:25:51 -05005120 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04005121 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
5122 if (!ordered)
5123 break;
5124 else {
Chris Masond3977122009-01-05 21:25:51 -05005125 printk(KERN_ERR "btrfs found ordered "
5126 "extent %llu %llu on inode cleanup\n",
5127 (unsigned long long)ordered->file_offset,
5128 (unsigned long long)ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005129 btrfs_remove_ordered_extent(inode, ordered);
5130 btrfs_put_ordered_extent(ordered);
5131 btrfs_put_ordered_extent(ordered);
5132 }
5133 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005134 inode_tree_del(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04005135 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04005136 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
5137}
5138
Yan, Zheng76dda932009-09-21 16:00:26 -04005139void btrfs_drop_inode(struct inode *inode)
5140{
5141 struct btrfs_root *root = BTRFS_I(inode)->root;
5142
5143 if (inode->i_nlink > 0 && btrfs_root_refs(&root->root_item) == 0)
5144 generic_delete_inode(inode);
5145 else
5146 generic_drop_inode(inode);
5147}
5148
Sven Wegener0ee0fda2008-07-30 16:54:26 -04005149static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04005150{
5151 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
5152
5153 inode_init_once(&ei->vfs_inode);
5154}
5155
5156void btrfs_destroy_cachep(void)
5157{
5158 if (btrfs_inode_cachep)
5159 kmem_cache_destroy(btrfs_inode_cachep);
5160 if (btrfs_trans_handle_cachep)
5161 kmem_cache_destroy(btrfs_trans_handle_cachep);
5162 if (btrfs_transaction_cachep)
5163 kmem_cache_destroy(btrfs_transaction_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04005164 if (btrfs_path_cachep)
5165 kmem_cache_destroy(btrfs_path_cachep);
5166}
5167
5168int btrfs_init_cachep(void)
5169{
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02005170 btrfs_inode_cachep = kmem_cache_create("btrfs_inode_cache",
5171 sizeof(struct btrfs_inode), 0,
5172 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04005173 if (!btrfs_inode_cachep)
5174 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02005175
5176 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle_cache",
5177 sizeof(struct btrfs_trans_handle), 0,
5178 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04005179 if (!btrfs_trans_handle_cachep)
5180 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02005181
5182 btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction_cache",
5183 sizeof(struct btrfs_transaction), 0,
5184 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04005185 if (!btrfs_transaction_cachep)
5186 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02005187
5188 btrfs_path_cachep = kmem_cache_create("btrfs_path_cache",
5189 sizeof(struct btrfs_path), 0,
5190 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04005191 if (!btrfs_path_cachep)
5192 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02005193
Chris Mason39279cc2007-06-12 06:35:45 -04005194 return 0;
5195fail:
5196 btrfs_destroy_cachep();
5197 return -ENOMEM;
5198}
5199
5200static int btrfs_getattr(struct vfsmount *mnt,
5201 struct dentry *dentry, struct kstat *stat)
5202{
5203 struct inode *inode = dentry->d_inode;
5204 generic_fillattr(inode, stat);
Chris Mason3394e162008-11-17 20:42:26 -05005205 stat->dev = BTRFS_I(inode)->root->anon_super.s_dev;
Chris Masond6667462008-01-03 14:51:00 -05005206 stat->blksize = PAGE_CACHE_SIZE;
Yan Zhenga76a3cd2008-10-09 11:46:29 -04005207 stat->blocks = (inode_get_bytes(inode) +
5208 BTRFS_I(inode)->delalloc_bytes) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04005209 return 0;
5210}
5211
Chris Masond3977122009-01-05 21:25:51 -05005212static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
5213 struct inode *new_dir, struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04005214{
5215 struct btrfs_trans_handle *trans;
5216 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005217 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005218 struct inode *new_inode = new_dentry->d_inode;
5219 struct inode *old_inode = old_dentry->d_inode;
5220 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005221 u64 index = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005222 u64 root_objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04005223 int ret;
5224
Yan, Zhengf679a842009-09-24 09:17:31 -04005225 if (new_dir->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
5226 return -EPERM;
5227
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005228 /* we only allow rename subvolume link between subvolumes */
5229 if (old_inode->i_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05005230 return -EXDEV;
5231
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005232 if (old_inode->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
5233 (new_inode && new_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID))
5234 return -ENOTEMPTY;
5235
Chris Mason39279cc2007-06-12 06:35:45 -04005236 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005237 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04005238 return -ENOTEMPTY;
Chris Mason0660b5a2008-11-17 20:37:39 -05005239
Josef Bacik9ed74f22009-09-11 16:12:44 -04005240 /*
5241 * 2 items for dir items
5242 * 1 item for orphan entry
5243 * 1 item for ref
5244 */
5245 ret = btrfs_reserve_metadata_space(root, 4);
Chris Mason1832a6d2007-12-21 16:27:21 -05005246 if (ret)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005247 return ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05005248
Chris Mason5a3f23d2009-03-31 13:27:11 -04005249 /*
5250 * we're using rename to replace one file with another.
5251 * and the replacement file is large. Start IO on it now so
5252 * we don't add too much work to the end of the transaction
5253 */
Bartlomiej Zolnierkiewicz4baf8c92009-08-07 13:47:08 -04005254 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size &&
Chris Mason5a3f23d2009-03-31 13:27:11 -04005255 old_inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
5256 filemap_flush(old_inode->i_mapping);
5257
Yan, Zheng76dda932009-09-21 16:00:26 -04005258 /* close the racy window with snapshot create/destroy ioctl */
5259 if (old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
5260 down_read(&root->fs_info->subvol_sem);
5261
Chris Mason39279cc2007-06-12 06:35:45 -04005262 trans = btrfs_start_transaction(root, 1);
Yan, Zhenga5719522009-09-24 09:17:31 -04005263 btrfs_set_trans_block_group(trans, new_dir);
Chris Mason5f39d392007-10-15 16:14:19 -04005264
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005265 if (dest != root)
5266 btrfs_record_root_in_trans(trans, dest);
5267
Yan, Zhenga5719522009-09-24 09:17:31 -04005268 ret = btrfs_set_inode_index(new_dir, &index);
5269 if (ret)
5270 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04005271
Yan, Zhenga5719522009-09-24 09:17:31 -04005272 if (unlikely(old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005273 /* force full log commit if subvolume involved. */
5274 root->fs_info->last_trans_log_full_commit = trans->transid;
5275 } else {
Yan, Zhenga5719522009-09-24 09:17:31 -04005276 ret = btrfs_insert_inode_ref(trans, dest,
5277 new_dentry->d_name.name,
5278 new_dentry->d_name.len,
5279 old_inode->i_ino,
5280 new_dir->i_ino, index);
5281 if (ret)
5282 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005283 /*
5284 * this is an ugly little race, but the rename is required
5285 * to make sure that if we crash, the inode is either at the
5286 * old name or the new one. pinning the log transaction lets
5287 * us make sure we don't allow a log commit to come in after
5288 * we unlink the name but before we add the new name back in.
5289 */
5290 btrfs_pin_log_trans(root);
5291 }
Yan, Zhenga5719522009-09-24 09:17:31 -04005292 /*
5293 * make sure the inode gets flushed if it is replacing
5294 * something.
5295 */
5296 if (new_inode && new_inode->i_size &&
5297 old_inode && S_ISREG(old_inode->i_mode)) {
5298 btrfs_add_ordered_operation(trans, root, old_inode);
5299 }
Chris Mason39279cc2007-06-12 06:35:45 -04005300
Chris Mason39279cc2007-06-12 06:35:45 -04005301 old_dir->i_ctime = old_dir->i_mtime = ctime;
5302 new_dir->i_ctime = new_dir->i_mtime = ctime;
5303 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04005304
Chris Mason12fcfd22009-03-24 10:24:20 -04005305 if (old_dentry->d_parent != new_dentry->d_parent)
5306 btrfs_record_unlink_dir(trans, old_dir, old_inode, 1);
5307
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005308 if (unlikely(old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
5309 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
5310 ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid,
5311 old_dentry->d_name.name,
5312 old_dentry->d_name.len);
5313 } else {
5314 btrfs_inc_nlink(old_dentry->d_inode);
5315 ret = btrfs_unlink_inode(trans, root, old_dir,
5316 old_dentry->d_inode,
5317 old_dentry->d_name.name,
5318 old_dentry->d_name.len);
5319 }
5320 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04005321
5322 if (new_inode) {
5323 new_inode->i_ctime = CURRENT_TIME;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005324 if (unlikely(new_inode->i_ino ==
5325 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
5326 root_objectid = BTRFS_I(new_inode)->location.objectid;
5327 ret = btrfs_unlink_subvol(trans, dest, new_dir,
5328 root_objectid,
5329 new_dentry->d_name.name,
5330 new_dentry->d_name.len);
5331 BUG_ON(new_inode->i_nlink == 0);
5332 } else {
5333 ret = btrfs_unlink_inode(trans, dest, new_dir,
5334 new_dentry->d_inode,
5335 new_dentry->d_name.name,
5336 new_dentry->d_name.len);
5337 }
5338 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04005339 if (new_inode->i_nlink == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04005340 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005341 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04005342 }
Chris Mason39279cc2007-06-12 06:35:45 -04005343 }
Josef Bacikaec74772008-07-24 12:12:38 -04005344
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005345 ret = btrfs_add_link(trans, new_dir, old_inode,
5346 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04005347 new_dentry->d_name.len, 0, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005348 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04005349
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005350 if (old_inode->i_ino != BTRFS_FIRST_FREE_OBJECTID) {
5351 btrfs_log_new_name(trans, old_inode, old_dir,
5352 new_dentry->d_parent);
5353 btrfs_end_log_trans(root);
5354 }
Yan, Zhenga5719522009-09-24 09:17:31 -04005355out_fail:
Chris Masonab78c842008-07-29 16:15:18 -04005356 btrfs_end_transaction_throttle(trans, root);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005357
Yan, Zheng76dda932009-09-21 16:00:26 -04005358 if (old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
5359 up_read(&root->fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04005360
5361 btrfs_unreserve_metadata_space(root, 4);
Chris Mason39279cc2007-06-12 06:35:45 -04005362 return ret;
5363}
5364
Chris Masond352ac62008-09-29 15:18:18 -04005365/*
5366 * some fairly slow code that needs optimization. This walks the list
5367 * of all the inodes with pending delalloc and forces them to disk.
5368 */
Chris Masonea8c2812008-08-04 23:17:27 -04005369int btrfs_start_delalloc_inodes(struct btrfs_root *root)
5370{
5371 struct list_head *head = &root->fs_info->delalloc_inodes;
5372 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04005373 struct inode *inode;
Chris Masonea8c2812008-08-04 23:17:27 -04005374
Yan Zhengc146afa2008-11-12 14:34:12 -05005375 if (root->fs_info->sb->s_flags & MS_RDONLY)
5376 return -EROFS;
5377
Chris Mason75eff682008-12-15 15:54:40 -05005378 spin_lock(&root->fs_info->delalloc_lock);
Chris Masond3977122009-01-05 21:25:51 -05005379 while (!list_empty(head)) {
Chris Masonea8c2812008-08-04 23:17:27 -04005380 binode = list_entry(head->next, struct btrfs_inode,
5381 delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04005382 inode = igrab(&binode->vfs_inode);
5383 if (!inode)
5384 list_del_init(&binode->delalloc_inodes);
Chris Mason75eff682008-12-15 15:54:40 -05005385 spin_unlock(&root->fs_info->delalloc_lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04005386 if (inode) {
Chris Mason8c8bee12008-09-29 11:19:10 -04005387 filemap_flush(inode->i_mapping);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04005388 iput(inode);
5389 }
5390 cond_resched();
Chris Mason75eff682008-12-15 15:54:40 -05005391 spin_lock(&root->fs_info->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04005392 }
Chris Mason75eff682008-12-15 15:54:40 -05005393 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -04005394
5395 /* the filemap_flush will queue IO into the worker threads, but
5396 * we have to make sure the IO is actually started and that
5397 * ordered extents get created before we return
5398 */
5399 atomic_inc(&root->fs_info->async_submit_draining);
Chris Masond3977122009-01-05 21:25:51 -05005400 while (atomic_read(&root->fs_info->nr_async_submits) ||
Chris Mason771ed682008-11-06 22:02:51 -05005401 atomic_read(&root->fs_info->async_delalloc_pages)) {
Chris Mason8c8bee12008-09-29 11:19:10 -04005402 wait_event(root->fs_info->async_submit_wait,
Chris Mason771ed682008-11-06 22:02:51 -05005403 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
5404 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee12008-09-29 11:19:10 -04005405 }
5406 atomic_dec(&root->fs_info->async_submit_draining);
Chris Masonea8c2812008-08-04 23:17:27 -04005407 return 0;
5408}
5409
Chris Mason39279cc2007-06-12 06:35:45 -04005410static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
5411 const char *symname)
5412{
5413 struct btrfs_trans_handle *trans;
5414 struct btrfs_root *root = BTRFS_I(dir)->root;
5415 struct btrfs_path *path;
5416 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05005417 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04005418 int err;
5419 int drop_inode = 0;
5420 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005421 u64 index = 0 ;
Chris Mason39279cc2007-06-12 06:35:45 -04005422 int name_len;
5423 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04005424 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04005425 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04005426 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05005427 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005428
5429 name_len = strlen(symname) + 1;
5430 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
5431 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05005432
Josef Bacik9ed74f22009-09-11 16:12:44 -04005433 /*
5434 * 2 items for inode item and ref
5435 * 2 items for dir items
5436 * 1 item for xattr if selinux is on
5437 */
5438 err = btrfs_reserve_metadata_space(root, 5);
Chris Mason1832a6d2007-12-21 16:27:21 -05005439 if (err)
Josef Bacik9ed74f22009-09-11 16:12:44 -04005440 return err;
Chris Mason1832a6d2007-12-21 16:27:21 -05005441
Chris Mason39279cc2007-06-12 06:35:45 -04005442 trans = btrfs_start_transaction(root, 1);
Josef Bacik9ed74f22009-09-11 16:12:44 -04005443 if (!trans)
5444 goto out_fail;
Chris Mason39279cc2007-06-12 06:35:45 -04005445 btrfs_set_trans_block_group(trans, dir);
5446
5447 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
5448 if (err) {
5449 err = -ENOSPC;
5450 goto out_unlock;
5451 }
5452
Josef Bacikaec74772008-07-24 12:12:38 -04005453 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05005454 dentry->d_name.len,
5455 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04005456 BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO,
5457 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04005458 err = PTR_ERR(inode);
5459 if (IS_ERR(inode))
5460 goto out_unlock;
5461
Jim Owens0279b4c2009-02-04 09:29:13 -05005462 err = btrfs_init_inode_security(inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04005463 if (err) {
5464 drop_inode = 1;
5465 goto out_unlock;
5466 }
5467
Chris Mason39279cc2007-06-12 06:35:45 -04005468 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04005469 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04005470 if (err)
5471 drop_inode = 1;
5472 else {
5473 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04005474 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04005475 inode->i_fop = &btrfs_file_operations;
5476 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05005477 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04005478 }
Chris Mason39279cc2007-06-12 06:35:45 -04005479 btrfs_update_inode_block_group(trans, inode);
5480 btrfs_update_inode_block_group(trans, dir);
5481 if (drop_inode)
5482 goto out_unlock;
5483
5484 path = btrfs_alloc_path();
5485 BUG_ON(!path);
5486 key.objectid = inode->i_ino;
5487 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005488 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
5489 datasize = btrfs_file_extent_calc_inline_size(name_len);
5490 err = btrfs_insert_empty_item(trans, root, path, &key,
5491 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04005492 if (err) {
5493 drop_inode = 1;
5494 goto out_unlock;
5495 }
Chris Mason5f39d392007-10-15 16:14:19 -04005496 leaf = path->nodes[0];
5497 ei = btrfs_item_ptr(leaf, path->slots[0],
5498 struct btrfs_file_extent_item);
5499 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
5500 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04005501 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -04005502 btrfs_set_file_extent_encryption(leaf, ei, 0);
5503 btrfs_set_file_extent_compression(leaf, ei, 0);
5504 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
5505 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
5506
Chris Mason39279cc2007-06-12 06:35:45 -04005507 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04005508 write_extent_buffer(leaf, symname, ptr, name_len);
5509 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04005510 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04005511
Chris Mason39279cc2007-06-12 06:35:45 -04005512 inode->i_op = &btrfs_symlink_inode_operations;
5513 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04005514 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Yan Zhengd899e052008-10-30 14:25:28 -04005515 inode_set_bytes(inode, name_len);
Chris Masondbe674a2008-07-17 12:54:05 -04005516 btrfs_i_size_write(inode, name_len - 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04005517 err = btrfs_update_inode(trans, root, inode);
5518 if (err)
5519 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04005520
5521out_unlock:
Chris Masond3c2fdc2007-09-17 10:58:06 -04005522 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04005523 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05005524out_fail:
Josef Bacik9ed74f22009-09-11 16:12:44 -04005525 btrfs_unreserve_metadata_space(root, 5);
Chris Mason39279cc2007-06-12 06:35:45 -04005526 if (drop_inode) {
5527 inode_dec_link_count(inode);
5528 iput(inode);
5529 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04005530 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04005531 return err;
5532}
Chris Mason16432982008-04-10 10:23:21 -04005533
Chris Mason546888d2009-04-21 11:53:38 -04005534static int prealloc_file_range(struct btrfs_trans_handle *trans,
5535 struct inode *inode, u64 start, u64 end,
Chris Masone980b502009-04-24 14:39:24 -04005536 u64 locked_end, u64 alloc_hint, int mode)
Yan Zhengd899e052008-10-30 14:25:28 -04005537{
Yan Zhengd899e052008-10-30 14:25:28 -04005538 struct btrfs_root *root = BTRFS_I(inode)->root;
5539 struct btrfs_key ins;
5540 u64 alloc_size;
5541 u64 cur_offset = start;
5542 u64 num_bytes = end - start;
5543 int ret = 0;
5544
Yan Zhengd899e052008-10-30 14:25:28 -04005545 while (num_bytes > 0) {
5546 alloc_size = min(num_bytes, root->fs_info->max_extent);
Josef Bacik9ed74f22009-09-11 16:12:44 -04005547
5548 ret = btrfs_reserve_metadata_space(root, 1);
5549 if (ret)
5550 goto out;
5551
Yan Zhengd899e052008-10-30 14:25:28 -04005552 ret = btrfs_reserve_extent(trans, root, alloc_size,
5553 root->sectorsize, 0, alloc_hint,
5554 (u64)-1, &ins, 1);
5555 if (ret) {
5556 WARN_ON(1);
5557 goto out;
5558 }
5559 ret = insert_reserved_file_extent(trans, inode,
5560 cur_offset, ins.objectid,
5561 ins.offset, ins.offset,
Chris Masone980b502009-04-24 14:39:24 -04005562 ins.offset, locked_end,
5563 0, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04005564 BTRFS_FILE_EXTENT_PREALLOC);
5565 BUG_ON(ret);
Chris Masona1ed8352009-09-11 12:27:37 -04005566 btrfs_drop_extent_cache(inode, cur_offset,
5567 cur_offset + ins.offset -1, 0);
Yan Zhengd899e052008-10-30 14:25:28 -04005568 num_bytes -= ins.offset;
5569 cur_offset += ins.offset;
5570 alloc_hint = ins.objectid + ins.offset;
Josef Bacik9ed74f22009-09-11 16:12:44 -04005571 btrfs_unreserve_metadata_space(root, 1);
Yan Zhengd899e052008-10-30 14:25:28 -04005572 }
5573out:
5574 if (cur_offset > start) {
5575 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +02005576 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -04005577 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
5578 cur_offset > i_size_read(inode))
5579 btrfs_i_size_write(inode, cur_offset);
5580 ret = btrfs_update_inode(trans, root, inode);
5581 BUG_ON(ret);
5582 }
5583
Yan Zhengd899e052008-10-30 14:25:28 -04005584 return ret;
5585}
5586
5587static long btrfs_fallocate(struct inode *inode, int mode,
5588 loff_t offset, loff_t len)
5589{
5590 u64 cur_offset;
5591 u64 last_byte;
5592 u64 alloc_start;
5593 u64 alloc_end;
5594 u64 alloc_hint = 0;
Chris Masone980b502009-04-24 14:39:24 -04005595 u64 locked_end;
Yan Zhengd899e052008-10-30 14:25:28 -04005596 u64 mask = BTRFS_I(inode)->root->sectorsize - 1;
5597 struct extent_map *em;
Chris Mason546888d2009-04-21 11:53:38 -04005598 struct btrfs_trans_handle *trans;
Josef Bacika970b0a2009-06-27 21:07:34 -04005599 struct btrfs_root *root;
Yan Zhengd899e052008-10-30 14:25:28 -04005600 int ret;
5601
5602 alloc_start = offset & ~mask;
5603 alloc_end = (offset + len + mask) & ~mask;
5604
Chris Mason546888d2009-04-21 11:53:38 -04005605 /*
5606 * wait for ordered IO before we have any locks. We'll loop again
5607 * below with the locks held.
5608 */
5609 btrfs_wait_ordered_range(inode, alloc_start, alloc_end - alloc_start);
5610
Yan Zhengd899e052008-10-30 14:25:28 -04005611 mutex_lock(&inode->i_mutex);
5612 if (alloc_start > inode->i_size) {
5613 ret = btrfs_cont_expand(inode, alloc_start);
5614 if (ret)
5615 goto out;
5616 }
5617
Josef Bacika970b0a2009-06-27 21:07:34 -04005618 root = BTRFS_I(inode)->root;
5619
5620 ret = btrfs_check_data_free_space(root, inode,
5621 alloc_end - alloc_start);
5622 if (ret)
5623 goto out;
5624
Chris Masone980b502009-04-24 14:39:24 -04005625 locked_end = alloc_end - 1;
Yan Zhengd899e052008-10-30 14:25:28 -04005626 while (1) {
5627 struct btrfs_ordered_extent *ordered;
Chris Mason546888d2009-04-21 11:53:38 -04005628
5629 trans = btrfs_start_transaction(BTRFS_I(inode)->root, 1);
5630 if (!trans) {
5631 ret = -EIO;
Josef Bacika970b0a2009-06-27 21:07:34 -04005632 goto out_free;
Chris Mason546888d2009-04-21 11:53:38 -04005633 }
5634
5635 /* the extent lock is ordered inside the running
5636 * transaction
5637 */
Chris Masone980b502009-04-24 14:39:24 -04005638 lock_extent(&BTRFS_I(inode)->io_tree, alloc_start, locked_end,
5639 GFP_NOFS);
Yan Zhengd899e052008-10-30 14:25:28 -04005640 ordered = btrfs_lookup_first_ordered_extent(inode,
5641 alloc_end - 1);
5642 if (ordered &&
5643 ordered->file_offset + ordered->len > alloc_start &&
5644 ordered->file_offset < alloc_end) {
5645 btrfs_put_ordered_extent(ordered);
5646 unlock_extent(&BTRFS_I(inode)->io_tree,
Chris Masone980b502009-04-24 14:39:24 -04005647 alloc_start, locked_end, GFP_NOFS);
Chris Mason546888d2009-04-21 11:53:38 -04005648 btrfs_end_transaction(trans, BTRFS_I(inode)->root);
5649
5650 /*
5651 * we can't wait on the range with the transaction
5652 * running or with the extent lock held
5653 */
Yan Zhengd899e052008-10-30 14:25:28 -04005654 btrfs_wait_ordered_range(inode, alloc_start,
5655 alloc_end - alloc_start);
5656 } else {
5657 if (ordered)
5658 btrfs_put_ordered_extent(ordered);
5659 break;
5660 }
5661 }
5662
5663 cur_offset = alloc_start;
5664 while (1) {
5665 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
5666 alloc_end - cur_offset, 0);
5667 BUG_ON(IS_ERR(em) || !em);
5668 last_byte = min(extent_map_end(em), alloc_end);
5669 last_byte = (last_byte + mask) & ~mask;
5670 if (em->block_start == EXTENT_MAP_HOLE) {
Chris Mason546888d2009-04-21 11:53:38 -04005671 ret = prealloc_file_range(trans, inode, cur_offset,
Chris Masone980b502009-04-24 14:39:24 -04005672 last_byte, locked_end + 1,
5673 alloc_hint, mode);
Yan Zhengd899e052008-10-30 14:25:28 -04005674 if (ret < 0) {
5675 free_extent_map(em);
5676 break;
5677 }
5678 }
5679 if (em->block_start <= EXTENT_MAP_LAST_BYTE)
5680 alloc_hint = em->block_start;
5681 free_extent_map(em);
5682
5683 cur_offset = last_byte;
5684 if (cur_offset >= alloc_end) {
5685 ret = 0;
5686 break;
5687 }
5688 }
Chris Masone980b502009-04-24 14:39:24 -04005689 unlock_extent(&BTRFS_I(inode)->io_tree, alloc_start, locked_end,
Yan Zhengd899e052008-10-30 14:25:28 -04005690 GFP_NOFS);
Chris Mason546888d2009-04-21 11:53:38 -04005691
5692 btrfs_end_transaction(trans, BTRFS_I(inode)->root);
Josef Bacika970b0a2009-06-27 21:07:34 -04005693out_free:
5694 btrfs_free_reserved_data_space(root, inode, alloc_end - alloc_start);
Yan Zhengd899e052008-10-30 14:25:28 -04005695out:
5696 mutex_unlock(&inode->i_mutex);
5697 return ret;
5698}
5699
Chris Masone6dcd2d2008-07-17 12:53:50 -04005700static int btrfs_set_page_dirty(struct page *page)
5701{
Chris Masone6dcd2d2008-07-17 12:53:50 -04005702 return __set_page_dirty_nobuffers(page);
5703}
5704
Sven Wegener0ee0fda2008-07-30 16:54:26 -04005705static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -05005706{
Christoph Hellwig6cbff002009-04-17 10:37:41 +02005707 if ((BTRFS_I(inode)->flags & BTRFS_INODE_READONLY) && (mask & MAY_WRITE))
Yanfdebe2b2008-01-14 13:26:08 -05005708 return -EACCES;
Josef Bacik33268ea2008-07-24 12:16:36 -04005709 return generic_permission(inode, mask, btrfs_check_acl);
Yanfdebe2b2008-01-14 13:26:08 -05005710}
Chris Mason39279cc2007-06-12 06:35:45 -04005711
5712static struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -05005713 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -04005714 .lookup = btrfs_lookup,
5715 .create = btrfs_create,
5716 .unlink = btrfs_unlink,
5717 .link = btrfs_link,
5718 .mkdir = btrfs_mkdir,
5719 .rmdir = btrfs_rmdir,
5720 .rename = btrfs_rename,
5721 .symlink = btrfs_symlink,
5722 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04005723 .mknod = btrfs_mknod,
Christoph Hellwig95819c02008-08-28 06:21:17 -04005724 .setxattr = btrfs_setxattr,
5725 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05005726 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04005727 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05005728 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04005729};
Chris Mason39279cc2007-06-12 06:35:45 -04005730static struct inode_operations btrfs_dir_ro_inode_operations = {
5731 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05005732 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04005733};
Yan, Zheng76dda932009-09-21 16:00:26 -04005734
Chris Mason39279cc2007-06-12 06:35:45 -04005735static struct file_operations btrfs_dir_file_operations = {
5736 .llseek = generic_file_llseek,
5737 .read = generic_read_dir,
David Woodhousecbdf5a22008-08-06 19:42:33 +01005738 .readdir = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04005739 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04005740#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04005741 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04005742#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04005743 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -04005744 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -04005745};
5746
Chris Masond1310b22008-01-24 16:13:08 -05005747static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04005748 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05005749 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04005750 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04005751 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005752 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04005753 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Mason1259ab72008-05-12 13:39:03 -04005754 .readpage_io_failed_hook = btrfs_io_failed_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05005755 .set_bit_hook = btrfs_set_bit_hook,
5756 .clear_bit_hook = btrfs_clear_bit_hook,
Josef Bacik9ed74f22009-09-11 16:12:44 -04005757 .merge_extent_hook = btrfs_merge_extent_hook,
5758 .split_extent_hook = btrfs_split_extent_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04005759};
5760
Chris Mason35054392009-01-21 13:11:13 -05005761/*
5762 * btrfs doesn't support the bmap operation because swapfiles
5763 * use bmap to make a mapping of extents in the file. They assume
5764 * these extents won't change over the life of the file and they
5765 * use the bmap result to do IO directly to the drive.
5766 *
5767 * the btrfs bmap call would return logical addresses that aren't
5768 * suitable for IO and they also will change frequently as COW
5769 * operations happen. So, swapfile + btrfs == corruption.
5770 *
5771 * For now we're avoiding this by dropping bmap.
5772 */
Chris Mason39279cc2007-06-12 06:35:45 -04005773static struct address_space_operations btrfs_aops = {
5774 .readpage = btrfs_readpage,
5775 .writepage = btrfs_writepage,
Chris Masonb293f022007-11-01 19:45:34 -04005776 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05005777 .readpages = btrfs_readpages,
Chris Mason39279cc2007-06-12 06:35:45 -04005778 .sync_page = block_sync_page,
Chris Mason16432982008-04-10 10:23:21 -04005779 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04005780 .invalidatepage = btrfs_invalidatepage,
5781 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005782 .set_page_dirty = btrfs_set_page_dirty,
Chris Mason39279cc2007-06-12 06:35:45 -04005783};
5784
5785static struct address_space_operations btrfs_symlink_aops = {
5786 .readpage = btrfs_readpage,
5787 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04005788 .invalidatepage = btrfs_invalidatepage,
5789 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04005790};
5791
5792static struct inode_operations btrfs_file_inode_operations = {
5793 .truncate = btrfs_truncate,
5794 .getattr = btrfs_getattr,
5795 .setattr = btrfs_setattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04005796 .setxattr = btrfs_setxattr,
5797 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05005798 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04005799 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05005800 .permission = btrfs_permission,
Yan Zhengd899e052008-10-30 14:25:28 -04005801 .fallocate = btrfs_fallocate,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05005802 .fiemap = btrfs_fiemap,
Chris Mason39279cc2007-06-12 06:35:45 -04005803};
Josef Bacik618e21d2007-07-11 10:18:17 -04005804static struct inode_operations btrfs_special_inode_operations = {
5805 .getattr = btrfs_getattr,
5806 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05005807 .permission = btrfs_permission,
Christoph Hellwig95819c02008-08-28 06:21:17 -04005808 .setxattr = btrfs_setxattr,
5809 .getxattr = btrfs_getxattr,
Josef Bacik33268ea2008-07-24 12:16:36 -04005810 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04005811 .removexattr = btrfs_removexattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04005812};
Chris Mason39279cc2007-06-12 06:35:45 -04005813static struct inode_operations btrfs_symlink_inode_operations = {
5814 .readlink = generic_readlink,
5815 .follow_link = page_follow_link_light,
5816 .put_link = page_put_link,
Yanfdebe2b2008-01-14 13:26:08 -05005817 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -05005818 .setxattr = btrfs_setxattr,
5819 .getxattr = btrfs_getxattr,
5820 .listxattr = btrfs_listxattr,
5821 .removexattr = btrfs_removexattr,
Chris Mason39279cc2007-06-12 06:35:45 -04005822};
Yan, Zheng76dda932009-09-21 16:00:26 -04005823
5824struct dentry_operations btrfs_dentry_operations = {
5825 .d_delete = btrfs_dentry_delete,
5826};