blob: 941f1b71cd2212b00d53109f83d73c1417e807fd [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,
427 &BTRFS_I(inode)->io_tree,
Chris Mason771ed682008-11-06 22:02:51 -0500428 start, end, NULL, 1, 0,
Chris Mason8b62b722009-09-02 16:53:46 -0400429 0, 1, 1, 1, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400430 ret = 0;
431 goto free_pages_out;
432 }
433 }
434
435 if (will_compress) {
436 /*
437 * we aren't doing an inline extent round the compressed size
438 * up to a block size boundary so the allocator does sane
439 * things
440 */
441 total_compressed = (total_compressed + blocksize - 1) &
442 ~(blocksize - 1);
443
444 /*
445 * one last check to make sure the compression is really a
446 * win, compare the page count read with the blocks on disk
447 */
448 total_in = (total_in + PAGE_CACHE_SIZE - 1) &
449 ~(PAGE_CACHE_SIZE - 1);
450 if (total_compressed >= total_in) {
451 will_compress = 0;
452 } else {
453 disk_num_bytes = total_compressed;
454 num_bytes = total_in;
455 }
456 }
457 if (!will_compress && pages) {
458 /*
459 * the compression code ran but failed to make things smaller,
460 * free any pages it allocated and our page pointer array
461 */
462 for (i = 0; i < nr_pages_ret; i++) {
Chris Mason70b99e62008-10-31 12:46:39 -0400463 WARN_ON(pages[i]->mapping);
Chris Masonc8b97812008-10-29 14:49:59 -0400464 page_cache_release(pages[i]);
465 }
466 kfree(pages);
467 pages = NULL;
468 total_compressed = 0;
469 nr_pages_ret = 0;
470
471 /* flag the file so we don't compress in the future */
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200472 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
Chris Masonc8b97812008-10-29 14:49:59 -0400473 }
Chris Mason771ed682008-11-06 22:02:51 -0500474 if (will_compress) {
475 *num_added += 1;
476
477 /* the async work queues will take care of doing actual
478 * allocation on disk for these compressed pages,
479 * and will submit them to the elevator.
480 */
481 add_async_extent(async_cow, start, num_bytes,
482 total_compressed, pages, nr_pages_ret);
483
Chris Mason42dc7ba2008-12-15 11:44:56 -0500484 if (start + num_bytes < end && start + num_bytes < actual_end) {
Chris Mason771ed682008-11-06 22:02:51 -0500485 start += num_bytes;
486 pages = NULL;
487 cond_resched();
488 goto again;
489 }
490 } else {
Chris Masonf03d9302009-02-04 09:31:06 -0500491cleanup_and_bail_uncompressed:
Chris Mason771ed682008-11-06 22:02:51 -0500492 /*
493 * No compression, but we still need to write the pages in
494 * the file we've been given so far. redirty the locked
495 * page if it corresponds to our extent and set things up
496 * for the async work queue to run cow_file_range to do
497 * the normal delalloc dance
498 */
499 if (page_offset(locked_page) >= start &&
500 page_offset(locked_page) <= end) {
501 __set_page_dirty_nobuffers(locked_page);
502 /* unlocked later on in the async handlers */
503 }
504 add_async_extent(async_cow, start, end - start + 1, 0, NULL, 0);
505 *num_added += 1;
506 }
507
508out:
509 return 0;
510
511free_pages_out:
512 for (i = 0; i < nr_pages_ret; i++) {
513 WARN_ON(pages[i]->mapping);
514 page_cache_release(pages[i]);
515 }
Chris Masond3977122009-01-05 21:25:51 -0500516 kfree(pages);
Chris Mason771ed682008-11-06 22:02:51 -0500517
518 goto out;
519}
520
521/*
522 * phase two of compressed writeback. This is the ordered portion
523 * of the code, which only gets called in the order the work was
524 * queued. We walk all the async extents created by compress_file_range
525 * and send them down to the disk.
526 */
527static noinline int submit_compressed_extents(struct inode *inode,
528 struct async_cow *async_cow)
529{
530 struct async_extent *async_extent;
531 u64 alloc_hint = 0;
532 struct btrfs_trans_handle *trans;
533 struct btrfs_key ins;
534 struct extent_map *em;
535 struct btrfs_root *root = BTRFS_I(inode)->root;
536 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
537 struct extent_io_tree *io_tree;
538 int ret;
539
540 if (list_empty(&async_cow->extents))
541 return 0;
542
543 trans = btrfs_join_transaction(root, 1);
544
Chris Masond3977122009-01-05 21:25:51 -0500545 while (!list_empty(&async_cow->extents)) {
Chris Mason771ed682008-11-06 22:02:51 -0500546 async_extent = list_entry(async_cow->extents.next,
547 struct async_extent, list);
548 list_del(&async_extent->list);
549
550 io_tree = &BTRFS_I(inode)->io_tree;
551
552 /* did the compression code fall back to uncompressed IO? */
553 if (!async_extent->pages) {
554 int page_started = 0;
555 unsigned long nr_written = 0;
556
557 lock_extent(io_tree, async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500558 async_extent->start +
559 async_extent->ram_size - 1, GFP_NOFS);
Chris Mason771ed682008-11-06 22:02:51 -0500560
561 /* allocate blocks */
562 cow_file_range(inode, async_cow->locked_page,
563 async_extent->start,
564 async_extent->start +
565 async_extent->ram_size - 1,
566 &page_started, &nr_written, 0);
567
568 /*
569 * if page_started, cow_file_range inserted an
570 * inline extent and took care of all the unlocking
571 * and IO for us. Otherwise, we need to submit
572 * all those pages down to the drive.
573 */
574 if (!page_started)
575 extent_write_locked_range(io_tree,
576 inode, async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500577 async_extent->start +
Chris Mason771ed682008-11-06 22:02:51 -0500578 async_extent->ram_size - 1,
579 btrfs_get_extent,
580 WB_SYNC_ALL);
581 kfree(async_extent);
582 cond_resched();
583 continue;
584 }
585
586 lock_extent(io_tree, async_extent->start,
587 async_extent->start + async_extent->ram_size - 1,
588 GFP_NOFS);
589 /*
590 * here we're doing allocation and writeback of the
591 * compressed pages
592 */
593 btrfs_drop_extent_cache(inode, async_extent->start,
594 async_extent->start +
595 async_extent->ram_size - 1, 0);
596
597 ret = btrfs_reserve_extent(trans, root,
598 async_extent->compressed_size,
599 async_extent->compressed_size,
600 0, alloc_hint,
601 (u64)-1, &ins, 1);
602 BUG_ON(ret);
603 em = alloc_extent_map(GFP_NOFS);
604 em->start = async_extent->start;
605 em->len = async_extent->ram_size;
Chris Mason445a6942008-11-10 11:53:33 -0500606 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500607
608 em->block_start = ins.objectid;
609 em->block_len = ins.offset;
610 em->bdev = root->fs_info->fs_devices->latest_bdev;
611 set_bit(EXTENT_FLAG_PINNED, &em->flags);
612 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
613
Chris Masond3977122009-01-05 21:25:51 -0500614 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400615 write_lock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500616 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400617 write_unlock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500618 if (ret != -EEXIST) {
619 free_extent_map(em);
620 break;
621 }
622 btrfs_drop_extent_cache(inode, async_extent->start,
623 async_extent->start +
624 async_extent->ram_size - 1, 0);
625 }
626
627 ret = btrfs_add_ordered_extent(inode, async_extent->start,
628 ins.objectid,
629 async_extent->ram_size,
630 ins.offset,
631 BTRFS_ORDERED_COMPRESSED);
632 BUG_ON(ret);
633
634 btrfs_end_transaction(trans, root);
635
636 /*
637 * clear dirty, set writeback and unlock the pages.
638 */
639 extent_clear_unlock_delalloc(inode,
640 &BTRFS_I(inode)->io_tree,
641 async_extent->start,
642 async_extent->start +
643 async_extent->ram_size - 1,
Chris Mason8b62b722009-09-02 16:53:46 -0400644 NULL, 1, 1, 0, 1, 1, 0, 0);
Chris Mason771ed682008-11-06 22:02:51 -0500645
646 ret = btrfs_submit_compressed_write(inode,
Chris Masond3977122009-01-05 21:25:51 -0500647 async_extent->start,
648 async_extent->ram_size,
649 ins.objectid,
650 ins.offset, async_extent->pages,
651 async_extent->nr_pages);
Chris Mason771ed682008-11-06 22:02:51 -0500652
653 BUG_ON(ret);
654 trans = btrfs_join_transaction(root, 1);
655 alloc_hint = ins.objectid + ins.offset;
656 kfree(async_extent);
657 cond_resched();
658 }
659
660 btrfs_end_transaction(trans, root);
661 return 0;
662}
663
664/*
665 * when extent_io.c finds a delayed allocation range in the file,
666 * the call backs end up in this code. The basic idea is to
667 * allocate extents on disk for the range, and create ordered data structs
668 * in ram to track those extents.
669 *
670 * locked_page is the page that writepage had locked already. We use
671 * it to make sure we don't do extra locks or unlocks.
672 *
673 * *page_started is set to one if we unlock locked_page and do everything
674 * required to start IO on it. It may be clean and already done with
675 * IO when we return.
676 */
677static noinline int cow_file_range(struct inode *inode,
678 struct page *locked_page,
679 u64 start, u64 end, int *page_started,
680 unsigned long *nr_written,
681 int unlock)
682{
683 struct btrfs_root *root = BTRFS_I(inode)->root;
684 struct btrfs_trans_handle *trans;
685 u64 alloc_hint = 0;
686 u64 num_bytes;
687 unsigned long ram_size;
688 u64 disk_num_bytes;
689 u64 cur_alloc_size;
690 u64 blocksize = root->sectorsize;
691 u64 actual_end;
Chris Mason42dc7ba2008-12-15 11:44:56 -0500692 u64 isize = i_size_read(inode);
Chris Mason771ed682008-11-06 22:02:51 -0500693 struct btrfs_key ins;
694 struct extent_map *em;
695 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
696 int ret = 0;
697
698 trans = btrfs_join_transaction(root, 1);
699 BUG_ON(!trans);
700 btrfs_set_trans_block_group(trans, inode);
701
Chris Mason42dc7ba2008-12-15 11:44:56 -0500702 actual_end = min_t(u64, isize, end + 1);
Chris Mason771ed682008-11-06 22:02:51 -0500703
704 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
705 num_bytes = max(blocksize, num_bytes);
706 disk_num_bytes = num_bytes;
707 ret = 0;
708
709 if (start == 0) {
710 /* lets try to make an inline extent */
711 ret = cow_file_range_inline(trans, root, inode,
712 start, end, 0, NULL);
713 if (ret == 0) {
714 extent_clear_unlock_delalloc(inode,
715 &BTRFS_I(inode)->io_tree,
716 start, end, NULL, 1, 1,
Chris Mason8b62b722009-09-02 16:53:46 -0400717 1, 1, 1, 1, 0);
Chris Mason771ed682008-11-06 22:02:51 -0500718 *nr_written = *nr_written +
719 (end - start + PAGE_CACHE_SIZE) / PAGE_CACHE_SIZE;
720 *page_started = 1;
721 ret = 0;
722 goto out;
723 }
724 }
Chris Masonc8b97812008-10-29 14:49:59 -0400725
726 BUG_ON(disk_num_bytes >
727 btrfs_super_total_bytes(&root->fs_info->super_copy));
728
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400729 btrfs_drop_extent_cache(inode, start, start + num_bytes - 1, 0);
Chris Mason3b951512008-04-17 11:29:12 -0400730
Chris Masond3977122009-01-05 21:25:51 -0500731 while (disk_num_bytes > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -0400732 cur_alloc_size = min(disk_num_bytes, root->fs_info->max_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400733 ret = btrfs_reserve_extent(trans, root, cur_alloc_size,
Chris Mason771ed682008-11-06 22:02:51 -0500734 root->sectorsize, 0, alloc_hint,
Chris Masone6dcd2d2008-07-17 12:53:50 -0400735 (u64)-1, &ins, 1);
Chris Masond3977122009-01-05 21:25:51 -0500736 BUG_ON(ret);
737
Chris Masone6dcd2d2008-07-17 12:53:50 -0400738 em = alloc_extent_map(GFP_NOFS);
739 em->start = start;
Chris Mason445a6942008-11-10 11:53:33 -0500740 em->orig_start = em->start;
Chris Masonc8b97812008-10-29 14:49:59 -0400741
Chris Mason771ed682008-11-06 22:02:51 -0500742 ram_size = ins.offset;
743 em->len = ins.offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400744
Chris Masone6dcd2d2008-07-17 12:53:50 -0400745 em->block_start = ins.objectid;
Chris Masonc8b97812008-10-29 14:49:59 -0400746 em->block_len = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400747 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -0400748 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -0400749
Chris Masond3977122009-01-05 21:25:51 -0500750 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400751 write_lock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400752 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400753 write_unlock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400754 if (ret != -EEXIST) {
755 free_extent_map(em);
756 break;
757 }
758 btrfs_drop_extent_cache(inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -0400759 start + ram_size - 1, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400760 }
761
Chris Mason98d20f62008-04-14 09:46:10 -0400762 cur_alloc_size = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400763 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
Chris Mason771ed682008-11-06 22:02:51 -0500764 ram_size, cur_alloc_size, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400765 BUG_ON(ret);
Chris Masonc8b97812008-10-29 14:49:59 -0400766
Yan Zheng17d217f2008-12-12 10:03:38 -0500767 if (root->root_key.objectid ==
768 BTRFS_DATA_RELOC_TREE_OBJECTID) {
769 ret = btrfs_reloc_clone_csums(inode, start,
770 cur_alloc_size);
771 BUG_ON(ret);
772 }
773
Chris Masond3977122009-01-05 21:25:51 -0500774 if (disk_num_bytes < cur_alloc_size)
Chris Mason3b951512008-04-17 11:29:12 -0400775 break;
Chris Masond3977122009-01-05 21:25:51 -0500776
Chris Masonc8b97812008-10-29 14:49:59 -0400777 /* we're not doing compressed IO, don't unlock the first
778 * page (which the caller expects to stay locked), don't
779 * clear any dirty bits and don't set any writeback bits
Chris Mason8b62b722009-09-02 16:53:46 -0400780 *
781 * Do set the Private2 bit so we know this page was properly
782 * setup for writepage
Chris Masonc8b97812008-10-29 14:49:59 -0400783 */
784 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
785 start, start + ram_size - 1,
Chris Mason771ed682008-11-06 22:02:51 -0500786 locked_page, unlock, 1,
Chris Mason8b62b722009-09-02 16:53:46 -0400787 1, 0, 0, 0, 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400788 disk_num_bytes -= cur_alloc_size;
Chris Masonc59f8952007-12-17 20:14:04 -0500789 num_bytes -= cur_alloc_size;
790 alloc_hint = ins.objectid + ins.offset;
791 start += cur_alloc_size;
Chris Masonb888db22007-08-27 16:49:44 -0400792 }
Chris Masonb888db22007-08-27 16:49:44 -0400793out:
Chris Mason771ed682008-11-06 22:02:51 -0500794 ret = 0;
Chris Masonb888db22007-08-27 16:49:44 -0400795 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400796
Chris Masonbe20aa92007-12-17 20:14:01 -0500797 return ret;
Chris Mason771ed682008-11-06 22:02:51 -0500798}
Chris Masonc8b97812008-10-29 14:49:59 -0400799
Chris Mason771ed682008-11-06 22:02:51 -0500800/*
801 * work queue call back to started compression on a file and pages
802 */
803static noinline void async_cow_start(struct btrfs_work *work)
804{
805 struct async_cow *async_cow;
806 int num_added = 0;
807 async_cow = container_of(work, struct async_cow, work);
808
809 compress_file_range(async_cow->inode, async_cow->locked_page,
810 async_cow->start, async_cow->end, async_cow,
811 &num_added);
812 if (num_added == 0)
813 async_cow->inode = NULL;
814}
815
816/*
817 * work queue call back to submit previously compressed pages
818 */
819static noinline void async_cow_submit(struct btrfs_work *work)
820{
821 struct async_cow *async_cow;
822 struct btrfs_root *root;
823 unsigned long nr_pages;
824
825 async_cow = container_of(work, struct async_cow, work);
826
827 root = async_cow->root;
828 nr_pages = (async_cow->end - async_cow->start + PAGE_CACHE_SIZE) >>
829 PAGE_CACHE_SHIFT;
830
831 atomic_sub(nr_pages, &root->fs_info->async_delalloc_pages);
832
833 if (atomic_read(&root->fs_info->async_delalloc_pages) <
834 5 * 1042 * 1024 &&
835 waitqueue_active(&root->fs_info->async_submit_wait))
836 wake_up(&root->fs_info->async_submit_wait);
837
Chris Masond3977122009-01-05 21:25:51 -0500838 if (async_cow->inode)
Chris Mason771ed682008-11-06 22:02:51 -0500839 submit_compressed_extents(async_cow->inode, async_cow);
Chris Mason771ed682008-11-06 22:02:51 -0500840}
Chris Masonc8b97812008-10-29 14:49:59 -0400841
Chris Mason771ed682008-11-06 22:02:51 -0500842static noinline void async_cow_free(struct btrfs_work *work)
843{
844 struct async_cow *async_cow;
845 async_cow = container_of(work, struct async_cow, work);
846 kfree(async_cow);
847}
848
849static int cow_file_range_async(struct inode *inode, struct page *locked_page,
850 u64 start, u64 end, int *page_started,
851 unsigned long *nr_written)
852{
853 struct async_cow *async_cow;
854 struct btrfs_root *root = BTRFS_I(inode)->root;
855 unsigned long nr_pages;
856 u64 cur_end;
857 int limit = 10 * 1024 * 1042;
858
Chris Mason771ed682008-11-06 22:02:51 -0500859 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED |
Chris Mason2c64c532009-09-02 15:04:12 -0400860 EXTENT_DELALLOC, 1, 0, NULL, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -0500861 while (start < end) {
Chris Mason771ed682008-11-06 22:02:51 -0500862 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
863 async_cow->inode = inode;
864 async_cow->root = root;
865 async_cow->locked_page = locked_page;
866 async_cow->start = start;
867
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200868 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS)
Chris Mason771ed682008-11-06 22:02:51 -0500869 cur_end = end;
870 else
871 cur_end = min(end, start + 512 * 1024 - 1);
872
873 async_cow->end = cur_end;
874 INIT_LIST_HEAD(&async_cow->extents);
875
876 async_cow->work.func = async_cow_start;
877 async_cow->work.ordered_func = async_cow_submit;
878 async_cow->work.ordered_free = async_cow_free;
879 async_cow->work.flags = 0;
880
Chris Mason771ed682008-11-06 22:02:51 -0500881 nr_pages = (cur_end - start + PAGE_CACHE_SIZE) >>
882 PAGE_CACHE_SHIFT;
883 atomic_add(nr_pages, &root->fs_info->async_delalloc_pages);
884
885 btrfs_queue_worker(&root->fs_info->delalloc_workers,
886 &async_cow->work);
887
888 if (atomic_read(&root->fs_info->async_delalloc_pages) > limit) {
889 wait_event(root->fs_info->async_submit_wait,
890 (atomic_read(&root->fs_info->async_delalloc_pages) <
891 limit));
892 }
893
Chris Masond3977122009-01-05 21:25:51 -0500894 while (atomic_read(&root->fs_info->async_submit_draining) &&
Chris Mason771ed682008-11-06 22:02:51 -0500895 atomic_read(&root->fs_info->async_delalloc_pages)) {
896 wait_event(root->fs_info->async_submit_wait,
897 (atomic_read(&root->fs_info->async_delalloc_pages) ==
898 0));
899 }
900
901 *nr_written += nr_pages;
902 start = cur_end + 1;
903 }
904 *page_started = 1;
905 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -0500906}
907
Chris Masond3977122009-01-05 21:25:51 -0500908static noinline int csum_exist_in_range(struct btrfs_root *root,
Yan Zheng17d217f2008-12-12 10:03:38 -0500909 u64 bytenr, u64 num_bytes)
910{
911 int ret;
912 struct btrfs_ordered_sum *sums;
913 LIST_HEAD(list);
914
Yan Zheng07d400a2009-01-06 11:42:00 -0500915 ret = btrfs_lookup_csums_range(root->fs_info->csum_root, bytenr,
916 bytenr + num_bytes - 1, &list);
Yan Zheng17d217f2008-12-12 10:03:38 -0500917 if (ret == 0 && list_empty(&list))
918 return 0;
919
920 while (!list_empty(&list)) {
921 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
922 list_del(&sums->list);
923 kfree(sums);
924 }
925 return 1;
926}
927
Chris Masond352ac62008-09-29 15:18:18 -0400928/*
929 * when nowcow writeback call back. This checks for snapshots or COW copies
930 * of the extents that exist in the file, and COWs the file as required.
931 *
932 * If no cow copies or snapshots exist, we write directly to the existing
933 * blocks on disk
934 */
Chris Mason7f366cf2009-03-12 20:12:45 -0400935static noinline int run_delalloc_nocow(struct inode *inode,
936 struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -0500937 u64 start, u64 end, int *page_started, int force,
938 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -0500939{
Chris Masonbe20aa92007-12-17 20:14:01 -0500940 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zheng7ea394f2008-08-05 13:05:02 -0400941 struct btrfs_trans_handle *trans;
Chris Masonbe20aa92007-12-17 20:14:01 -0500942 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -0500943 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -0400944 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -0500945 struct btrfs_key found_key;
Yan Zheng80ff3852008-10-30 14:20:02 -0400946 u64 cow_start;
947 u64 cur_offset;
948 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400949 u64 extent_offset;
Yan Zheng80ff3852008-10-30 14:20:02 -0400950 u64 disk_bytenr;
951 u64 num_bytes;
952 int extent_type;
953 int ret;
Yan Zhengd899e052008-10-30 14:25:28 -0400954 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -0400955 int nocow;
956 int check_prev = 1;
Chris Masonbe20aa92007-12-17 20:14:01 -0500957
958 path = btrfs_alloc_path();
959 BUG_ON(!path);
Yan Zheng7ea394f2008-08-05 13:05:02 -0400960 trans = btrfs_join_transaction(root, 1);
961 BUG_ON(!trans);
Chris Masonbe20aa92007-12-17 20:14:01 -0500962
Yan Zheng80ff3852008-10-30 14:20:02 -0400963 cow_start = (u64)-1;
964 cur_offset = start;
965 while (1) {
966 ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino,
967 cur_offset, 0);
968 BUG_ON(ret < 0);
969 if (ret > 0 && path->slots[0] > 0 && check_prev) {
970 leaf = path->nodes[0];
971 btrfs_item_key_to_cpu(leaf, &found_key,
972 path->slots[0] - 1);
973 if (found_key.objectid == inode->i_ino &&
974 found_key.type == BTRFS_EXTENT_DATA_KEY)
975 path->slots[0]--;
976 }
977 check_prev = 0;
978next_slot:
979 leaf = path->nodes[0];
980 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
981 ret = btrfs_next_leaf(root, path);
982 if (ret < 0)
983 BUG_ON(1);
984 if (ret > 0)
985 break;
986 leaf = path->nodes[0];
987 }
Chris Masonbe20aa92007-12-17 20:14:01 -0500988
Yan Zheng80ff3852008-10-30 14:20:02 -0400989 nocow = 0;
990 disk_bytenr = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -0500991 num_bytes = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -0400992 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -0500993
Yan Zheng80ff3852008-10-30 14:20:02 -0400994 if (found_key.objectid > inode->i_ino ||
995 found_key.type > BTRFS_EXTENT_DATA_KEY ||
996 found_key.offset > end)
997 break;
Chris Masonbe20aa92007-12-17 20:14:01 -0500998
Yan Zheng80ff3852008-10-30 14:20:02 -0400999 if (found_key.offset > cur_offset) {
1000 extent_end = found_key.offset;
1001 goto out_check;
1002 }
Chris Masonc31f8832008-01-08 15:46:31 -05001003
Yan Zheng80ff3852008-10-30 14:20:02 -04001004 fi = btrfs_item_ptr(leaf, path->slots[0],
1005 struct btrfs_file_extent_item);
1006 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -05001007
Yan Zhengd899e052008-10-30 14:25:28 -04001008 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1009 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001010 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001011 extent_offset = btrfs_file_extent_offset(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001012 extent_end = found_key.offset +
1013 btrfs_file_extent_num_bytes(leaf, fi);
1014 if (extent_end <= start) {
1015 path->slots[0]++;
1016 goto next_slot;
1017 }
Yan Zheng17d217f2008-12-12 10:03:38 -05001018 if (disk_bytenr == 0)
1019 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001020 if (btrfs_file_extent_compression(leaf, fi) ||
1021 btrfs_file_extent_encryption(leaf, fi) ||
1022 btrfs_file_extent_other_encoding(leaf, fi))
1023 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001024 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1025 goto out_check;
Yan Zhengd2fb3432008-12-11 16:30:39 -05001026 if (btrfs_extent_readonly(root, disk_bytenr))
Yan Zheng80ff3852008-10-30 14:20:02 -04001027 goto out_check;
Yan Zheng17d217f2008-12-12 10:03:38 -05001028 if (btrfs_cross_ref_exist(trans, root, inode->i_ino,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001029 found_key.offset -
1030 extent_offset, disk_bytenr))
Yan Zheng17d217f2008-12-12 10:03:38 -05001031 goto out_check;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001032 disk_bytenr += extent_offset;
Yan Zheng17d217f2008-12-12 10:03:38 -05001033 disk_bytenr += cur_offset - found_key.offset;
1034 num_bytes = min(end + 1, extent_end) - cur_offset;
1035 /*
1036 * force cow if csum exists in the range.
1037 * this ensure that csum for a given extent are
1038 * either valid or do not exist.
1039 */
1040 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
1041 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001042 nocow = 1;
1043 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1044 extent_end = found_key.offset +
1045 btrfs_file_extent_inline_len(leaf, fi);
1046 extent_end = ALIGN(extent_end, root->sectorsize);
1047 } else {
1048 BUG_ON(1);
1049 }
1050out_check:
1051 if (extent_end <= start) {
1052 path->slots[0]++;
1053 goto next_slot;
1054 }
1055 if (!nocow) {
1056 if (cow_start == (u64)-1)
1057 cow_start = cur_offset;
1058 cur_offset = extent_end;
1059 if (cur_offset > end)
1060 break;
1061 path->slots[0]++;
1062 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001063 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001064
Yan Zheng7ea394f2008-08-05 13:05:02 -04001065 btrfs_release_path(root, path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001066 if (cow_start != (u64)-1) {
1067 ret = cow_file_range(inode, locked_page, cow_start,
Chris Mason771ed682008-11-06 22:02:51 -05001068 found_key.offset - 1, page_started,
1069 nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001070 BUG_ON(ret);
1071 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001072 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001073
Yan Zhengd899e052008-10-30 14:25:28 -04001074 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1075 struct extent_map *em;
1076 struct extent_map_tree *em_tree;
1077 em_tree = &BTRFS_I(inode)->extent_tree;
1078 em = alloc_extent_map(GFP_NOFS);
1079 em->start = cur_offset;
Chris Mason445a6942008-11-10 11:53:33 -05001080 em->orig_start = em->start;
Yan Zhengd899e052008-10-30 14:25:28 -04001081 em->len = num_bytes;
1082 em->block_len = num_bytes;
1083 em->block_start = disk_bytenr;
1084 em->bdev = root->fs_info->fs_devices->latest_bdev;
1085 set_bit(EXTENT_FLAG_PINNED, &em->flags);
1086 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04001087 write_lock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001088 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04001089 write_unlock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001090 if (ret != -EEXIST) {
1091 free_extent_map(em);
1092 break;
1093 }
1094 btrfs_drop_extent_cache(inode, em->start,
1095 em->start + em->len - 1, 0);
1096 }
1097 type = BTRFS_ORDERED_PREALLOC;
1098 } else {
1099 type = BTRFS_ORDERED_NOCOW;
1100 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001101
1102 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001103 num_bytes, num_bytes, type);
1104 BUG_ON(ret);
Chris Mason771ed682008-11-06 22:02:51 -05001105
Yan Zhengd899e052008-10-30 14:25:28 -04001106 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
1107 cur_offset, cur_offset + num_bytes - 1,
Chris Mason8b62b722009-09-02 16:53:46 -04001108 locked_page, 1, 1, 1, 0, 0, 0, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001109 cur_offset = extent_end;
1110 if (cur_offset > end)
1111 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001112 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001113 btrfs_release_path(root, path);
1114
1115 if (cur_offset <= end && cow_start == (u64)-1)
1116 cow_start = cur_offset;
1117 if (cow_start != (u64)-1) {
1118 ret = cow_file_range(inode, locked_page, cow_start, end,
Chris Mason771ed682008-11-06 22:02:51 -05001119 page_started, nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001120 BUG_ON(ret);
1121 }
1122
1123 ret = btrfs_end_transaction(trans, root);
1124 BUG_ON(ret);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001125 btrfs_free_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001126 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001127}
1128
Chris Masond352ac62008-09-29 15:18:18 -04001129/*
1130 * extent_io.c call back to do delayed allocation processing
1131 */
Chris Masonc8b97812008-10-29 14:49:59 -04001132static int run_delalloc_range(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001133 u64 start, u64 end, int *page_started,
1134 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001135{
Chris Masonbe20aa92007-12-17 20:14:01 -05001136 int ret;
Chris Mason7f366cf2009-03-12 20:12:45 -04001137 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masona2135012008-06-25 16:01:30 -04001138
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001139 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW)
Chris Masonc8b97812008-10-29 14:49:59 -04001140 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001141 page_started, 1, nr_written);
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001142 else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC)
Yan Zhengd899e052008-10-30 14:25:28 -04001143 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001144 page_started, 0, nr_written);
Chris Mason7f366cf2009-03-12 20:12:45 -04001145 else if (!btrfs_test_opt(root, COMPRESS))
1146 ret = cow_file_range(inode, locked_page, start, end,
1147 page_started, nr_written, 1);
Chris Masonbe20aa92007-12-17 20:14:01 -05001148 else
Chris Mason771ed682008-11-06 22:02:51 -05001149 ret = cow_file_range_async(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001150 page_started, nr_written);
Chris Masonb888db22007-08-27 16:49:44 -04001151 return ret;
1152}
1153
Chris Masond352ac62008-09-29 15:18:18 -04001154/*
1155 * extent_io.c set_bit_hook, used to track delayed allocation
1156 * bytes in this file, and to maintain the list of inodes that
1157 * have pending delalloc work to be done.
1158 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001159static int btrfs_set_bit_hook(struct inode *inode, u64 start, u64 end,
Chris Masonb0c68f82008-01-31 11:05:37 -05001160 unsigned long old, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -05001161{
Chris Mason75eff682008-12-15 15:54:40 -05001162 /*
1163 * set_bit and clear bit hooks normally require _irqsave/restore
1164 * but in this case, we are only testeing for the DELALLOC
1165 * bit, which is only set or cleared with irqs on
1166 */
Chris Masonb0c68f82008-01-31 11:05:37 -05001167 if (!(old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001168 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik6a632092009-02-20 11:00:09 -05001169 btrfs_delalloc_reserve_space(root, inode, end - start + 1);
Chris Mason75eff682008-12-15 15:54:40 -05001170 spin_lock(&root->fs_info->delalloc_lock);
Chris Mason90692182008-02-08 13:49:28 -05001171 BTRFS_I(inode)->delalloc_bytes += end - start + 1;
Chris Mason291d6732008-01-29 15:55:23 -05001172 root->fs_info->delalloc_bytes += end - start + 1;
Chris Masonea8c2812008-08-04 23:17:27 -04001173 if (list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1174 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1175 &root->fs_info->delalloc_inodes);
1176 }
Chris Mason75eff682008-12-15 15:54:40 -05001177 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001178 }
1179 return 0;
1180}
1181
Chris Masond352ac62008-09-29 15:18:18 -04001182/*
1183 * extent_io.c clear_bit_hook, see set_bit_hook for why
1184 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001185static int btrfs_clear_bit_hook(struct inode *inode, u64 start, u64 end,
Chris Masonb0c68f82008-01-31 11:05:37 -05001186 unsigned long old, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -05001187{
Chris Mason75eff682008-12-15 15:54:40 -05001188 /*
1189 * set_bit and clear bit hooks normally require _irqsave/restore
1190 * but in this case, we are only testeing for the DELALLOC
1191 * bit, which is only set or cleared with irqs on
1192 */
Chris Masonb0c68f82008-01-31 11:05:37 -05001193 if ((old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001194 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonbcbfce82008-04-22 13:26:47 -04001195
Chris Mason75eff682008-12-15 15:54:40 -05001196 spin_lock(&root->fs_info->delalloc_lock);
Chris Masonb0c68f82008-01-31 11:05:37 -05001197 if (end - start + 1 > root->fs_info->delalloc_bytes) {
Chris Masond3977122009-01-05 21:25:51 -05001198 printk(KERN_INFO "btrfs warning: delalloc account "
1199 "%llu %llu\n",
1200 (unsigned long long)end - start + 1,
1201 (unsigned long long)
1202 root->fs_info->delalloc_bytes);
Josef Bacik6a632092009-02-20 11:00:09 -05001203 btrfs_delalloc_free_space(root, inode, (u64)-1);
Chris Masonb0c68f82008-01-31 11:05:37 -05001204 root->fs_info->delalloc_bytes = 0;
Chris Mason90692182008-02-08 13:49:28 -05001205 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masonb0c68f82008-01-31 11:05:37 -05001206 } else {
Josef Bacik6a632092009-02-20 11:00:09 -05001207 btrfs_delalloc_free_space(root, inode,
1208 end - start + 1);
Chris Masonb0c68f82008-01-31 11:05:37 -05001209 root->fs_info->delalloc_bytes -= end - start + 1;
Chris Mason90692182008-02-08 13:49:28 -05001210 BTRFS_I(inode)->delalloc_bytes -= end - start + 1;
Chris Masonb0c68f82008-01-31 11:05:37 -05001211 }
Chris Masonea8c2812008-08-04 23:17:27 -04001212 if (BTRFS_I(inode)->delalloc_bytes == 0 &&
1213 !list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1214 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
1215 }
Chris Mason75eff682008-12-15 15:54:40 -05001216 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001217 }
1218 return 0;
1219}
1220
Chris Masond352ac62008-09-29 15:18:18 -04001221/*
1222 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1223 * we don't create bios that span stripes or chunks
1224 */
Chris Mason239b14b2008-03-24 15:02:07 -04001225int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001226 size_t size, struct bio *bio,
1227 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001228{
1229 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
1230 struct btrfs_mapping_tree *map_tree;
Chris Masona62b9402008-10-03 16:31:08 -04001231 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001232 u64 length = 0;
1233 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001234 int ret;
1235
Chris Mason771ed682008-11-06 22:02:51 -05001236 if (bio_flags & EXTENT_BIO_COMPRESSED)
1237 return 0;
1238
Chris Masonf2d8d742008-04-21 10:03:05 -04001239 length = bio->bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001240 map_tree = &root->fs_info->mapping_tree;
1241 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04001242 ret = btrfs_map_block(map_tree, READ, logical,
Chris Masonf1885912008-04-09 16:28:12 -04001243 &map_length, NULL, 0);
Chris Masoncea9e442008-04-09 16:28:12 -04001244
Chris Masond3977122009-01-05 21:25:51 -05001245 if (map_length < length + size)
Chris Mason239b14b2008-03-24 15:02:07 -04001246 return 1;
Chris Mason239b14b2008-03-24 15:02:07 -04001247 return 0;
1248}
1249
Chris Masond352ac62008-09-29 15:18:18 -04001250/*
1251 * in order to insert checksums into the metadata in large chunks,
1252 * we wait until bio submission time. All the pages in the bio are
1253 * checksummed and sums are attached onto the ordered extent record.
1254 *
1255 * At IO completion time the cums attached on the ordered extent record
1256 * are inserted into the btree
1257 */
Chris Masond3977122009-01-05 21:25:51 -05001258static int __btrfs_submit_bio_start(struct inode *inode, int rw,
1259 struct bio *bio, int mirror_num,
1260 unsigned long bio_flags)
Chris Mason065631f2008-02-20 12:07:25 -05001261{
Chris Mason065631f2008-02-20 12:07:25 -05001262 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason065631f2008-02-20 12:07:25 -05001263 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001264
Chris Masond20f7042008-12-08 16:58:54 -05001265 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
Chris Mason44b8bd72008-04-16 11:14:51 -04001266 BUG_ON(ret);
Chris Mason4a69a412008-11-06 22:03:00 -05001267 return 0;
1268}
Chris Masone0156402008-04-16 11:15:20 -04001269
Chris Mason4a69a412008-11-06 22:03:00 -05001270/*
1271 * in order to insert checksums into the metadata in large chunks,
1272 * we wait until bio submission time. All the pages in the bio are
1273 * checksummed and sums are attached onto the ordered extent record.
1274 *
1275 * At IO completion time the cums attached on the ordered extent record
1276 * are inserted into the btree
1277 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001278static int __btrfs_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
Chris Mason4a69a412008-11-06 22:03:00 -05001279 int mirror_num, unsigned long bio_flags)
1280{
1281 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason8b712842008-06-11 16:50:36 -04001282 return btrfs_map_bio(root, rw, bio, mirror_num, 1);
Chris Mason44b8bd72008-04-16 11:14:51 -04001283}
1284
Chris Masond352ac62008-09-29 15:18:18 -04001285/*
Chris Masoncad321a2008-12-17 14:51:42 -05001286 * extent_io.c submission hook. This does the right thing for csum calculation
1287 * on write, or reading the csums from the tree before a read
Chris Masond352ac62008-09-29 15:18:18 -04001288 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001289static int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masonc8b97812008-10-29 14:49:59 -04001290 int mirror_num, unsigned long bio_flags)
Chris Mason44b8bd72008-04-16 11:14:51 -04001291{
1292 struct btrfs_root *root = BTRFS_I(inode)->root;
1293 int ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001294 int skip_sum;
Chris Mason44b8bd72008-04-16 11:14:51 -04001295
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001296 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masoncad321a2008-12-17 14:51:42 -05001297
Chris Masone6dcd2d2008-07-17 12:53:50 -04001298 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
1299 BUG_ON(ret);
Chris Mason065631f2008-02-20 12:07:25 -05001300
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001301 if (!(rw & (1 << BIO_RW))) {
Chris Masond20f7042008-12-08 16:58:54 -05001302 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Chris Masonc8b97812008-10-29 14:49:59 -04001303 return btrfs_submit_compressed_read(inode, bio,
1304 mirror_num, bio_flags);
Chris Masond20f7042008-12-08 16:58:54 -05001305 } else if (!skip_sum)
1306 btrfs_lookup_bio_sums(root, inode, bio, NULL);
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001307 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001308 } else if (!skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001309 /* csum items have already been cloned */
1310 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1311 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001312 /* we're doing a write, do the async checksumming */
1313 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
Chris Mason44b8bd72008-04-16 11:14:51 -04001314 inode, rw, bio, mirror_num,
Chris Mason4a69a412008-11-06 22:03:00 -05001315 bio_flags, __btrfs_submit_bio_start,
1316 __btrfs_submit_bio_done);
Chris Mason19b9bdb2008-10-30 14:23:13 -04001317 }
1318
Chris Mason0b86a832008-03-24 15:01:56 -04001319mapit:
Chris Mason8b712842008-06-11 16:50:36 -04001320 return btrfs_map_bio(root, rw, bio, mirror_num, 0);
Chris Mason065631f2008-02-20 12:07:25 -05001321}
Chris Mason6885f302008-02-20 16:11:05 -05001322
Chris Masond352ac62008-09-29 15:18:18 -04001323/*
1324 * given a list of ordered sums record them in the inode. This happens
1325 * at IO completion time based on sums calculated at bio submission time.
1326 */
Chris Masonba1da2f2008-07-17 12:54:15 -04001327static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -04001328 struct inode *inode, u64 file_offset,
1329 struct list_head *list)
1330{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001331 struct btrfs_ordered_sum *sum;
1332
1333 btrfs_set_trans_block_group(trans, inode);
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001334
1335 list_for_each_entry(sum, list, list) {
Chris Masond20f7042008-12-08 16:58:54 -05001336 btrfs_csum_file_blocks(trans,
1337 BTRFS_I(inode)->root->fs_info->csum_root, sum);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001338 }
1339 return 0;
1340}
1341
Chris Masonea8c2812008-08-04 23:17:27 -04001342int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end)
1343{
Chris Masond3977122009-01-05 21:25:51 -05001344 if ((end & (PAGE_CACHE_SIZE - 1)) == 0)
Chris Mason771ed682008-11-06 22:02:51 -05001345 WARN_ON(1);
Chris Masonea8c2812008-08-04 23:17:27 -04001346 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
1347 GFP_NOFS);
1348}
1349
Chris Masond352ac62008-09-29 15:18:18 -04001350/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04001351struct btrfs_writepage_fixup {
1352 struct page *page;
1353 struct btrfs_work work;
1354};
1355
Christoph Hellwigb2950862008-12-02 09:54:17 -05001356static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04001357{
1358 struct btrfs_writepage_fixup *fixup;
1359 struct btrfs_ordered_extent *ordered;
1360 struct page *page;
1361 struct inode *inode;
1362 u64 page_start;
1363 u64 page_end;
1364
1365 fixup = container_of(work, struct btrfs_writepage_fixup, work);
1366 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04001367again:
Chris Mason247e7432008-07-17 12:53:51 -04001368 lock_page(page);
1369 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
1370 ClearPageChecked(page);
1371 goto out_page;
1372 }
1373
1374 inode = page->mapping->host;
1375 page_start = page_offset(page);
1376 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
1377
1378 lock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001379
1380 /* already ordered? We're done */
Chris Mason8b62b722009-09-02 16:53:46 -04001381 if (PagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001382 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04001383
1384 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1385 if (ordered) {
1386 unlock_extent(&BTRFS_I(inode)->io_tree, page_start,
1387 page_end, GFP_NOFS);
1388 unlock_page(page);
1389 btrfs_start_ordered_extent(inode, ordered, 1);
1390 goto again;
1391 }
Chris Mason247e7432008-07-17 12:53:51 -04001392
Chris Masonea8c2812008-08-04 23:17:27 -04001393 btrfs_set_extent_delalloc(inode, page_start, page_end);
Chris Mason247e7432008-07-17 12:53:51 -04001394 ClearPageChecked(page);
1395out:
1396 unlock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end, GFP_NOFS);
1397out_page:
1398 unlock_page(page);
1399 page_cache_release(page);
1400}
1401
1402/*
1403 * There are a few paths in the higher layers of the kernel that directly
1404 * set the page dirty bit without asking the filesystem if it is a
1405 * good idea. This causes problems because we want to make sure COW
1406 * properly happens and the data=ordered rules are followed.
1407 *
Chris Masonc8b97812008-10-29 14:49:59 -04001408 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04001409 * hasn't been properly setup for IO. We kick off an async process
1410 * to fix it up. The async helper will wait for ordered extents, set
1411 * the delalloc bit and make it safe to write the page.
1412 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001413static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04001414{
1415 struct inode *inode = page->mapping->host;
1416 struct btrfs_writepage_fixup *fixup;
1417 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason247e7432008-07-17 12:53:51 -04001418
Chris Mason8b62b722009-09-02 16:53:46 -04001419 /* this page is properly in the ordered list */
1420 if (TestClearPagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001421 return 0;
1422
1423 if (PageChecked(page))
1424 return -EAGAIN;
1425
1426 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
1427 if (!fixup)
1428 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04001429
Chris Mason247e7432008-07-17 12:53:51 -04001430 SetPageChecked(page);
1431 page_cache_get(page);
1432 fixup->work.func = btrfs_writepage_fixup_worker;
1433 fixup->page = page;
1434 btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work);
1435 return -EAGAIN;
1436}
1437
Yan Zhengd899e052008-10-30 14:25:28 -04001438static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
1439 struct inode *inode, u64 file_pos,
1440 u64 disk_bytenr, u64 disk_num_bytes,
1441 u64 num_bytes, u64 ram_bytes,
Chris Masone980b502009-04-24 14:39:24 -04001442 u64 locked_end,
Yan Zhengd899e052008-10-30 14:25:28 -04001443 u8 compression, u8 encryption,
1444 u16 other_encoding, int extent_type)
1445{
1446 struct btrfs_root *root = BTRFS_I(inode)->root;
1447 struct btrfs_file_extent_item *fi;
1448 struct btrfs_path *path;
1449 struct extent_buffer *leaf;
1450 struct btrfs_key ins;
1451 u64 hint;
1452 int ret;
1453
1454 path = btrfs_alloc_path();
1455 BUG_ON(!path);
1456
Chris Masonb9473432009-03-13 11:00:37 -04001457 path->leave_spinning = 1;
Chris Masona1ed8352009-09-11 12:27:37 -04001458
1459 /*
1460 * we may be replacing one extent in the tree with another.
1461 * The new extent is pinned in the extent map, and we don't want
1462 * to drop it from the cache until it is completely in the btree.
1463 *
1464 * So, tell btrfs_drop_extents to leave this extent in the cache.
1465 * the caller is expected to unpin it and allow it to be merged
1466 * with the others.
1467 */
Yan Zhengd899e052008-10-30 14:25:28 -04001468 ret = btrfs_drop_extents(trans, root, inode, file_pos,
Chris Masone980b502009-04-24 14:39:24 -04001469 file_pos + num_bytes, locked_end,
Chris Masona1ed8352009-09-11 12:27:37 -04001470 file_pos, &hint, 0);
Yan Zhengd899e052008-10-30 14:25:28 -04001471 BUG_ON(ret);
1472
1473 ins.objectid = inode->i_ino;
1474 ins.offset = file_pos;
1475 ins.type = BTRFS_EXTENT_DATA_KEY;
1476 ret = btrfs_insert_empty_item(trans, root, path, &ins, sizeof(*fi));
1477 BUG_ON(ret);
1478 leaf = path->nodes[0];
1479 fi = btrfs_item_ptr(leaf, path->slots[0],
1480 struct btrfs_file_extent_item);
1481 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
1482 btrfs_set_file_extent_type(leaf, fi, extent_type);
1483 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
1484 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
1485 btrfs_set_file_extent_offset(leaf, fi, 0);
1486 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
1487 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
1488 btrfs_set_file_extent_compression(leaf, fi, compression);
1489 btrfs_set_file_extent_encryption(leaf, fi, encryption);
1490 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
Chris Masonb9473432009-03-13 11:00:37 -04001491
1492 btrfs_unlock_up_safe(path, 1);
1493 btrfs_set_lock_blocking(leaf);
1494
Yan Zhengd899e052008-10-30 14:25:28 -04001495 btrfs_mark_buffer_dirty(leaf);
1496
1497 inode_add_bytes(inode, num_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -04001498
1499 ins.objectid = disk_bytenr;
1500 ins.offset = disk_num_bytes;
1501 ins.type = BTRFS_EXTENT_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001502 ret = btrfs_alloc_reserved_file_extent(trans, root,
1503 root->root_key.objectid,
1504 inode->i_ino, file_pos, &ins);
Yan Zhengd899e052008-10-30 14:25:28 -04001505 BUG_ON(ret);
Yan Zhengd899e052008-10-30 14:25:28 -04001506 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04001507
Yan Zhengd899e052008-10-30 14:25:28 -04001508 return 0;
1509}
1510
Chris Mason5d13a982009-03-13 11:41:46 -04001511/*
1512 * helper function for btrfs_finish_ordered_io, this
1513 * just reads in some of the csum leaves to prime them into ram
1514 * before we start the transaction. It limits the amount of btree
1515 * reads required while inside the transaction.
1516 */
1517static noinline void reada_csum(struct btrfs_root *root,
1518 struct btrfs_path *path,
1519 struct btrfs_ordered_extent *ordered_extent)
1520{
1521 struct btrfs_ordered_sum *sum;
1522 u64 bytenr;
1523
1524 sum = list_entry(ordered_extent->list.next, struct btrfs_ordered_sum,
1525 list);
1526 bytenr = sum->sums[0].bytenr;
1527
1528 /*
1529 * we don't care about the results, the point of this search is
1530 * just to get the btree leaves into ram
1531 */
1532 btrfs_lookup_csum(NULL, root->fs_info->csum_root, path, bytenr, 0);
1533}
1534
Chris Masond352ac62008-09-29 15:18:18 -04001535/* as ordered data IO finishes, this gets called so we can finish
1536 * an ordered extent if the range of bytes in the file it covers are
1537 * fully written.
1538 */
Chris Mason211f90e2008-07-18 11:56:15 -04001539static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001540{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001541 struct btrfs_root *root = BTRFS_I(inode)->root;
1542 struct btrfs_trans_handle *trans;
Chris Mason5d13a982009-03-13 11:41:46 -04001543 struct btrfs_ordered_extent *ordered_extent = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001544 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masonb7ec40d2009-03-12 20:12:45 -04001545 struct btrfs_path *path;
Yan Zhengd899e052008-10-30 14:25:28 -04001546 int compressed = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001547 int ret;
1548
1549 ret = btrfs_dec_test_ordered_pending(inode, start, end - start + 1);
Chris Masonba1da2f2008-07-17 12:54:15 -04001550 if (!ret)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001551 return 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001552
Chris Masonb7ec40d2009-03-12 20:12:45 -04001553 /*
1554 * before we join the transaction, try to do some of our IO.
1555 * This will limit the amount of IO that we have to do with
1556 * the transaction running. We're unlikely to need to do any
1557 * IO if the file extents are new, the disk_i_size checks
1558 * covers the most common case.
1559 */
1560 if (start < BTRFS_I(inode)->disk_i_size) {
1561 path = btrfs_alloc_path();
1562 if (path) {
1563 ret = btrfs_lookup_file_extent(NULL, root, path,
1564 inode->i_ino,
1565 start, 0);
Chris Mason5d13a982009-03-13 11:41:46 -04001566 ordered_extent = btrfs_lookup_ordered_extent(inode,
1567 start);
1568 if (!list_empty(&ordered_extent->list)) {
1569 btrfs_release_path(root, path);
1570 reada_csum(root, path, ordered_extent);
1571 }
Chris Masonb7ec40d2009-03-12 20:12:45 -04001572 btrfs_free_path(path);
1573 }
1574 }
1575
Chris Masonf9295742008-07-17 12:54:14 -04001576 trans = btrfs_join_transaction(root, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001577
Chris Mason5d13a982009-03-13 11:41:46 -04001578 if (!ordered_extent)
1579 ordered_extent = btrfs_lookup_ordered_extent(inode, start);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001580 BUG_ON(!ordered_extent);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001581 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags))
1582 goto nocow;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001583
1584 lock_extent(io_tree, ordered_extent->file_offset,
1585 ordered_extent->file_offset + ordered_extent->len - 1,
1586 GFP_NOFS);
1587
Chris Masonc8b97812008-10-29 14:49:59 -04001588 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Yan Zhengd899e052008-10-30 14:25:28 -04001589 compressed = 1;
1590 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
1591 BUG_ON(compressed);
1592 ret = btrfs_mark_extent_written(trans, root, inode,
1593 ordered_extent->file_offset,
1594 ordered_extent->file_offset +
1595 ordered_extent->len);
1596 BUG_ON(ret);
1597 } else {
1598 ret = insert_reserved_file_extent(trans, inode,
1599 ordered_extent->file_offset,
1600 ordered_extent->start,
1601 ordered_extent->disk_len,
1602 ordered_extent->len,
1603 ordered_extent->len,
Chris Masone980b502009-04-24 14:39:24 -04001604 ordered_extent->file_offset +
1605 ordered_extent->len,
Yan Zhengd899e052008-10-30 14:25:28 -04001606 compressed, 0, 0,
1607 BTRFS_FILE_EXTENT_REG);
Chris Masona1ed8352009-09-11 12:27:37 -04001608 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
1609 ordered_extent->file_offset,
1610 ordered_extent->len);
Yan Zhengd899e052008-10-30 14:25:28 -04001611 BUG_ON(ret);
1612 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001613 unlock_extent(io_tree, ordered_extent->file_offset,
1614 ordered_extent->file_offset + ordered_extent->len - 1,
1615 GFP_NOFS);
Yan Zheng7ea394f2008-08-05 13:05:02 -04001616nocow:
Chris Masone6dcd2d2008-07-17 12:53:50 -04001617 add_pending_csums(trans, inode, ordered_extent->file_offset,
1618 &ordered_extent->list);
1619
Chris Mason34353022008-09-23 20:19:49 -04001620 mutex_lock(&BTRFS_I(inode)->extent_mutex);
Chris Masondbe674a2008-07-17 12:54:05 -04001621 btrfs_ordered_update_i_size(inode, ordered_extent);
Chris Masone02119d2008-09-05 16:13:11 -04001622 btrfs_update_inode(trans, root, inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001623 btrfs_remove_ordered_extent(inode, ordered_extent);
Chris Mason34353022008-09-23 20:19:49 -04001624 mutex_unlock(&BTRFS_I(inode)->extent_mutex);
Chris Mason7f3c74f2008-07-18 12:01:11 -04001625
Chris Masone6dcd2d2008-07-17 12:53:50 -04001626 /* once for us */
1627 btrfs_put_ordered_extent(ordered_extent);
1628 /* once for the tree */
1629 btrfs_put_ordered_extent(ordered_extent);
1630
Chris Masone6dcd2d2008-07-17 12:53:50 -04001631 btrfs_end_transaction(trans, root);
1632 return 0;
1633}
1634
Christoph Hellwigb2950862008-12-02 09:54:17 -05001635static int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04001636 struct extent_state *state, int uptodate)
1637{
Chris Mason8b62b722009-09-02 16:53:46 -04001638 ClearPagePrivate2(page);
Chris Mason211f90e2008-07-18 11:56:15 -04001639 return btrfs_finish_ordered_io(page->mapping->host, start, end);
1640}
1641
Chris Masond352ac62008-09-29 15:18:18 -04001642/*
1643 * When IO fails, either with EIO or csum verification fails, we
1644 * try other mirrors that might have a good copy of the data. This
1645 * io_failure_record is used to record state as we go through all the
1646 * mirrors. If another mirror has good data, the page is set up to date
1647 * and things continue. If a good mirror can't be found, the original
1648 * bio end_io callback is called to indicate things have failed.
1649 */
Chris Mason7e383262008-04-09 16:28:12 -04001650struct io_failure_record {
1651 struct page *page;
1652 u64 start;
1653 u64 len;
1654 u64 logical;
Chris Masond20f7042008-12-08 16:58:54 -05001655 unsigned long bio_flags;
Chris Mason7e383262008-04-09 16:28:12 -04001656 int last_mirror;
1657};
1658
Christoph Hellwigb2950862008-12-02 09:54:17 -05001659static int btrfs_io_failed_hook(struct bio *failed_bio,
Chris Mason1259ab72008-05-12 13:39:03 -04001660 struct page *page, u64 start, u64 end,
1661 struct extent_state *state)
Chris Mason7e383262008-04-09 16:28:12 -04001662{
1663 struct io_failure_record *failrec = NULL;
1664 u64 private;
1665 struct extent_map *em;
1666 struct inode *inode = page->mapping->host;
1667 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Chris Mason3b951512008-04-17 11:29:12 -04001668 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason7e383262008-04-09 16:28:12 -04001669 struct bio *bio;
1670 int num_copies;
1671 int ret;
Chris Mason1259ab72008-05-12 13:39:03 -04001672 int rw;
Chris Mason7e383262008-04-09 16:28:12 -04001673 u64 logical;
1674
1675 ret = get_state_private(failure_tree, start, &private);
1676 if (ret) {
Chris Mason7e383262008-04-09 16:28:12 -04001677 failrec = kmalloc(sizeof(*failrec), GFP_NOFS);
1678 if (!failrec)
1679 return -ENOMEM;
1680 failrec->start = start;
1681 failrec->len = end - start + 1;
1682 failrec->last_mirror = 0;
Chris Masond20f7042008-12-08 16:58:54 -05001683 failrec->bio_flags = 0;
Chris Mason7e383262008-04-09 16:28:12 -04001684
Chris Mason890871b2009-09-02 16:24:52 -04001685 read_lock(&em_tree->lock);
Chris Mason3b951512008-04-17 11:29:12 -04001686 em = lookup_extent_mapping(em_tree, start, failrec->len);
1687 if (em->start > start || em->start + em->len < start) {
1688 free_extent_map(em);
1689 em = NULL;
1690 }
Chris Mason890871b2009-09-02 16:24:52 -04001691 read_unlock(&em_tree->lock);
Chris Mason7e383262008-04-09 16:28:12 -04001692
1693 if (!em || IS_ERR(em)) {
1694 kfree(failrec);
1695 return -EIO;
1696 }
1697 logical = start - em->start;
1698 logical = em->block_start + logical;
Chris Masond20f7042008-12-08 16:58:54 -05001699 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
1700 logical = em->block_start;
1701 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
1702 }
Chris Mason7e383262008-04-09 16:28:12 -04001703 failrec->logical = logical;
1704 free_extent_map(em);
1705 set_extent_bits(failure_tree, start, end, EXTENT_LOCKED |
1706 EXTENT_DIRTY, GFP_NOFS);
Chris Mason587f7702008-04-11 12:16:46 -04001707 set_state_private(failure_tree, start,
1708 (u64)(unsigned long)failrec);
Chris Mason7e383262008-04-09 16:28:12 -04001709 } else {
Chris Mason587f7702008-04-11 12:16:46 -04001710 failrec = (struct io_failure_record *)(unsigned long)private;
Chris Mason7e383262008-04-09 16:28:12 -04001711 }
1712 num_copies = btrfs_num_copies(
1713 &BTRFS_I(inode)->root->fs_info->mapping_tree,
1714 failrec->logical, failrec->len);
1715 failrec->last_mirror++;
1716 if (!state) {
Chris Masoncad321a2008-12-17 14:51:42 -05001717 spin_lock(&BTRFS_I(inode)->io_tree.lock);
Chris Mason7e383262008-04-09 16:28:12 -04001718 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
1719 failrec->start,
1720 EXTENT_LOCKED);
1721 if (state && state->start != failrec->start)
1722 state = NULL;
Chris Masoncad321a2008-12-17 14:51:42 -05001723 spin_unlock(&BTRFS_I(inode)->io_tree.lock);
Chris Mason7e383262008-04-09 16:28:12 -04001724 }
1725 if (!state || failrec->last_mirror > num_copies) {
1726 set_state_private(failure_tree, failrec->start, 0);
1727 clear_extent_bits(failure_tree, failrec->start,
1728 failrec->start + failrec->len - 1,
1729 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
1730 kfree(failrec);
1731 return -EIO;
1732 }
1733 bio = bio_alloc(GFP_NOFS, 1);
1734 bio->bi_private = state;
1735 bio->bi_end_io = failed_bio->bi_end_io;
1736 bio->bi_sector = failrec->logical >> 9;
1737 bio->bi_bdev = failed_bio->bi_bdev;
Chris Masone1c4b742008-04-22 13:26:46 -04001738 bio->bi_size = 0;
Chris Masond20f7042008-12-08 16:58:54 -05001739
Chris Mason7e383262008-04-09 16:28:12 -04001740 bio_add_page(bio, page, failrec->len, start - page_offset(page));
Chris Mason1259ab72008-05-12 13:39:03 -04001741 if (failed_bio->bi_rw & (1 << BIO_RW))
1742 rw = WRITE;
1743 else
1744 rw = READ;
1745
1746 BTRFS_I(inode)->io_tree.ops->submit_bio_hook(inode, rw, bio,
Chris Masonc8b97812008-10-29 14:49:59 -04001747 failrec->last_mirror,
Chris Masond20f7042008-12-08 16:58:54 -05001748 failrec->bio_flags);
Chris Mason1259ab72008-05-12 13:39:03 -04001749 return 0;
1750}
1751
Chris Masond352ac62008-09-29 15:18:18 -04001752/*
1753 * each time an IO finishes, we do a fast check in the IO failure tree
1754 * to see if we need to process or clean up an io_failure_record
1755 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001756static int btrfs_clean_io_failures(struct inode *inode, u64 start)
Chris Mason1259ab72008-05-12 13:39:03 -04001757{
1758 u64 private;
1759 u64 private_failure;
1760 struct io_failure_record *failure;
1761 int ret;
1762
1763 private = 0;
1764 if (count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
1765 (u64)-1, 1, EXTENT_DIRTY)) {
1766 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree,
1767 start, &private_failure);
1768 if (ret == 0) {
1769 failure = (struct io_failure_record *)(unsigned long)
1770 private_failure;
1771 set_state_private(&BTRFS_I(inode)->io_failure_tree,
1772 failure->start, 0);
1773 clear_extent_bits(&BTRFS_I(inode)->io_failure_tree,
1774 failure->start,
1775 failure->start + failure->len - 1,
1776 EXTENT_DIRTY | EXTENT_LOCKED,
1777 GFP_NOFS);
1778 kfree(failure);
1779 }
1780 }
Chris Mason7e383262008-04-09 16:28:12 -04001781 return 0;
1782}
1783
Chris Masond352ac62008-09-29 15:18:18 -04001784/*
1785 * when reads are done, we need to check csums to verify the data is correct
1786 * if there's a match, we allow the bio to finish. If not, we go through
1787 * the io_failure_record routines to find good copies
1788 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001789static int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason70dec802008-01-29 09:59:12 -05001790 struct extent_state *state)
Chris Mason07157aa2007-08-30 08:50:51 -04001791{
Chris Mason35ebb932007-10-30 16:56:53 -04001792 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -04001793 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05001794 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -04001795 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -05001796 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -04001797 int ret;
Chris Masonff79f812007-10-15 16:22:25 -04001798 struct btrfs_root *root = BTRFS_I(inode)->root;
1799 u32 csum = ~(u32)0;
Chris Masond1310b22008-01-24 16:13:08 -05001800
Chris Masond20f7042008-12-08 16:58:54 -05001801 if (PageChecked(page)) {
1802 ClearPageChecked(page);
1803 goto good;
1804 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001805
1806 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Chris Masonb6cda9b2007-12-14 15:30:32 -05001807 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05001808
Yan Zheng17d217f2008-12-12 10:03:38 -05001809 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04001810 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001811 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM,
1812 GFP_NOFS);
1813 return 0;
1814 }
1815
Yanc2e639f2008-02-04 08:57:25 -05001816 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -05001817 private = state->private;
1818 ret = 0;
1819 } else {
1820 ret = get_state_private(io_tree, start, &private);
1821 }
Chris Mason9ab86c82009-01-07 09:48:51 -05001822 kaddr = kmap_atomic(page, KM_USER0);
Chris Masond3977122009-01-05 21:25:51 -05001823 if (ret)
Chris Mason07157aa2007-08-30 08:50:51 -04001824 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05001825
Chris Masonff79f812007-10-15 16:22:25 -04001826 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
1827 btrfs_csum_final(csum, (char *)&csum);
Chris Masond3977122009-01-05 21:25:51 -05001828 if (csum != private)
Chris Mason07157aa2007-08-30 08:50:51 -04001829 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05001830
Chris Mason9ab86c82009-01-07 09:48:51 -05001831 kunmap_atomic(kaddr, KM_USER0);
Chris Masond20f7042008-12-08 16:58:54 -05001832good:
Chris Mason7e383262008-04-09 16:28:12 -04001833 /* if the io failure tree for this inode is non-empty,
1834 * check to see if we've recovered from a failed IO
1835 */
Chris Mason1259ab72008-05-12 13:39:03 -04001836 btrfs_clean_io_failures(inode, start);
Chris Mason07157aa2007-08-30 08:50:51 -04001837 return 0;
1838
1839zeroit:
Chris Mason193f2842009-04-27 07:29:05 -04001840 if (printk_ratelimit()) {
1841 printk(KERN_INFO "btrfs csum failed ino %lu off %llu csum %u "
1842 "private %llu\n", page->mapping->host->i_ino,
1843 (unsigned long long)start, csum,
1844 (unsigned long long)private);
1845 }
Chris Masondb945352007-10-15 16:15:53 -04001846 memset(kaddr + offset, 1, end - start + 1);
1847 flush_dcache_page(page);
Chris Mason9ab86c82009-01-07 09:48:51 -05001848 kunmap_atomic(kaddr, KM_USER0);
Chris Mason3b951512008-04-17 11:29:12 -04001849 if (private == 0)
1850 return 0;
Chris Mason7e383262008-04-09 16:28:12 -04001851 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -04001852}
Chris Masonb888db22007-08-27 16:49:44 -04001853
Josef Bacik7b128762008-07-24 12:17:14 -04001854/*
1855 * This creates an orphan entry for the given inode in case something goes
1856 * wrong in the middle of an unlink/truncate.
1857 */
1858int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
1859{
1860 struct btrfs_root *root = BTRFS_I(inode)->root;
1861 int ret = 0;
1862
Yanbcc63ab2008-07-30 16:29:20 -04001863 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001864
1865 /* already on the orphan list, we're good */
1866 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
Yanbcc63ab2008-07-30 16:29:20 -04001867 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001868 return 0;
1869 }
1870
1871 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
1872
Yanbcc63ab2008-07-30 16:29:20 -04001873 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001874
1875 /*
1876 * insert an orphan item to track this unlinked/truncated file
1877 */
1878 ret = btrfs_insert_orphan_item(trans, root, inode->i_ino);
1879
1880 return ret;
1881}
1882
1883/*
1884 * We have done the truncate/delete so we can go ahead and remove the orphan
1885 * item for this particular inode.
1886 */
1887int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode)
1888{
1889 struct btrfs_root *root = BTRFS_I(inode)->root;
1890 int ret = 0;
1891
Yanbcc63ab2008-07-30 16:29:20 -04001892 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001893
1894 if (list_empty(&BTRFS_I(inode)->i_orphan)) {
Yanbcc63ab2008-07-30 16:29:20 -04001895 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001896 return 0;
1897 }
1898
1899 list_del_init(&BTRFS_I(inode)->i_orphan);
1900 if (!trans) {
Yanbcc63ab2008-07-30 16:29:20 -04001901 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001902 return 0;
1903 }
1904
Yanbcc63ab2008-07-30 16:29:20 -04001905 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001906
1907 ret = btrfs_del_orphan_item(trans, root, inode->i_ino);
1908
1909 return ret;
1910}
1911
1912/*
1913 * this cleans up any orphans that may be left on the list from the last use
1914 * of this root.
1915 */
1916void btrfs_orphan_cleanup(struct btrfs_root *root)
1917{
1918 struct btrfs_path *path;
1919 struct extent_buffer *leaf;
1920 struct btrfs_item *item;
1921 struct btrfs_key key, found_key;
1922 struct btrfs_trans_handle *trans;
1923 struct inode *inode;
1924 int ret = 0, nr_unlink = 0, nr_truncate = 0;
1925
Josef Bacik7b128762008-07-24 12:17:14 -04001926 path = btrfs_alloc_path();
1927 if (!path)
1928 return;
1929 path->reada = -1;
1930
1931 key.objectid = BTRFS_ORPHAN_OBJECTID;
1932 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
1933 key.offset = (u64)-1;
1934
Josef Bacik7b128762008-07-24 12:17:14 -04001935
1936 while (1) {
1937 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1938 if (ret < 0) {
1939 printk(KERN_ERR "Error searching slot for orphan: %d"
1940 "\n", ret);
1941 break;
1942 }
1943
1944 /*
1945 * if ret == 0 means we found what we were searching for, which
1946 * is weird, but possible, so only screw with path if we didnt
1947 * find the key and see if we have stuff that matches
1948 */
1949 if (ret > 0) {
1950 if (path->slots[0] == 0)
1951 break;
1952 path->slots[0]--;
1953 }
1954
1955 /* pull out the item */
1956 leaf = path->nodes[0];
1957 item = btrfs_item_nr(leaf, path->slots[0]);
1958 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1959
1960 /* make sure the item matches what we want */
1961 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
1962 break;
1963 if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY)
1964 break;
1965
1966 /* release the path since we're done with it */
1967 btrfs_release_path(root, path);
1968
1969 /*
1970 * this is where we are basically btrfs_lookup, without the
1971 * crossing root thing. we store the inode number in the
1972 * offset of the orphan item.
1973 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001974 found_key.objectid = found_key.offset;
1975 found_key.type = BTRFS_INODE_ITEM_KEY;
1976 found_key.offset = 0;
1977 inode = btrfs_iget(root->fs_info->sb, &found_key, root);
1978 if (IS_ERR(inode))
Josef Bacik7b128762008-07-24 12:17:14 -04001979 break;
1980
Josef Bacik7b128762008-07-24 12:17:14 -04001981 /*
1982 * add this inode to the orphan list so btrfs_orphan_del does
1983 * the proper thing when we hit it
1984 */
Yanbcc63ab2008-07-30 16:29:20 -04001985 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001986 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
Yanbcc63ab2008-07-30 16:29:20 -04001987 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04001988
1989 /*
1990 * if this is a bad inode, means we actually succeeded in
1991 * removing the inode, but not the orphan record, which means
1992 * we need to manually delete the orphan since iput will just
1993 * do a destroy_inode
1994 */
1995 if (is_bad_inode(inode)) {
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001996 trans = btrfs_start_transaction(root, 1);
Josef Bacik7b128762008-07-24 12:17:14 -04001997 btrfs_orphan_del(trans, inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001998 btrfs_end_transaction(trans, root);
Josef Bacik7b128762008-07-24 12:17:14 -04001999 iput(inode);
2000 continue;
2001 }
2002
2003 /* if we have links, this was a truncate, lets do that */
2004 if (inode->i_nlink) {
2005 nr_truncate++;
2006 btrfs_truncate(inode);
2007 } else {
2008 nr_unlink++;
2009 }
2010
2011 /* this will do delete_inode and everything for us */
2012 iput(inode);
2013 }
2014
2015 if (nr_unlink)
2016 printk(KERN_INFO "btrfs: unlinked %d orphans\n", nr_unlink);
2017 if (nr_truncate)
2018 printk(KERN_INFO "btrfs: truncated %d orphans\n", nr_truncate);
2019
2020 btrfs_free_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04002021}
2022
Chris Masond352ac62008-09-29 15:18:18 -04002023/*
Chris Mason46a53cc2009-04-27 11:47:50 -04002024 * very simple check to peek ahead in the leaf looking for xattrs. If we
2025 * don't find any xattrs, we know there can't be any acls.
2026 *
2027 * slot is the slot the inode is in, objectid is the objectid of the inode
2028 */
2029static noinline int acls_after_inode_item(struct extent_buffer *leaf,
2030 int slot, u64 objectid)
2031{
2032 u32 nritems = btrfs_header_nritems(leaf);
2033 struct btrfs_key found_key;
2034 int scanned = 0;
2035
2036 slot++;
2037 while (slot < nritems) {
2038 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2039
2040 /* we found a different objectid, there must not be acls */
2041 if (found_key.objectid != objectid)
2042 return 0;
2043
2044 /* we found an xattr, assume we've got an acl */
2045 if (found_key.type == BTRFS_XATTR_ITEM_KEY)
2046 return 1;
2047
2048 /*
2049 * we found a key greater than an xattr key, there can't
2050 * be any acls later on
2051 */
2052 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
2053 return 0;
2054
2055 slot++;
2056 scanned++;
2057
2058 /*
2059 * it goes inode, inode backrefs, xattrs, extents,
2060 * so if there are a ton of hard links to an inode there can
2061 * be a lot of backrefs. Don't waste time searching too hard,
2062 * this is just an optimization
2063 */
2064 if (scanned >= 8)
2065 break;
2066 }
2067 /* we hit the end of the leaf before we found an xattr or
2068 * something larger than an xattr. We have to assume the inode
2069 * has acls
2070 */
2071 return 1;
2072}
2073
2074/*
Chris Masond352ac62008-09-29 15:18:18 -04002075 * read an inode from the btree into the in-memory inode
2076 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002077static void btrfs_read_locked_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002078{
2079 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002080 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002081 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -04002082 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -04002083 struct btrfs_root *root = BTRFS_I(inode)->root;
2084 struct btrfs_key location;
Chris Mason46a53cc2009-04-27 11:47:50 -04002085 int maybe_acls;
Chris Mason39279cc2007-06-12 06:35:45 -04002086 u64 alloc_group_block;
Josef Bacik618e21d2007-07-11 10:18:17 -04002087 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04002088 int ret;
2089
2090 path = btrfs_alloc_path();
2091 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -04002092 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05002093
Chris Mason39279cc2007-06-12 06:35:45 -04002094 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002095 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04002096 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -04002097
Chris Mason5f39d392007-10-15 16:14:19 -04002098 leaf = path->nodes[0];
2099 inode_item = btrfs_item_ptr(leaf, path->slots[0],
2100 struct btrfs_inode_item);
2101
2102 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
2103 inode->i_nlink = btrfs_inode_nlink(leaf, inode_item);
2104 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
2105 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
Chris Masondbe674a2008-07-17 12:54:05 -04002106 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002107
2108 tspec = btrfs_inode_atime(inode_item);
2109 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2110 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2111
2112 tspec = btrfs_inode_mtime(inode_item);
2113 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2114 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2115
2116 tspec = btrfs_inode_ctime(inode_item);
2117 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2118 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2119
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002120 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04002121 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Chris Masonc3027eb2008-12-08 16:40:21 -05002122 BTRFS_I(inode)->sequence = btrfs_inode_sequence(leaf, inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04002123 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04002124 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002125 rdev = btrfs_inode_rdev(leaf, inode_item);
2126
Josef Bacikaec74772008-07-24 12:12:38 -04002127 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05002128 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Josef Bacikaec74772008-07-24 12:12:38 -04002129
Chris Mason5f39d392007-10-15 16:14:19 -04002130 alloc_group_block = btrfs_inode_block_group(leaf, inode_item);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002131
Chris Mason46a53cc2009-04-27 11:47:50 -04002132 /*
2133 * try to precache a NULL acl entry for files that don't have
2134 * any xattrs or acls
2135 */
2136 maybe_acls = acls_after_inode_item(leaf, path->slots[0], inode->i_ino);
Al Viro72c04902009-06-24 16:58:48 -04002137 if (!maybe_acls)
2138 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04002139
Yan Zhengd2fb3432008-12-11 16:30:39 -05002140 BTRFS_I(inode)->block_group = btrfs_find_block_group(root, 0,
2141 alloc_group_block, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002142 btrfs_free_path(path);
2143 inode_item = NULL;
2144
Chris Mason39279cc2007-06-12 06:35:45 -04002145 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04002146 case S_IFREG:
2147 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04002148 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05002149 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04002150 inode->i_fop = &btrfs_file_operations;
2151 inode->i_op = &btrfs_file_inode_operations;
2152 break;
2153 case S_IFDIR:
2154 inode->i_fop = &btrfs_dir_file_operations;
2155 if (root == root->fs_info->tree_root)
2156 inode->i_op = &btrfs_dir_ro_inode_operations;
2157 else
2158 inode->i_op = &btrfs_dir_inode_operations;
2159 break;
2160 case S_IFLNK:
2161 inode->i_op = &btrfs_symlink_inode_operations;
2162 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04002163 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04002164 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04002165 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05002166 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04002167 init_special_inode(inode, inode->i_mode, rdev);
2168 break;
Chris Mason39279cc2007-06-12 06:35:45 -04002169 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002170
2171 btrfs_update_iflags(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002172 return;
2173
2174make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04002175 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002176 make_bad_inode(inode);
2177}
2178
Chris Masond352ac62008-09-29 15:18:18 -04002179/*
2180 * given a leaf and an inode, copy the inode fields into the leaf
2181 */
Chris Masone02119d2008-09-05 16:13:11 -04002182static void fill_inode_item(struct btrfs_trans_handle *trans,
2183 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04002184 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04002185 struct inode *inode)
2186{
Chris Mason5f39d392007-10-15 16:14:19 -04002187 btrfs_set_inode_uid(leaf, item, inode->i_uid);
2188 btrfs_set_inode_gid(leaf, item, inode->i_gid);
Chris Masondbe674a2008-07-17 12:54:05 -04002189 btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size);
Chris Mason5f39d392007-10-15 16:14:19 -04002190 btrfs_set_inode_mode(leaf, item, inode->i_mode);
2191 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
2192
2193 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
2194 inode->i_atime.tv_sec);
2195 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
2196 inode->i_atime.tv_nsec);
2197
2198 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
2199 inode->i_mtime.tv_sec);
2200 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
2201 inode->i_mtime.tv_nsec);
2202
2203 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
2204 inode->i_ctime.tv_sec);
2205 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
2206 inode->i_ctime.tv_nsec);
2207
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002208 btrfs_set_inode_nbytes(leaf, item, inode_get_bytes(inode));
Chris Masone02119d2008-09-05 16:13:11 -04002209 btrfs_set_inode_generation(leaf, item, BTRFS_I(inode)->generation);
Chris Masonc3027eb2008-12-08 16:40:21 -05002210 btrfs_set_inode_sequence(leaf, item, BTRFS_I(inode)->sequence);
Chris Masone02119d2008-09-05 16:13:11 -04002211 btrfs_set_inode_transid(leaf, item, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002212 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -05002213 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Yan Zhengd2fb3432008-12-11 16:30:39 -05002214 btrfs_set_inode_block_group(leaf, item, BTRFS_I(inode)->block_group);
Chris Mason39279cc2007-06-12 06:35:45 -04002215}
2216
Chris Masond352ac62008-09-29 15:18:18 -04002217/*
2218 * copy everything in the in-memory inode into the btree.
2219 */
Chris Masond3977122009-01-05 21:25:51 -05002220noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
2221 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002222{
2223 struct btrfs_inode_item *inode_item;
2224 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002225 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002226 int ret;
2227
2228 path = btrfs_alloc_path();
2229 BUG_ON(!path);
Chris Masonb9473432009-03-13 11:00:37 -04002230 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002231 ret = btrfs_lookup_inode(trans, root, path,
2232 &BTRFS_I(inode)->location, 1);
2233 if (ret) {
2234 if (ret > 0)
2235 ret = -ENOENT;
2236 goto failed;
2237 }
2238
Chris Masonb4ce94d2009-02-04 09:25:08 -05002239 btrfs_unlock_up_safe(path, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002240 leaf = path->nodes[0];
2241 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04002242 struct btrfs_inode_item);
2243
Chris Masone02119d2008-09-05 16:13:11 -04002244 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002245 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002246 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002247 ret = 0;
2248failed:
Chris Mason39279cc2007-06-12 06:35:45 -04002249 btrfs_free_path(path);
2250 return ret;
2251}
2252
2253
Chris Masond352ac62008-09-29 15:18:18 -04002254/*
2255 * unlink helper that gets used here in inode.c and in the tree logging
2256 * recovery code. It remove a link in a directory with a given name, and
2257 * also drops the back refs in the inode to the directory
2258 */
Chris Masone02119d2008-09-05 16:13:11 -04002259int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2260 struct btrfs_root *root,
2261 struct inode *dir, struct inode *inode,
2262 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04002263{
2264 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04002265 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002266 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002267 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04002268 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04002269 u64 index;
Chris Mason39279cc2007-06-12 06:35:45 -04002270
2271 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002272 if (!path) {
2273 ret = -ENOMEM;
2274 goto err;
2275 }
2276
Chris Masonb9473432009-03-13 11:00:37 -04002277 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002278 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
2279 name, name_len, -1);
2280 if (IS_ERR(di)) {
2281 ret = PTR_ERR(di);
2282 goto err;
2283 }
2284 if (!di) {
2285 ret = -ENOENT;
2286 goto err;
2287 }
Chris Mason5f39d392007-10-15 16:14:19 -04002288 leaf = path->nodes[0];
2289 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04002290 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04002291 if (ret)
2292 goto err;
Chris Mason39279cc2007-06-12 06:35:45 -04002293 btrfs_release_path(root, path);
2294
Josef Bacikaec74772008-07-24 12:12:38 -04002295 ret = btrfs_del_inode_ref(trans, root, name, name_len,
Chris Masone02119d2008-09-05 16:13:11 -04002296 inode->i_ino,
2297 dir->i_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04002298 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05002299 printk(KERN_INFO "btrfs failed to delete reference to %.*s, "
Josef Bacikaec74772008-07-24 12:12:38 -04002300 "inode %lu parent %lu\n", name_len, name,
Chris Masone02119d2008-09-05 16:13:11 -04002301 inode->i_ino, dir->i_ino);
Josef Bacikaec74772008-07-24 12:12:38 -04002302 goto err;
2303 }
2304
Chris Mason39279cc2007-06-12 06:35:45 -04002305 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
Josef Bacikaec74772008-07-24 12:12:38 -04002306 index, name, name_len, -1);
Chris Mason39279cc2007-06-12 06:35:45 -04002307 if (IS_ERR(di)) {
2308 ret = PTR_ERR(di);
2309 goto err;
2310 }
2311 if (!di) {
2312 ret = -ENOENT;
2313 goto err;
2314 }
2315 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason925baed2008-06-25 16:01:30 -04002316 btrfs_release_path(root, path);
Chris Mason39279cc2007-06-12 06:35:45 -04002317
Chris Masone02119d2008-09-05 16:13:11 -04002318 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
2319 inode, dir->i_ino);
Chris Mason49eb7e42008-09-11 15:53:12 -04002320 BUG_ON(ret != 0 && ret != -ENOENT);
Chris Masone02119d2008-09-05 16:13:11 -04002321
2322 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
2323 dir, index);
2324 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04002325err:
2326 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002327 if (ret)
2328 goto out;
2329
2330 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
2331 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
2332 btrfs_update_inode(trans, root, dir);
2333 btrfs_drop_nlink(inode);
2334 ret = btrfs_update_inode(trans, root, inode);
Chris Masone02119d2008-09-05 16:13:11 -04002335out:
Chris Mason39279cc2007-06-12 06:35:45 -04002336 return ret;
2337}
2338
2339static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
2340{
2341 struct btrfs_root *root;
2342 struct btrfs_trans_handle *trans;
Josef Bacik7b128762008-07-24 12:17:14 -04002343 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002344 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05002345 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002346
2347 root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05002348
Chris Mason39279cc2007-06-12 06:35:45 -04002349 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002350
Chris Mason39279cc2007-06-12 06:35:45 -04002351 btrfs_set_trans_block_group(trans, dir);
Chris Mason12fcfd22009-03-24 10:24:20 -04002352
2353 btrfs_record_unlink_dir(trans, dir, dentry->d_inode, 0);
2354
Chris Masone02119d2008-09-05 16:13:11 -04002355 ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
2356 dentry->d_name.name, dentry->d_name.len);
Josef Bacik7b128762008-07-24 12:17:14 -04002357
2358 if (inode->i_nlink == 0)
2359 ret = btrfs_orphan_add(trans, inode);
2360
Chris Masond3c2fdc2007-09-17 10:58:06 -04002361 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -04002362
Chris Mason89ce8a62008-06-25 16:01:31 -04002363 btrfs_end_transaction_throttle(trans, root);
Chris Masond3c2fdc2007-09-17 10:58:06 -04002364 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002365 return ret;
2366}
2367
2368static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
2369{
2370 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002371 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002372 int ret;
2373 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002374 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -05002375 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002376
Chris Mason3394e162008-11-17 20:42:26 -05002377 /*
2378 * the FIRST_FREE_OBJECTID check makes sure we don't try to rmdir
2379 * the root of a subvolume or snapshot
2380 */
2381 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE ||
2382 inode->i_ino == BTRFS_FIRST_FREE_OBJECTID) {
Yan134d4512007-10-25 15:49:25 -04002383 return -ENOTEMPTY;
Chris Mason925baed2008-06-25 16:01:30 -04002384 }
Yan134d4512007-10-25 15:49:25 -04002385
Chris Mason39279cc2007-06-12 06:35:45 -04002386 trans = btrfs_start_transaction(root, 1);
2387 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -04002388
Josef Bacik7b128762008-07-24 12:17:14 -04002389 err = btrfs_orphan_add(trans, inode);
2390 if (err)
2391 goto fail_trans;
2392
Chris Mason39279cc2007-06-12 06:35:45 -04002393 /* now the directory is empty */
Chris Masone02119d2008-09-05 16:13:11 -04002394 err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
2395 dentry->d_name.name, dentry->d_name.len);
Chris Masond3977122009-01-05 21:25:51 -05002396 if (!err)
Chris Masondbe674a2008-07-17 12:54:05 -04002397 btrfs_i_size_write(inode, 0);
Chris Mason39544012007-12-12 14:38:19 -05002398
Josef Bacik7b128762008-07-24 12:17:14 -04002399fail_trans:
Chris Masond3c2fdc2007-09-17 10:58:06 -04002400 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04002401 ret = btrfs_end_transaction_throttle(trans, root);
Chris Masond3c2fdc2007-09-17 10:58:06 -04002402 btrfs_btree_balance_dirty(root, nr);
Chris Mason39544012007-12-12 14:38:19 -05002403
Chris Mason39279cc2007-06-12 06:35:45 -04002404 if (ret && !err)
2405 err = ret;
2406 return err;
2407}
2408
Chris Masond20f7042008-12-08 16:58:54 -05002409#if 0
Chris Mason39279cc2007-06-12 06:35:45 -04002410/*
Chris Mason323ac952008-10-01 19:05:46 -04002411 * when truncating bytes in a file, it is possible to avoid reading
2412 * the leaves that contain only checksum items. This can be the
2413 * majority of the IO required to delete a large file, but it must
2414 * be done carefully.
2415 *
2416 * The keys in the level just above the leaves are checked to make sure
2417 * the lowest key in a given leaf is a csum key, and starts at an offset
2418 * after the new size.
2419 *
2420 * Then the key for the next leaf is checked to make sure it also has
2421 * a checksum item for the same file. If it does, we know our target leaf
2422 * contains only checksum items, and it can be safely freed without reading
2423 * it.
2424 *
2425 * This is just an optimization targeted at large files. It may do
2426 * nothing. It will return 0 unless things went badly.
2427 */
2428static noinline int drop_csum_leaves(struct btrfs_trans_handle *trans,
2429 struct btrfs_root *root,
2430 struct btrfs_path *path,
2431 struct inode *inode, u64 new_size)
2432{
2433 struct btrfs_key key;
2434 int ret;
2435 int nritems;
2436 struct btrfs_key found_key;
2437 struct btrfs_key other_key;
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002438 struct btrfs_leaf_ref *ref;
2439 u64 leaf_gen;
2440 u64 leaf_start;
Chris Mason323ac952008-10-01 19:05:46 -04002441
2442 path->lowest_level = 1;
2443 key.objectid = inode->i_ino;
2444 key.type = BTRFS_CSUM_ITEM_KEY;
2445 key.offset = new_size;
2446again:
2447 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
2448 if (ret < 0)
2449 goto out;
2450
2451 if (path->nodes[1] == NULL) {
2452 ret = 0;
2453 goto out;
2454 }
2455 ret = 0;
2456 btrfs_node_key_to_cpu(path->nodes[1], &found_key, path->slots[1]);
2457 nritems = btrfs_header_nritems(path->nodes[1]);
2458
2459 if (!nritems)
2460 goto out;
2461
2462 if (path->slots[1] >= nritems)
2463 goto next_node;
2464
2465 /* did we find a key greater than anything we want to delete? */
2466 if (found_key.objectid > inode->i_ino ||
2467 (found_key.objectid == inode->i_ino && found_key.type > key.type))
2468 goto out;
2469
2470 /* we check the next key in the node to make sure the leave contains
2471 * only checksum items. This comparison doesn't work if our
2472 * leaf is the last one in the node
2473 */
2474 if (path->slots[1] + 1 >= nritems) {
2475next_node:
2476 /* search forward from the last key in the node, this
2477 * will bring us into the next node in the tree
2478 */
2479 btrfs_node_key_to_cpu(path->nodes[1], &found_key, nritems - 1);
2480
2481 /* unlikely, but we inc below, so check to be safe */
2482 if (found_key.offset == (u64)-1)
2483 goto out;
2484
2485 /* search_forward needs a path with locks held, do the
2486 * search again for the original key. It is possible
2487 * this will race with a balance and return a path that
2488 * we could modify, but this drop is just an optimization
2489 * and is allowed to miss some leaves.
2490 */
2491 btrfs_release_path(root, path);
2492 found_key.offset++;
2493
2494 /* setup a max key for search_forward */
2495 other_key.offset = (u64)-1;
2496 other_key.type = key.type;
2497 other_key.objectid = key.objectid;
2498
2499 path->keep_locks = 1;
2500 ret = btrfs_search_forward(root, &found_key, &other_key,
2501 path, 0, 0);
2502 path->keep_locks = 0;
2503 if (ret || found_key.objectid != key.objectid ||
2504 found_key.type != key.type) {
2505 ret = 0;
2506 goto out;
2507 }
2508
2509 key.offset = found_key.offset;
2510 btrfs_release_path(root, path);
2511 cond_resched();
2512 goto again;
2513 }
2514
2515 /* we know there's one more slot after us in the tree,
2516 * read that key so we can verify it is also a checksum item
2517 */
2518 btrfs_node_key_to_cpu(path->nodes[1], &other_key, path->slots[1] + 1);
2519
2520 if (found_key.objectid < inode->i_ino)
2521 goto next_key;
2522
2523 if (found_key.type != key.type || found_key.offset < new_size)
2524 goto next_key;
2525
2526 /*
2527 * if the key for the next leaf isn't a csum key from this objectid,
2528 * we can't be sure there aren't good items inside this leaf.
2529 * Bail out
2530 */
2531 if (other_key.objectid != inode->i_ino || other_key.type != key.type)
2532 goto out;
2533
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002534 leaf_start = btrfs_node_blockptr(path->nodes[1], path->slots[1]);
2535 leaf_gen = btrfs_node_ptr_generation(path->nodes[1], path->slots[1]);
Chris Mason323ac952008-10-01 19:05:46 -04002536 /*
2537 * it is safe to delete this leaf, it contains only
2538 * csum items from this inode at an offset >= new_size
2539 */
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002540 ret = btrfs_del_leaf(trans, root, path, leaf_start);
Chris Mason323ac952008-10-01 19:05:46 -04002541 BUG_ON(ret);
2542
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002543 if (root->ref_cows && leaf_gen < trans->transid) {
2544 ref = btrfs_alloc_leaf_ref(root, 0);
2545 if (ref) {
2546 ref->root_gen = root->root_key.offset;
2547 ref->bytenr = leaf_start;
2548 ref->owner = 0;
2549 ref->generation = leaf_gen;
2550 ref->nritems = 0;
2551
Chris Masonbd56b302009-02-04 09:27:02 -05002552 btrfs_sort_leaf_ref(ref);
2553
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002554 ret = btrfs_add_leaf_ref(root, ref, 0);
2555 WARN_ON(ret);
2556 btrfs_free_leaf_ref(root, ref);
2557 } else {
2558 WARN_ON(1);
2559 }
2560 }
Chris Mason323ac952008-10-01 19:05:46 -04002561next_key:
2562 btrfs_release_path(root, path);
2563
2564 if (other_key.objectid == inode->i_ino &&
2565 other_key.type == key.type && other_key.offset > key.offset) {
2566 key.offset = other_key.offset;
2567 cond_resched();
2568 goto again;
2569 }
2570 ret = 0;
2571out:
2572 /* fixup any changes we've made to the path */
2573 path->lowest_level = 0;
2574 path->keep_locks = 0;
2575 btrfs_release_path(root, path);
2576 return ret;
2577}
2578
Chris Masond20f7042008-12-08 16:58:54 -05002579#endif
2580
Chris Mason323ac952008-10-01 19:05:46 -04002581/*
Chris Mason39279cc2007-06-12 06:35:45 -04002582 * this can truncate away extent items, csum items and directory items.
2583 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04002584 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04002585 *
2586 * csum items that cross the new i_size are truncated to the new size
2587 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04002588 *
2589 * min_type is the minimum key type to truncate down to. If set to 0, this
2590 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04002591 */
Chris Masone02119d2008-09-05 16:13:11 -04002592noinline int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
2593 struct btrfs_root *root,
2594 struct inode *inode,
2595 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04002596{
2597 int ret;
2598 struct btrfs_path *path;
2599 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04002600 struct btrfs_key found_key;
Chris Mason06d9a8d2009-02-04 09:30:58 -05002601 u32 found_type = (u8)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04002602 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002603 struct btrfs_file_extent_item *fi;
2604 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04002605 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002606 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002607 u64 item_end = 0;
2608 int found_extent;
2609 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05002610 int pending_del_nr = 0;
2611 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04002612 int extent_type = -1;
Chris Mason771ed682008-11-06 22:02:51 -05002613 int encoding;
Chris Mason3b951512008-04-17 11:29:12 -04002614 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002615
Chris Masone02119d2008-09-05 16:13:11 -04002616 if (root->ref_cows)
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002617 btrfs_drop_extent_cache(inode, new_size & (~mask), (u64)-1, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002618 path = btrfs_alloc_path();
2619 BUG_ON(!path);
Julia Lawall33c17ad2009-07-22 16:49:01 -04002620 path->reada = -1;
Chris Mason5f39d392007-10-15 16:14:19 -04002621
Chris Mason39279cc2007-06-12 06:35:45 -04002622 /* FIXME, add redo link to tree so we don't leak on crash */
2623 key.objectid = inode->i_ino;
2624 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04002625 key.type = (u8)-1;
2626
Chris Mason85e21ba2008-01-29 15:11:36 -05002627search_again:
Chris Masonb9473432009-03-13 11:00:37 -04002628 path->leave_spinning = 1;
Chris Mason85e21ba2008-01-29 15:11:36 -05002629 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Chris Masond3977122009-01-05 21:25:51 -05002630 if (ret < 0)
Chris Mason85e21ba2008-01-29 15:11:36 -05002631 goto error;
Chris Masond3977122009-01-05 21:25:51 -05002632
Chris Mason85e21ba2008-01-29 15:11:36 -05002633 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04002634 /* there are no items in the tree for us to truncate, we're
2635 * done
2636 */
2637 if (path->slots[0] == 0) {
2638 ret = 0;
2639 goto error;
2640 }
Chris Mason85e21ba2008-01-29 15:11:36 -05002641 path->slots[0]--;
2642 }
2643
Chris Masond3977122009-01-05 21:25:51 -05002644 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04002645 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04002646 leaf = path->nodes[0];
2647 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2648 found_type = btrfs_key_type(&found_key);
Chris Mason771ed682008-11-06 22:02:51 -05002649 encoding = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002650
Chris Mason5f39d392007-10-15 16:14:19 -04002651 if (found_key.objectid != inode->i_ino)
Chris Mason39279cc2007-06-12 06:35:45 -04002652 break;
Chris Mason5f39d392007-10-15 16:14:19 -04002653
Chris Mason85e21ba2008-01-29 15:11:36 -05002654 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04002655 break;
2656
Chris Mason5f39d392007-10-15 16:14:19 -04002657 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04002658 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04002659 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04002660 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04002661 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05002662 encoding = btrfs_file_extent_compression(leaf, fi);
2663 encoding |= btrfs_file_extent_encryption(leaf, fi);
2664 encoding |= btrfs_file_extent_other_encoding(leaf, fi);
2665
Chris Mason179e29e2007-11-01 11:28:41 -04002666 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04002667 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04002668 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04002669 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04002670 item_end += btrfs_file_extent_inline_len(leaf,
Chris Masonc8b97812008-10-29 14:49:59 -04002671 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04002672 }
Yan008630c2007-11-07 13:31:09 -05002673 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04002674 }
Chris Masone02119d2008-09-05 16:13:11 -04002675 if (item_end < new_size) {
Chris Masond3977122009-01-05 21:25:51 -05002676 if (found_type == BTRFS_DIR_ITEM_KEY)
Chris Masonb888db22007-08-27 16:49:44 -04002677 found_type = BTRFS_INODE_ITEM_KEY;
Chris Masond3977122009-01-05 21:25:51 -05002678 else if (found_type == BTRFS_EXTENT_ITEM_KEY)
Chris Masond20f7042008-12-08 16:58:54 -05002679 found_type = BTRFS_EXTENT_DATA_KEY;
Chris Masond3977122009-01-05 21:25:51 -05002680 else if (found_type == BTRFS_EXTENT_DATA_KEY)
Chris Mason85e21ba2008-01-29 15:11:36 -05002681 found_type = BTRFS_XATTR_ITEM_KEY;
Chris Masond3977122009-01-05 21:25:51 -05002682 else if (found_type == BTRFS_XATTR_ITEM_KEY)
Chris Mason85e21ba2008-01-29 15:11:36 -05002683 found_type = BTRFS_INODE_REF_KEY;
Chris Masond3977122009-01-05 21:25:51 -05002684 else if (found_type)
Chris Masonb888db22007-08-27 16:49:44 -04002685 found_type--;
Chris Masond3977122009-01-05 21:25:51 -05002686 else
Chris Masonb888db22007-08-27 16:49:44 -04002687 break;
Yana61721d2007-09-17 11:08:38 -04002688 btrfs_set_key_type(&key, found_type);
Chris Mason85e21ba2008-01-29 15:11:36 -05002689 goto next;
Chris Mason39279cc2007-06-12 06:35:45 -04002690 }
Chris Masone02119d2008-09-05 16:13:11 -04002691 if (found_key.offset >= new_size)
Chris Mason39279cc2007-06-12 06:35:45 -04002692 del_item = 1;
2693 else
2694 del_item = 0;
2695 found_extent = 0;
2696
2697 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04002698 if (found_type != BTRFS_EXTENT_DATA_KEY)
2699 goto delete;
2700
2701 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04002702 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04002703 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05002704 if (!del_item && !encoding) {
Chris Masondb945352007-10-15 16:15:53 -04002705 u64 orig_num_bytes =
2706 btrfs_file_extent_num_bytes(leaf, fi);
Chris Masone02119d2008-09-05 16:13:11 -04002707 extent_num_bytes = new_size -
Chris Mason5f39d392007-10-15 16:14:19 -04002708 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -05002709 extent_num_bytes = extent_num_bytes &
2710 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04002711 btrfs_set_file_extent_num_bytes(leaf, fi,
2712 extent_num_bytes);
2713 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05002714 extent_num_bytes);
Chris Masone02119d2008-09-05 16:13:11 -04002715 if (root->ref_cows && extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002716 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04002717 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04002718 } else {
Chris Masondb945352007-10-15 16:15:53 -04002719 extent_num_bytes =
2720 btrfs_file_extent_disk_num_bytes(leaf,
2721 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002722 extent_offset = found_key.offset -
2723 btrfs_file_extent_offset(leaf, fi);
2724
Chris Mason39279cc2007-06-12 06:35:45 -04002725 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05002726 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04002727 if (extent_start != 0) {
2728 found_extent = 1;
Chris Masone02119d2008-09-05 16:13:11 -04002729 if (root->ref_cows)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002730 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04002731 }
2732 }
Chris Mason90692182008-02-08 13:49:28 -05002733 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04002734 /*
2735 * we can't truncate inline items that have had
2736 * special encodings
2737 */
2738 if (!del_item &&
2739 btrfs_file_extent_compression(leaf, fi) == 0 &&
2740 btrfs_file_extent_encryption(leaf, fi) == 0 &&
2741 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04002742 u32 size = new_size - found_key.offset;
2743
2744 if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002745 inode_sub_bytes(inode, item_end + 1 -
2746 new_size);
Chris Masone02119d2008-09-05 16:13:11 -04002747 }
2748 size =
2749 btrfs_file_extent_calc_inline_size(size);
Chris Mason90692182008-02-08 13:49:28 -05002750 ret = btrfs_truncate_item(trans, root, path,
Chris Masone02119d2008-09-05 16:13:11 -04002751 size, 1);
Chris Mason90692182008-02-08 13:49:28 -05002752 BUG_ON(ret);
Chris Masone02119d2008-09-05 16:13:11 -04002753 } else if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002754 inode_sub_bytes(inode, item_end + 1 -
2755 found_key.offset);
Chris Mason90692182008-02-08 13:49:28 -05002756 }
Chris Mason39279cc2007-06-12 06:35:45 -04002757 }
Chris Mason179e29e2007-11-01 11:28:41 -04002758delete:
Chris Mason39279cc2007-06-12 06:35:45 -04002759 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05002760 if (!pending_del_nr) {
2761 /* no pending yet, add ourselves */
2762 pending_del_slot = path->slots[0];
2763 pending_del_nr = 1;
2764 } else if (pending_del_nr &&
2765 path->slots[0] + 1 == pending_del_slot) {
2766 /* hop on the pending chunk */
2767 pending_del_nr++;
2768 pending_del_slot = path->slots[0];
2769 } else {
Chris Masond3977122009-01-05 21:25:51 -05002770 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05002771 }
Chris Mason39279cc2007-06-12 06:35:45 -04002772 } else {
2773 break;
2774 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002775 if (found_extent && root->ref_cows) {
Chris Masonb9473432009-03-13 11:00:37 -04002776 btrfs_set_path_blocking(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002777 ret = btrfs_free_extent(trans, root, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002778 extent_num_bytes, 0,
2779 btrfs_header_owner(leaf),
2780 inode->i_ino, extent_offset);
Chris Mason39279cc2007-06-12 06:35:45 -04002781 BUG_ON(ret);
2782 }
Chris Mason85e21ba2008-01-29 15:11:36 -05002783next:
2784 if (path->slots[0] == 0) {
2785 if (pending_del_nr)
2786 goto del_pending;
2787 btrfs_release_path(root, path);
Chris Mason06d9a8d2009-02-04 09:30:58 -05002788 if (found_type == BTRFS_INODE_ITEM_KEY)
2789 break;
Chris Mason85e21ba2008-01-29 15:11:36 -05002790 goto search_again;
2791 }
2792
2793 path->slots[0]--;
2794 if (pending_del_nr &&
2795 path->slots[0] + 1 != pending_del_slot) {
2796 struct btrfs_key debug;
2797del_pending:
2798 btrfs_item_key_to_cpu(path->nodes[0], &debug,
2799 pending_del_slot);
2800 ret = btrfs_del_items(trans, root, path,
2801 pending_del_slot,
2802 pending_del_nr);
2803 BUG_ON(ret);
2804 pending_del_nr = 0;
2805 btrfs_release_path(root, path);
Chris Mason06d9a8d2009-02-04 09:30:58 -05002806 if (found_type == BTRFS_INODE_ITEM_KEY)
2807 break;
Chris Mason85e21ba2008-01-29 15:11:36 -05002808 goto search_again;
2809 }
Chris Mason39279cc2007-06-12 06:35:45 -04002810 }
2811 ret = 0;
2812error:
Chris Mason85e21ba2008-01-29 15:11:36 -05002813 if (pending_del_nr) {
2814 ret = btrfs_del_items(trans, root, path, pending_del_slot,
2815 pending_del_nr);
2816 }
Chris Mason39279cc2007-06-12 06:35:45 -04002817 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002818 return ret;
2819}
2820
Chris Masona52d9a82007-08-27 16:49:44 -04002821/*
2822 * taken from block_truncate_page, but does cow as it zeros out
2823 * any bytes left in the last page in the file.
2824 */
2825static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
2826{
2827 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -04002828 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002829 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
2830 struct btrfs_ordered_extent *ordered;
2831 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04002832 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04002833 pgoff_t index = from >> PAGE_CACHE_SHIFT;
2834 unsigned offset = from & (PAGE_CACHE_SIZE-1);
2835 struct page *page;
2836 int ret = 0;
2837 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002838 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04002839
2840 if ((offset & (blocksize - 1)) == 0)
2841 goto out;
2842
2843 ret = -ENOMEM;
Chris Mason211c17f2008-05-15 09:13:45 -04002844again:
Chris Masona52d9a82007-08-27 16:49:44 -04002845 page = grab_cache_page(mapping, index);
2846 if (!page)
2847 goto out;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002848
2849 page_start = page_offset(page);
2850 page_end = page_start + PAGE_CACHE_SIZE - 1;
2851
Chris Masona52d9a82007-08-27 16:49:44 -04002852 if (!PageUptodate(page)) {
2853 ret = btrfs_readpage(NULL, page);
2854 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04002855 if (page->mapping != mapping) {
2856 unlock_page(page);
2857 page_cache_release(page);
2858 goto again;
2859 }
Chris Masona52d9a82007-08-27 16:49:44 -04002860 if (!PageUptodate(page)) {
2861 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04002862 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04002863 }
2864 }
Chris Mason211c17f2008-05-15 09:13:45 -04002865 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002866
2867 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
2868 set_page_extent_mapped(page);
2869
2870 ordered = btrfs_lookup_ordered_extent(inode, page_start);
2871 if (ordered) {
2872 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
2873 unlock_page(page);
2874 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04002875 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002876 btrfs_put_ordered_extent(ordered);
2877 goto again;
2878 }
2879
Chris Masonea8c2812008-08-04 23:17:27 -04002880 btrfs_set_extent_delalloc(inode, page_start, page_end);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002881 ret = 0;
2882 if (offset != PAGE_CACHE_SIZE) {
2883 kaddr = kmap(page);
2884 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
2885 flush_dcache_page(page);
2886 kunmap(page);
2887 }
Chris Mason247e7432008-07-17 12:53:51 -04002888 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002889 set_page_dirty(page);
2890 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04002891
Chris Mason89642222008-07-24 09:41:53 -04002892out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04002893 unlock_page(page);
2894 page_cache_release(page);
2895out:
2896 return ret;
2897}
2898
Yan Zheng9036c102008-10-30 14:19:41 -04002899int btrfs_cont_expand(struct inode *inode, loff_t size)
2900{
2901 struct btrfs_trans_handle *trans;
2902 struct btrfs_root *root = BTRFS_I(inode)->root;
2903 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
2904 struct extent_map *em;
2905 u64 mask = root->sectorsize - 1;
2906 u64 hole_start = (inode->i_size + mask) & ~mask;
2907 u64 block_end = (size + mask) & ~mask;
2908 u64 last_byte;
2909 u64 cur_offset;
2910 u64 hole_size;
2911 int err;
2912
2913 if (size <= hole_start)
2914 return 0;
2915
Josef Bacik6a632092009-02-20 11:00:09 -05002916 err = btrfs_check_metadata_free_space(root);
Yan Zheng9036c102008-10-30 14:19:41 -04002917 if (err)
2918 return err;
2919
2920 btrfs_truncate_page(inode->i_mapping, inode->i_size);
2921
2922 while (1) {
2923 struct btrfs_ordered_extent *ordered;
2924 btrfs_wait_ordered_range(inode, hole_start,
2925 block_end - hole_start);
2926 lock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
2927 ordered = btrfs_lookup_ordered_extent(inode, hole_start);
2928 if (!ordered)
2929 break;
2930 unlock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
2931 btrfs_put_ordered_extent(ordered);
2932 }
2933
2934 trans = btrfs_start_transaction(root, 1);
2935 btrfs_set_trans_block_group(trans, inode);
2936
2937 cur_offset = hole_start;
2938 while (1) {
2939 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
2940 block_end - cur_offset, 0);
2941 BUG_ON(IS_ERR(em) || !em);
2942 last_byte = min(extent_map_end(em), block_end);
2943 last_byte = (last_byte + mask) & ~mask;
2944 if (test_bit(EXTENT_FLAG_VACANCY, &em->flags)) {
Chris Mason771ed682008-11-06 22:02:51 -05002945 u64 hint_byte = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04002946 hole_size = last_byte - cur_offset;
Chris Mason771ed682008-11-06 22:02:51 -05002947 err = btrfs_drop_extents(trans, root, inode,
2948 cur_offset,
2949 cur_offset + hole_size,
Chris Masone980b502009-04-24 14:39:24 -04002950 block_end,
Chris Masona1ed8352009-09-11 12:27:37 -04002951 cur_offset, &hint_byte, 1);
Chris Mason771ed682008-11-06 22:02:51 -05002952 if (err)
2953 break;
Yan Zheng9036c102008-10-30 14:19:41 -04002954 err = btrfs_insert_file_extent(trans, root,
2955 inode->i_ino, cur_offset, 0,
2956 0, hole_size, 0, hole_size,
2957 0, 0, 0);
2958 btrfs_drop_extent_cache(inode, hole_start,
2959 last_byte - 1, 0);
2960 }
2961 free_extent_map(em);
2962 cur_offset = last_byte;
2963 if (err || cur_offset >= block_end)
2964 break;
2965 }
2966
2967 btrfs_end_transaction(trans, root);
2968 unlock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
2969 return err;
2970}
2971
Chris Mason39279cc2007-06-12 06:35:45 -04002972static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
2973{
2974 struct inode *inode = dentry->d_inode;
2975 int err;
2976
2977 err = inode_change_ok(inode, attr);
2978 if (err)
2979 return err;
2980
Chris Mason5a3f23d2009-03-31 13:27:11 -04002981 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
2982 if (attr->ia_size > inode->i_size) {
2983 err = btrfs_cont_expand(inode, attr->ia_size);
2984 if (err)
2985 return err;
2986 } else if (inode->i_size > 0 &&
2987 attr->ia_size == 0) {
2988
2989 /* we're truncating a file that used to have good
2990 * data down to zero. Make sure it gets into
2991 * the ordered flush list so that any new writes
2992 * get down to disk quickly.
2993 */
2994 BTRFS_I(inode)->ordered_data_close = 1;
2995 }
Chris Mason39279cc2007-06-12 06:35:45 -04002996 }
Yan Zheng9036c102008-10-30 14:19:41 -04002997
Chris Mason39279cc2007-06-12 06:35:45 -04002998 err = inode_setattr(inode, attr);
Josef Bacik33268ea2008-07-24 12:16:36 -04002999
3000 if (!err && ((attr->ia_valid & ATTR_MODE)))
3001 err = btrfs_acl_chmod(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003002 return err;
3003}
Chris Mason61295eb2008-01-14 16:24:38 -05003004
Chris Mason39279cc2007-06-12 06:35:45 -04003005void btrfs_delete_inode(struct inode *inode)
3006{
3007 struct btrfs_trans_handle *trans;
3008 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond3c2fdc2007-09-17 10:58:06 -04003009 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04003010 int ret;
3011
3012 truncate_inode_pages(&inode->i_data, 0);
3013 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04003014 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003015 goto no_delete;
3016 }
Chris Mason4a096752008-07-21 10:29:44 -04003017 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04003018
Chris Masondbe674a2008-07-17 12:54:05 -04003019 btrfs_i_size_write(inode, 0);
Yan Zheng180591b2009-01-06 09:58:06 -05003020 trans = btrfs_join_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04003021
Chris Mason39279cc2007-06-12 06:35:45 -04003022 btrfs_set_trans_block_group(trans, inode);
Chris Masone02119d2008-09-05 16:13:11 -04003023 ret = btrfs_truncate_inode_items(trans, root, inode, inode->i_size, 0);
Josef Bacik7b128762008-07-24 12:17:14 -04003024 if (ret) {
3025 btrfs_orphan_del(NULL, inode);
Chris Mason54aa1f42007-06-22 14:16:25 -04003026 goto no_delete_lock;
Josef Bacik7b128762008-07-24 12:17:14 -04003027 }
3028
3029 btrfs_orphan_del(trans, inode);
Chris Mason85e21ba2008-01-29 15:11:36 -05003030
Chris Masond3c2fdc2007-09-17 10:58:06 -04003031 nr = trans->blocks_used;
Chris Mason85e21ba2008-01-29 15:11:36 -05003032 clear_inode(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04003033
Chris Mason39279cc2007-06-12 06:35:45 -04003034 btrfs_end_transaction(trans, root);
Chris Masond3c2fdc2007-09-17 10:58:06 -04003035 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003036 return;
Chris Mason54aa1f42007-06-22 14:16:25 -04003037
3038no_delete_lock:
Chris Masond3c2fdc2007-09-17 10:58:06 -04003039 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04003040 btrfs_end_transaction(trans, root);
Chris Masond3c2fdc2007-09-17 10:58:06 -04003041 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003042no_delete:
3043 clear_inode(inode);
3044}
3045
3046/*
3047 * this returns the key found in the dir entry in the location pointer.
3048 * If no dir entries were found, location->objectid is 0.
3049 */
3050static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
3051 struct btrfs_key *location)
3052{
3053 const char *name = dentry->d_name.name;
3054 int namelen = dentry->d_name.len;
3055 struct btrfs_dir_item *di;
3056 struct btrfs_path *path;
3057 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04003058 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003059
3060 path = btrfs_alloc_path();
3061 BUG_ON(!path);
Chris Mason39544012007-12-12 14:38:19 -05003062
Chris Mason39279cc2007-06-12 06:35:45 -04003063 di = btrfs_lookup_dir_item(NULL, root, path, dir->i_ino, name,
3064 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04003065 if (IS_ERR(di))
3066 ret = PTR_ERR(di);
Chris Masond3977122009-01-05 21:25:51 -05003067
3068 if (!di || IS_ERR(di))
Chris Mason39544012007-12-12 14:38:19 -05003069 goto out_err;
Chris Masond3977122009-01-05 21:25:51 -05003070
Chris Mason5f39d392007-10-15 16:14:19 -04003071 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04003072out:
Chris Mason39279cc2007-06-12 06:35:45 -04003073 btrfs_free_path(path);
3074 return ret;
Chris Mason39544012007-12-12 14:38:19 -05003075out_err:
3076 location->objectid = 0;
3077 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04003078}
3079
3080/*
3081 * when we hit a tree root in a directory, the btrfs part of the inode
3082 * needs to be changed to reflect the root directory of the tree root. This
3083 * is kind of like crossing a mount point.
3084 */
3085static int fixup_tree_root_location(struct btrfs_root *root,
3086 struct btrfs_key *location,
Josef Bacik58176a92007-08-29 15:47:34 -04003087 struct btrfs_root **sub_root,
3088 struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04003089{
Chris Mason39279cc2007-06-12 06:35:45 -04003090 struct btrfs_root_item *ri;
3091
3092 if (btrfs_key_type(location) != BTRFS_ROOT_ITEM_KEY)
3093 return 0;
3094 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
3095 return 0;
3096
Josef Bacik58176a92007-08-29 15:47:34 -04003097 *sub_root = btrfs_read_fs_root(root->fs_info, location,
3098 dentry->d_name.name,
3099 dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04003100 if (IS_ERR(*sub_root))
3101 return PTR_ERR(*sub_root);
3102
3103 ri = &(*sub_root)->root_item;
3104 location->objectid = btrfs_root_dirid(ri);
Chris Mason39279cc2007-06-12 06:35:45 -04003105 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
3106 location->offset = 0;
3107
Chris Mason39279cc2007-06-12 06:35:45 -04003108 return 0;
3109}
3110
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003111static void inode_tree_add(struct inode *inode)
3112{
3113 struct btrfs_root *root = BTRFS_I(inode)->root;
3114 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003115 struct rb_node **p;
3116 struct rb_node *parent;
3117
3118again:
3119 p = &root->inode_tree.rb_node;
3120 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003121
3122 spin_lock(&root->inode_lock);
3123 while (*p) {
3124 parent = *p;
3125 entry = rb_entry(parent, struct btrfs_inode, rb_node);
3126
3127 if (inode->i_ino < entry->vfs_inode.i_ino)
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003128 p = &parent->rb_left;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003129 else if (inode->i_ino > entry->vfs_inode.i_ino)
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003130 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003131 else {
3132 WARN_ON(!(entry->vfs_inode.i_state &
3133 (I_WILL_FREE | I_FREEING | I_CLEAR)));
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003134 rb_erase(parent, &root->inode_tree);
3135 RB_CLEAR_NODE(parent);
3136 spin_unlock(&root->inode_lock);
3137 goto again;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003138 }
3139 }
3140 rb_link_node(&BTRFS_I(inode)->rb_node, parent, p);
3141 rb_insert_color(&BTRFS_I(inode)->rb_node, &root->inode_tree);
3142 spin_unlock(&root->inode_lock);
3143}
3144
3145static void inode_tree_del(struct inode *inode)
3146{
3147 struct btrfs_root *root = BTRFS_I(inode)->root;
3148
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003149 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003150 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003151 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003152 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
3153 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003154 spin_unlock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003155}
3156
Chris Masone02119d2008-09-05 16:13:11 -04003157static noinline void init_btrfs_i(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003158{
Chris Masone02119d2008-09-05 16:13:11 -04003159 struct btrfs_inode *bi = BTRFS_I(inode);
3160
Chris Masone02119d2008-09-05 16:13:11 -04003161 bi->generation = 0;
Chris Masonc3027eb2008-12-08 16:40:21 -05003162 bi->sequence = 0;
Chris Masone02119d2008-09-05 16:13:11 -04003163 bi->last_trans = 0;
3164 bi->logged_trans = 0;
3165 bi->delalloc_bytes = 0;
Josef Bacik6a632092009-02-20 11:00:09 -05003166 bi->reserved_bytes = 0;
Chris Masone02119d2008-09-05 16:13:11 -04003167 bi->disk_i_size = 0;
3168 bi->flags = 0;
3169 bi->index_cnt = (u64)-1;
Chris Mason12fcfd22009-03-24 10:24:20 -04003170 bi->last_unlink_trans = 0;
Chris Mason27574952009-05-14 13:10:02 -04003171 bi->ordered_data_close = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003172 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
3173 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masonb888db22007-08-27 16:49:44 -04003174 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04003175 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
3176 inode->i_mapping, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04003177 INIT_LIST_HEAD(&BTRFS_I(inode)->delalloc_inodes);
Chris Mason5a3f23d2009-03-31 13:27:11 -04003178 INIT_LIST_HEAD(&BTRFS_I(inode)->ordered_operations);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003179 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Chris Masonba1da2f2008-07-17 12:54:15 -04003180 btrfs_ordered_inode_tree_init(&BTRFS_I(inode)->ordered_tree);
Chris Masonee6e6502008-07-17 12:54:40 -04003181 mutex_init(&BTRFS_I(inode)->extent_mutex);
Chris Masone02119d2008-09-05 16:13:11 -04003182 mutex_init(&BTRFS_I(inode)->log_mutex);
3183}
3184
3185static int btrfs_init_locked_inode(struct inode *inode, void *p)
3186{
3187 struct btrfs_iget_args *args = p;
3188 inode->i_ino = args->ino;
3189 init_btrfs_i(inode);
3190 BTRFS_I(inode)->root = args->root;
Josef Bacik6a632092009-02-20 11:00:09 -05003191 btrfs_set_inode_space_info(args->root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003192 return 0;
3193}
3194
3195static int btrfs_find_actor(struct inode *inode, void *opaque)
3196{
3197 struct btrfs_iget_args *args = opaque;
Chris Masond3977122009-01-05 21:25:51 -05003198 return args->ino == inode->i_ino &&
3199 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003200}
3201
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003202static struct inode *btrfs_iget_locked(struct super_block *s,
3203 u64 objectid,
3204 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04003205{
3206 struct inode *inode;
3207 struct btrfs_iget_args args;
3208 args.ino = objectid;
3209 args.root = root;
3210
3211 inode = iget5_locked(s, objectid, btrfs_find_actor,
3212 btrfs_init_locked_inode,
3213 (void *)&args);
3214 return inode;
3215}
3216
Balaji Rao1a54ef82008-07-21 02:01:04 +05303217/* Get an inode object given its location and corresponding root.
3218 * Returns in *is_new if the inode was read from disk
3219 */
3220struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003221 struct btrfs_root *root)
Balaji Rao1a54ef82008-07-21 02:01:04 +05303222{
3223 struct inode *inode;
3224
3225 inode = btrfs_iget_locked(s, location->objectid, root);
3226 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003227 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05303228
3229 if (inode->i_state & I_NEW) {
3230 BTRFS_I(inode)->root = root;
3231 memcpy(&BTRFS_I(inode)->location, location, sizeof(*location));
3232 btrfs_read_locked_inode(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003233
3234 inode_tree_add(inode);
Balaji Rao1a54ef82008-07-21 02:01:04 +05303235 unlock_new_inode(inode);
Balaji Rao1a54ef82008-07-21 02:01:04 +05303236 }
3237
3238 return inode;
3239}
3240
Chris Mason3de45862008-11-17 21:02:50 -05003241struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04003242{
Chris Masond3977122009-01-05 21:25:51 -05003243 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04003244 struct btrfs_inode *bi = BTRFS_I(dir);
3245 struct btrfs_root *root = bi->root;
3246 struct btrfs_root *sub_root = root;
3247 struct btrfs_key location;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003248 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04003249
3250 if (dentry->d_name.len > BTRFS_NAME_LEN)
3251 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04003252
Chris Mason39279cc2007-06-12 06:35:45 -04003253 ret = btrfs_inode_by_name(dir, dentry, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04003254
Chris Mason39279cc2007-06-12 06:35:45 -04003255 if (ret < 0)
3256 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04003257
Chris Mason39279cc2007-06-12 06:35:45 -04003258 inode = NULL;
3259 if (location.objectid) {
Josef Bacik58176a92007-08-29 15:47:34 -04003260 ret = fixup_tree_root_location(root, &location, &sub_root,
3261 dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04003262 if (ret < 0)
3263 return ERR_PTR(ret);
3264 if (ret > 0)
3265 return ERR_PTR(-ENOENT);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003266 inode = btrfs_iget(dir->i_sb, &location, sub_root);
Balaji Rao1a54ef82008-07-21 02:01:04 +05303267 if (IS_ERR(inode))
3268 return ERR_CAST(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003269 }
Chris Mason3de45862008-11-17 21:02:50 -05003270 return inode;
3271}
3272
3273static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
3274 struct nameidata *nd)
3275{
3276 struct inode *inode;
3277
3278 if (dentry->d_name.len > BTRFS_NAME_LEN)
3279 return ERR_PTR(-ENAMETOOLONG);
3280
3281 inode = btrfs_lookup_dentry(dir, dentry);
3282 if (IS_ERR(inode))
3283 return ERR_CAST(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04003284
Chris Mason39279cc2007-06-12 06:35:45 -04003285 return d_splice_alias(inode, dentry);
3286}
3287
Chris Mason39279cc2007-06-12 06:35:45 -04003288static unsigned char btrfs_filetype_table[] = {
3289 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
3290};
3291
David Woodhousecbdf5a22008-08-06 19:42:33 +01003292static int btrfs_real_readdir(struct file *filp, void *dirent,
3293 filldir_t filldir)
Chris Mason39279cc2007-06-12 06:35:45 -04003294{
Chris Mason6da6aba2007-12-18 16:15:09 -05003295 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04003296 struct btrfs_root *root = BTRFS_I(inode)->root;
3297 struct btrfs_item *item;
3298 struct btrfs_dir_item *di;
3299 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04003300 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04003301 struct btrfs_path *path;
3302 int ret;
3303 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04003304 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003305 int slot;
3306 int advance;
3307 unsigned char d_type;
3308 int over = 0;
3309 u32 di_cur;
3310 u32 di_total;
3311 u32 di_len;
3312 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04003313 char tmp_name[32];
3314 char *name_ptr;
3315 int name_len;
Chris Mason39279cc2007-06-12 06:35:45 -04003316
3317 /* FIXME, use a real flag for deciding about the key type */
3318 if (root->fs_info->tree_root == root)
3319 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04003320
Chris Mason39544012007-12-12 14:38:19 -05003321 /* special case for "." */
3322 if (filp->f_pos == 0) {
3323 over = filldir(dirent, ".", 1,
3324 1, inode->i_ino,
3325 DT_DIR);
3326 if (over)
3327 return 0;
3328 filp->f_pos = 1;
3329 }
Chris Mason39544012007-12-12 14:38:19 -05003330 /* special case for .., just use the back ref */
3331 if (filp->f_pos == 1) {
David Woodhouse5ecc7e52008-08-17 15:14:48 +01003332 u64 pino = parent_ino(filp->f_path.dentry);
Chris Mason39544012007-12-12 14:38:19 -05003333 over = filldir(dirent, "..", 2,
David Woodhouse5ecc7e52008-08-17 15:14:48 +01003334 2, pino, DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05003335 if (over)
David Woodhouse49593bf2008-08-17 17:08:36 +01003336 return 0;
Chris Mason39544012007-12-12 14:38:19 -05003337 filp->f_pos = 2;
3338 }
David Woodhouse49593bf2008-08-17 17:08:36 +01003339 path = btrfs_alloc_path();
3340 path->reada = 2;
3341
Chris Mason39279cc2007-06-12 06:35:45 -04003342 btrfs_set_key_type(&key, key_type);
3343 key.offset = filp->f_pos;
David Woodhouse49593bf2008-08-17 17:08:36 +01003344 key.objectid = inode->i_ino;
Chris Mason5f39d392007-10-15 16:14:19 -04003345
Chris Mason39279cc2007-06-12 06:35:45 -04003346 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3347 if (ret < 0)
3348 goto err;
3349 advance = 0;
David Woodhouse49593bf2008-08-17 17:08:36 +01003350
3351 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04003352 leaf = path->nodes[0];
3353 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003354 slot = path->slots[0];
3355 if (advance || slot >= nritems) {
David Woodhouse49593bf2008-08-17 17:08:36 +01003356 if (slot >= nritems - 1) {
Chris Mason39279cc2007-06-12 06:35:45 -04003357 ret = btrfs_next_leaf(root, path);
3358 if (ret)
3359 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003360 leaf = path->nodes[0];
3361 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003362 slot = path->slots[0];
3363 } else {
3364 slot++;
3365 path->slots[0]++;
3366 }
3367 }
Chris Mason3de45862008-11-17 21:02:50 -05003368
Chris Mason39279cc2007-06-12 06:35:45 -04003369 advance = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04003370 item = btrfs_item_nr(leaf, slot);
3371 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3372
3373 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04003374 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003375 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003376 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003377 if (found_key.offset < filp->f_pos)
Chris Mason39279cc2007-06-12 06:35:45 -04003378 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04003379
3380 filp->f_pos = found_key.offset;
David Woodhouse49593bf2008-08-17 17:08:36 +01003381
Chris Mason39279cc2007-06-12 06:35:45 -04003382 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
3383 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003384 di_total = btrfs_item_size(leaf, item);
David Woodhouse49593bf2008-08-17 17:08:36 +01003385
3386 while (di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04003387 struct btrfs_key location;
3388
3389 name_len = btrfs_dir_name_len(leaf, di);
David Woodhouse49593bf2008-08-17 17:08:36 +01003390 if (name_len <= sizeof(tmp_name)) {
Chris Mason5f39d392007-10-15 16:14:19 -04003391 name_ptr = tmp_name;
3392 } else {
3393 name_ptr = kmalloc(name_len, GFP_NOFS);
David Woodhouse49593bf2008-08-17 17:08:36 +01003394 if (!name_ptr) {
3395 ret = -ENOMEM;
3396 goto err;
3397 }
Chris Mason5f39d392007-10-15 16:14:19 -04003398 }
3399 read_extent_buffer(leaf, name_ptr,
3400 (unsigned long)(di + 1), name_len);
3401
3402 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
3403 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason3de45862008-11-17 21:02:50 -05003404
3405 /* is this a reference to our own snapshot? If so
3406 * skip it
3407 */
3408 if (location.type == BTRFS_ROOT_ITEM_KEY &&
3409 location.objectid == root->root_key.objectid) {
3410 over = 0;
3411 goto skip;
3412 }
Chris Mason5f39d392007-10-15 16:14:19 -04003413 over = filldir(dirent, name_ptr, name_len,
David Woodhouse49593bf2008-08-17 17:08:36 +01003414 found_key.offset, location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04003415 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04003416
Chris Mason3de45862008-11-17 21:02:50 -05003417skip:
Chris Mason5f39d392007-10-15 16:14:19 -04003418 if (name_ptr != tmp_name)
3419 kfree(name_ptr);
3420
Chris Mason39279cc2007-06-12 06:35:45 -04003421 if (over)
3422 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05003423 di_len = btrfs_dir_name_len(leaf, di) +
David Woodhouse49593bf2008-08-17 17:08:36 +01003424 btrfs_dir_data_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04003425 di_cur += di_len;
3426 di = (struct btrfs_dir_item *)((char *)di + di_len);
3427 }
3428 }
David Woodhouse49593bf2008-08-17 17:08:36 +01003429
3430 /* Reached end of directory/root. Bump pos past the last item. */
Yan Zheng5e591a02008-02-19 11:41:02 -05003431 if (key_type == BTRFS_DIR_INDEX_KEY)
Chris Mason89f135d2009-01-28 15:34:27 -05003432 filp->f_pos = INT_LIMIT(off_t);
Yan Zheng5e591a02008-02-19 11:41:02 -05003433 else
3434 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04003435nopos:
3436 ret = 0;
3437err:
Chris Mason39279cc2007-06-12 06:35:45 -04003438 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003439 return ret;
3440}
3441
3442int btrfs_write_inode(struct inode *inode, int wait)
3443{
3444 struct btrfs_root *root = BTRFS_I(inode)->root;
3445 struct btrfs_trans_handle *trans;
3446 int ret = 0;
3447
Yan Zhengc146afa2008-11-12 14:34:12 -05003448 if (root->fs_info->btree_inode == inode)
Chris Mason4ca8b412008-08-05 13:30:48 -04003449 return 0;
3450
Chris Mason39279cc2007-06-12 06:35:45 -04003451 if (wait) {
Chris Masonf9295742008-07-17 12:54:14 -04003452 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003453 btrfs_set_trans_block_group(trans, inode);
3454 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04003455 }
3456 return ret;
3457}
3458
3459/*
Chris Mason54aa1f42007-06-22 14:16:25 -04003460 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04003461 * inode changes. But, it is most likely to find the inode in cache.
3462 * FIXME, needs more benchmarking...there are no reasons other than performance
3463 * to keep or drop this code.
3464 */
3465void btrfs_dirty_inode(struct inode *inode)
3466{
3467 struct btrfs_root *root = BTRFS_I(inode)->root;
3468 struct btrfs_trans_handle *trans;
3469
Chris Masonf9295742008-07-17 12:54:14 -04003470 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003471 btrfs_set_trans_block_group(trans, inode);
3472 btrfs_update_inode(trans, root, inode);
3473 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04003474}
3475
Chris Masond352ac62008-09-29 15:18:18 -04003476/*
3477 * find the highest existing sequence number in a directory
3478 * and then set the in-memory index_cnt variable to reflect
3479 * free sequence numbers
3480 */
Josef Bacikaec74772008-07-24 12:12:38 -04003481static int btrfs_set_inode_index_count(struct inode *inode)
3482{
3483 struct btrfs_root *root = BTRFS_I(inode)->root;
3484 struct btrfs_key key, found_key;
3485 struct btrfs_path *path;
3486 struct extent_buffer *leaf;
3487 int ret;
3488
3489 key.objectid = inode->i_ino;
3490 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
3491 key.offset = (u64)-1;
3492
3493 path = btrfs_alloc_path();
3494 if (!path)
3495 return -ENOMEM;
3496
3497 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3498 if (ret < 0)
3499 goto out;
3500 /* FIXME: we should be able to handle this */
3501 if (ret == 0)
3502 goto out;
3503 ret = 0;
3504
3505 /*
3506 * MAGIC NUMBER EXPLANATION:
3507 * since we search a directory based on f_pos we have to start at 2
3508 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
3509 * else has to start at 2
3510 */
3511 if (path->slots[0] == 0) {
3512 BTRFS_I(inode)->index_cnt = 2;
3513 goto out;
3514 }
3515
3516 path->slots[0]--;
3517
3518 leaf = path->nodes[0];
3519 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3520
3521 if (found_key.objectid != inode->i_ino ||
3522 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
3523 BTRFS_I(inode)->index_cnt = 2;
3524 goto out;
3525 }
3526
3527 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
3528out:
3529 btrfs_free_path(path);
3530 return ret;
3531}
3532
Chris Masond352ac62008-09-29 15:18:18 -04003533/*
3534 * helper to find a free sequence number in a given directory. This current
3535 * code is very simple, later versions will do smarter things in the btree
3536 */
Chris Mason3de45862008-11-17 21:02:50 -05003537int btrfs_set_inode_index(struct inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04003538{
3539 int ret = 0;
3540
3541 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
3542 ret = btrfs_set_inode_index_count(dir);
Chris Masond3977122009-01-05 21:25:51 -05003543 if (ret)
Josef Bacikaec74772008-07-24 12:12:38 -04003544 return ret;
3545 }
3546
Chris Mason00e4e6b2008-08-05 11:18:09 -04003547 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04003548 BTRFS_I(dir)->index_cnt++;
3549
3550 return ret;
3551}
3552
Chris Mason39279cc2007-06-12 06:35:45 -04003553static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
3554 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04003555 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05003556 const char *name, int name_len,
Yan Zhengd2fb3432008-12-11 16:30:39 -05003557 u64 ref_objectid, u64 objectid,
3558 u64 alloc_hint, int mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04003559{
3560 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04003561 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04003562 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04003563 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05003564 struct btrfs_inode_ref *ref;
3565 struct btrfs_key key[2];
3566 u32 sizes[2];
3567 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04003568 int ret;
3569 int owner;
3570
Chris Mason5f39d392007-10-15 16:14:19 -04003571 path = btrfs_alloc_path();
3572 BUG_ON(!path);
3573
Chris Mason39279cc2007-06-12 06:35:45 -04003574 inode = new_inode(root->fs_info->sb);
3575 if (!inode)
3576 return ERR_PTR(-ENOMEM);
3577
Josef Bacikaec74772008-07-24 12:12:38 -04003578 if (dir) {
Chris Mason3de45862008-11-17 21:02:50 -05003579 ret = btrfs_set_inode_index(dir, index);
Shen Feng09771432009-04-02 16:46:06 -04003580 if (ret) {
3581 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04003582 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04003583 }
Josef Bacikaec74772008-07-24 12:12:38 -04003584 }
3585 /*
3586 * index_cnt is ignored for everything but a dir,
3587 * btrfs_get_inode_index_count has an explanation for the magic
3588 * number
3589 */
Chris Masone02119d2008-09-05 16:13:11 -04003590 init_btrfs_i(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04003591 BTRFS_I(inode)->index_cnt = 2;
Chris Mason39279cc2007-06-12 06:35:45 -04003592 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04003593 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik6a632092009-02-20 11:00:09 -05003594 btrfs_set_inode_space_info(root, inode);
Chris Masonb888db22007-08-27 16:49:44 -04003595
Chris Mason39279cc2007-06-12 06:35:45 -04003596 if (mode & S_IFDIR)
3597 owner = 0;
3598 else
3599 owner = 1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05003600 BTRFS_I(inode)->block_group =
3601 btrfs_find_block_group(root, 0, alloc_hint, owner);
Chris Mason9c583092008-01-29 15:15:18 -05003602
3603 key[0].objectid = objectid;
3604 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
3605 key[0].offset = 0;
3606
3607 key[1].objectid = objectid;
3608 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
3609 key[1].offset = ref_objectid;
3610
3611 sizes[0] = sizeof(struct btrfs_inode_item);
3612 sizes[1] = name_len + sizeof(*ref);
3613
Chris Masonb9473432009-03-13 11:00:37 -04003614 path->leave_spinning = 1;
Chris Mason9c583092008-01-29 15:15:18 -05003615 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
3616 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04003617 goto fail;
3618
Chris Mason9c583092008-01-29 15:15:18 -05003619 if (objectid > root->highest_inode)
3620 root->highest_inode = objectid;
3621
Chris Mason79683f22008-11-19 22:00:53 -05003622 inode->i_uid = current_fsuid();
Chris Ball8c087b52009-02-04 09:29:54 -05003623
Chris Mason42f15d72009-02-06 11:35:57 -05003624 if (dir && (dir->i_mode & S_ISGID)) {
Chris Ball8c087b52009-02-04 09:29:54 -05003625 inode->i_gid = dir->i_gid;
3626 if (S_ISDIR(mode))
3627 mode |= S_ISGID;
3628 } else
3629 inode->i_gid = current_fsgid();
3630
Chris Mason39279cc2007-06-12 06:35:45 -04003631 inode->i_mode = mode;
3632 inode->i_ino = objectid;
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003633 inode_set_bytes(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04003634 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04003635 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
3636 struct btrfs_inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04003637 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05003638
3639 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
3640 struct btrfs_inode_ref);
3641 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
Chris Mason00e4e6b2008-08-05 11:18:09 -04003642 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
Chris Mason9c583092008-01-29 15:15:18 -05003643 ptr = (unsigned long)(ref + 1);
3644 write_extent_buffer(path->nodes[0], name, ptr, name_len);
3645
Chris Mason5f39d392007-10-15 16:14:19 -04003646 btrfs_mark_buffer_dirty(path->nodes[0]);
3647 btrfs_free_path(path);
3648
Chris Mason39279cc2007-06-12 06:35:45 -04003649 location = &BTRFS_I(inode)->location;
3650 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04003651 location->offset = 0;
3652 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
3653
Christoph Hellwig6cbff002009-04-17 10:37:41 +02003654 btrfs_inherit_iflags(inode, dir);
3655
Chris Mason94272162009-07-02 12:26:06 -04003656 if ((mode & S_IFREG)) {
3657 if (btrfs_test_opt(root, NODATASUM))
3658 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
3659 if (btrfs_test_opt(root, NODATACOW))
3660 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
3661 }
3662
Chris Mason39279cc2007-06-12 06:35:45 -04003663 insert_inode_hash(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003664 inode_tree_add(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003665 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04003666fail:
Josef Bacikaec74772008-07-24 12:12:38 -04003667 if (dir)
3668 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04003669 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04003670 iput(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04003671 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04003672}
3673
3674static inline u8 btrfs_inode_type(struct inode *inode)
3675{
3676 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
3677}
3678
Chris Masond352ac62008-09-29 15:18:18 -04003679/*
3680 * utility function to add 'inode' into 'parent_inode' with
3681 * a give name and a given sequence number.
3682 * if 'add_backref' is true, also insert a backref from the
3683 * inode to the parent directory.
3684 */
Chris Masone02119d2008-09-05 16:13:11 -04003685int btrfs_add_link(struct btrfs_trans_handle *trans,
3686 struct inode *parent_inode, struct inode *inode,
3687 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04003688{
3689 int ret;
3690 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04003691 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Chris Mason5f39d392007-10-15 16:14:19 -04003692
Chris Mason39279cc2007-06-12 06:35:45 -04003693 key.objectid = inode->i_ino;
Chris Mason39279cc2007-06-12 06:35:45 -04003694 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
3695 key.offset = 0;
3696
Chris Masone02119d2008-09-05 16:13:11 -04003697 ret = btrfs_insert_dir_item(trans, root, name, name_len,
3698 parent_inode->i_ino,
Josef Bacikaec74772008-07-24 12:12:38 -04003699 &key, btrfs_inode_type(inode),
Chris Mason00e4e6b2008-08-05 11:18:09 -04003700 index);
Chris Mason39279cc2007-06-12 06:35:45 -04003701 if (ret == 0) {
Chris Mason9c583092008-01-29 15:15:18 -05003702 if (add_backref) {
3703 ret = btrfs_insert_inode_ref(trans, root,
Chris Masone02119d2008-09-05 16:13:11 -04003704 name, name_len,
3705 inode->i_ino,
3706 parent_inode->i_ino,
3707 index);
Chris Mason9c583092008-01-29 15:15:18 -05003708 }
Chris Masondbe674a2008-07-17 12:54:05 -04003709 btrfs_i_size_write(parent_inode, parent_inode->i_size +
Chris Masone02119d2008-09-05 16:13:11 -04003710 name_len * 2);
Chris Mason79c44582007-06-25 10:09:33 -04003711 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
Chris Masone02119d2008-09-05 16:13:11 -04003712 ret = btrfs_update_inode(trans, root, parent_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003713 }
3714 return ret;
3715}
3716
3717static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Chris Mason9c583092008-01-29 15:15:18 -05003718 struct dentry *dentry, struct inode *inode,
Chris Mason00e4e6b2008-08-05 11:18:09 -04003719 int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04003720{
Chris Masone02119d2008-09-05 16:13:11 -04003721 int err = btrfs_add_link(trans, dentry->d_parent->d_inode,
3722 inode, dentry->d_name.name,
3723 dentry->d_name.len, backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04003724 if (!err) {
3725 d_instantiate(dentry, inode);
3726 return 0;
3727 }
3728 if (err > 0)
3729 err = -EEXIST;
3730 return err;
3731}
3732
Josef Bacik618e21d2007-07-11 10:18:17 -04003733static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
3734 int mode, dev_t rdev)
3735{
3736 struct btrfs_trans_handle *trans;
3737 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05003738 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04003739 int err;
3740 int drop_inode = 0;
3741 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05003742 unsigned long nr = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04003743 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04003744
3745 if (!new_valid_dev(rdev))
3746 return -EINVAL;
3747
Josef Bacik6a632092009-02-20 11:00:09 -05003748 err = btrfs_check_metadata_free_space(root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003749 if (err)
3750 goto fail;
3751
Josef Bacik618e21d2007-07-11 10:18:17 -04003752 trans = btrfs_start_transaction(root, 1);
3753 btrfs_set_trans_block_group(trans, dir);
3754
3755 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
3756 if (err) {
3757 err = -ENOSPC;
3758 goto out_unlock;
3759 }
3760
Josef Bacikaec74772008-07-24 12:12:38 -04003761 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05003762 dentry->d_name.len,
3763 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04003764 BTRFS_I(dir)->block_group, mode, &index);
Josef Bacik618e21d2007-07-11 10:18:17 -04003765 err = PTR_ERR(inode);
3766 if (IS_ERR(inode))
3767 goto out_unlock;
3768
Jim Owens0279b4c2009-02-04 09:29:13 -05003769 err = btrfs_init_inode_security(inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04003770 if (err) {
3771 drop_inode = 1;
3772 goto out_unlock;
3773 }
3774
Josef Bacik618e21d2007-07-11 10:18:17 -04003775 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04003776 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Josef Bacik618e21d2007-07-11 10:18:17 -04003777 if (err)
3778 drop_inode = 1;
3779 else {
3780 inode->i_op = &btrfs_special_inode_operations;
3781 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04003782 btrfs_update_inode(trans, root, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04003783 }
Josef Bacik618e21d2007-07-11 10:18:17 -04003784 btrfs_update_inode_block_group(trans, inode);
3785 btrfs_update_inode_block_group(trans, dir);
3786out_unlock:
Chris Masond3c2fdc2007-09-17 10:58:06 -04003787 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04003788 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003789fail:
Josef Bacik618e21d2007-07-11 10:18:17 -04003790 if (drop_inode) {
3791 inode_dec_link_count(inode);
3792 iput(inode);
3793 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04003794 btrfs_btree_balance_dirty(root, nr);
Josef Bacik618e21d2007-07-11 10:18:17 -04003795 return err;
3796}
3797
Chris Mason39279cc2007-06-12 06:35:45 -04003798static int btrfs_create(struct inode *dir, struct dentry *dentry,
3799 int mode, struct nameidata *nd)
3800{
3801 struct btrfs_trans_handle *trans;
3802 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05003803 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04003804 int err;
3805 int drop_inode = 0;
Chris Mason1832a6d2007-12-21 16:27:21 -05003806 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003807 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04003808 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003809
Josef Bacik6a632092009-02-20 11:00:09 -05003810 err = btrfs_check_metadata_free_space(root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003811 if (err)
3812 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04003813 trans = btrfs_start_transaction(root, 1);
3814 btrfs_set_trans_block_group(trans, dir);
3815
3816 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
3817 if (err) {
3818 err = -ENOSPC;
3819 goto out_unlock;
3820 }
3821
Josef Bacikaec74772008-07-24 12:12:38 -04003822 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05003823 dentry->d_name.len,
3824 dentry->d_parent->d_inode->i_ino,
Chris Mason00e4e6b2008-08-05 11:18:09 -04003825 objectid, BTRFS_I(dir)->block_group, mode,
3826 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04003827 err = PTR_ERR(inode);
3828 if (IS_ERR(inode))
3829 goto out_unlock;
3830
Jim Owens0279b4c2009-02-04 09:29:13 -05003831 err = btrfs_init_inode_security(inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04003832 if (err) {
3833 drop_inode = 1;
3834 goto out_unlock;
3835 }
3836
Chris Mason39279cc2007-06-12 06:35:45 -04003837 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04003838 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04003839 if (err)
3840 drop_inode = 1;
3841 else {
3842 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04003843 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04003844 inode->i_fop = &btrfs_file_operations;
3845 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05003846 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04003847 }
Chris Mason39279cc2007-06-12 06:35:45 -04003848 btrfs_update_inode_block_group(trans, inode);
3849 btrfs_update_inode_block_group(trans, dir);
3850out_unlock:
Chris Masond3c2fdc2007-09-17 10:58:06 -04003851 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04003852 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003853fail:
Chris Mason39279cc2007-06-12 06:35:45 -04003854 if (drop_inode) {
3855 inode_dec_link_count(inode);
3856 iput(inode);
3857 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04003858 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003859 return err;
3860}
3861
3862static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
3863 struct dentry *dentry)
3864{
3865 struct btrfs_trans_handle *trans;
3866 struct btrfs_root *root = BTRFS_I(dir)->root;
3867 struct inode *inode = old_dentry->d_inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04003868 u64 index;
Chris Mason1832a6d2007-12-21 16:27:21 -05003869 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003870 int err;
3871 int drop_inode = 0;
3872
3873 if (inode->i_nlink == 0)
3874 return -ENOENT;
3875
Chris Masone02119d2008-09-05 16:13:11 -04003876 btrfs_inc_nlink(inode);
Josef Bacik6a632092009-02-20 11:00:09 -05003877 err = btrfs_check_metadata_free_space(root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003878 if (err)
3879 goto fail;
Chris Mason3de45862008-11-17 21:02:50 -05003880 err = btrfs_set_inode_index(dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04003881 if (err)
3882 goto fail;
3883
Chris Mason39279cc2007-06-12 06:35:45 -04003884 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04003885
Chris Mason39279cc2007-06-12 06:35:45 -04003886 btrfs_set_trans_block_group(trans, dir);
3887 atomic_inc(&inode->i_count);
Josef Bacikaec74772008-07-24 12:12:38 -04003888
Chris Mason00e4e6b2008-08-05 11:18:09 -04003889 err = btrfs_add_nondir(trans, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04003890
Chris Mason39279cc2007-06-12 06:35:45 -04003891 if (err)
3892 drop_inode = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04003893
Chris Mason39279cc2007-06-12 06:35:45 -04003894 btrfs_update_inode_block_group(trans, dir);
Chris Mason54aa1f42007-06-22 14:16:25 -04003895 err = btrfs_update_inode(trans, root, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04003896
Chris Mason54aa1f42007-06-22 14:16:25 -04003897 if (err)
3898 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04003899
Chris Masond3c2fdc2007-09-17 10:58:06 -04003900 nr = trans->blocks_used;
Chris Mason12fcfd22009-03-24 10:24:20 -04003901
3902 btrfs_log_new_name(trans, inode, NULL, dentry->d_parent);
Chris Masonab78c842008-07-29 16:15:18 -04003903 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003904fail:
Chris Mason39279cc2007-06-12 06:35:45 -04003905 if (drop_inode) {
3906 inode_dec_link_count(inode);
3907 iput(inode);
3908 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04003909 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003910 return err;
3911}
3912
Chris Mason39279cc2007-06-12 06:35:45 -04003913static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
3914{
Chris Masonb9d86662008-05-02 16:13:49 -04003915 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04003916 struct btrfs_trans_handle *trans;
3917 struct btrfs_root *root = BTRFS_I(dir)->root;
3918 int err = 0;
3919 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04003920 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04003921 u64 index = 0;
Chris Masond3c2fdc2007-09-17 10:58:06 -04003922 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04003923
Josef Bacik6a632092009-02-20 11:00:09 -05003924 err = btrfs_check_metadata_free_space(root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003925 if (err)
3926 goto out_unlock;
3927
Chris Mason39279cc2007-06-12 06:35:45 -04003928 trans = btrfs_start_transaction(root, 1);
3929 btrfs_set_trans_block_group(trans, dir);
Chris Mason5f39d392007-10-15 16:14:19 -04003930
Chris Mason39279cc2007-06-12 06:35:45 -04003931 if (IS_ERR(trans)) {
3932 err = PTR_ERR(trans);
3933 goto out_unlock;
3934 }
3935
3936 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
3937 if (err) {
3938 err = -ENOSPC;
3939 goto out_unlock;
3940 }
3941
Josef Bacikaec74772008-07-24 12:12:38 -04003942 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05003943 dentry->d_name.len,
3944 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04003945 BTRFS_I(dir)->block_group, S_IFDIR | mode,
3946 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04003947 if (IS_ERR(inode)) {
3948 err = PTR_ERR(inode);
3949 goto out_fail;
3950 }
Chris Mason5f39d392007-10-15 16:14:19 -04003951
Chris Mason39279cc2007-06-12 06:35:45 -04003952 drop_on_err = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -04003953
Jim Owens0279b4c2009-02-04 09:29:13 -05003954 err = btrfs_init_inode_security(inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04003955 if (err)
3956 goto out_fail;
3957
Chris Mason39279cc2007-06-12 06:35:45 -04003958 inode->i_op = &btrfs_dir_inode_operations;
3959 inode->i_fop = &btrfs_dir_file_operations;
3960 btrfs_set_trans_block_group(trans, inode);
3961
Chris Masondbe674a2008-07-17 12:54:05 -04003962 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04003963 err = btrfs_update_inode(trans, root, inode);
3964 if (err)
3965 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04003966
Chris Masone02119d2008-09-05 16:13:11 -04003967 err = btrfs_add_link(trans, dentry->d_parent->d_inode,
3968 inode, dentry->d_name.name,
3969 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04003970 if (err)
3971 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04003972
Chris Mason39279cc2007-06-12 06:35:45 -04003973 d_instantiate(dentry, inode);
3974 drop_on_err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003975 btrfs_update_inode_block_group(trans, inode);
3976 btrfs_update_inode_block_group(trans, dir);
3977
3978out_fail:
Chris Masond3c2fdc2007-09-17 10:58:06 -04003979 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04003980 btrfs_end_transaction_throttle(trans, root);
Chris Mason5f39d392007-10-15 16:14:19 -04003981
Chris Mason39279cc2007-06-12 06:35:45 -04003982out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04003983 if (drop_on_err)
3984 iput(inode);
Chris Masond3c2fdc2007-09-17 10:58:06 -04003985 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003986 return err;
3987}
3988
Chris Masond352ac62008-09-29 15:18:18 -04003989/* helper for btfs_get_extent. Given an existing extent in the tree,
3990 * and an extent that you want to insert, deal with overlap and insert
3991 * the new extent into the tree.
3992 */
Chris Mason3b951512008-04-17 11:29:12 -04003993static int merge_extent_mapping(struct extent_map_tree *em_tree,
3994 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04003995 struct extent_map *em,
3996 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04003997{
3998 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04003999
Chris Masone6dcd2d2008-07-17 12:53:50 -04004000 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
4001 start_diff = map_start - em->start;
4002 em->start = map_start;
4003 em->len = map_len;
Chris Masonc8b97812008-10-29 14:49:59 -04004004 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
4005 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04004006 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04004007 em->block_len -= start_diff;
4008 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004009 return add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04004010}
4011
Chris Masonc8b97812008-10-29 14:49:59 -04004012static noinline int uncompress_inline(struct btrfs_path *path,
4013 struct inode *inode, struct page *page,
4014 size_t pg_offset, u64 extent_offset,
4015 struct btrfs_file_extent_item *item)
4016{
4017 int ret;
4018 struct extent_buffer *leaf = path->nodes[0];
4019 char *tmp;
4020 size_t max_size;
4021 unsigned long inline_size;
4022 unsigned long ptr;
4023
4024 WARN_ON(pg_offset != 0);
4025 max_size = btrfs_file_extent_ram_bytes(leaf, item);
4026 inline_size = btrfs_file_extent_inline_item_len(leaf,
4027 btrfs_item_nr(leaf, path->slots[0]));
4028 tmp = kmalloc(inline_size, GFP_NOFS);
4029 ptr = btrfs_file_extent_inline_start(item);
4030
4031 read_extent_buffer(leaf, tmp, ptr, inline_size);
4032
Chris Mason5b050f02008-11-11 09:34:41 -05004033 max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size);
Chris Masonc8b97812008-10-29 14:49:59 -04004034 ret = btrfs_zlib_decompress(tmp, page, extent_offset,
4035 inline_size, max_size);
4036 if (ret) {
4037 char *kaddr = kmap_atomic(page, KM_USER0);
4038 unsigned long copy_size = min_t(u64,
4039 PAGE_CACHE_SIZE - pg_offset,
4040 max_size - extent_offset);
4041 memset(kaddr + pg_offset, 0, copy_size);
4042 kunmap_atomic(kaddr, KM_USER0);
4043 }
4044 kfree(tmp);
4045 return 0;
4046}
4047
Chris Masond352ac62008-09-29 15:18:18 -04004048/*
4049 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05004050 * the ugly parts come from merging extents from the disk with the in-ram
4051 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04004052 * where the in-ram extents might be locked pending data=ordered completion.
4053 *
4054 * This also copies inline extents directly into the page.
4055 */
Chris Masond3977122009-01-05 21:25:51 -05004056
Chris Masona52d9a82007-08-27 16:49:44 -04004057struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05004058 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04004059 int create)
4060{
4061 int ret;
4062 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04004063 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04004064 u64 extent_start = 0;
4065 u64 extent_end = 0;
4066 u64 objectid = inode->i_ino;
4067 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04004068 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04004069 struct btrfs_root *root = BTRFS_I(inode)->root;
4070 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04004071 struct extent_buffer *leaf;
4072 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04004073 struct extent_map *em = NULL;
4074 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05004075 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04004076 struct btrfs_trans_handle *trans = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04004077 int compressed;
Chris Masona52d9a82007-08-27 16:49:44 -04004078
Chris Masona52d9a82007-08-27 16:49:44 -04004079again:
Chris Mason890871b2009-09-02 16:24:52 -04004080 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05004081 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04004082 if (em)
4083 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04004084 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05004085
Chris Masona52d9a82007-08-27 16:49:44 -04004086 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04004087 if (em->start > start || em->start + em->len <= start)
4088 free_extent_map(em);
4089 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05004090 free_extent_map(em);
4091 else
4092 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004093 }
Chris Masond1310b22008-01-24 16:13:08 -05004094 em = alloc_extent_map(GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04004095 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05004096 err = -ENOMEM;
4097 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004098 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004099 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05004100 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05004101 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05004102 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04004103 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04004104
4105 if (!path) {
4106 path = btrfs_alloc_path();
4107 BUG_ON(!path);
4108 }
4109
Chris Mason179e29e2007-11-01 11:28:41 -04004110 ret = btrfs_lookup_file_extent(trans, root, path,
4111 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04004112 if (ret < 0) {
4113 err = ret;
4114 goto out;
4115 }
4116
4117 if (ret != 0) {
4118 if (path->slots[0] == 0)
4119 goto not_found;
4120 path->slots[0]--;
4121 }
4122
Chris Mason5f39d392007-10-15 16:14:19 -04004123 leaf = path->nodes[0];
4124 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04004125 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04004126 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04004127 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4128 found_type = btrfs_key_type(&found_key);
4129 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04004130 found_type != BTRFS_EXTENT_DATA_KEY) {
4131 goto not_found;
4132 }
4133
Chris Mason5f39d392007-10-15 16:14:19 -04004134 found_type = btrfs_file_extent_type(leaf, item);
4135 extent_start = found_key.offset;
Chris Masonc8b97812008-10-29 14:49:59 -04004136 compressed = btrfs_file_extent_compression(leaf, item);
Yan Zhengd899e052008-10-30 14:25:28 -04004137 if (found_type == BTRFS_FILE_EXTENT_REG ||
4138 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04004139 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04004140 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04004141 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
4142 size_t size;
4143 size = btrfs_file_extent_inline_len(leaf, item);
4144 extent_end = (extent_start + size + root->sectorsize - 1) &
4145 ~((u64)root->sectorsize - 1);
4146 }
4147
4148 if (start >= extent_end) {
4149 path->slots[0]++;
4150 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
4151 ret = btrfs_next_leaf(root, path);
4152 if (ret < 0) {
4153 err = ret;
4154 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004155 }
Yan Zheng9036c102008-10-30 14:19:41 -04004156 if (ret > 0)
4157 goto not_found;
4158 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04004159 }
Yan Zheng9036c102008-10-30 14:19:41 -04004160 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4161 if (found_key.objectid != objectid ||
4162 found_key.type != BTRFS_EXTENT_DATA_KEY)
4163 goto not_found;
4164 if (start + len <= found_key.offset)
4165 goto not_found;
4166 em->start = start;
4167 em->len = found_key.offset - start;
4168 goto not_found_em;
4169 }
4170
Yan Zhengd899e052008-10-30 14:25:28 -04004171 if (found_type == BTRFS_FILE_EXTENT_REG ||
4172 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng9036c102008-10-30 14:19:41 -04004173 em->start = extent_start;
4174 em->len = extent_end - extent_start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -05004175 em->orig_start = extent_start -
4176 btrfs_file_extent_offset(leaf, item);
Chris Masondb945352007-10-15 16:15:53 -04004177 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
4178 if (bytenr == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04004179 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04004180 goto insert;
4181 }
Chris Masonc8b97812008-10-29 14:49:59 -04004182 if (compressed) {
4183 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
4184 em->block_start = bytenr;
4185 em->block_len = btrfs_file_extent_disk_num_bytes(leaf,
4186 item);
4187 } else {
4188 bytenr += btrfs_file_extent_offset(leaf, item);
4189 em->block_start = bytenr;
4190 em->block_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04004191 if (found_type == BTRFS_FILE_EXTENT_PREALLOC)
4192 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -04004193 }
Chris Masona52d9a82007-08-27 16:49:44 -04004194 goto insert;
4195 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04004196 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04004197 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04004198 size_t size;
4199 size_t extent_offset;
4200 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04004201
Chris Masona52d9a82007-08-27 16:49:44 -04004202 em->block_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04004203 if (!page || create) {
Yan689f9342007-10-29 11:41:07 -04004204 em->start = extent_start;
Yan Zheng9036c102008-10-30 14:19:41 -04004205 em->len = extent_end - extent_start;
Yan689f9342007-10-29 11:41:07 -04004206 goto out;
4207 }
4208
Yan Zheng9036c102008-10-30 14:19:41 -04004209 size = btrfs_file_extent_inline_len(leaf, item);
4210 extent_offset = page_offset(page) + pg_offset - extent_start;
Chris Mason70dec802008-01-29 09:59:12 -05004211 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04004212 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04004213 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05004214 em->len = (copy_size + root->sectorsize - 1) &
4215 ~((u64)root->sectorsize - 1);
Yan Zhengff5b7ee2008-11-10 07:34:43 -05004216 em->orig_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04004217 if (compressed)
4218 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Yan689f9342007-10-29 11:41:07 -04004219 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04004220 if (create == 0 && !PageUptodate(page)) {
Chris Masonc8b97812008-10-29 14:49:59 -04004221 if (btrfs_file_extent_compression(leaf, item) ==
4222 BTRFS_COMPRESS_ZLIB) {
4223 ret = uncompress_inline(path, inode, page,
4224 pg_offset,
4225 extent_offset, item);
4226 BUG_ON(ret);
4227 } else {
4228 map = kmap(page);
4229 read_extent_buffer(leaf, map + pg_offset, ptr,
4230 copy_size);
Chris Mason93c82d52009-09-11 12:36:29 -04004231 if (pg_offset + copy_size < PAGE_CACHE_SIZE) {
4232 memset(map + pg_offset + copy_size, 0,
4233 PAGE_CACHE_SIZE - pg_offset -
4234 copy_size);
4235 }
Chris Masonc8b97812008-10-29 14:49:59 -04004236 kunmap(page);
4237 }
Chris Mason179e29e2007-11-01 11:28:41 -04004238 flush_dcache_page(page);
4239 } else if (create && PageUptodate(page)) {
4240 if (!trans) {
4241 kunmap(page);
4242 free_extent_map(em);
4243 em = NULL;
4244 btrfs_release_path(root, path);
Chris Masonf9295742008-07-17 12:54:14 -04004245 trans = btrfs_join_transaction(root, 1);
Chris Mason179e29e2007-11-01 11:28:41 -04004246 goto again;
4247 }
Chris Masonc8b97812008-10-29 14:49:59 -04004248 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05004249 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04004250 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04004251 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04004252 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04004253 }
Chris Masond1310b22008-01-24 16:13:08 -05004254 set_extent_uptodate(io_tree, em->start,
4255 extent_map_end(em) - 1, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04004256 goto insert;
4257 } else {
Chris Masond3977122009-01-05 21:25:51 -05004258 printk(KERN_ERR "btrfs unknown found_type %d\n", found_type);
Chris Masona52d9a82007-08-27 16:49:44 -04004259 WARN_ON(1);
4260 }
4261not_found:
4262 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05004263 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04004264not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04004265 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04004266 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04004267insert:
4268 btrfs_release_path(root, path);
Chris Masond1310b22008-01-24 16:13:08 -05004269 if (em->start > start || extent_map_end(em) <= start) {
Chris Masond3977122009-01-05 21:25:51 -05004270 printk(KERN_ERR "Btrfs: bad extent! em: [%llu %llu] passed "
4271 "[%llu %llu]\n", (unsigned long long)em->start,
4272 (unsigned long long)em->len,
4273 (unsigned long long)start,
4274 (unsigned long long)len);
Chris Masona52d9a82007-08-27 16:49:44 -04004275 err = -EIO;
4276 goto out;
4277 }
Chris Masond1310b22008-01-24 16:13:08 -05004278
4279 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04004280 write_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04004281 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04004282 /* it is possible that someone inserted the extent into the tree
4283 * while we had the lock dropped. It is also possible that
4284 * an overlapping map exists in the tree
4285 */
Chris Masona52d9a82007-08-27 16:49:44 -04004286 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04004287 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004288
4289 ret = 0;
4290
Chris Mason3b951512008-04-17 11:29:12 -04004291 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04004292 if (existing && (existing->start > start ||
4293 existing->start + existing->len <= start)) {
4294 free_extent_map(existing);
4295 existing = NULL;
4296 }
Chris Mason3b951512008-04-17 11:29:12 -04004297 if (!existing) {
4298 existing = lookup_extent_mapping(em_tree, em->start,
4299 em->len);
4300 if (existing) {
4301 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04004302 em, start,
4303 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04004304 free_extent_map(existing);
4305 if (err) {
4306 free_extent_map(em);
4307 em = NULL;
4308 }
4309 } else {
4310 err = -EIO;
Chris Mason3b951512008-04-17 11:29:12 -04004311 free_extent_map(em);
4312 em = NULL;
4313 }
4314 } else {
4315 free_extent_map(em);
4316 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004317 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04004318 }
Chris Masona52d9a82007-08-27 16:49:44 -04004319 }
Chris Mason890871b2009-09-02 16:24:52 -04004320 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04004321out:
Chris Masonf4219502008-07-22 11:18:09 -04004322 if (path)
4323 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04004324 if (trans) {
4325 ret = btrfs_end_transaction(trans, root);
Chris Masond3977122009-01-05 21:25:51 -05004326 if (!err)
Chris Masona52d9a82007-08-27 16:49:44 -04004327 err = ret;
4328 }
Chris Masona52d9a82007-08-27 16:49:44 -04004329 if (err) {
4330 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04004331 return ERR_PTR(err);
4332 }
4333 return em;
4334}
4335
Chris Mason16432982008-04-10 10:23:21 -04004336static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
4337 const struct iovec *iov, loff_t offset,
4338 unsigned long nr_segs)
4339{
Chris Masone1c4b742008-04-22 13:26:46 -04004340 return -EINVAL;
Chris Mason16432982008-04-10 10:23:21 -04004341}
4342
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004343static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
4344 __u64 start, __u64 len)
4345{
4346 return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent);
4347}
4348
Chris Mason9ebefb182007-06-15 13:50:00 -04004349int btrfs_readpage(struct file *file, struct page *page)
4350{
Chris Masond1310b22008-01-24 16:13:08 -05004351 struct extent_io_tree *tree;
4352 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04004353 return extent_read_full_page(tree, page, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04004354}
Chris Mason1832a6d2007-12-21 16:27:21 -05004355
Chris Mason39279cc2007-06-12 06:35:45 -04004356static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
4357{
Chris Masond1310b22008-01-24 16:13:08 -05004358 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04004359
4360
4361 if (current->flags & PF_MEMALLOC) {
4362 redirty_page_for_writepage(wbc, page);
4363 unlock_page(page);
4364 return 0;
4365 }
Chris Masond1310b22008-01-24 16:13:08 -05004366 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04004367 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
4368}
Chris Mason39279cc2007-06-12 06:35:45 -04004369
Chris Masonf4219502008-07-22 11:18:09 -04004370int btrfs_writepages(struct address_space *mapping,
4371 struct writeback_control *wbc)
Chris Masonb293f022007-11-01 19:45:34 -04004372{
Chris Masond1310b22008-01-24 16:13:08 -05004373 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05004374
Chris Masond1310b22008-01-24 16:13:08 -05004375 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04004376 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
4377}
4378
Chris Mason3ab2fb52007-11-08 10:59:22 -05004379static int
4380btrfs_readpages(struct file *file, struct address_space *mapping,
4381 struct list_head *pages, unsigned nr_pages)
4382{
Chris Masond1310b22008-01-24 16:13:08 -05004383 struct extent_io_tree *tree;
4384 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05004385 return extent_readpages(tree, mapping, pages, nr_pages,
4386 btrfs_get_extent);
4387}
Chris Masone6dcd2d2008-07-17 12:53:50 -04004388static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04004389{
Chris Masond1310b22008-01-24 16:13:08 -05004390 struct extent_io_tree *tree;
4391 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04004392 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004393
Chris Masond1310b22008-01-24 16:13:08 -05004394 tree = &BTRFS_I(page->mapping->host)->io_tree;
4395 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05004396 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04004397 if (ret == 1) {
4398 ClearPagePrivate(page);
4399 set_page_private(page, 0);
4400 page_cache_release(page);
4401 }
4402 return ret;
4403}
Chris Mason39279cc2007-06-12 06:35:45 -04004404
Chris Masone6dcd2d2008-07-17 12:53:50 -04004405static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
4406{
Chris Mason98509cf2008-09-11 15:51:43 -04004407 if (PageWriteback(page) || PageDirty(page))
4408 return 0;
Yan Zhengb335b002009-02-12 10:06:04 -05004409 return __btrfs_releasepage(page, gfp_flags & GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004410}
4411
Chris Masona52d9a82007-08-27 16:49:44 -04004412static void btrfs_invalidatepage(struct page *page, unsigned long offset)
4413{
Chris Masond1310b22008-01-24 16:13:08 -05004414 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004415 struct btrfs_ordered_extent *ordered;
4416 u64 page_start = page_offset(page);
4417 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04004418
Chris Mason8b62b722009-09-02 16:53:46 -04004419
4420 /*
4421 * we have the page locked, so new writeback can't start,
4422 * and the dirty bit won't be cleared while we are here.
4423 *
4424 * Wait for IO on this page so that we can safely clear
4425 * the PagePrivate2 bit and do ordered accounting
4426 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04004427 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04004428
Chris Masond1310b22008-01-24 16:13:08 -05004429 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004430 if (offset) {
4431 btrfs_releasepage(page, GFP_NOFS);
4432 return;
4433 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004434 lock_extent(tree, page_start, page_end, GFP_NOFS);
4435 ordered = btrfs_lookup_ordered_extent(page->mapping->host,
4436 page_offset(page));
4437 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04004438 /*
4439 * IO on this page will never be started, so we need
4440 * to account for any ordered extents now
4441 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04004442 clear_extent_bit(tree, page_start, page_end,
4443 EXTENT_DIRTY | EXTENT_DELALLOC |
Chris Mason2c64c532009-09-02 15:04:12 -04004444 EXTENT_LOCKED, 1, 0, NULL, GFP_NOFS);
Chris Mason8b62b722009-09-02 16:53:46 -04004445 /*
4446 * whoever cleared the private bit is responsible
4447 * for the finish_ordered_io
4448 */
4449 if (TestClearPagePrivate2(page)) {
4450 btrfs_finish_ordered_io(page->mapping->host,
4451 page_start, page_end);
4452 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004453 btrfs_put_ordered_extent(ordered);
4454 lock_extent(tree, page_start, page_end, GFP_NOFS);
4455 }
4456 clear_extent_bit(tree, page_start, page_end,
Chris Mason8b62b722009-09-02 16:53:46 -04004457 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC,
Chris Mason2c64c532009-09-02 15:04:12 -04004458 1, 1, NULL, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004459 __btrfs_releasepage(page, GFP_NOFS);
4460
Chris Mason4a096752008-07-21 10:29:44 -04004461 ClearPageChecked(page);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04004462 if (PagePrivate(page)) {
Chris Mason9ad6b7b2008-04-18 16:11:30 -04004463 ClearPagePrivate(page);
4464 set_page_private(page, 0);
4465 page_cache_release(page);
4466 }
Chris Mason39279cc2007-06-12 06:35:45 -04004467}
4468
Chris Mason9ebefb182007-06-15 13:50:00 -04004469/*
4470 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
4471 * called from a page fault handler when a page is first dirtied. Hence we must
4472 * be careful to check for EOF conditions here. We set the page up correctly
4473 * for a written page which means we get ENOSPC checking when writing into
4474 * holes and correct delalloc and unwritten extent mapping on filesystems that
4475 * support these features.
4476 *
4477 * We are not allowed to take the i_mutex here so we have to play games to
4478 * protect against truncate races as the page could now be beyond EOF. Because
4479 * vmtruncate() writes the inode size before removing pages, once we have the
4480 * page lock we can determine safely if the page is beyond EOF. If it is not
4481 * beyond EOF, then the page is guaranteed safe against truncation until we
4482 * unlock the page.
4483 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07004484int btrfs_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04004485{
Nick Pigginc2ec1752009-03-31 15:23:21 -07004486 struct page *page = vmf->page;
Chris Mason6da6aba2007-12-18 16:15:09 -05004487 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05004488 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004489 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
4490 struct btrfs_ordered_extent *ordered;
4491 char *kaddr;
4492 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04004493 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05004494 int ret;
Chris Masona52d9a82007-08-27 16:49:44 -04004495 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004496 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04004497
Josef Bacik6a632092009-02-20 11:00:09 -05004498 ret = btrfs_check_data_free_space(root, inode, PAGE_CACHE_SIZE);
Nick Piggin56a76f82009-03-31 15:23:23 -07004499 if (ret) {
4500 if (ret == -ENOMEM)
4501 ret = VM_FAULT_OOM;
4502 else /* -ENOSPC, -EIO, etc */
4503 ret = VM_FAULT_SIGBUS;
Chris Mason1832a6d2007-12-21 16:27:21 -05004504 goto out;
Nick Piggin56a76f82009-03-31 15:23:23 -07004505 }
Chris Mason1832a6d2007-12-21 16:27:21 -05004506
Nick Piggin56a76f82009-03-31 15:23:23 -07004507 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04004508again:
Chris Mason9ebefb182007-06-15 13:50:00 -04004509 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04004510 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004511 page_start = page_offset(page);
4512 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04004513
Chris Mason9ebefb182007-06-15 13:50:00 -04004514 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04004515 (page_start >= size)) {
Josef Bacik6a632092009-02-20 11:00:09 -05004516 btrfs_free_reserved_data_space(root, inode, PAGE_CACHE_SIZE);
Chris Mason9ebefb182007-06-15 13:50:00 -04004517 /* page got truncated out from underneath us */
4518 goto out_unlock;
4519 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004520 wait_on_page_writeback(page);
4521
4522 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
4523 set_page_extent_mapped(page);
4524
Chris Masoneb84ae02008-07-17 13:53:27 -04004525 /*
4526 * we can't set the delalloc bits if there are pending ordered
4527 * extents. Drop our locks and wait for them to finish
4528 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04004529 ordered = btrfs_lookup_ordered_extent(inode, page_start);
4530 if (ordered) {
4531 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
4532 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04004533 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004534 btrfs_put_ordered_extent(ordered);
4535 goto again;
4536 }
4537
Chris Masonea8c2812008-08-04 23:17:27 -04004538 btrfs_set_extent_delalloc(inode, page_start, page_end);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004539 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04004540
4541 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04004542 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04004543 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04004544 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04004545 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04004546
Chris Masone6dcd2d2008-07-17 12:53:50 -04004547 if (zero_start != PAGE_CACHE_SIZE) {
4548 kaddr = kmap(page);
4549 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
4550 flush_dcache_page(page);
4551 kunmap(page);
4552 }
Chris Mason247e7432008-07-17 12:53:51 -04004553 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004554 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04004555 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04004556
4557 BTRFS_I(inode)->last_trans = root->fs_info->generation + 1;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004558 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04004559
4560out_unlock:
Chris Mason50a9b212009-09-11 12:33:12 -04004561 if (!ret)
4562 return VM_FAULT_LOCKED;
Chris Mason9ebefb182007-06-15 13:50:00 -04004563 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05004564out:
Chris Mason9ebefb182007-06-15 13:50:00 -04004565 return ret;
4566}
4567
Chris Mason39279cc2007-06-12 06:35:45 -04004568static void btrfs_truncate(struct inode *inode)
4569{
4570 struct btrfs_root *root = BTRFS_I(inode)->root;
4571 int ret;
4572 struct btrfs_trans_handle *trans;
Chris Masond3c2fdc2007-09-17 10:58:06 -04004573 unsigned long nr;
Chris Masondbe674a2008-07-17 12:54:05 -04004574 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -04004575
4576 if (!S_ISREG(inode->i_mode))
4577 return;
4578 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
4579 return;
4580
4581 btrfs_truncate_page(inode->i_mapping, inode->i_size);
Chris Mason4a096752008-07-21 10:29:44 -04004582 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -04004583
Chris Mason39279cc2007-06-12 06:35:45 -04004584 trans = btrfs_start_transaction(root, 1);
Chris Mason5a3f23d2009-03-31 13:27:11 -04004585
4586 /*
4587 * setattr is responsible for setting the ordered_data_close flag,
4588 * but that is only tested during the last file release. That
4589 * could happen well after the next commit, leaving a great big
4590 * window where new writes may get lost if someone chooses to write
4591 * to this file after truncating to zero
4592 *
4593 * The inode doesn't have any dirty data here, and so if we commit
4594 * this is a noop. If someone immediately starts writing to the inode
4595 * it is very likely we'll catch some of their writes in this
4596 * transaction, and the commit will find this file on the ordered
4597 * data list with good things to send down.
4598 *
4599 * This is a best effort solution, there is still a window where
4600 * using truncate to replace the contents of the file will
4601 * end up with a zero length file after a crash.
4602 */
4603 if (inode->i_size == 0 && BTRFS_I(inode)->ordered_data_close)
4604 btrfs_add_ordered_operation(trans, root, inode);
4605
Chris Mason39279cc2007-06-12 06:35:45 -04004606 btrfs_set_trans_block_group(trans, inode);
Chris Masondbe674a2008-07-17 12:54:05 -04004607 btrfs_i_size_write(inode, inode->i_size);
Chris Mason39279cc2007-06-12 06:35:45 -04004608
Josef Bacik7b128762008-07-24 12:17:14 -04004609 ret = btrfs_orphan_add(trans, inode);
4610 if (ret)
4611 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04004612 /* FIXME, add redo link to tree so we don't leak on crash */
Chris Masone02119d2008-09-05 16:13:11 -04004613 ret = btrfs_truncate_inode_items(trans, root, inode, inode->i_size,
Chris Mason85e21ba2008-01-29 15:11:36 -05004614 BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04004615 btrfs_update_inode(trans, root, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004616
Josef Bacik7b128762008-07-24 12:17:14 -04004617 ret = btrfs_orphan_del(trans, inode);
4618 BUG_ON(ret);
4619
4620out:
4621 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04004622 ret = btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004623 BUG_ON(ret);
Chris Masond3c2fdc2007-09-17 10:58:06 -04004624 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004625}
4626
Sven Wegener3b963622008-06-09 21:57:42 -04004627/*
Chris Masond352ac62008-09-29 15:18:18 -04004628 * create a new subvolume directory/inode (helper for the ioctl).
4629 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05004630int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
4631 struct btrfs_root *new_root, struct dentry *dentry,
4632 u64 new_dirid, u64 alloc_hint)
Chris Mason39279cc2007-06-12 06:35:45 -04004633{
Chris Mason39279cc2007-06-12 06:35:45 -04004634 struct inode *inode;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04004635 int error;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004636 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004637
Josef Bacikaec74772008-07-24 12:12:38 -04004638 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2, new_dirid,
Yan Zhengd2fb3432008-12-11 16:30:39 -05004639 new_dirid, alloc_hint, S_IFDIR | 0700, &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04004640 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004641 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004642 inode->i_op = &btrfs_dir_inode_operations;
4643 inode->i_fop = &btrfs_dir_file_operations;
4644
Chris Mason39279cc2007-06-12 06:35:45 -04004645 inode->i_nlink = 1;
Chris Masondbe674a2008-07-17 12:54:05 -04004646 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04004647
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04004648 error = btrfs_update_inode(trans, new_root, inode);
4649 if (error)
4650 return error;
4651
4652 d_instantiate(dentry, inode);
4653 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004654}
4655
Chris Masond352ac62008-09-29 15:18:18 -04004656/* helper function for file defrag and space balancing. This
4657 * forces readahead on a given range of bytes in an inode
4658 */
Chris Masonedbd8d42007-12-21 16:27:24 -05004659unsigned long btrfs_force_ra(struct address_space *mapping,
Chris Mason86479a02007-09-10 19:58:16 -04004660 struct file_ra_state *ra, struct file *file,
4661 pgoff_t offset, pgoff_t last_index)
4662{
Chris Mason8e7bf942008-04-28 09:02:36 -04004663 pgoff_t req_size = last_index - offset + 1;
Chris Mason86479a02007-09-10 19:58:16 -04004664
Chris Mason86479a02007-09-10 19:58:16 -04004665 page_cache_sync_readahead(mapping, ra, file, offset, req_size);
4666 return offset + req_size;
Chris Mason86479a02007-09-10 19:58:16 -04004667}
4668
Chris Mason39279cc2007-06-12 06:35:45 -04004669struct inode *btrfs_alloc_inode(struct super_block *sb)
4670{
4671 struct btrfs_inode *ei;
4672
4673 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
4674 if (!ei)
4675 return NULL;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04004676 ei->last_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04004677 ei->logged_trans = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004678 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Josef Bacik7b128762008-07-24 12:17:14 -04004679 INIT_LIST_HEAD(&ei->i_orphan);
Chris Mason5a3f23d2009-03-31 13:27:11 -04004680 INIT_LIST_HEAD(&ei->ordered_operations);
Chris Mason39279cc2007-06-12 06:35:45 -04004681 return &ei->vfs_inode;
4682}
4683
4684void btrfs_destroy_inode(struct inode *inode)
4685{
Chris Masone6dcd2d2008-07-17 12:53:50 -04004686 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04004687 struct btrfs_root *root = BTRFS_I(inode)->root;
4688
Chris Mason39279cc2007-06-12 06:35:45 -04004689 WARN_ON(!list_empty(&inode->i_dentry));
4690 WARN_ON(inode->i_data.nrpages);
4691
Chris Mason5a3f23d2009-03-31 13:27:11 -04004692 /*
4693 * Make sure we're properly removed from the ordered operation
4694 * lists.
4695 */
4696 smp_mb();
4697 if (!list_empty(&BTRFS_I(inode)->ordered_operations)) {
4698 spin_lock(&root->fs_info->ordered_extent_lock);
4699 list_del_init(&BTRFS_I(inode)->ordered_operations);
4700 spin_unlock(&root->fs_info->ordered_extent_lock);
4701 }
4702
4703 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04004704 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
4705 printk(KERN_ERR "BTRFS: inode %lu: inode still on the orphan"
4706 " list\n", inode->i_ino);
4707 dump_stack();
4708 }
Chris Mason5a3f23d2009-03-31 13:27:11 -04004709 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04004710
Chris Masond3977122009-01-05 21:25:51 -05004711 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04004712 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
4713 if (!ordered)
4714 break;
4715 else {
Chris Masond3977122009-01-05 21:25:51 -05004716 printk(KERN_ERR "btrfs found ordered "
4717 "extent %llu %llu on inode cleanup\n",
4718 (unsigned long long)ordered->file_offset,
4719 (unsigned long long)ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004720 btrfs_remove_ordered_extent(inode, ordered);
4721 btrfs_put_ordered_extent(ordered);
4722 btrfs_put_ordered_extent(ordered);
4723 }
4724 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004725 inode_tree_del(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04004726 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004727 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
4728}
4729
Sven Wegener0ee0fda2008-07-30 16:54:26 -04004730static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04004731{
4732 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
4733
4734 inode_init_once(&ei->vfs_inode);
4735}
4736
4737void btrfs_destroy_cachep(void)
4738{
4739 if (btrfs_inode_cachep)
4740 kmem_cache_destroy(btrfs_inode_cachep);
4741 if (btrfs_trans_handle_cachep)
4742 kmem_cache_destroy(btrfs_trans_handle_cachep);
4743 if (btrfs_transaction_cachep)
4744 kmem_cache_destroy(btrfs_transaction_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04004745 if (btrfs_path_cachep)
4746 kmem_cache_destroy(btrfs_path_cachep);
4747}
4748
4749int btrfs_init_cachep(void)
4750{
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02004751 btrfs_inode_cachep = kmem_cache_create("btrfs_inode_cache",
4752 sizeof(struct btrfs_inode), 0,
4753 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04004754 if (!btrfs_inode_cachep)
4755 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02004756
4757 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle_cache",
4758 sizeof(struct btrfs_trans_handle), 0,
4759 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004760 if (!btrfs_trans_handle_cachep)
4761 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02004762
4763 btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction_cache",
4764 sizeof(struct btrfs_transaction), 0,
4765 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004766 if (!btrfs_transaction_cachep)
4767 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02004768
4769 btrfs_path_cachep = kmem_cache_create("btrfs_path_cache",
4770 sizeof(struct btrfs_path), 0,
4771 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004772 if (!btrfs_path_cachep)
4773 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02004774
Chris Mason39279cc2007-06-12 06:35:45 -04004775 return 0;
4776fail:
4777 btrfs_destroy_cachep();
4778 return -ENOMEM;
4779}
4780
4781static int btrfs_getattr(struct vfsmount *mnt,
4782 struct dentry *dentry, struct kstat *stat)
4783{
4784 struct inode *inode = dentry->d_inode;
4785 generic_fillattr(inode, stat);
Chris Mason3394e162008-11-17 20:42:26 -05004786 stat->dev = BTRFS_I(inode)->root->anon_super.s_dev;
Chris Masond6667462008-01-03 14:51:00 -05004787 stat->blksize = PAGE_CACHE_SIZE;
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004788 stat->blocks = (inode_get_bytes(inode) +
4789 BTRFS_I(inode)->delalloc_bytes) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04004790 return 0;
4791}
4792
Chris Masond3977122009-01-05 21:25:51 -05004793static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
4794 struct inode *new_dir, struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04004795{
4796 struct btrfs_trans_handle *trans;
4797 struct btrfs_root *root = BTRFS_I(old_dir)->root;
4798 struct inode *new_inode = new_dentry->d_inode;
4799 struct inode *old_inode = old_dentry->d_inode;
4800 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004801 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004802 int ret;
4803
Chris Mason3394e162008-11-17 20:42:26 -05004804 /* we're not allowed to rename between subvolumes */
4805 if (BTRFS_I(old_inode)->root->root_key.objectid !=
4806 BTRFS_I(new_dir)->root->root_key.objectid)
4807 return -EXDEV;
4808
Chris Mason39279cc2007-06-12 06:35:45 -04004809 if (S_ISDIR(old_inode->i_mode) && new_inode &&
4810 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE) {
4811 return -ENOTEMPTY;
4812 }
Chris Mason5f39d392007-10-15 16:14:19 -04004813
Chris Mason0660b5a2008-11-17 20:37:39 -05004814 /* to rename a snapshot or subvolume, we need to juggle the
4815 * backrefs. This isn't coded yet
4816 */
4817 if (old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
4818 return -EXDEV;
4819
Josef Bacik6a632092009-02-20 11:00:09 -05004820 ret = btrfs_check_metadata_free_space(root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004821 if (ret)
4822 goto out_unlock;
4823
Chris Mason5a3f23d2009-03-31 13:27:11 -04004824 /*
4825 * we're using rename to replace one file with another.
4826 * and the replacement file is large. Start IO on it now so
4827 * we don't add too much work to the end of the transaction
4828 */
Bartlomiej Zolnierkiewicz4baf8c92009-08-07 13:47:08 -04004829 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size &&
Chris Mason5a3f23d2009-03-31 13:27:11 -04004830 old_inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
4831 filemap_flush(old_inode->i_mapping);
4832
Chris Mason39279cc2007-06-12 06:35:45 -04004833 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04004834
Chris Mason12fcfd22009-03-24 10:24:20 -04004835 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04004836 * make sure the inode gets flushed if it is replacing
4837 * something.
4838 */
4839 if (new_inode && new_inode->i_size &&
4840 old_inode && S_ISREG(old_inode->i_mode)) {
4841 btrfs_add_ordered_operation(trans, root, old_inode);
4842 }
4843
4844 /*
Chris Mason12fcfd22009-03-24 10:24:20 -04004845 * this is an ugly little race, but the rename is required to make
4846 * sure that if we crash, the inode is either at the old name
4847 * or the new one. pinning the log transaction lets us make sure
4848 * we don't allow a log commit to come in after we unlink the
4849 * name but before we add the new name back in.
4850 */
4851 btrfs_pin_log_trans(root);
4852
Chris Mason39279cc2007-06-12 06:35:45 -04004853 btrfs_set_trans_block_group(trans, new_dir);
Chris Mason39279cc2007-06-12 06:35:45 -04004854
Chris Masone02119d2008-09-05 16:13:11 -04004855 btrfs_inc_nlink(old_dentry->d_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004856 old_dir->i_ctime = old_dir->i_mtime = ctime;
4857 new_dir->i_ctime = new_dir->i_mtime = ctime;
4858 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04004859
Chris Mason12fcfd22009-03-24 10:24:20 -04004860 if (old_dentry->d_parent != new_dentry->d_parent)
4861 btrfs_record_unlink_dir(trans, old_dir, old_inode, 1);
4862
Chris Masone02119d2008-09-05 16:13:11 -04004863 ret = btrfs_unlink_inode(trans, root, old_dir, old_dentry->d_inode,
4864 old_dentry->d_name.name,
4865 old_dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04004866 if (ret)
4867 goto out_fail;
4868
4869 if (new_inode) {
4870 new_inode->i_ctime = CURRENT_TIME;
Chris Masone02119d2008-09-05 16:13:11 -04004871 ret = btrfs_unlink_inode(trans, root, new_dir,
4872 new_dentry->d_inode,
4873 new_dentry->d_name.name,
4874 new_dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04004875 if (ret)
4876 goto out_fail;
Josef Bacik7b128762008-07-24 12:17:14 -04004877 if (new_inode->i_nlink == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04004878 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
Josef Bacik7b128762008-07-24 12:17:14 -04004879 if (ret)
4880 goto out_fail;
4881 }
Chris Masone02119d2008-09-05 16:13:11 -04004882
Chris Mason39279cc2007-06-12 06:35:45 -04004883 }
Chris Mason3de45862008-11-17 21:02:50 -05004884 ret = btrfs_set_inode_index(new_dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04004885 if (ret)
4886 goto out_fail;
4887
Chris Masone02119d2008-09-05 16:13:11 -04004888 ret = btrfs_add_link(trans, new_dentry->d_parent->d_inode,
4889 old_inode, new_dentry->d_name.name,
4890 new_dentry->d_name.len, 1, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004891 if (ret)
4892 goto out_fail;
4893
Chris Mason12fcfd22009-03-24 10:24:20 -04004894 btrfs_log_new_name(trans, old_inode, old_dir,
4895 new_dentry->d_parent);
Chris Mason39279cc2007-06-12 06:35:45 -04004896out_fail:
Chris Mason12fcfd22009-03-24 10:24:20 -04004897
4898 /* this btrfs_end_log_trans just allows the current
4899 * log-sub transaction to complete
4900 */
4901 btrfs_end_log_trans(root);
Chris Masonab78c842008-07-29 16:15:18 -04004902 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004903out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04004904 return ret;
4905}
4906
Chris Masond352ac62008-09-29 15:18:18 -04004907/*
4908 * some fairly slow code that needs optimization. This walks the list
4909 * of all the inodes with pending delalloc and forces them to disk.
4910 */
Chris Masonea8c2812008-08-04 23:17:27 -04004911int btrfs_start_delalloc_inodes(struct btrfs_root *root)
4912{
4913 struct list_head *head = &root->fs_info->delalloc_inodes;
4914 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04004915 struct inode *inode;
Chris Masonea8c2812008-08-04 23:17:27 -04004916
Yan Zhengc146afa2008-11-12 14:34:12 -05004917 if (root->fs_info->sb->s_flags & MS_RDONLY)
4918 return -EROFS;
4919
Chris Mason75eff682008-12-15 15:54:40 -05004920 spin_lock(&root->fs_info->delalloc_lock);
Chris Masond3977122009-01-05 21:25:51 -05004921 while (!list_empty(head)) {
Chris Masonea8c2812008-08-04 23:17:27 -04004922 binode = list_entry(head->next, struct btrfs_inode,
4923 delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04004924 inode = igrab(&binode->vfs_inode);
4925 if (!inode)
4926 list_del_init(&binode->delalloc_inodes);
Chris Mason75eff682008-12-15 15:54:40 -05004927 spin_unlock(&root->fs_info->delalloc_lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04004928 if (inode) {
Chris Mason8c8bee12008-09-29 11:19:10 -04004929 filemap_flush(inode->i_mapping);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04004930 iput(inode);
4931 }
4932 cond_resched();
Chris Mason75eff682008-12-15 15:54:40 -05004933 spin_lock(&root->fs_info->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04004934 }
Chris Mason75eff682008-12-15 15:54:40 -05004935 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -04004936
4937 /* the filemap_flush will queue IO into the worker threads, but
4938 * we have to make sure the IO is actually started and that
4939 * ordered extents get created before we return
4940 */
4941 atomic_inc(&root->fs_info->async_submit_draining);
Chris Masond3977122009-01-05 21:25:51 -05004942 while (atomic_read(&root->fs_info->nr_async_submits) ||
Chris Mason771ed682008-11-06 22:02:51 -05004943 atomic_read(&root->fs_info->async_delalloc_pages)) {
Chris Mason8c8bee12008-09-29 11:19:10 -04004944 wait_event(root->fs_info->async_submit_wait,
Chris Mason771ed682008-11-06 22:02:51 -05004945 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
4946 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee12008-09-29 11:19:10 -04004947 }
4948 atomic_dec(&root->fs_info->async_submit_draining);
Chris Masonea8c2812008-08-04 23:17:27 -04004949 return 0;
4950}
4951
Chris Mason39279cc2007-06-12 06:35:45 -04004952static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
4953 const char *symname)
4954{
4955 struct btrfs_trans_handle *trans;
4956 struct btrfs_root *root = BTRFS_I(dir)->root;
4957 struct btrfs_path *path;
4958 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05004959 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004960 int err;
4961 int drop_inode = 0;
4962 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004963 u64 index = 0 ;
Chris Mason39279cc2007-06-12 06:35:45 -04004964 int name_len;
4965 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04004966 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04004967 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04004968 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05004969 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004970
4971 name_len = strlen(symname) + 1;
4972 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
4973 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05004974
Josef Bacik6a632092009-02-20 11:00:09 -05004975 err = btrfs_check_metadata_free_space(root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004976 if (err)
4977 goto out_fail;
4978
Chris Mason39279cc2007-06-12 06:35:45 -04004979 trans = btrfs_start_transaction(root, 1);
4980 btrfs_set_trans_block_group(trans, dir);
4981
4982 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
4983 if (err) {
4984 err = -ENOSPC;
4985 goto out_unlock;
4986 }
4987
Josef Bacikaec74772008-07-24 12:12:38 -04004988 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05004989 dentry->d_name.len,
4990 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004991 BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO,
4992 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04004993 err = PTR_ERR(inode);
4994 if (IS_ERR(inode))
4995 goto out_unlock;
4996
Jim Owens0279b4c2009-02-04 09:29:13 -05004997 err = btrfs_init_inode_security(inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04004998 if (err) {
4999 drop_inode = 1;
5000 goto out_unlock;
5001 }
5002
Chris Mason39279cc2007-06-12 06:35:45 -04005003 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04005004 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04005005 if (err)
5006 drop_inode = 1;
5007 else {
5008 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04005009 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04005010 inode->i_fop = &btrfs_file_operations;
5011 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05005012 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04005013 }
Chris Mason39279cc2007-06-12 06:35:45 -04005014 btrfs_update_inode_block_group(trans, inode);
5015 btrfs_update_inode_block_group(trans, dir);
5016 if (drop_inode)
5017 goto out_unlock;
5018
5019 path = btrfs_alloc_path();
5020 BUG_ON(!path);
5021 key.objectid = inode->i_ino;
5022 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005023 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
5024 datasize = btrfs_file_extent_calc_inline_size(name_len);
5025 err = btrfs_insert_empty_item(trans, root, path, &key,
5026 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04005027 if (err) {
5028 drop_inode = 1;
5029 goto out_unlock;
5030 }
Chris Mason5f39d392007-10-15 16:14:19 -04005031 leaf = path->nodes[0];
5032 ei = btrfs_item_ptr(leaf, path->slots[0],
5033 struct btrfs_file_extent_item);
5034 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
5035 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04005036 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -04005037 btrfs_set_file_extent_encryption(leaf, ei, 0);
5038 btrfs_set_file_extent_compression(leaf, ei, 0);
5039 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
5040 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
5041
Chris Mason39279cc2007-06-12 06:35:45 -04005042 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04005043 write_extent_buffer(leaf, symname, ptr, name_len);
5044 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04005045 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04005046
Chris Mason39279cc2007-06-12 06:35:45 -04005047 inode->i_op = &btrfs_symlink_inode_operations;
5048 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04005049 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Yan Zhengd899e052008-10-30 14:25:28 -04005050 inode_set_bytes(inode, name_len);
Chris Masondbe674a2008-07-17 12:54:05 -04005051 btrfs_i_size_write(inode, name_len - 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04005052 err = btrfs_update_inode(trans, root, inode);
5053 if (err)
5054 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04005055
5056out_unlock:
Chris Masond3c2fdc2007-09-17 10:58:06 -04005057 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04005058 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05005059out_fail:
Chris Mason39279cc2007-06-12 06:35:45 -04005060 if (drop_inode) {
5061 inode_dec_link_count(inode);
5062 iput(inode);
5063 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04005064 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04005065 return err;
5066}
Chris Mason16432982008-04-10 10:23:21 -04005067
Chris Mason546888d2009-04-21 11:53:38 -04005068static int prealloc_file_range(struct btrfs_trans_handle *trans,
5069 struct inode *inode, u64 start, u64 end,
Chris Masone980b502009-04-24 14:39:24 -04005070 u64 locked_end, u64 alloc_hint, int mode)
Yan Zhengd899e052008-10-30 14:25:28 -04005071{
Yan Zhengd899e052008-10-30 14:25:28 -04005072 struct btrfs_root *root = BTRFS_I(inode)->root;
5073 struct btrfs_key ins;
5074 u64 alloc_size;
5075 u64 cur_offset = start;
5076 u64 num_bytes = end - start;
5077 int ret = 0;
5078
Yan Zhengd899e052008-10-30 14:25:28 -04005079 while (num_bytes > 0) {
5080 alloc_size = min(num_bytes, root->fs_info->max_extent);
5081 ret = btrfs_reserve_extent(trans, root, alloc_size,
5082 root->sectorsize, 0, alloc_hint,
5083 (u64)-1, &ins, 1);
5084 if (ret) {
5085 WARN_ON(1);
5086 goto out;
5087 }
5088 ret = insert_reserved_file_extent(trans, inode,
5089 cur_offset, ins.objectid,
5090 ins.offset, ins.offset,
Chris Masone980b502009-04-24 14:39:24 -04005091 ins.offset, locked_end,
5092 0, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04005093 BTRFS_FILE_EXTENT_PREALLOC);
5094 BUG_ON(ret);
Chris Masona1ed8352009-09-11 12:27:37 -04005095 btrfs_drop_extent_cache(inode, cur_offset,
5096 cur_offset + ins.offset -1, 0);
Yan Zhengd899e052008-10-30 14:25:28 -04005097 num_bytes -= ins.offset;
5098 cur_offset += ins.offset;
5099 alloc_hint = ins.objectid + ins.offset;
5100 }
5101out:
5102 if (cur_offset > start) {
5103 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +02005104 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -04005105 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
5106 cur_offset > i_size_read(inode))
5107 btrfs_i_size_write(inode, cur_offset);
5108 ret = btrfs_update_inode(trans, root, inode);
5109 BUG_ON(ret);
5110 }
5111
Yan Zhengd899e052008-10-30 14:25:28 -04005112 return ret;
5113}
5114
5115static long btrfs_fallocate(struct inode *inode, int mode,
5116 loff_t offset, loff_t len)
5117{
5118 u64 cur_offset;
5119 u64 last_byte;
5120 u64 alloc_start;
5121 u64 alloc_end;
5122 u64 alloc_hint = 0;
Chris Masone980b502009-04-24 14:39:24 -04005123 u64 locked_end;
Yan Zhengd899e052008-10-30 14:25:28 -04005124 u64 mask = BTRFS_I(inode)->root->sectorsize - 1;
5125 struct extent_map *em;
Chris Mason546888d2009-04-21 11:53:38 -04005126 struct btrfs_trans_handle *trans;
Josef Bacika970b0a2009-06-27 21:07:34 -04005127 struct btrfs_root *root;
Yan Zhengd899e052008-10-30 14:25:28 -04005128 int ret;
5129
5130 alloc_start = offset & ~mask;
5131 alloc_end = (offset + len + mask) & ~mask;
5132
Chris Mason546888d2009-04-21 11:53:38 -04005133 /*
5134 * wait for ordered IO before we have any locks. We'll loop again
5135 * below with the locks held.
5136 */
5137 btrfs_wait_ordered_range(inode, alloc_start, alloc_end - alloc_start);
5138
Yan Zhengd899e052008-10-30 14:25:28 -04005139 mutex_lock(&inode->i_mutex);
5140 if (alloc_start > inode->i_size) {
5141 ret = btrfs_cont_expand(inode, alloc_start);
5142 if (ret)
5143 goto out;
5144 }
5145
Josef Bacika970b0a2009-06-27 21:07:34 -04005146 root = BTRFS_I(inode)->root;
5147
5148 ret = btrfs_check_data_free_space(root, inode,
5149 alloc_end - alloc_start);
5150 if (ret)
5151 goto out;
5152
Chris Masone980b502009-04-24 14:39:24 -04005153 locked_end = alloc_end - 1;
Yan Zhengd899e052008-10-30 14:25:28 -04005154 while (1) {
5155 struct btrfs_ordered_extent *ordered;
Chris Mason546888d2009-04-21 11:53:38 -04005156
5157 trans = btrfs_start_transaction(BTRFS_I(inode)->root, 1);
5158 if (!trans) {
5159 ret = -EIO;
Josef Bacika970b0a2009-06-27 21:07:34 -04005160 goto out_free;
Chris Mason546888d2009-04-21 11:53:38 -04005161 }
5162
5163 /* the extent lock is ordered inside the running
5164 * transaction
5165 */
Chris Masone980b502009-04-24 14:39:24 -04005166 lock_extent(&BTRFS_I(inode)->io_tree, alloc_start, locked_end,
5167 GFP_NOFS);
Yan Zhengd899e052008-10-30 14:25:28 -04005168 ordered = btrfs_lookup_first_ordered_extent(inode,
5169 alloc_end - 1);
5170 if (ordered &&
5171 ordered->file_offset + ordered->len > alloc_start &&
5172 ordered->file_offset < alloc_end) {
5173 btrfs_put_ordered_extent(ordered);
5174 unlock_extent(&BTRFS_I(inode)->io_tree,
Chris Masone980b502009-04-24 14:39:24 -04005175 alloc_start, locked_end, GFP_NOFS);
Chris Mason546888d2009-04-21 11:53:38 -04005176 btrfs_end_transaction(trans, BTRFS_I(inode)->root);
5177
5178 /*
5179 * we can't wait on the range with the transaction
5180 * running or with the extent lock held
5181 */
Yan Zhengd899e052008-10-30 14:25:28 -04005182 btrfs_wait_ordered_range(inode, alloc_start,
5183 alloc_end - alloc_start);
5184 } else {
5185 if (ordered)
5186 btrfs_put_ordered_extent(ordered);
5187 break;
5188 }
5189 }
5190
5191 cur_offset = alloc_start;
5192 while (1) {
5193 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
5194 alloc_end - cur_offset, 0);
5195 BUG_ON(IS_ERR(em) || !em);
5196 last_byte = min(extent_map_end(em), alloc_end);
5197 last_byte = (last_byte + mask) & ~mask;
5198 if (em->block_start == EXTENT_MAP_HOLE) {
Chris Mason546888d2009-04-21 11:53:38 -04005199 ret = prealloc_file_range(trans, inode, cur_offset,
Chris Masone980b502009-04-24 14:39:24 -04005200 last_byte, locked_end + 1,
5201 alloc_hint, mode);
Yan Zhengd899e052008-10-30 14:25:28 -04005202 if (ret < 0) {
5203 free_extent_map(em);
5204 break;
5205 }
5206 }
5207 if (em->block_start <= EXTENT_MAP_LAST_BYTE)
5208 alloc_hint = em->block_start;
5209 free_extent_map(em);
5210
5211 cur_offset = last_byte;
5212 if (cur_offset >= alloc_end) {
5213 ret = 0;
5214 break;
5215 }
5216 }
Chris Masone980b502009-04-24 14:39:24 -04005217 unlock_extent(&BTRFS_I(inode)->io_tree, alloc_start, locked_end,
Yan Zhengd899e052008-10-30 14:25:28 -04005218 GFP_NOFS);
Chris Mason546888d2009-04-21 11:53:38 -04005219
5220 btrfs_end_transaction(trans, BTRFS_I(inode)->root);
Josef Bacika970b0a2009-06-27 21:07:34 -04005221out_free:
5222 btrfs_free_reserved_data_space(root, inode, alloc_end - alloc_start);
Yan Zhengd899e052008-10-30 14:25:28 -04005223out:
5224 mutex_unlock(&inode->i_mutex);
5225 return ret;
5226}
5227
Chris Masone6dcd2d2008-07-17 12:53:50 -04005228static int btrfs_set_page_dirty(struct page *page)
5229{
Chris Masone6dcd2d2008-07-17 12:53:50 -04005230 return __set_page_dirty_nobuffers(page);
5231}
5232
Sven Wegener0ee0fda2008-07-30 16:54:26 -04005233static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -05005234{
Christoph Hellwig6cbff002009-04-17 10:37:41 +02005235 if ((BTRFS_I(inode)->flags & BTRFS_INODE_READONLY) && (mask & MAY_WRITE))
Yanfdebe2b2008-01-14 13:26:08 -05005236 return -EACCES;
Josef Bacik33268ea2008-07-24 12:16:36 -04005237 return generic_permission(inode, mask, btrfs_check_acl);
Yanfdebe2b2008-01-14 13:26:08 -05005238}
Chris Mason39279cc2007-06-12 06:35:45 -04005239
5240static struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -05005241 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -04005242 .lookup = btrfs_lookup,
5243 .create = btrfs_create,
5244 .unlink = btrfs_unlink,
5245 .link = btrfs_link,
5246 .mkdir = btrfs_mkdir,
5247 .rmdir = btrfs_rmdir,
5248 .rename = btrfs_rename,
5249 .symlink = btrfs_symlink,
5250 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04005251 .mknod = btrfs_mknod,
Christoph Hellwig95819c02008-08-28 06:21:17 -04005252 .setxattr = btrfs_setxattr,
5253 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05005254 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04005255 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05005256 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04005257};
Chris Mason39279cc2007-06-12 06:35:45 -04005258static struct inode_operations btrfs_dir_ro_inode_operations = {
5259 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05005260 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04005261};
Chris Mason39279cc2007-06-12 06:35:45 -04005262static struct file_operations btrfs_dir_file_operations = {
5263 .llseek = generic_file_llseek,
5264 .read = generic_read_dir,
David Woodhousecbdf5a22008-08-06 19:42:33 +01005265 .readdir = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04005266 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04005267#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04005268 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04005269#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04005270 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -04005271 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -04005272};
5273
Chris Masond1310b22008-01-24 16:13:08 -05005274static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04005275 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05005276 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04005277 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04005278 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005279 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04005280 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Mason1259ab72008-05-12 13:39:03 -04005281 .readpage_io_failed_hook = btrfs_io_failed_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05005282 .set_bit_hook = btrfs_set_bit_hook,
5283 .clear_bit_hook = btrfs_clear_bit_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04005284};
5285
Chris Mason35054392009-01-21 13:11:13 -05005286/*
5287 * btrfs doesn't support the bmap operation because swapfiles
5288 * use bmap to make a mapping of extents in the file. They assume
5289 * these extents won't change over the life of the file and they
5290 * use the bmap result to do IO directly to the drive.
5291 *
5292 * the btrfs bmap call would return logical addresses that aren't
5293 * suitable for IO and they also will change frequently as COW
5294 * operations happen. So, swapfile + btrfs == corruption.
5295 *
5296 * For now we're avoiding this by dropping bmap.
5297 */
Chris Mason39279cc2007-06-12 06:35:45 -04005298static struct address_space_operations btrfs_aops = {
5299 .readpage = btrfs_readpage,
5300 .writepage = btrfs_writepage,
Chris Masonb293f022007-11-01 19:45:34 -04005301 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05005302 .readpages = btrfs_readpages,
Chris Mason39279cc2007-06-12 06:35:45 -04005303 .sync_page = block_sync_page,
Chris Mason16432982008-04-10 10:23:21 -04005304 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04005305 .invalidatepage = btrfs_invalidatepage,
5306 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005307 .set_page_dirty = btrfs_set_page_dirty,
Chris Mason39279cc2007-06-12 06:35:45 -04005308};
5309
5310static struct address_space_operations btrfs_symlink_aops = {
5311 .readpage = btrfs_readpage,
5312 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04005313 .invalidatepage = btrfs_invalidatepage,
5314 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04005315};
5316
5317static struct inode_operations btrfs_file_inode_operations = {
5318 .truncate = btrfs_truncate,
5319 .getattr = btrfs_getattr,
5320 .setattr = btrfs_setattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04005321 .setxattr = btrfs_setxattr,
5322 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05005323 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04005324 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05005325 .permission = btrfs_permission,
Yan Zhengd899e052008-10-30 14:25:28 -04005326 .fallocate = btrfs_fallocate,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05005327 .fiemap = btrfs_fiemap,
Chris Mason39279cc2007-06-12 06:35:45 -04005328};
Josef Bacik618e21d2007-07-11 10:18:17 -04005329static struct inode_operations btrfs_special_inode_operations = {
5330 .getattr = btrfs_getattr,
5331 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05005332 .permission = btrfs_permission,
Christoph Hellwig95819c02008-08-28 06:21:17 -04005333 .setxattr = btrfs_setxattr,
5334 .getxattr = btrfs_getxattr,
Josef Bacik33268ea2008-07-24 12:16:36 -04005335 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04005336 .removexattr = btrfs_removexattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04005337};
Chris Mason39279cc2007-06-12 06:35:45 -04005338static struct inode_operations btrfs_symlink_inode_operations = {
5339 .readlink = generic_readlink,
5340 .follow_link = page_follow_link_light,
5341 .put_link = page_put_link,
Yanfdebe2b2008-01-14 13:26:08 -05005342 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -05005343 .setxattr = btrfs_setxattr,
5344 .getxattr = btrfs_getxattr,
5345 .listxattr = btrfs_listxattr,
5346 .removexattr = btrfs_removexattr,
Chris Mason39279cc2007-06-12 06:35:45 -04005347};