blob: d83025063ee7676b827244ebf8e411a4ee984e27 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090039#include <linux/slab.h>
Chris Mason4b4e25f2008-11-20 10:22:27 -050040#include "compat.h"
Chris Mason39279cc2007-06-12 06:35:45 -040041#include "ctree.h"
42#include "disk-io.h"
43#include "transaction.h"
44#include "btrfs_inode.h"
45#include "ioctl.h"
46#include "print-tree.h"
Chris Mason0b86a832008-03-24 15:01:56 -040047#include "volumes.h"
Chris Masone6dcd2d2008-07-17 12:53:50 -040048#include "ordered-data.h"
Christoph Hellwig95819c02008-08-28 06:21:17 -040049#include "xattr.h"
Chris Masone02119d2008-09-05 16:13:11 -040050#include "tree-log.h"
Chris Masonc8b97812008-10-29 14:49:59 -040051#include "compression.h"
Chris Masonb4ce94d2009-02-04 09:25:08 -050052#include "locking.h"
Josef Bacikdc89e982011-01-28 17:05:48 -050053#include "free-space-cache.h"
Chris Mason39279cc2007-06-12 06:35:45 -040054
55struct btrfs_iget_args {
56 u64 ino;
57 struct btrfs_root *root;
58};
59
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070060static const struct inode_operations btrfs_dir_inode_operations;
61static const struct inode_operations btrfs_symlink_inode_operations;
62static const struct inode_operations btrfs_dir_ro_inode_operations;
63static const struct inode_operations btrfs_special_inode_operations;
64static const struct inode_operations btrfs_file_inode_operations;
Alexey Dobriyan7f094102009-09-21 17:01:10 -070065static const struct address_space_operations btrfs_aops;
66static const struct address_space_operations btrfs_symlink_aops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -070067static const struct file_operations btrfs_dir_file_operations;
Chris Masond1310b22008-01-24 16:13:08 -050068static struct extent_io_ops btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -040069
70static struct kmem_cache *btrfs_inode_cachep;
71struct kmem_cache *btrfs_trans_handle_cachep;
72struct kmem_cache *btrfs_transaction_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040073struct kmem_cache *btrfs_path_cachep;
Josef Bacikdc89e982011-01-28 17:05:48 -050074struct kmem_cache *btrfs_free_space_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040075
76#define S_SHIFT 12
77static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
78 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
79 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
80 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
81 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
82 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
83 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
84 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
85};
86
Josef Bacika41ad392011-01-31 15:30:16 -050087static int btrfs_setsize(struct inode *inode, loff_t newsize);
88static int btrfs_truncate(struct inode *inode);
Chris Masonc8b97812008-10-29 14:49:59 -040089static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end);
Chris Mason771ed682008-11-06 22:02:51 -050090static noinline int cow_file_range(struct inode *inode,
91 struct page *locked_page,
92 u64 start, u64 end, int *page_started,
93 unsigned long *nr_written, int unlock);
Josef Bacik7b128762008-07-24 12:17:14 -040094
Yan, Zhengf34f57a2009-11-12 09:35:27 +000095static int btrfs_init_inode_security(struct btrfs_trans_handle *trans,
96 struct inode *inode, struct inode *dir)
Jim Owens0279b4c2009-02-04 09:29:13 -050097{
98 int err;
99
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000100 err = btrfs_init_acl(trans, inode, dir);
Jim Owens0279b4c2009-02-04 09:29:13 -0500101 if (!err)
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000102 err = btrfs_xattr_security_init(trans, inode, dir);
Jim Owens0279b4c2009-02-04 09:29:13 -0500103 return err;
104}
105
Chris Masond352ac62008-09-29 15:18:18 -0400106/*
Chris Masonc8b97812008-10-29 14:49:59 -0400107 * this does all the hard work for inserting an inline extent into
108 * the btree. The caller should have done a btrfs_drop_extents so that
109 * no overlapping inline items exist in the btree
110 */
Chris Masond3977122009-01-05 21:25:51 -0500111static noinline int insert_inline_extent(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400112 struct btrfs_root *root, struct inode *inode,
113 u64 start, size_t size, size_t compressed_size,
114 struct page **compressed_pages)
115{
116 struct btrfs_key key;
117 struct btrfs_path *path;
118 struct extent_buffer *leaf;
119 struct page *page = NULL;
120 char *kaddr;
121 unsigned long ptr;
122 struct btrfs_file_extent_item *ei;
123 int err = 0;
124 int ret;
125 size_t cur_size = size;
126 size_t datasize;
127 unsigned long offset;
Li Zefan261507a02010-12-17 14:21:50 +0800128 int compress_type = BTRFS_COMPRESS_NONE;
Chris Masonc8b97812008-10-29 14:49:59 -0400129
130 if (compressed_size && compressed_pages) {
Li Zefan261507a02010-12-17 14:21:50 +0800131 compress_type = root->fs_info->compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -0400132 cur_size = compressed_size;
133 }
134
Chris Masond3977122009-01-05 21:25:51 -0500135 path = btrfs_alloc_path();
136 if (!path)
Chris Masonc8b97812008-10-29 14:49:59 -0400137 return -ENOMEM;
138
Chris Masonb9473432009-03-13 11:00:37 -0400139 path->leave_spinning = 1;
Chris Masonc8b97812008-10-29 14:49:59 -0400140 btrfs_set_trans_block_group(trans, inode);
141
142 key.objectid = inode->i_ino;
143 key.offset = start;
144 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
Chris Masonc8b97812008-10-29 14:49:59 -0400145 datasize = btrfs_file_extent_calc_inline_size(cur_size);
146
147 inode_add_bytes(inode, size);
148 ret = btrfs_insert_empty_item(trans, root, path, &key,
149 datasize);
150 BUG_ON(ret);
151 if (ret) {
152 err = ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400153 goto fail;
154 }
155 leaf = path->nodes[0];
156 ei = btrfs_item_ptr(leaf, path->slots[0],
157 struct btrfs_file_extent_item);
158 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
159 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
160 btrfs_set_file_extent_encryption(leaf, ei, 0);
161 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
162 btrfs_set_file_extent_ram_bytes(leaf, ei, size);
163 ptr = btrfs_file_extent_inline_start(ei);
164
Li Zefan261507a02010-12-17 14:21:50 +0800165 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -0400166 struct page *cpage;
167 int i = 0;
Chris Masond3977122009-01-05 21:25:51 -0500168 while (compressed_size > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -0400169 cpage = compressed_pages[i];
Chris Mason5b050f02008-11-11 09:34:41 -0500170 cur_size = min_t(unsigned long, compressed_size,
Chris Masonc8b97812008-10-29 14:49:59 -0400171 PAGE_CACHE_SIZE);
172
Chris Masonb9473432009-03-13 11:00:37 -0400173 kaddr = kmap_atomic(cpage, KM_USER0);
Chris Masonc8b97812008-10-29 14:49:59 -0400174 write_extent_buffer(leaf, kaddr, ptr, cur_size);
Chris Masonb9473432009-03-13 11:00:37 -0400175 kunmap_atomic(kaddr, KM_USER0);
Chris Masonc8b97812008-10-29 14:49:59 -0400176
177 i++;
178 ptr += cur_size;
179 compressed_size -= cur_size;
180 }
181 btrfs_set_file_extent_compression(leaf, ei,
Li Zefan261507a02010-12-17 14:21:50 +0800182 compress_type);
Chris Masonc8b97812008-10-29 14:49:59 -0400183 } else {
184 page = find_get_page(inode->i_mapping,
185 start >> PAGE_CACHE_SHIFT);
186 btrfs_set_file_extent_compression(leaf, ei, 0);
187 kaddr = kmap_atomic(page, KM_USER0);
188 offset = start & (PAGE_CACHE_SIZE - 1);
189 write_extent_buffer(leaf, kaddr + offset, ptr, size);
190 kunmap_atomic(kaddr, KM_USER0);
191 page_cache_release(page);
192 }
193 btrfs_mark_buffer_dirty(leaf);
194 btrfs_free_path(path);
195
Yan, Zhengc2167752009-11-12 09:34:21 +0000196 /*
197 * we're an inline extent, so nobody can
198 * extend the file past i_size without locking
199 * a page we already have locked.
200 *
201 * We must do any isize and inode updates
202 * before we unlock the pages. Otherwise we
203 * could end up racing with unlink.
204 */
Chris Masonc8b97812008-10-29 14:49:59 -0400205 BTRFS_I(inode)->disk_i_size = inode->i_size;
206 btrfs_update_inode(trans, root, inode);
Yan, Zhengc2167752009-11-12 09:34:21 +0000207
Chris Masonc8b97812008-10-29 14:49:59 -0400208 return 0;
209fail:
210 btrfs_free_path(path);
211 return err;
212}
213
214
215/*
216 * conditionally insert an inline extent into the file. This
217 * does the checks required to make sure the data is small enough
218 * to fit as an inline extent.
219 */
Chris Mason7f366cf2009-03-12 20:12:45 -0400220static noinline int cow_file_range_inline(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400221 struct btrfs_root *root,
222 struct inode *inode, u64 start, u64 end,
223 size_t compressed_size,
224 struct page **compressed_pages)
225{
226 u64 isize = i_size_read(inode);
227 u64 actual_end = min(end + 1, isize);
228 u64 inline_len = actual_end - start;
229 u64 aligned_end = (end + root->sectorsize - 1) &
230 ~((u64)root->sectorsize - 1);
231 u64 hint_byte;
232 u64 data_len = inline_len;
233 int ret;
234
235 if (compressed_size)
236 data_len = compressed_size;
237
238 if (start > 0 ||
Chris Mason70b99e62008-10-31 12:46:39 -0400239 actual_end >= PAGE_CACHE_SIZE ||
Chris Masonc8b97812008-10-29 14:49:59 -0400240 data_len >= BTRFS_MAX_INLINE_DATA_SIZE(root) ||
241 (!compressed_size &&
242 (actual_end & (root->sectorsize - 1)) == 0) ||
243 end + 1 < isize ||
244 data_len > root->fs_info->max_inline) {
245 return 1;
246 }
247
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000248 ret = btrfs_drop_extents(trans, inode, start, aligned_end,
Chris Masona1ed8352009-09-11 12:27:37 -0400249 &hint_byte, 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400250 BUG_ON(ret);
251
252 if (isize > actual_end)
253 inline_len = min_t(u64, isize, actual_end);
254 ret = insert_inline_extent(trans, root, inode, start,
255 inline_len, compressed_size,
256 compressed_pages);
257 BUG_ON(ret);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400258 btrfs_delalloc_release_metadata(inode, end + 1 - start);
Chris Masona1ed8352009-09-11 12:27:37 -0400259 btrfs_drop_extent_cache(inode, start, aligned_end - 1, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400260 return 0;
261}
262
Chris Mason771ed682008-11-06 22:02:51 -0500263struct async_extent {
264 u64 start;
265 u64 ram_size;
266 u64 compressed_size;
267 struct page **pages;
268 unsigned long nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800269 int compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500270 struct list_head list;
271};
272
273struct async_cow {
274 struct inode *inode;
275 struct btrfs_root *root;
276 struct page *locked_page;
277 u64 start;
278 u64 end;
279 struct list_head extents;
280 struct btrfs_work work;
281};
282
283static noinline int add_async_extent(struct async_cow *cow,
284 u64 start, u64 ram_size,
285 u64 compressed_size,
286 struct page **pages,
Li Zefan261507a02010-12-17 14:21:50 +0800287 unsigned long nr_pages,
288 int compress_type)
Chris Mason771ed682008-11-06 22:02:51 -0500289{
290 struct async_extent *async_extent;
291
292 async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS);
293 async_extent->start = start;
294 async_extent->ram_size = ram_size;
295 async_extent->compressed_size = compressed_size;
296 async_extent->pages = pages;
297 async_extent->nr_pages = nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800298 async_extent->compress_type = compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500299 list_add_tail(&async_extent->list, &cow->extents);
300 return 0;
301}
302
Chris Masonc8b97812008-10-29 14:49:59 -0400303/*
Chris Mason771ed682008-11-06 22:02:51 -0500304 * we create compressed extents in two phases. The first
305 * phase compresses a range of pages that have already been
306 * locked (both pages and state bits are locked).
Chris Masonc8b97812008-10-29 14:49:59 -0400307 *
Chris Mason771ed682008-11-06 22:02:51 -0500308 * This is done inside an ordered work queue, and the compression
309 * is spread across many cpus. The actual IO submission is step
310 * two, and the ordered work queue takes care of making sure that
311 * happens in the same order things were put onto the queue by
312 * writepages and friends.
Chris Masonc8b97812008-10-29 14:49:59 -0400313 *
Chris Mason771ed682008-11-06 22:02:51 -0500314 * If this code finds it can't get good compression, it puts an
315 * entry onto the work queue to write the uncompressed bytes. This
316 * makes sure that both compressed inodes and uncompressed inodes
317 * are written in the same order that pdflush sent them down.
Chris Masond352ac62008-09-29 15:18:18 -0400318 */
Chris Mason771ed682008-11-06 22:02:51 -0500319static noinline int compress_file_range(struct inode *inode,
320 struct page *locked_page,
321 u64 start, u64 end,
322 struct async_cow *async_cow,
323 int *num_added)
Chris Masonb888db22007-08-27 16:49:44 -0400324{
325 struct btrfs_root *root = BTRFS_I(inode)->root;
326 struct btrfs_trans_handle *trans;
Chris Masondb945352007-10-15 16:15:53 -0400327 u64 num_bytes;
Chris Masondb945352007-10-15 16:15:53 -0400328 u64 blocksize = root->sectorsize;
Chris Masonc8b97812008-10-29 14:49:59 -0400329 u64 actual_end;
Chris Mason42dc7ba2008-12-15 11:44:56 -0500330 u64 isize = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400331 int ret = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400332 struct page **pages = NULL;
333 unsigned long nr_pages;
334 unsigned long nr_pages_ret = 0;
335 unsigned long total_compressed = 0;
336 unsigned long total_in = 0;
337 unsigned long max_compressed = 128 * 1024;
Chris Mason771ed682008-11-06 22:02:51 -0500338 unsigned long max_uncompressed = 128 * 1024;
Chris Masonc8b97812008-10-29 14:49:59 -0400339 int i;
340 int will_compress;
Li Zefan261507a02010-12-17 14:21:50 +0800341 int compress_type = root->fs_info->compress_type;
Chris Masonb888db22007-08-27 16:49:44 -0400342
Chris Mason42dc7ba2008-12-15 11:44:56 -0500343 actual_end = min_t(u64, isize, end + 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400344again:
345 will_compress = 0;
346 nr_pages = (end >> PAGE_CACHE_SHIFT) - (start >> PAGE_CACHE_SHIFT) + 1;
347 nr_pages = min(nr_pages, (128 * 1024UL) / PAGE_CACHE_SIZE);
348
Chris Masonf03d9302009-02-04 09:31:06 -0500349 /*
350 * we don't want to send crud past the end of i_size through
351 * compression, that's just a waste of CPU time. So, if the
352 * end of the file is before the start of our current
353 * requested range of bytes, we bail out to the uncompressed
354 * cleanup code that can deal with all of this.
355 *
356 * It isn't really the fastest way to fix things, but this is a
357 * very uncommon corner.
358 */
359 if (actual_end <= start)
360 goto cleanup_and_bail_uncompressed;
361
Chris Masonc8b97812008-10-29 14:49:59 -0400362 total_compressed = actual_end - start;
363
364 /* we want to make sure that amount of ram required to uncompress
365 * an extent is reasonable, so we limit the total size in ram
Chris Mason771ed682008-11-06 22:02:51 -0500366 * of a compressed extent to 128k. This is a crucial number
367 * because it also controls how easily we can spread reads across
368 * cpus for decompression.
369 *
370 * We also want to make sure the amount of IO required to do
371 * a random read is reasonably small, so we limit the size of
372 * a compressed extent to 128k.
Chris Masonc8b97812008-10-29 14:49:59 -0400373 */
374 total_compressed = min(total_compressed, max_uncompressed);
Chris Masondb945352007-10-15 16:15:53 -0400375 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
Chris Masonbe20aa92007-12-17 20:14:01 -0500376 num_bytes = max(blocksize, num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -0400377 total_in = 0;
378 ret = 0;
Chris Masondb945352007-10-15 16:15:53 -0400379
Chris Mason771ed682008-11-06 22:02:51 -0500380 /*
381 * we do compression for mount -o compress and when the
382 * inode has not been flagged as nocompress. This flag can
383 * change at any time if we discover bad compression ratios.
Chris Masonc8b97812008-10-29 14:49:59 -0400384 */
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200385 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS) &&
Chris Mason1e701a32010-03-11 09:42:04 -0500386 (btrfs_test_opt(root, COMPRESS) ||
387 (BTRFS_I(inode)->force_compress))) {
Chris Masonc8b97812008-10-29 14:49:59 -0400388 WARN_ON(pages);
Chris Masoncfbc2462008-10-30 13:22:14 -0400389 pages = kzalloc(sizeof(struct page *) * nr_pages, GFP_NOFS);
Chris Mason179e29e2007-11-01 11:28:41 -0400390
Li Zefan261507a02010-12-17 14:21:50 +0800391 if (BTRFS_I(inode)->force_compress)
392 compress_type = BTRFS_I(inode)->force_compress;
393
394 ret = btrfs_compress_pages(compress_type,
395 inode->i_mapping, start,
396 total_compressed, pages,
397 nr_pages, &nr_pages_ret,
398 &total_in,
399 &total_compressed,
400 max_compressed);
Chris Masonc8b97812008-10-29 14:49:59 -0400401
402 if (!ret) {
403 unsigned long offset = total_compressed &
404 (PAGE_CACHE_SIZE - 1);
405 struct page *page = pages[nr_pages_ret - 1];
406 char *kaddr;
407
408 /* zero the tail end of the last page, we might be
409 * sending it down to disk
410 */
411 if (offset) {
412 kaddr = kmap_atomic(page, KM_USER0);
413 memset(kaddr + offset, 0,
414 PAGE_CACHE_SIZE - offset);
415 kunmap_atomic(kaddr, KM_USER0);
416 }
417 will_compress = 1;
418 }
419 }
420 if (start == 0) {
Chris Mason771ed682008-11-06 22:02:51 -0500421 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +0000422 BUG_ON(IS_ERR(trans));
Chris Mason771ed682008-11-06 22:02:51 -0500423 btrfs_set_trans_block_group(trans, inode);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400424 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason771ed682008-11-06 22:02:51 -0500425
Chris Masonc8b97812008-10-29 14:49:59 -0400426 /* lets try to make an inline extent */
Chris Mason771ed682008-11-06 22:02:51 -0500427 if (ret || total_in < (actual_end - start)) {
Chris Masonc8b97812008-10-29 14:49:59 -0400428 /* we didn't compress the entire range, try
Chris Mason771ed682008-11-06 22:02:51 -0500429 * to make an uncompressed inline extent.
Chris Masonc8b97812008-10-29 14:49:59 -0400430 */
431 ret = cow_file_range_inline(trans, root, inode,
432 start, end, 0, NULL);
433 } else {
Chris Mason771ed682008-11-06 22:02:51 -0500434 /* try making a compressed inline extent */
Chris Masonc8b97812008-10-29 14:49:59 -0400435 ret = cow_file_range_inline(trans, root, inode,
436 start, end,
437 total_compressed, pages);
438 }
439 if (ret == 0) {
Chris Mason771ed682008-11-06 22:02:51 -0500440 /*
441 * inline extent creation worked, we don't need
442 * to create any more async work items. Unlock
443 * and free up our temp pages.
444 */
Chris Masonc8b97812008-10-29 14:49:59 -0400445 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400446 &BTRFS_I(inode)->io_tree,
447 start, end, NULL,
448 EXTENT_CLEAR_UNLOCK_PAGE | EXTENT_CLEAR_DIRTY |
Chris Masona3429ab2009-10-08 12:30:20 -0400449 EXTENT_CLEAR_DELALLOC |
Chris Masona791e352009-10-08 11:27:10 -0400450 EXTENT_SET_WRITEBACK | EXTENT_END_WRITEBACK);
Yan, Zhengc2167752009-11-12 09:34:21 +0000451
452 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400453 goto free_pages_out;
454 }
Yan, Zhengc2167752009-11-12 09:34:21 +0000455 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400456 }
457
458 if (will_compress) {
459 /*
460 * we aren't doing an inline extent round the compressed size
461 * up to a block size boundary so the allocator does sane
462 * things
463 */
464 total_compressed = (total_compressed + blocksize - 1) &
465 ~(blocksize - 1);
466
467 /*
468 * one last check to make sure the compression is really a
469 * win, compare the page count read with the blocks on disk
470 */
471 total_in = (total_in + PAGE_CACHE_SIZE - 1) &
472 ~(PAGE_CACHE_SIZE - 1);
473 if (total_compressed >= total_in) {
474 will_compress = 0;
475 } else {
Chris Masonc8b97812008-10-29 14:49:59 -0400476 num_bytes = total_in;
477 }
478 }
479 if (!will_compress && pages) {
480 /*
481 * the compression code ran but failed to make things smaller,
482 * free any pages it allocated and our page pointer array
483 */
484 for (i = 0; i < nr_pages_ret; i++) {
Chris Mason70b99e62008-10-31 12:46:39 -0400485 WARN_ON(pages[i]->mapping);
Chris Masonc8b97812008-10-29 14:49:59 -0400486 page_cache_release(pages[i]);
487 }
488 kfree(pages);
489 pages = NULL;
490 total_compressed = 0;
491 nr_pages_ret = 0;
492
493 /* flag the file so we don't compress in the future */
Chris Mason1e701a32010-03-11 09:42:04 -0500494 if (!btrfs_test_opt(root, FORCE_COMPRESS) &&
495 !(BTRFS_I(inode)->force_compress)) {
Chris Masona555f812010-01-28 16:18:15 -0500496 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
Chris Mason1e701a32010-03-11 09:42:04 -0500497 }
Chris Masonc8b97812008-10-29 14:49:59 -0400498 }
Chris Mason771ed682008-11-06 22:02:51 -0500499 if (will_compress) {
500 *num_added += 1;
501
502 /* the async work queues will take care of doing actual
503 * allocation on disk for these compressed pages,
504 * and will submit them to the elevator.
505 */
506 add_async_extent(async_cow, start, num_bytes,
Li Zefan261507a02010-12-17 14:21:50 +0800507 total_compressed, pages, nr_pages_ret,
508 compress_type);
Chris Mason771ed682008-11-06 22:02:51 -0500509
Yan, Zheng24ae6362010-12-06 07:02:36 +0000510 if (start + num_bytes < end) {
Chris Mason771ed682008-11-06 22:02:51 -0500511 start += num_bytes;
512 pages = NULL;
513 cond_resched();
514 goto again;
515 }
516 } else {
Chris Masonf03d9302009-02-04 09:31:06 -0500517cleanup_and_bail_uncompressed:
Chris Mason771ed682008-11-06 22:02:51 -0500518 /*
519 * No compression, but we still need to write the pages in
520 * the file we've been given so far. redirty the locked
521 * page if it corresponds to our extent and set things up
522 * for the async work queue to run cow_file_range to do
523 * the normal delalloc dance
524 */
525 if (page_offset(locked_page) >= start &&
526 page_offset(locked_page) <= end) {
527 __set_page_dirty_nobuffers(locked_page);
528 /* unlocked later on in the async handlers */
529 }
Li Zefan261507a02010-12-17 14:21:50 +0800530 add_async_extent(async_cow, start, end - start + 1,
531 0, NULL, 0, BTRFS_COMPRESS_NONE);
Chris Mason771ed682008-11-06 22:02:51 -0500532 *num_added += 1;
533 }
534
535out:
536 return 0;
537
538free_pages_out:
539 for (i = 0; i < nr_pages_ret; i++) {
540 WARN_ON(pages[i]->mapping);
541 page_cache_release(pages[i]);
542 }
Chris Masond3977122009-01-05 21:25:51 -0500543 kfree(pages);
Chris Mason771ed682008-11-06 22:02:51 -0500544
545 goto out;
546}
547
548/*
549 * phase two of compressed writeback. This is the ordered portion
550 * of the code, which only gets called in the order the work was
551 * queued. We walk all the async extents created by compress_file_range
552 * and send them down to the disk.
553 */
554static noinline int submit_compressed_extents(struct inode *inode,
555 struct async_cow *async_cow)
556{
557 struct async_extent *async_extent;
558 u64 alloc_hint = 0;
559 struct btrfs_trans_handle *trans;
560 struct btrfs_key ins;
561 struct extent_map *em;
562 struct btrfs_root *root = BTRFS_I(inode)->root;
563 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
564 struct extent_io_tree *io_tree;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500565 int ret = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500566
567 if (list_empty(&async_cow->extents))
568 return 0;
569
Chris Mason771ed682008-11-06 22:02:51 -0500570
Chris Masond3977122009-01-05 21:25:51 -0500571 while (!list_empty(&async_cow->extents)) {
Chris Mason771ed682008-11-06 22:02:51 -0500572 async_extent = list_entry(async_cow->extents.next,
573 struct async_extent, list);
574 list_del(&async_extent->list);
575
576 io_tree = &BTRFS_I(inode)->io_tree;
577
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500578retry:
Chris Mason771ed682008-11-06 22:02:51 -0500579 /* did the compression code fall back to uncompressed IO? */
580 if (!async_extent->pages) {
581 int page_started = 0;
582 unsigned long nr_written = 0;
583
584 lock_extent(io_tree, async_extent->start,
Josef Bacik2ac55d42010-02-03 19:33:23 +0000585 async_extent->start +
586 async_extent->ram_size - 1, GFP_NOFS);
Chris Mason771ed682008-11-06 22:02:51 -0500587
588 /* allocate blocks */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500589 ret = cow_file_range(inode, async_cow->locked_page,
590 async_extent->start,
591 async_extent->start +
592 async_extent->ram_size - 1,
593 &page_started, &nr_written, 0);
Chris Mason771ed682008-11-06 22:02:51 -0500594
595 /*
596 * if page_started, cow_file_range inserted an
597 * inline extent and took care of all the unlocking
598 * and IO for us. Otherwise, we need to submit
599 * all those pages down to the drive.
600 */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500601 if (!page_started && !ret)
Chris Mason771ed682008-11-06 22:02:51 -0500602 extent_write_locked_range(io_tree,
603 inode, async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500604 async_extent->start +
Chris Mason771ed682008-11-06 22:02:51 -0500605 async_extent->ram_size - 1,
606 btrfs_get_extent,
607 WB_SYNC_ALL);
608 kfree(async_extent);
609 cond_resched();
610 continue;
611 }
612
613 lock_extent(io_tree, async_extent->start,
614 async_extent->start + async_extent->ram_size - 1,
615 GFP_NOFS);
Chris Mason771ed682008-11-06 22:02:51 -0500616
Yan, Zhengc2167752009-11-12 09:34:21 +0000617 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +0000618 BUG_ON(IS_ERR(trans));
Chris Mason771ed682008-11-06 22:02:51 -0500619 ret = btrfs_reserve_extent(trans, root,
620 async_extent->compressed_size,
621 async_extent->compressed_size,
622 0, alloc_hint,
623 (u64)-1, &ins, 1);
Yan, Zhengc2167752009-11-12 09:34:21 +0000624 btrfs_end_transaction(trans, root);
625
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500626 if (ret) {
627 int i;
628 for (i = 0; i < async_extent->nr_pages; i++) {
629 WARN_ON(async_extent->pages[i]->mapping);
630 page_cache_release(async_extent->pages[i]);
631 }
632 kfree(async_extent->pages);
633 async_extent->nr_pages = 0;
634 async_extent->pages = NULL;
635 unlock_extent(io_tree, async_extent->start,
636 async_extent->start +
637 async_extent->ram_size - 1, GFP_NOFS);
638 goto retry;
639 }
640
Yan, Zhengc2167752009-11-12 09:34:21 +0000641 /*
642 * here we're doing allocation and writeback of the
643 * compressed pages
644 */
645 btrfs_drop_extent_cache(inode, async_extent->start,
646 async_extent->start +
647 async_extent->ram_size - 1, 0);
648
Chris Mason771ed682008-11-06 22:02:51 -0500649 em = alloc_extent_map(GFP_NOFS);
Tsutomu Itohc26a9202011-02-14 00:45:29 +0000650 BUG_ON(!em);
Chris Mason771ed682008-11-06 22:02:51 -0500651 em->start = async_extent->start;
652 em->len = async_extent->ram_size;
Chris Mason445a6942008-11-10 11:53:33 -0500653 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500654
655 em->block_start = ins.objectid;
656 em->block_len = ins.offset;
657 em->bdev = root->fs_info->fs_devices->latest_bdev;
Li Zefan261507a02010-12-17 14:21:50 +0800658 em->compress_type = async_extent->compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500659 set_bit(EXTENT_FLAG_PINNED, &em->flags);
660 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
661
Chris Masond3977122009-01-05 21:25:51 -0500662 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400663 write_lock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500664 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400665 write_unlock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500666 if (ret != -EEXIST) {
667 free_extent_map(em);
668 break;
669 }
670 btrfs_drop_extent_cache(inode, async_extent->start,
671 async_extent->start +
672 async_extent->ram_size - 1, 0);
673 }
674
Li Zefan261507a02010-12-17 14:21:50 +0800675 ret = btrfs_add_ordered_extent_compress(inode,
676 async_extent->start,
677 ins.objectid,
678 async_extent->ram_size,
679 ins.offset,
680 BTRFS_ORDERED_COMPRESSED,
681 async_extent->compress_type);
Chris Mason771ed682008-11-06 22:02:51 -0500682 BUG_ON(ret);
683
Chris Mason771ed682008-11-06 22:02:51 -0500684 /*
685 * clear dirty, set writeback and unlock the pages.
686 */
687 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400688 &BTRFS_I(inode)->io_tree,
689 async_extent->start,
690 async_extent->start +
691 async_extent->ram_size - 1,
692 NULL, EXTENT_CLEAR_UNLOCK_PAGE |
693 EXTENT_CLEAR_UNLOCK |
Chris Masona3429ab2009-10-08 12:30:20 -0400694 EXTENT_CLEAR_DELALLOC |
Chris Masona791e352009-10-08 11:27:10 -0400695 EXTENT_CLEAR_DIRTY | EXTENT_SET_WRITEBACK);
Chris Mason771ed682008-11-06 22:02:51 -0500696
697 ret = btrfs_submit_compressed_write(inode,
Chris Masond3977122009-01-05 21:25:51 -0500698 async_extent->start,
699 async_extent->ram_size,
700 ins.objectid,
701 ins.offset, async_extent->pages,
702 async_extent->nr_pages);
Chris Mason771ed682008-11-06 22:02:51 -0500703
704 BUG_ON(ret);
Chris Mason771ed682008-11-06 22:02:51 -0500705 alloc_hint = ins.objectid + ins.offset;
706 kfree(async_extent);
707 cond_resched();
708 }
709
Chris Mason771ed682008-11-06 22:02:51 -0500710 return 0;
711}
712
Josef Bacik4b46fce2010-05-23 11:00:55 -0400713static u64 get_extent_allocation_hint(struct inode *inode, u64 start,
714 u64 num_bytes)
715{
716 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
717 struct extent_map *em;
718 u64 alloc_hint = 0;
719
720 read_lock(&em_tree->lock);
721 em = search_extent_mapping(em_tree, start, num_bytes);
722 if (em) {
723 /*
724 * if block start isn't an actual block number then find the
725 * first block in this inode and use that as a hint. If that
726 * block is also bogus then just don't worry about it.
727 */
728 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
729 free_extent_map(em);
730 em = search_extent_mapping(em_tree, 0, 0);
731 if (em && em->block_start < EXTENT_MAP_LAST_BYTE)
732 alloc_hint = em->block_start;
733 if (em)
734 free_extent_map(em);
735 } else {
736 alloc_hint = em->block_start;
737 free_extent_map(em);
738 }
739 }
740 read_unlock(&em_tree->lock);
741
742 return alloc_hint;
743}
744
Chris Mason771ed682008-11-06 22:02:51 -0500745/*
746 * when extent_io.c finds a delayed allocation range in the file,
747 * the call backs end up in this code. The basic idea is to
748 * allocate extents on disk for the range, and create ordered data structs
749 * in ram to track those extents.
750 *
751 * locked_page is the page that writepage had locked already. We use
752 * it to make sure we don't do extra locks or unlocks.
753 *
754 * *page_started is set to one if we unlock locked_page and do everything
755 * required to start IO on it. It may be clean and already done with
756 * IO when we return.
757 */
758static noinline int cow_file_range(struct inode *inode,
759 struct page *locked_page,
760 u64 start, u64 end, int *page_started,
761 unsigned long *nr_written,
762 int unlock)
763{
764 struct btrfs_root *root = BTRFS_I(inode)->root;
765 struct btrfs_trans_handle *trans;
766 u64 alloc_hint = 0;
767 u64 num_bytes;
768 unsigned long ram_size;
769 u64 disk_num_bytes;
770 u64 cur_alloc_size;
771 u64 blocksize = root->sectorsize;
Chris Mason771ed682008-11-06 22:02:51 -0500772 struct btrfs_key ins;
773 struct extent_map *em;
774 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
775 int ret = 0;
776
Josef Bacik0cb59c92010-07-02 12:14:14 -0400777 BUG_ON(root == root->fs_info->tree_root);
Chris Mason771ed682008-11-06 22:02:51 -0500778 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +0000779 BUG_ON(IS_ERR(trans));
Chris Mason771ed682008-11-06 22:02:51 -0500780 btrfs_set_trans_block_group(trans, inode);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400781 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason771ed682008-11-06 22:02:51 -0500782
Chris Mason771ed682008-11-06 22:02:51 -0500783 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
784 num_bytes = max(blocksize, num_bytes);
785 disk_num_bytes = num_bytes;
786 ret = 0;
787
788 if (start == 0) {
789 /* lets try to make an inline extent */
790 ret = cow_file_range_inline(trans, root, inode,
791 start, end, 0, NULL);
792 if (ret == 0) {
793 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400794 &BTRFS_I(inode)->io_tree,
795 start, end, NULL,
796 EXTENT_CLEAR_UNLOCK_PAGE |
797 EXTENT_CLEAR_UNLOCK |
798 EXTENT_CLEAR_DELALLOC |
799 EXTENT_CLEAR_DIRTY |
800 EXTENT_SET_WRITEBACK |
801 EXTENT_END_WRITEBACK);
Yan, Zhengc2167752009-11-12 09:34:21 +0000802
Chris Mason771ed682008-11-06 22:02:51 -0500803 *nr_written = *nr_written +
804 (end - start + PAGE_CACHE_SIZE) / PAGE_CACHE_SIZE;
805 *page_started = 1;
806 ret = 0;
807 goto out;
808 }
809 }
Chris Masonc8b97812008-10-29 14:49:59 -0400810
811 BUG_ON(disk_num_bytes >
812 btrfs_super_total_bytes(&root->fs_info->super_copy));
813
Josef Bacik4b46fce2010-05-23 11:00:55 -0400814 alloc_hint = get_extent_allocation_hint(inode, start, num_bytes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400815 btrfs_drop_extent_cache(inode, start, start + num_bytes - 1, 0);
Chris Mason3b951512008-04-17 11:29:12 -0400816
Chris Masond3977122009-01-05 21:25:51 -0500817 while (disk_num_bytes > 0) {
Chris Masona791e352009-10-08 11:27:10 -0400818 unsigned long op;
819
Josef Bacik287a0ab2010-03-19 18:07:23 +0000820 cur_alloc_size = disk_num_bytes;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400821 ret = btrfs_reserve_extent(trans, root, cur_alloc_size,
Chris Mason771ed682008-11-06 22:02:51 -0500822 root->sectorsize, 0, alloc_hint,
Chris Masone6dcd2d2008-07-17 12:53:50 -0400823 (u64)-1, &ins, 1);
Chris Masond3977122009-01-05 21:25:51 -0500824 BUG_ON(ret);
825
Chris Masone6dcd2d2008-07-17 12:53:50 -0400826 em = alloc_extent_map(GFP_NOFS);
Tsutomu Itohc26a9202011-02-14 00:45:29 +0000827 BUG_ON(!em);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400828 em->start = start;
Chris Mason445a6942008-11-10 11:53:33 -0500829 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500830 ram_size = ins.offset;
831 em->len = ins.offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400832
Chris Masone6dcd2d2008-07-17 12:53:50 -0400833 em->block_start = ins.objectid;
Chris Masonc8b97812008-10-29 14:49:59 -0400834 em->block_len = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400835 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -0400836 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -0400837
Chris Masond3977122009-01-05 21:25:51 -0500838 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400839 write_lock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400840 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400841 write_unlock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400842 if (ret != -EEXIST) {
843 free_extent_map(em);
844 break;
845 }
846 btrfs_drop_extent_cache(inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -0400847 start + ram_size - 1, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400848 }
849
Chris Mason98d20f62008-04-14 09:46:10 -0400850 cur_alloc_size = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400851 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
Chris Mason771ed682008-11-06 22:02:51 -0500852 ram_size, cur_alloc_size, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400853 BUG_ON(ret);
Chris Masonc8b97812008-10-29 14:49:59 -0400854
Yan Zheng17d217f2008-12-12 10:03:38 -0500855 if (root->root_key.objectid ==
856 BTRFS_DATA_RELOC_TREE_OBJECTID) {
857 ret = btrfs_reloc_clone_csums(inode, start,
858 cur_alloc_size);
859 BUG_ON(ret);
860 }
861
Chris Masond3977122009-01-05 21:25:51 -0500862 if (disk_num_bytes < cur_alloc_size)
Chris Mason3b951512008-04-17 11:29:12 -0400863 break;
Chris Masond3977122009-01-05 21:25:51 -0500864
Chris Masonc8b97812008-10-29 14:49:59 -0400865 /* we're not doing compressed IO, don't unlock the first
866 * page (which the caller expects to stay locked), don't
867 * clear any dirty bits and don't set any writeback bits
Chris Mason8b62b722009-09-02 16:53:46 -0400868 *
869 * Do set the Private2 bit so we know this page was properly
870 * setup for writepage
Chris Masonc8b97812008-10-29 14:49:59 -0400871 */
Chris Masona791e352009-10-08 11:27:10 -0400872 op = unlock ? EXTENT_CLEAR_UNLOCK_PAGE : 0;
873 op |= EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
874 EXTENT_SET_PRIVATE2;
875
Chris Masonc8b97812008-10-29 14:49:59 -0400876 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
877 start, start + ram_size - 1,
Chris Masona791e352009-10-08 11:27:10 -0400878 locked_page, op);
Chris Masonc8b97812008-10-29 14:49:59 -0400879 disk_num_bytes -= cur_alloc_size;
Chris Masonc59f8952007-12-17 20:14:04 -0500880 num_bytes -= cur_alloc_size;
881 alloc_hint = ins.objectid + ins.offset;
882 start += cur_alloc_size;
Chris Masonb888db22007-08-27 16:49:44 -0400883 }
Chris Masonb888db22007-08-27 16:49:44 -0400884out:
Chris Mason771ed682008-11-06 22:02:51 -0500885 ret = 0;
Chris Masonb888db22007-08-27 16:49:44 -0400886 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400887
Chris Masonbe20aa92007-12-17 20:14:01 -0500888 return ret;
Chris Mason771ed682008-11-06 22:02:51 -0500889}
Chris Masonc8b97812008-10-29 14:49:59 -0400890
Chris Mason771ed682008-11-06 22:02:51 -0500891/*
892 * work queue call back to started compression on a file and pages
893 */
894static noinline void async_cow_start(struct btrfs_work *work)
895{
896 struct async_cow *async_cow;
897 int num_added = 0;
898 async_cow = container_of(work, struct async_cow, work);
899
900 compress_file_range(async_cow->inode, async_cow->locked_page,
901 async_cow->start, async_cow->end, async_cow,
902 &num_added);
903 if (num_added == 0)
904 async_cow->inode = NULL;
905}
906
907/*
908 * work queue call back to submit previously compressed pages
909 */
910static noinline void async_cow_submit(struct btrfs_work *work)
911{
912 struct async_cow *async_cow;
913 struct btrfs_root *root;
914 unsigned long nr_pages;
915
916 async_cow = container_of(work, struct async_cow, work);
917
918 root = async_cow->root;
919 nr_pages = (async_cow->end - async_cow->start + PAGE_CACHE_SIZE) >>
920 PAGE_CACHE_SHIFT;
921
922 atomic_sub(nr_pages, &root->fs_info->async_delalloc_pages);
923
924 if (atomic_read(&root->fs_info->async_delalloc_pages) <
925 5 * 1042 * 1024 &&
926 waitqueue_active(&root->fs_info->async_submit_wait))
927 wake_up(&root->fs_info->async_submit_wait);
928
Chris Masond3977122009-01-05 21:25:51 -0500929 if (async_cow->inode)
Chris Mason771ed682008-11-06 22:02:51 -0500930 submit_compressed_extents(async_cow->inode, async_cow);
Chris Mason771ed682008-11-06 22:02:51 -0500931}
Chris Masonc8b97812008-10-29 14:49:59 -0400932
Chris Mason771ed682008-11-06 22:02:51 -0500933static noinline void async_cow_free(struct btrfs_work *work)
934{
935 struct async_cow *async_cow;
936 async_cow = container_of(work, struct async_cow, work);
937 kfree(async_cow);
938}
939
940static int cow_file_range_async(struct inode *inode, struct page *locked_page,
941 u64 start, u64 end, int *page_started,
942 unsigned long *nr_written)
943{
944 struct async_cow *async_cow;
945 struct btrfs_root *root = BTRFS_I(inode)->root;
946 unsigned long nr_pages;
947 u64 cur_end;
948 int limit = 10 * 1024 * 1042;
949
Chris Masona3429ab2009-10-08 12:30:20 -0400950 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED,
951 1, 0, NULL, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -0500952 while (start < end) {
Chris Mason771ed682008-11-06 22:02:51 -0500953 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
954 async_cow->inode = inode;
955 async_cow->root = root;
956 async_cow->locked_page = locked_page;
957 async_cow->start = start;
958
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200959 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS)
Chris Mason771ed682008-11-06 22:02:51 -0500960 cur_end = end;
961 else
962 cur_end = min(end, start + 512 * 1024 - 1);
963
964 async_cow->end = cur_end;
965 INIT_LIST_HEAD(&async_cow->extents);
966
967 async_cow->work.func = async_cow_start;
968 async_cow->work.ordered_func = async_cow_submit;
969 async_cow->work.ordered_free = async_cow_free;
970 async_cow->work.flags = 0;
971
Chris Mason771ed682008-11-06 22:02:51 -0500972 nr_pages = (cur_end - start + PAGE_CACHE_SIZE) >>
973 PAGE_CACHE_SHIFT;
974 atomic_add(nr_pages, &root->fs_info->async_delalloc_pages);
975
976 btrfs_queue_worker(&root->fs_info->delalloc_workers,
977 &async_cow->work);
978
979 if (atomic_read(&root->fs_info->async_delalloc_pages) > limit) {
980 wait_event(root->fs_info->async_submit_wait,
981 (atomic_read(&root->fs_info->async_delalloc_pages) <
982 limit));
983 }
984
Chris Masond3977122009-01-05 21:25:51 -0500985 while (atomic_read(&root->fs_info->async_submit_draining) &&
Chris Mason771ed682008-11-06 22:02:51 -0500986 atomic_read(&root->fs_info->async_delalloc_pages)) {
987 wait_event(root->fs_info->async_submit_wait,
988 (atomic_read(&root->fs_info->async_delalloc_pages) ==
989 0));
990 }
991
992 *nr_written += nr_pages;
993 start = cur_end + 1;
994 }
995 *page_started = 1;
996 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -0500997}
998
Chris Masond3977122009-01-05 21:25:51 -0500999static noinline int csum_exist_in_range(struct btrfs_root *root,
Yan Zheng17d217f2008-12-12 10:03:38 -05001000 u64 bytenr, u64 num_bytes)
1001{
1002 int ret;
1003 struct btrfs_ordered_sum *sums;
1004 LIST_HEAD(list);
1005
Yan Zheng07d400a2009-01-06 11:42:00 -05001006 ret = btrfs_lookup_csums_range(root->fs_info->csum_root, bytenr,
1007 bytenr + num_bytes - 1, &list);
Yan Zheng17d217f2008-12-12 10:03:38 -05001008 if (ret == 0 && list_empty(&list))
1009 return 0;
1010
1011 while (!list_empty(&list)) {
1012 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
1013 list_del(&sums->list);
1014 kfree(sums);
1015 }
1016 return 1;
1017}
1018
Chris Masond352ac62008-09-29 15:18:18 -04001019/*
1020 * when nowcow writeback call back. This checks for snapshots or COW copies
1021 * of the extents that exist in the file, and COWs the file as required.
1022 *
1023 * If no cow copies or snapshots exist, we write directly to the existing
1024 * blocks on disk
1025 */
Chris Mason7f366cf2009-03-12 20:12:45 -04001026static noinline int run_delalloc_nocow(struct inode *inode,
1027 struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001028 u64 start, u64 end, int *page_started, int force,
1029 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001030{
Chris Masonbe20aa92007-12-17 20:14:01 -05001031 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001032 struct btrfs_trans_handle *trans;
Chris Masonbe20aa92007-12-17 20:14:01 -05001033 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -05001034 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -04001035 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -05001036 struct btrfs_key found_key;
Yan Zheng80ff3852008-10-30 14:20:02 -04001037 u64 cow_start;
1038 u64 cur_offset;
1039 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001040 u64 extent_offset;
Yan Zheng80ff3852008-10-30 14:20:02 -04001041 u64 disk_bytenr;
1042 u64 num_bytes;
1043 int extent_type;
1044 int ret;
Yan Zhengd899e052008-10-30 14:25:28 -04001045 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -04001046 int nocow;
1047 int check_prev = 1;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001048 bool nolock = false;
Chris Masonbe20aa92007-12-17 20:14:01 -05001049
1050 path = btrfs_alloc_path();
1051 BUG_ON(!path);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001052 if (root == root->fs_info->tree_root) {
1053 nolock = true;
1054 trans = btrfs_join_transaction_nolock(root, 1);
1055 } else {
1056 trans = btrfs_join_transaction(root, 1);
1057 }
Tsutomu Itoh3612b492011-01-25 02:51:38 +00001058 BUG_ON(IS_ERR(trans));
Chris Masonbe20aa92007-12-17 20:14:01 -05001059
Yan Zheng80ff3852008-10-30 14:20:02 -04001060 cow_start = (u64)-1;
1061 cur_offset = start;
1062 while (1) {
1063 ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino,
1064 cur_offset, 0);
1065 BUG_ON(ret < 0);
1066 if (ret > 0 && path->slots[0] > 0 && check_prev) {
1067 leaf = path->nodes[0];
1068 btrfs_item_key_to_cpu(leaf, &found_key,
1069 path->slots[0] - 1);
1070 if (found_key.objectid == inode->i_ino &&
1071 found_key.type == BTRFS_EXTENT_DATA_KEY)
1072 path->slots[0]--;
1073 }
1074 check_prev = 0;
1075next_slot:
1076 leaf = path->nodes[0];
1077 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1078 ret = btrfs_next_leaf(root, path);
1079 if (ret < 0)
1080 BUG_ON(1);
1081 if (ret > 0)
1082 break;
1083 leaf = path->nodes[0];
1084 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001085
Yan Zheng80ff3852008-10-30 14:20:02 -04001086 nocow = 0;
1087 disk_bytenr = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -05001088 num_bytes = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001089 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05001090
Yan Zheng80ff3852008-10-30 14:20:02 -04001091 if (found_key.objectid > inode->i_ino ||
1092 found_key.type > BTRFS_EXTENT_DATA_KEY ||
1093 found_key.offset > end)
1094 break;
Chris Masonbe20aa92007-12-17 20:14:01 -05001095
Yan Zheng80ff3852008-10-30 14:20:02 -04001096 if (found_key.offset > cur_offset) {
1097 extent_end = found_key.offset;
Chris Masone9061e22009-10-09 09:57:45 -04001098 extent_type = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001099 goto out_check;
1100 }
Chris Masonc31f8832008-01-08 15:46:31 -05001101
Yan Zheng80ff3852008-10-30 14:20:02 -04001102 fi = btrfs_item_ptr(leaf, path->slots[0],
1103 struct btrfs_file_extent_item);
1104 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -05001105
Yan Zhengd899e052008-10-30 14:25:28 -04001106 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1107 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001108 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001109 extent_offset = btrfs_file_extent_offset(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001110 extent_end = found_key.offset +
1111 btrfs_file_extent_num_bytes(leaf, fi);
1112 if (extent_end <= start) {
1113 path->slots[0]++;
1114 goto next_slot;
1115 }
Yan Zheng17d217f2008-12-12 10:03:38 -05001116 if (disk_bytenr == 0)
1117 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001118 if (btrfs_file_extent_compression(leaf, fi) ||
1119 btrfs_file_extent_encryption(leaf, fi) ||
1120 btrfs_file_extent_other_encoding(leaf, fi))
1121 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001122 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1123 goto out_check;
Yan Zhengd2fb3432008-12-11 16:30:39 -05001124 if (btrfs_extent_readonly(root, disk_bytenr))
Yan Zheng80ff3852008-10-30 14:20:02 -04001125 goto out_check;
Yan Zheng17d217f2008-12-12 10:03:38 -05001126 if (btrfs_cross_ref_exist(trans, root, inode->i_ino,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001127 found_key.offset -
1128 extent_offset, disk_bytenr))
Yan Zheng17d217f2008-12-12 10:03:38 -05001129 goto out_check;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001130 disk_bytenr += extent_offset;
Yan Zheng17d217f2008-12-12 10:03:38 -05001131 disk_bytenr += cur_offset - found_key.offset;
1132 num_bytes = min(end + 1, extent_end) - cur_offset;
1133 /*
1134 * force cow if csum exists in the range.
1135 * this ensure that csum for a given extent are
1136 * either valid or do not exist.
1137 */
1138 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
1139 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001140 nocow = 1;
1141 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1142 extent_end = found_key.offset +
1143 btrfs_file_extent_inline_len(leaf, fi);
1144 extent_end = ALIGN(extent_end, root->sectorsize);
1145 } else {
1146 BUG_ON(1);
1147 }
1148out_check:
1149 if (extent_end <= start) {
1150 path->slots[0]++;
1151 goto next_slot;
1152 }
1153 if (!nocow) {
1154 if (cow_start == (u64)-1)
1155 cow_start = cur_offset;
1156 cur_offset = extent_end;
1157 if (cur_offset > end)
1158 break;
1159 path->slots[0]++;
1160 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001161 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001162
Yan Zheng7ea394f2008-08-05 13:05:02 -04001163 btrfs_release_path(root, path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001164 if (cow_start != (u64)-1) {
1165 ret = cow_file_range(inode, locked_page, cow_start,
Chris Mason771ed682008-11-06 22:02:51 -05001166 found_key.offset - 1, page_started,
1167 nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001168 BUG_ON(ret);
1169 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001170 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001171
Yan Zhengd899e052008-10-30 14:25:28 -04001172 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1173 struct extent_map *em;
1174 struct extent_map_tree *em_tree;
1175 em_tree = &BTRFS_I(inode)->extent_tree;
1176 em = alloc_extent_map(GFP_NOFS);
Tsutomu Itohc26a9202011-02-14 00:45:29 +00001177 BUG_ON(!em);
Yan Zhengd899e052008-10-30 14:25:28 -04001178 em->start = cur_offset;
Chris Mason445a6942008-11-10 11:53:33 -05001179 em->orig_start = em->start;
Yan Zhengd899e052008-10-30 14:25:28 -04001180 em->len = num_bytes;
1181 em->block_len = num_bytes;
1182 em->block_start = disk_bytenr;
1183 em->bdev = root->fs_info->fs_devices->latest_bdev;
1184 set_bit(EXTENT_FLAG_PINNED, &em->flags);
1185 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04001186 write_lock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001187 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04001188 write_unlock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001189 if (ret != -EEXIST) {
1190 free_extent_map(em);
1191 break;
1192 }
1193 btrfs_drop_extent_cache(inode, em->start,
1194 em->start + em->len - 1, 0);
1195 }
1196 type = BTRFS_ORDERED_PREALLOC;
1197 } else {
1198 type = BTRFS_ORDERED_NOCOW;
1199 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001200
1201 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001202 num_bytes, num_bytes, type);
1203 BUG_ON(ret);
Chris Mason771ed682008-11-06 22:02:51 -05001204
Yan, Zhengefa56462010-05-16 10:49:59 -04001205 if (root->root_key.objectid ==
1206 BTRFS_DATA_RELOC_TREE_OBJECTID) {
1207 ret = btrfs_reloc_clone_csums(inode, cur_offset,
1208 num_bytes);
1209 BUG_ON(ret);
1210 }
1211
Yan Zhengd899e052008-10-30 14:25:28 -04001212 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
Chris Masona791e352009-10-08 11:27:10 -04001213 cur_offset, cur_offset + num_bytes - 1,
1214 locked_page, EXTENT_CLEAR_UNLOCK_PAGE |
1215 EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
1216 EXTENT_SET_PRIVATE2);
Yan Zheng80ff3852008-10-30 14:20:02 -04001217 cur_offset = extent_end;
1218 if (cur_offset > end)
1219 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001220 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001221 btrfs_release_path(root, path);
1222
1223 if (cur_offset <= end && cow_start == (u64)-1)
1224 cow_start = cur_offset;
1225 if (cow_start != (u64)-1) {
1226 ret = cow_file_range(inode, locked_page, cow_start, end,
Chris Mason771ed682008-11-06 22:02:51 -05001227 page_started, nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001228 BUG_ON(ret);
1229 }
1230
Josef Bacik0cb59c92010-07-02 12:14:14 -04001231 if (nolock) {
1232 ret = btrfs_end_transaction_nolock(trans, root);
1233 BUG_ON(ret);
1234 } else {
1235 ret = btrfs_end_transaction(trans, root);
1236 BUG_ON(ret);
1237 }
Yan Zheng7ea394f2008-08-05 13:05:02 -04001238 btrfs_free_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001239 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001240}
1241
Chris Masond352ac62008-09-29 15:18:18 -04001242/*
1243 * extent_io.c call back to do delayed allocation processing
1244 */
Chris Masonc8b97812008-10-29 14:49:59 -04001245static int run_delalloc_range(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001246 u64 start, u64 end, int *page_started,
1247 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001248{
Chris Masonbe20aa92007-12-17 20:14:01 -05001249 int ret;
Chris Mason7f366cf2009-03-12 20:12:45 -04001250 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masona2135012008-06-25 16:01:30 -04001251
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001252 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW)
Chris Masonc8b97812008-10-29 14:49:59 -04001253 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001254 page_started, 1, nr_written);
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001255 else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC)
Yan Zhengd899e052008-10-30 14:25:28 -04001256 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001257 page_started, 0, nr_written);
Chris Mason1e701a32010-03-11 09:42:04 -05001258 else if (!btrfs_test_opt(root, COMPRESS) &&
1259 !(BTRFS_I(inode)->force_compress))
Chris Mason7f366cf2009-03-12 20:12:45 -04001260 ret = cow_file_range(inode, locked_page, start, end,
1261 page_started, nr_written, 1);
Chris Masonbe20aa92007-12-17 20:14:01 -05001262 else
Chris Mason771ed682008-11-06 22:02:51 -05001263 ret = cow_file_range_async(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001264 page_started, nr_written);
Chris Masonb888db22007-08-27 16:49:44 -04001265 return ret;
1266}
1267
Josef Bacik9ed74f22009-09-11 16:12:44 -04001268static int btrfs_split_extent_hook(struct inode *inode,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001269 struct extent_state *orig, u64 split)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001270{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001271 /* not delalloc, ignore it */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001272 if (!(orig->state & EXTENT_DELALLOC))
1273 return 0;
1274
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001275 atomic_inc(&BTRFS_I(inode)->outstanding_extents);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001276 return 0;
1277}
1278
1279/*
1280 * extent_io.c merge_extent_hook, used to track merged delayed allocation
1281 * extents so we can keep track of new extents that are just merged onto old
1282 * extents, such as when we are doing sequential writes, so we can properly
1283 * account for the metadata space we'll need.
1284 */
1285static int btrfs_merge_extent_hook(struct inode *inode,
1286 struct extent_state *new,
1287 struct extent_state *other)
1288{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001289 /* not delalloc, ignore it */
1290 if (!(other->state & EXTENT_DELALLOC))
1291 return 0;
1292
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001293 atomic_dec(&BTRFS_I(inode)->outstanding_extents);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001294 return 0;
1295}
1296
Chris Masond352ac62008-09-29 15:18:18 -04001297/*
1298 * extent_io.c set_bit_hook, used to track delayed allocation
1299 * bytes in this file, and to maintain the list of inodes that
1300 * have pending delalloc work to be done.
1301 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001302static int btrfs_set_bit_hook(struct inode *inode,
1303 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001304{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001305
Chris Mason75eff682008-12-15 15:54:40 -05001306 /*
1307 * set_bit and clear bit hooks normally require _irqsave/restore
1308 * but in this case, we are only testeing for the DELALLOC
1309 * bit, which is only set or cleared with irqs on
1310 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001311 if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001312 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001313 u64 len = state->end + 1 - state->start;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001314 int do_list = (root->root_key.objectid !=
1315 BTRFS_ROOT_TREE_OBJECTID);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001316
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001317 if (*bits & EXTENT_FIRST_DELALLOC)
1318 *bits &= ~EXTENT_FIRST_DELALLOC;
1319 else
1320 atomic_inc(&BTRFS_I(inode)->outstanding_extents);
Josef Bacik287a0ab2010-03-19 18:07:23 +00001321
Chris Mason75eff682008-12-15 15:54:40 -05001322 spin_lock(&root->fs_info->delalloc_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001323 BTRFS_I(inode)->delalloc_bytes += len;
1324 root->fs_info->delalloc_bytes += len;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001325 if (do_list && list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
Chris Masonea8c2812008-08-04 23:17:27 -04001326 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1327 &root->fs_info->delalloc_inodes);
1328 }
Chris Mason75eff682008-12-15 15:54:40 -05001329 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001330 }
1331 return 0;
1332}
1333
Chris Masond352ac62008-09-29 15:18:18 -04001334/*
1335 * extent_io.c clear_bit_hook, see set_bit_hook for why
1336 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001337static int btrfs_clear_bit_hook(struct inode *inode,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001338 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001339{
Chris Mason75eff682008-12-15 15:54:40 -05001340 /*
1341 * set_bit and clear bit hooks normally require _irqsave/restore
1342 * but in this case, we are only testeing for the DELALLOC
1343 * bit, which is only set or cleared with irqs on
1344 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001345 if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001346 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001347 u64 len = state->end + 1 - state->start;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001348 int do_list = (root->root_key.objectid !=
1349 BTRFS_ROOT_TREE_OBJECTID);
Chris Masonbcbfce82008-04-22 13:26:47 -04001350
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001351 if (*bits & EXTENT_FIRST_DELALLOC)
1352 *bits &= ~EXTENT_FIRST_DELALLOC;
1353 else if (!(*bits & EXTENT_DO_ACCOUNTING))
1354 atomic_dec(&BTRFS_I(inode)->outstanding_extents);
1355
1356 if (*bits & EXTENT_DO_ACCOUNTING)
1357 btrfs_delalloc_release_metadata(inode, len);
1358
Josef Bacik0cb59c92010-07-02 12:14:14 -04001359 if (root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID
1360 && do_list)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001361 btrfs_free_reserved_data_space(inode, len);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001362
Chris Mason75eff682008-12-15 15:54:40 -05001363 spin_lock(&root->fs_info->delalloc_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001364 root->fs_info->delalloc_bytes -= len;
1365 BTRFS_I(inode)->delalloc_bytes -= len;
1366
Josef Bacik0cb59c92010-07-02 12:14:14 -04001367 if (do_list && BTRFS_I(inode)->delalloc_bytes == 0 &&
Chris Masonea8c2812008-08-04 23:17:27 -04001368 !list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1369 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
1370 }
Chris Mason75eff682008-12-15 15:54:40 -05001371 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001372 }
1373 return 0;
1374}
1375
Chris Masond352ac62008-09-29 15:18:18 -04001376/*
1377 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1378 * we don't create bios that span stripes or chunks
1379 */
Chris Mason239b14b2008-03-24 15:02:07 -04001380int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001381 size_t size, struct bio *bio,
1382 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001383{
1384 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
1385 struct btrfs_mapping_tree *map_tree;
Chris Masona62b9402008-10-03 16:31:08 -04001386 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001387 u64 length = 0;
1388 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001389 int ret;
1390
Chris Mason771ed682008-11-06 22:02:51 -05001391 if (bio_flags & EXTENT_BIO_COMPRESSED)
1392 return 0;
1393
Chris Masonf2d8d742008-04-21 10:03:05 -04001394 length = bio->bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001395 map_tree = &root->fs_info->mapping_tree;
1396 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04001397 ret = btrfs_map_block(map_tree, READ, logical,
Chris Masonf1885912008-04-09 16:28:12 -04001398 &map_length, NULL, 0);
Chris Masoncea9e442008-04-09 16:28:12 -04001399
Chris Masond3977122009-01-05 21:25:51 -05001400 if (map_length < length + size)
Chris Mason239b14b2008-03-24 15:02:07 -04001401 return 1;
Andi Kleen411fc6b2010-10-29 15:14:31 -04001402 return ret;
Chris Mason239b14b2008-03-24 15:02:07 -04001403}
1404
Chris Masond352ac62008-09-29 15:18:18 -04001405/*
1406 * in order to insert checksums into the metadata in large chunks,
1407 * we wait until bio submission time. All the pages in the bio are
1408 * checksummed and sums are attached onto the ordered extent record.
1409 *
1410 * At IO completion time the cums attached on the ordered extent record
1411 * are inserted into the btree
1412 */
Chris Masond3977122009-01-05 21:25:51 -05001413static int __btrfs_submit_bio_start(struct inode *inode, int rw,
1414 struct bio *bio, int mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001415 unsigned long bio_flags,
1416 u64 bio_offset)
Chris Mason065631f2008-02-20 12:07:25 -05001417{
Chris Mason065631f2008-02-20 12:07:25 -05001418 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason065631f2008-02-20 12:07:25 -05001419 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001420
Chris Masond20f7042008-12-08 16:58:54 -05001421 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
Chris Mason44b8bd72008-04-16 11:14:51 -04001422 BUG_ON(ret);
Chris Mason4a69a412008-11-06 22:03:00 -05001423 return 0;
1424}
Chris Masone0156402008-04-16 11:15:20 -04001425
Chris Mason4a69a412008-11-06 22:03:00 -05001426/*
1427 * in order to insert checksums into the metadata in large chunks,
1428 * we wait until bio submission time. All the pages in the bio are
1429 * checksummed and sums are attached onto the ordered extent record.
1430 *
1431 * At IO completion time the cums attached on the ordered extent record
1432 * are inserted into the btree
1433 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001434static int __btrfs_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001435 int mirror_num, unsigned long bio_flags,
1436 u64 bio_offset)
Chris Mason4a69a412008-11-06 22:03:00 -05001437{
1438 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason8b712842008-06-11 16:50:36 -04001439 return btrfs_map_bio(root, rw, bio, mirror_num, 1);
Chris Mason44b8bd72008-04-16 11:14:51 -04001440}
1441
Chris Masond352ac62008-09-29 15:18:18 -04001442/*
Chris Masoncad321a2008-12-17 14:51:42 -05001443 * extent_io.c submission hook. This does the right thing for csum calculation
1444 * on write, or reading the csums from the tree before a read
Chris Masond352ac62008-09-29 15:18:18 -04001445 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001446static int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001447 int mirror_num, unsigned long bio_flags,
1448 u64 bio_offset)
Chris Mason44b8bd72008-04-16 11:14:51 -04001449{
1450 struct btrfs_root *root = BTRFS_I(inode)->root;
1451 int ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001452 int skip_sum;
Chris Mason44b8bd72008-04-16 11:14:51 -04001453
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001454 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masoncad321a2008-12-17 14:51:42 -05001455
Josef Bacik0cb59c92010-07-02 12:14:14 -04001456 if (root == root->fs_info->tree_root)
1457 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 2);
1458 else
1459 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001460 BUG_ON(ret);
Chris Mason065631f2008-02-20 12:07:25 -05001461
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001462 if (!(rw & REQ_WRITE)) {
Chris Masond20f7042008-12-08 16:58:54 -05001463 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Chris Masonc8b97812008-10-29 14:49:59 -04001464 return btrfs_submit_compressed_read(inode, bio,
1465 mirror_num, bio_flags);
Chris Masond20f7042008-12-08 16:58:54 -05001466 } else if (!skip_sum)
1467 btrfs_lookup_bio_sums(root, inode, bio, NULL);
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001468 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001469 } else if (!skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001470 /* csum items have already been cloned */
1471 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1472 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001473 /* we're doing a write, do the async checksumming */
1474 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
Chris Mason44b8bd72008-04-16 11:14:51 -04001475 inode, rw, bio, mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001476 bio_flags, bio_offset,
1477 __btrfs_submit_bio_start,
Chris Mason4a69a412008-11-06 22:03:00 -05001478 __btrfs_submit_bio_done);
Chris Mason19b9bdb2008-10-30 14:23:13 -04001479 }
1480
Chris Mason0b86a832008-03-24 15:01:56 -04001481mapit:
Chris Mason8b712842008-06-11 16:50:36 -04001482 return btrfs_map_bio(root, rw, bio, mirror_num, 0);
Chris Mason065631f2008-02-20 12:07:25 -05001483}
Chris Mason6885f302008-02-20 16:11:05 -05001484
Chris Masond352ac62008-09-29 15:18:18 -04001485/*
1486 * given a list of ordered sums record them in the inode. This happens
1487 * at IO completion time based on sums calculated at bio submission time.
1488 */
Chris Masonba1da2f2008-07-17 12:54:15 -04001489static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -04001490 struct inode *inode, u64 file_offset,
1491 struct list_head *list)
1492{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001493 struct btrfs_ordered_sum *sum;
1494
1495 btrfs_set_trans_block_group(trans, inode);
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001496
1497 list_for_each_entry(sum, list, list) {
Chris Masond20f7042008-12-08 16:58:54 -05001498 btrfs_csum_file_blocks(trans,
1499 BTRFS_I(inode)->root->fs_info->csum_root, sum);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001500 }
1501 return 0;
1502}
1503
Josef Bacik2ac55d42010-02-03 19:33:23 +00001504int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end,
1505 struct extent_state **cached_state)
Chris Masonea8c2812008-08-04 23:17:27 -04001506{
Chris Masond3977122009-01-05 21:25:51 -05001507 if ((end & (PAGE_CACHE_SIZE - 1)) == 0)
Chris Mason771ed682008-11-06 22:02:51 -05001508 WARN_ON(1);
Chris Masonea8c2812008-08-04 23:17:27 -04001509 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001510 cached_state, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04001511}
1512
Chris Masond352ac62008-09-29 15:18:18 -04001513/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04001514struct btrfs_writepage_fixup {
1515 struct page *page;
1516 struct btrfs_work work;
1517};
1518
Christoph Hellwigb2950862008-12-02 09:54:17 -05001519static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04001520{
1521 struct btrfs_writepage_fixup *fixup;
1522 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001523 struct extent_state *cached_state = NULL;
Chris Mason247e7432008-07-17 12:53:51 -04001524 struct page *page;
1525 struct inode *inode;
1526 u64 page_start;
1527 u64 page_end;
1528
1529 fixup = container_of(work, struct btrfs_writepage_fixup, work);
1530 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04001531again:
Chris Mason247e7432008-07-17 12:53:51 -04001532 lock_page(page);
1533 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
1534 ClearPageChecked(page);
1535 goto out_page;
1536 }
1537
1538 inode = page->mapping->host;
1539 page_start = page_offset(page);
1540 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
1541
Josef Bacik2ac55d42010-02-03 19:33:23 +00001542 lock_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end, 0,
1543 &cached_state, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001544
1545 /* already ordered? We're done */
Chris Mason8b62b722009-09-02 16:53:46 -04001546 if (PagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001547 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04001548
1549 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1550 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00001551 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start,
1552 page_end, &cached_state, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001553 unlock_page(page);
1554 btrfs_start_ordered_extent(inode, ordered, 1);
1555 goto again;
1556 }
Chris Mason247e7432008-07-17 12:53:51 -04001557
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001558 BUG();
Josef Bacik2ac55d42010-02-03 19:33:23 +00001559 btrfs_set_extent_delalloc(inode, page_start, page_end, &cached_state);
Chris Mason247e7432008-07-17 12:53:51 -04001560 ClearPageChecked(page);
1561out:
Josef Bacik2ac55d42010-02-03 19:33:23 +00001562 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, page_end,
1563 &cached_state, GFP_NOFS);
Chris Mason247e7432008-07-17 12:53:51 -04001564out_page:
1565 unlock_page(page);
1566 page_cache_release(page);
Miao Xieb897abe2011-01-26 16:19:22 +08001567 kfree(fixup);
Chris Mason247e7432008-07-17 12:53:51 -04001568}
1569
1570/*
1571 * There are a few paths in the higher layers of the kernel that directly
1572 * set the page dirty bit without asking the filesystem if it is a
1573 * good idea. This causes problems because we want to make sure COW
1574 * properly happens and the data=ordered rules are followed.
1575 *
Chris Masonc8b97812008-10-29 14:49:59 -04001576 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04001577 * hasn't been properly setup for IO. We kick off an async process
1578 * to fix it up. The async helper will wait for ordered extents, set
1579 * the delalloc bit and make it safe to write the page.
1580 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001581static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04001582{
1583 struct inode *inode = page->mapping->host;
1584 struct btrfs_writepage_fixup *fixup;
1585 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason247e7432008-07-17 12:53:51 -04001586
Chris Mason8b62b722009-09-02 16:53:46 -04001587 /* this page is properly in the ordered list */
1588 if (TestClearPagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001589 return 0;
1590
1591 if (PageChecked(page))
1592 return -EAGAIN;
1593
1594 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
1595 if (!fixup)
1596 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04001597
Chris Mason247e7432008-07-17 12:53:51 -04001598 SetPageChecked(page);
1599 page_cache_get(page);
1600 fixup->work.func = btrfs_writepage_fixup_worker;
1601 fixup->page = page;
1602 btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work);
1603 return -EAGAIN;
1604}
1605
Yan Zhengd899e052008-10-30 14:25:28 -04001606static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
1607 struct inode *inode, u64 file_pos,
1608 u64 disk_bytenr, u64 disk_num_bytes,
1609 u64 num_bytes, u64 ram_bytes,
1610 u8 compression, u8 encryption,
1611 u16 other_encoding, int extent_type)
1612{
1613 struct btrfs_root *root = BTRFS_I(inode)->root;
1614 struct btrfs_file_extent_item *fi;
1615 struct btrfs_path *path;
1616 struct extent_buffer *leaf;
1617 struct btrfs_key ins;
1618 u64 hint;
1619 int ret;
1620
1621 path = btrfs_alloc_path();
1622 BUG_ON(!path);
1623
Chris Masonb9473432009-03-13 11:00:37 -04001624 path->leave_spinning = 1;
Chris Masona1ed8352009-09-11 12:27:37 -04001625
1626 /*
1627 * we may be replacing one extent in the tree with another.
1628 * The new extent is pinned in the extent map, and we don't want
1629 * to drop it from the cache until it is completely in the btree.
1630 *
1631 * So, tell btrfs_drop_extents to leave this extent in the cache.
1632 * the caller is expected to unpin it and allow it to be merged
1633 * with the others.
1634 */
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001635 ret = btrfs_drop_extents(trans, inode, file_pos, file_pos + num_bytes,
1636 &hint, 0);
Yan Zhengd899e052008-10-30 14:25:28 -04001637 BUG_ON(ret);
1638
1639 ins.objectid = inode->i_ino;
1640 ins.offset = file_pos;
1641 ins.type = BTRFS_EXTENT_DATA_KEY;
1642 ret = btrfs_insert_empty_item(trans, root, path, &ins, sizeof(*fi));
1643 BUG_ON(ret);
1644 leaf = path->nodes[0];
1645 fi = btrfs_item_ptr(leaf, path->slots[0],
1646 struct btrfs_file_extent_item);
1647 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
1648 btrfs_set_file_extent_type(leaf, fi, extent_type);
1649 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
1650 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
1651 btrfs_set_file_extent_offset(leaf, fi, 0);
1652 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
1653 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
1654 btrfs_set_file_extent_compression(leaf, fi, compression);
1655 btrfs_set_file_extent_encryption(leaf, fi, encryption);
1656 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
Chris Masonb9473432009-03-13 11:00:37 -04001657
1658 btrfs_unlock_up_safe(path, 1);
1659 btrfs_set_lock_blocking(leaf);
1660
Yan Zhengd899e052008-10-30 14:25:28 -04001661 btrfs_mark_buffer_dirty(leaf);
1662
1663 inode_add_bytes(inode, num_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -04001664
1665 ins.objectid = disk_bytenr;
1666 ins.offset = disk_num_bytes;
1667 ins.type = BTRFS_EXTENT_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001668 ret = btrfs_alloc_reserved_file_extent(trans, root,
1669 root->root_key.objectid,
1670 inode->i_ino, file_pos, &ins);
Yan Zhengd899e052008-10-30 14:25:28 -04001671 BUG_ON(ret);
Yan Zhengd899e052008-10-30 14:25:28 -04001672 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04001673
Yan Zhengd899e052008-10-30 14:25:28 -04001674 return 0;
1675}
1676
Chris Mason5d13a982009-03-13 11:41:46 -04001677/*
1678 * helper function for btrfs_finish_ordered_io, this
1679 * just reads in some of the csum leaves to prime them into ram
1680 * before we start the transaction. It limits the amount of btree
1681 * reads required while inside the transaction.
1682 */
Chris Masond352ac62008-09-29 15:18:18 -04001683/* as ordered data IO finishes, this gets called so we can finish
1684 * an ordered extent if the range of bytes in the file it covers are
1685 * fully written.
1686 */
Chris Mason211f90e2008-07-18 11:56:15 -04001687static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001688{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001689 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001690 struct btrfs_trans_handle *trans = NULL;
Chris Mason5d13a982009-03-13 11:41:46 -04001691 struct btrfs_ordered_extent *ordered_extent = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001692 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001693 struct extent_state *cached_state = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08001694 int compress_type = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001695 int ret;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001696 bool nolock = false;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001697
Josef Bacik5a1a3df2010-02-02 20:51:14 +00001698 ret = btrfs_dec_test_ordered_pending(inode, &ordered_extent, start,
1699 end - start + 1);
Chris Masonba1da2f2008-07-17 12:54:15 -04001700 if (!ret)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001701 return 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001702 BUG_ON(!ordered_extent);
Josef Bacikefd049f2010-02-02 20:50:10 +00001703
Josef Bacik0cb59c92010-07-02 12:14:14 -04001704 nolock = (root == root->fs_info->tree_root);
1705
Yan, Zhengc2167752009-11-12 09:34:21 +00001706 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
1707 BUG_ON(!list_empty(&ordered_extent->list));
1708 ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent);
1709 if (!ret) {
Josef Bacik0cb59c92010-07-02 12:14:14 -04001710 if (nolock)
1711 trans = btrfs_join_transaction_nolock(root, 1);
1712 else
1713 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00001714 BUG_ON(IS_ERR(trans));
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001715 btrfs_set_trans_block_group(trans, inode);
1716 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Yan, Zhengc2167752009-11-12 09:34:21 +00001717 ret = btrfs_update_inode(trans, root, inode);
1718 BUG_ON(ret);
Yan, Zhengc2167752009-11-12 09:34:21 +00001719 }
1720 goto out;
1721 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001722
Josef Bacik2ac55d42010-02-03 19:33:23 +00001723 lock_extent_bits(io_tree, ordered_extent->file_offset,
1724 ordered_extent->file_offset + ordered_extent->len - 1,
1725 0, &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001726
Josef Bacik0cb59c92010-07-02 12:14:14 -04001727 if (nolock)
1728 trans = btrfs_join_transaction_nolock(root, 1);
1729 else
1730 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00001731 BUG_ON(IS_ERR(trans));
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001732 btrfs_set_trans_block_group(trans, inode);
1733 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Yan, Zhengc2167752009-11-12 09:34:21 +00001734
Chris Masonc8b97812008-10-29 14:49:59 -04001735 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Li Zefan261507a02010-12-17 14:21:50 +08001736 compress_type = ordered_extent->compress_type;
Yan Zhengd899e052008-10-30 14:25:28 -04001737 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Li Zefan261507a02010-12-17 14:21:50 +08001738 BUG_ON(compress_type);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001739 ret = btrfs_mark_extent_written(trans, inode,
Yan Zhengd899e052008-10-30 14:25:28 -04001740 ordered_extent->file_offset,
1741 ordered_extent->file_offset +
1742 ordered_extent->len);
1743 BUG_ON(ret);
1744 } else {
Josef Bacik0af3d002010-06-21 14:48:16 -04001745 BUG_ON(root == root->fs_info->tree_root);
Yan Zhengd899e052008-10-30 14:25:28 -04001746 ret = insert_reserved_file_extent(trans, inode,
1747 ordered_extent->file_offset,
1748 ordered_extent->start,
1749 ordered_extent->disk_len,
1750 ordered_extent->len,
1751 ordered_extent->len,
Li Zefan261507a02010-12-17 14:21:50 +08001752 compress_type, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04001753 BTRFS_FILE_EXTENT_REG);
Chris Masona1ed8352009-09-11 12:27:37 -04001754 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
1755 ordered_extent->file_offset,
1756 ordered_extent->len);
Yan Zhengd899e052008-10-30 14:25:28 -04001757 BUG_ON(ret);
1758 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00001759 unlock_extent_cached(io_tree, ordered_extent->file_offset,
1760 ordered_extent->file_offset +
1761 ordered_extent->len - 1, &cached_state, GFP_NOFS);
1762
Chris Masone6dcd2d2008-07-17 12:53:50 -04001763 add_pending_csums(trans, inode, ordered_extent->file_offset,
1764 &ordered_extent->list);
1765
Yan, Zhengc2167752009-11-12 09:34:21 +00001766 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
1767 ret = btrfs_update_inode(trans, root, inode);
1768 BUG_ON(ret);
Yan, Zhengc2167752009-11-12 09:34:21 +00001769out:
Josef Bacik0cb59c92010-07-02 12:14:14 -04001770 if (nolock) {
1771 if (trans)
1772 btrfs_end_transaction_nolock(trans, root);
1773 } else {
1774 btrfs_delalloc_release_metadata(inode, ordered_extent->len);
1775 if (trans)
1776 btrfs_end_transaction(trans, root);
1777 }
1778
Chris Masone6dcd2d2008-07-17 12:53:50 -04001779 /* once for us */
1780 btrfs_put_ordered_extent(ordered_extent);
1781 /* once for the tree */
1782 btrfs_put_ordered_extent(ordered_extent);
1783
Chris Masone6dcd2d2008-07-17 12:53:50 -04001784 return 0;
1785}
1786
Christoph Hellwigb2950862008-12-02 09:54:17 -05001787static int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04001788 struct extent_state *state, int uptodate)
1789{
Chris Mason8b62b722009-09-02 16:53:46 -04001790 ClearPagePrivate2(page);
Chris Mason211f90e2008-07-18 11:56:15 -04001791 return btrfs_finish_ordered_io(page->mapping->host, start, end);
1792}
1793
Chris Masond352ac62008-09-29 15:18:18 -04001794/*
1795 * When IO fails, either with EIO or csum verification fails, we
1796 * try other mirrors that might have a good copy of the data. This
1797 * io_failure_record is used to record state as we go through all the
1798 * mirrors. If another mirror has good data, the page is set up to date
1799 * and things continue. If a good mirror can't be found, the original
1800 * bio end_io callback is called to indicate things have failed.
1801 */
Chris Mason7e383262008-04-09 16:28:12 -04001802struct io_failure_record {
1803 struct page *page;
1804 u64 start;
1805 u64 len;
1806 u64 logical;
Chris Masond20f7042008-12-08 16:58:54 -05001807 unsigned long bio_flags;
Chris Mason7e383262008-04-09 16:28:12 -04001808 int last_mirror;
1809};
1810
Christoph Hellwigb2950862008-12-02 09:54:17 -05001811static int btrfs_io_failed_hook(struct bio *failed_bio,
Chris Mason1259ab72008-05-12 13:39:03 -04001812 struct page *page, u64 start, u64 end,
1813 struct extent_state *state)
Chris Mason7e383262008-04-09 16:28:12 -04001814{
1815 struct io_failure_record *failrec = NULL;
1816 u64 private;
1817 struct extent_map *em;
1818 struct inode *inode = page->mapping->host;
1819 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Chris Mason3b951512008-04-17 11:29:12 -04001820 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason7e383262008-04-09 16:28:12 -04001821 struct bio *bio;
1822 int num_copies;
1823 int ret;
Chris Mason1259ab72008-05-12 13:39:03 -04001824 int rw;
Chris Mason7e383262008-04-09 16:28:12 -04001825 u64 logical;
1826
1827 ret = get_state_private(failure_tree, start, &private);
1828 if (ret) {
Chris Mason7e383262008-04-09 16:28:12 -04001829 failrec = kmalloc(sizeof(*failrec), GFP_NOFS);
1830 if (!failrec)
1831 return -ENOMEM;
1832 failrec->start = start;
1833 failrec->len = end - start + 1;
1834 failrec->last_mirror = 0;
Chris Masond20f7042008-12-08 16:58:54 -05001835 failrec->bio_flags = 0;
Chris Mason7e383262008-04-09 16:28:12 -04001836
Chris Mason890871b2009-09-02 16:24:52 -04001837 read_lock(&em_tree->lock);
Chris Mason3b951512008-04-17 11:29:12 -04001838 em = lookup_extent_mapping(em_tree, start, failrec->len);
1839 if (em->start > start || em->start + em->len < start) {
1840 free_extent_map(em);
1841 em = NULL;
1842 }
Chris Mason890871b2009-09-02 16:24:52 -04001843 read_unlock(&em_tree->lock);
Chris Mason7e383262008-04-09 16:28:12 -04001844
1845 if (!em || IS_ERR(em)) {
1846 kfree(failrec);
1847 return -EIO;
1848 }
1849 logical = start - em->start;
1850 logical = em->block_start + logical;
Chris Masond20f7042008-12-08 16:58:54 -05001851 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
1852 logical = em->block_start;
1853 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08001854 extent_set_compress_type(&failrec->bio_flags,
1855 em->compress_type);
Chris Masond20f7042008-12-08 16:58:54 -05001856 }
Chris Mason7e383262008-04-09 16:28:12 -04001857 failrec->logical = logical;
1858 free_extent_map(em);
1859 set_extent_bits(failure_tree, start, end, EXTENT_LOCKED |
1860 EXTENT_DIRTY, GFP_NOFS);
Chris Mason587f7702008-04-11 12:16:46 -04001861 set_state_private(failure_tree, start,
1862 (u64)(unsigned long)failrec);
Chris Mason7e383262008-04-09 16:28:12 -04001863 } else {
Chris Mason587f7702008-04-11 12:16:46 -04001864 failrec = (struct io_failure_record *)(unsigned long)private;
Chris Mason7e383262008-04-09 16:28:12 -04001865 }
1866 num_copies = btrfs_num_copies(
1867 &BTRFS_I(inode)->root->fs_info->mapping_tree,
1868 failrec->logical, failrec->len);
1869 failrec->last_mirror++;
1870 if (!state) {
Chris Masoncad321a2008-12-17 14:51:42 -05001871 spin_lock(&BTRFS_I(inode)->io_tree.lock);
Chris Mason7e383262008-04-09 16:28:12 -04001872 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
1873 failrec->start,
1874 EXTENT_LOCKED);
1875 if (state && state->start != failrec->start)
1876 state = NULL;
Chris Masoncad321a2008-12-17 14:51:42 -05001877 spin_unlock(&BTRFS_I(inode)->io_tree.lock);
Chris Mason7e383262008-04-09 16:28:12 -04001878 }
1879 if (!state || failrec->last_mirror > num_copies) {
1880 set_state_private(failure_tree, failrec->start, 0);
1881 clear_extent_bits(failure_tree, failrec->start,
1882 failrec->start + failrec->len - 1,
1883 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
1884 kfree(failrec);
1885 return -EIO;
1886 }
1887 bio = bio_alloc(GFP_NOFS, 1);
1888 bio->bi_private = state;
1889 bio->bi_end_io = failed_bio->bi_end_io;
1890 bio->bi_sector = failrec->logical >> 9;
1891 bio->bi_bdev = failed_bio->bi_bdev;
Chris Masone1c4b742008-04-22 13:26:46 -04001892 bio->bi_size = 0;
Chris Masond20f7042008-12-08 16:58:54 -05001893
Chris Mason7e383262008-04-09 16:28:12 -04001894 bio_add_page(bio, page, failrec->len, start - page_offset(page));
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001895 if (failed_bio->bi_rw & REQ_WRITE)
Chris Mason1259ab72008-05-12 13:39:03 -04001896 rw = WRITE;
1897 else
1898 rw = READ;
1899
1900 BTRFS_I(inode)->io_tree.ops->submit_bio_hook(inode, rw, bio,
Chris Masonc8b97812008-10-29 14:49:59 -04001901 failrec->last_mirror,
Chris Masoneaf25d92010-05-25 09:48:28 -04001902 failrec->bio_flags, 0);
Chris Mason1259ab72008-05-12 13:39:03 -04001903 return 0;
1904}
1905
Chris Masond352ac62008-09-29 15:18:18 -04001906/*
1907 * each time an IO finishes, we do a fast check in the IO failure tree
1908 * to see if we need to process or clean up an io_failure_record
1909 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001910static int btrfs_clean_io_failures(struct inode *inode, u64 start)
Chris Mason1259ab72008-05-12 13:39:03 -04001911{
1912 u64 private;
1913 u64 private_failure;
1914 struct io_failure_record *failure;
1915 int ret;
1916
1917 private = 0;
1918 if (count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
Chris Masonec29ed52011-02-23 16:23:20 -05001919 (u64)-1, 1, EXTENT_DIRTY, 0)) {
Chris Mason1259ab72008-05-12 13:39:03 -04001920 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree,
1921 start, &private_failure);
1922 if (ret == 0) {
1923 failure = (struct io_failure_record *)(unsigned long)
1924 private_failure;
1925 set_state_private(&BTRFS_I(inode)->io_failure_tree,
1926 failure->start, 0);
1927 clear_extent_bits(&BTRFS_I(inode)->io_failure_tree,
1928 failure->start,
1929 failure->start + failure->len - 1,
1930 EXTENT_DIRTY | EXTENT_LOCKED,
1931 GFP_NOFS);
1932 kfree(failure);
1933 }
1934 }
Chris Mason7e383262008-04-09 16:28:12 -04001935 return 0;
1936}
1937
Chris Masond352ac62008-09-29 15:18:18 -04001938/*
1939 * when reads are done, we need to check csums to verify the data is correct
1940 * if there's a match, we allow the bio to finish. If not, we go through
1941 * the io_failure_record routines to find good copies
1942 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001943static int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason70dec802008-01-29 09:59:12 -05001944 struct extent_state *state)
Chris Mason07157aa2007-08-30 08:50:51 -04001945{
Chris Mason35ebb932007-10-30 16:56:53 -04001946 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -04001947 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05001948 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -04001949 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -05001950 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -04001951 int ret;
Chris Masonff79f812007-10-15 16:22:25 -04001952 struct btrfs_root *root = BTRFS_I(inode)->root;
1953 u32 csum = ~(u32)0;
Chris Masond1310b22008-01-24 16:13:08 -05001954
Chris Masond20f7042008-12-08 16:58:54 -05001955 if (PageChecked(page)) {
1956 ClearPageChecked(page);
1957 goto good;
1958 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001959
1960 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Chris Masonb6cda9b2007-12-14 15:30:32 -05001961 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05001962
Yan Zheng17d217f2008-12-12 10:03:38 -05001963 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04001964 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001965 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM,
1966 GFP_NOFS);
1967 return 0;
1968 }
1969
Yanc2e639f2008-02-04 08:57:25 -05001970 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -05001971 private = state->private;
1972 ret = 0;
1973 } else {
1974 ret = get_state_private(io_tree, start, &private);
1975 }
Chris Mason9ab86c82009-01-07 09:48:51 -05001976 kaddr = kmap_atomic(page, KM_USER0);
Chris Masond3977122009-01-05 21:25:51 -05001977 if (ret)
Chris Mason07157aa2007-08-30 08:50:51 -04001978 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05001979
Chris Masonff79f812007-10-15 16:22:25 -04001980 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
1981 btrfs_csum_final(csum, (char *)&csum);
Chris Masond3977122009-01-05 21:25:51 -05001982 if (csum != private)
Chris Mason07157aa2007-08-30 08:50:51 -04001983 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05001984
Chris Mason9ab86c82009-01-07 09:48:51 -05001985 kunmap_atomic(kaddr, KM_USER0);
Chris Masond20f7042008-12-08 16:58:54 -05001986good:
Chris Mason7e383262008-04-09 16:28:12 -04001987 /* if the io failure tree for this inode is non-empty,
1988 * check to see if we've recovered from a failed IO
1989 */
Chris Mason1259ab72008-05-12 13:39:03 -04001990 btrfs_clean_io_failures(inode, start);
Chris Mason07157aa2007-08-30 08:50:51 -04001991 return 0;
1992
1993zeroit:
Chris Mason193f2842009-04-27 07:29:05 -04001994 if (printk_ratelimit()) {
1995 printk(KERN_INFO "btrfs csum failed ino %lu off %llu csum %u "
1996 "private %llu\n", page->mapping->host->i_ino,
1997 (unsigned long long)start, csum,
1998 (unsigned long long)private);
1999 }
Chris Masondb945352007-10-15 16:15:53 -04002000 memset(kaddr + offset, 1, end - start + 1);
2001 flush_dcache_page(page);
Chris Mason9ab86c82009-01-07 09:48:51 -05002002 kunmap_atomic(kaddr, KM_USER0);
Chris Mason3b951512008-04-17 11:29:12 -04002003 if (private == 0)
2004 return 0;
Chris Mason7e383262008-04-09 16:28:12 -04002005 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -04002006}
Chris Masonb888db22007-08-27 16:49:44 -04002007
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002008struct delayed_iput {
2009 struct list_head list;
2010 struct inode *inode;
2011};
2012
2013void btrfs_add_delayed_iput(struct inode *inode)
2014{
2015 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2016 struct delayed_iput *delayed;
2017
2018 if (atomic_add_unless(&inode->i_count, -1, 1))
2019 return;
2020
2021 delayed = kmalloc(sizeof(*delayed), GFP_NOFS | __GFP_NOFAIL);
2022 delayed->inode = inode;
2023
2024 spin_lock(&fs_info->delayed_iput_lock);
2025 list_add_tail(&delayed->list, &fs_info->delayed_iputs);
2026 spin_unlock(&fs_info->delayed_iput_lock);
2027}
2028
2029void btrfs_run_delayed_iputs(struct btrfs_root *root)
2030{
2031 LIST_HEAD(list);
2032 struct btrfs_fs_info *fs_info = root->fs_info;
2033 struct delayed_iput *delayed;
2034 int empty;
2035
2036 spin_lock(&fs_info->delayed_iput_lock);
2037 empty = list_empty(&fs_info->delayed_iputs);
2038 spin_unlock(&fs_info->delayed_iput_lock);
2039 if (empty)
2040 return;
2041
2042 down_read(&root->fs_info->cleanup_work_sem);
2043 spin_lock(&fs_info->delayed_iput_lock);
2044 list_splice_init(&fs_info->delayed_iputs, &list);
2045 spin_unlock(&fs_info->delayed_iput_lock);
2046
2047 while (!list_empty(&list)) {
2048 delayed = list_entry(list.next, struct delayed_iput, list);
2049 list_del(&delayed->list);
2050 iput(delayed->inode);
2051 kfree(delayed);
2052 }
2053 up_read(&root->fs_info->cleanup_work_sem);
2054}
2055
Josef Bacik7b128762008-07-24 12:17:14 -04002056/*
Yan, Zhengd68fc572010-05-16 10:49:58 -04002057 * calculate extra metadata reservation when snapshotting a subvolume
2058 * contains orphan files.
2059 */
2060void btrfs_orphan_pre_snapshot(struct btrfs_trans_handle *trans,
2061 struct btrfs_pending_snapshot *pending,
2062 u64 *bytes_to_reserve)
2063{
2064 struct btrfs_root *root;
2065 struct btrfs_block_rsv *block_rsv;
2066 u64 num_bytes;
2067 int index;
2068
2069 root = pending->root;
2070 if (!root->orphan_block_rsv || list_empty(&root->orphan_list))
2071 return;
2072
2073 block_rsv = root->orphan_block_rsv;
2074
2075 /* orphan block reservation for the snapshot */
2076 num_bytes = block_rsv->size;
2077
2078 /*
2079 * after the snapshot is created, COWing tree blocks may use more
2080 * space than it frees. So we should make sure there is enough
2081 * reserved space.
2082 */
2083 index = trans->transid & 0x1;
2084 if (block_rsv->reserved + block_rsv->freed[index] < block_rsv->size) {
2085 num_bytes += block_rsv->size -
2086 (block_rsv->reserved + block_rsv->freed[index]);
2087 }
2088
2089 *bytes_to_reserve += num_bytes;
2090}
2091
2092void btrfs_orphan_post_snapshot(struct btrfs_trans_handle *trans,
2093 struct btrfs_pending_snapshot *pending)
2094{
2095 struct btrfs_root *root = pending->root;
2096 struct btrfs_root *snap = pending->snap;
2097 struct btrfs_block_rsv *block_rsv;
2098 u64 num_bytes;
2099 int index;
2100 int ret;
2101
2102 if (!root->orphan_block_rsv || list_empty(&root->orphan_list))
2103 return;
2104
2105 /* refill source subvolume's orphan block reservation */
2106 block_rsv = root->orphan_block_rsv;
2107 index = trans->transid & 0x1;
2108 if (block_rsv->reserved + block_rsv->freed[index] < block_rsv->size) {
2109 num_bytes = block_rsv->size -
2110 (block_rsv->reserved + block_rsv->freed[index]);
2111 ret = btrfs_block_rsv_migrate(&pending->block_rsv,
2112 root->orphan_block_rsv,
2113 num_bytes);
2114 BUG_ON(ret);
2115 }
2116
2117 /* setup orphan block reservation for the snapshot */
2118 block_rsv = btrfs_alloc_block_rsv(snap);
2119 BUG_ON(!block_rsv);
2120
2121 btrfs_add_durable_block_rsv(root->fs_info, block_rsv);
2122 snap->orphan_block_rsv = block_rsv;
2123
2124 num_bytes = root->orphan_block_rsv->size;
2125 ret = btrfs_block_rsv_migrate(&pending->block_rsv,
2126 block_rsv, num_bytes);
2127 BUG_ON(ret);
2128
2129#if 0
2130 /* insert orphan item for the snapshot */
2131 WARN_ON(!root->orphan_item_inserted);
2132 ret = btrfs_insert_orphan_item(trans, root->fs_info->tree_root,
2133 snap->root_key.objectid);
2134 BUG_ON(ret);
2135 snap->orphan_item_inserted = 1;
2136#endif
2137}
2138
2139enum btrfs_orphan_cleanup_state {
2140 ORPHAN_CLEANUP_STARTED = 1,
2141 ORPHAN_CLEANUP_DONE = 2,
2142};
2143
2144/*
2145 * This is called in transaction commmit time. If there are no orphan
2146 * files in the subvolume, it removes orphan item and frees block_rsv
2147 * structure.
2148 */
2149void btrfs_orphan_commit_root(struct btrfs_trans_handle *trans,
2150 struct btrfs_root *root)
2151{
2152 int ret;
2153
2154 if (!list_empty(&root->orphan_list) ||
2155 root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE)
2156 return;
2157
2158 if (root->orphan_item_inserted &&
2159 btrfs_root_refs(&root->root_item) > 0) {
2160 ret = btrfs_del_orphan_item(trans, root->fs_info->tree_root,
2161 root->root_key.objectid);
2162 BUG_ON(ret);
2163 root->orphan_item_inserted = 0;
2164 }
2165
2166 if (root->orphan_block_rsv) {
2167 WARN_ON(root->orphan_block_rsv->size > 0);
2168 btrfs_free_block_rsv(root, root->orphan_block_rsv);
2169 root->orphan_block_rsv = NULL;
2170 }
2171}
2172
2173/*
Josef Bacik7b128762008-07-24 12:17:14 -04002174 * This creates an orphan entry for the given inode in case something goes
2175 * wrong in the middle of an unlink/truncate.
Yan, Zhengd68fc572010-05-16 10:49:58 -04002176 *
2177 * NOTE: caller of this function should reserve 5 units of metadata for
2178 * this function.
Josef Bacik7b128762008-07-24 12:17:14 -04002179 */
2180int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
2181{
2182 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002183 struct btrfs_block_rsv *block_rsv = NULL;
2184 int reserve = 0;
2185 int insert = 0;
2186 int ret;
Josef Bacik7b128762008-07-24 12:17:14 -04002187
Yan, Zhengd68fc572010-05-16 10:49:58 -04002188 if (!root->orphan_block_rsv) {
2189 block_rsv = btrfs_alloc_block_rsv(root);
2190 BUG_ON(!block_rsv);
Josef Bacik7b128762008-07-24 12:17:14 -04002191 }
2192
Yan, Zhengd68fc572010-05-16 10:49:58 -04002193 spin_lock(&root->orphan_lock);
2194 if (!root->orphan_block_rsv) {
2195 root->orphan_block_rsv = block_rsv;
2196 } else if (block_rsv) {
2197 btrfs_free_block_rsv(root, block_rsv);
2198 block_rsv = NULL;
2199 }
Josef Bacik7b128762008-07-24 12:17:14 -04002200
Yan, Zhengd68fc572010-05-16 10:49:58 -04002201 if (list_empty(&BTRFS_I(inode)->i_orphan)) {
2202 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
2203#if 0
2204 /*
2205 * For proper ENOSPC handling, we should do orphan
2206 * cleanup when mounting. But this introduces backward
2207 * compatibility issue.
2208 */
2209 if (!xchg(&root->orphan_item_inserted, 1))
2210 insert = 2;
2211 else
2212 insert = 1;
2213#endif
2214 insert = 1;
2215 } else {
2216 WARN_ON(!BTRFS_I(inode)->orphan_meta_reserved);
2217 }
Josef Bacik7b128762008-07-24 12:17:14 -04002218
Yan, Zhengd68fc572010-05-16 10:49:58 -04002219 if (!BTRFS_I(inode)->orphan_meta_reserved) {
2220 BTRFS_I(inode)->orphan_meta_reserved = 1;
2221 reserve = 1;
2222 }
2223 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002224
Yan, Zhengd68fc572010-05-16 10:49:58 -04002225 if (block_rsv)
2226 btrfs_add_durable_block_rsv(root->fs_info, block_rsv);
2227
2228 /* grab metadata reservation from transaction handle */
2229 if (reserve) {
2230 ret = btrfs_orphan_reserve_metadata(trans, inode);
2231 BUG_ON(ret);
2232 }
2233
2234 /* insert an orphan item to track this unlinked/truncated file */
2235 if (insert >= 1) {
2236 ret = btrfs_insert_orphan_item(trans, root, inode->i_ino);
2237 BUG_ON(ret);
2238 }
2239
2240 /* insert an orphan item to track subvolume contains orphan files */
2241 if (insert >= 2) {
2242 ret = btrfs_insert_orphan_item(trans, root->fs_info->tree_root,
2243 root->root_key.objectid);
2244 BUG_ON(ret);
2245 }
2246 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002247}
2248
2249/*
2250 * We have done the truncate/delete so we can go ahead and remove the orphan
2251 * item for this particular inode.
2252 */
2253int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode)
2254{
2255 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002256 int delete_item = 0;
2257 int release_rsv = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002258 int ret = 0;
2259
Yan, Zhengd68fc572010-05-16 10:49:58 -04002260 spin_lock(&root->orphan_lock);
2261 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
2262 list_del_init(&BTRFS_I(inode)->i_orphan);
2263 delete_item = 1;
Josef Bacik7b128762008-07-24 12:17:14 -04002264 }
2265
Yan, Zhengd68fc572010-05-16 10:49:58 -04002266 if (BTRFS_I(inode)->orphan_meta_reserved) {
2267 BTRFS_I(inode)->orphan_meta_reserved = 0;
2268 release_rsv = 1;
2269 }
2270 spin_unlock(&root->orphan_lock);
2271
2272 if (trans && delete_item) {
2273 ret = btrfs_del_orphan_item(trans, root, inode->i_ino);
2274 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04002275 }
2276
Yan, Zhengd68fc572010-05-16 10:49:58 -04002277 if (release_rsv)
2278 btrfs_orphan_release_metadata(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04002279
Yan, Zhengd68fc572010-05-16 10:49:58 -04002280 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002281}
2282
2283/*
2284 * this cleans up any orphans that may be left on the list from the last use
2285 * of this root.
2286 */
2287void btrfs_orphan_cleanup(struct btrfs_root *root)
2288{
2289 struct btrfs_path *path;
2290 struct extent_buffer *leaf;
Josef Bacik7b128762008-07-24 12:17:14 -04002291 struct btrfs_key key, found_key;
2292 struct btrfs_trans_handle *trans;
2293 struct inode *inode;
2294 int ret = 0, nr_unlink = 0, nr_truncate = 0;
2295
Yan, Zhengd68fc572010-05-16 10:49:58 -04002296 if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED))
Josef Bacik7b128762008-07-24 12:17:14 -04002297 return;
Yan, Zhengc71bf092009-11-12 09:34:40 +00002298
2299 path = btrfs_alloc_path();
2300 BUG_ON(!path);
Josef Bacik7b128762008-07-24 12:17:14 -04002301 path->reada = -1;
2302
2303 key.objectid = BTRFS_ORPHAN_OBJECTID;
2304 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
2305 key.offset = (u64)-1;
2306
Josef Bacik7b128762008-07-24 12:17:14 -04002307 while (1) {
2308 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2309 if (ret < 0) {
2310 printk(KERN_ERR "Error searching slot for orphan: %d"
2311 "\n", ret);
2312 break;
2313 }
2314
2315 /*
2316 * if ret == 0 means we found what we were searching for, which
2317 * is weird, but possible, so only screw with path if we didnt
2318 * find the key and see if we have stuff that matches
2319 */
2320 if (ret > 0) {
2321 if (path->slots[0] == 0)
2322 break;
2323 path->slots[0]--;
2324 }
2325
2326 /* pull out the item */
2327 leaf = path->nodes[0];
Josef Bacik7b128762008-07-24 12:17:14 -04002328 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2329
2330 /* make sure the item matches what we want */
2331 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
2332 break;
2333 if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY)
2334 break;
2335
2336 /* release the path since we're done with it */
2337 btrfs_release_path(root, path);
2338
2339 /*
2340 * this is where we are basically btrfs_lookup, without the
2341 * crossing root thing. we store the inode number in the
2342 * offset of the orphan item.
2343 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002344 found_key.objectid = found_key.offset;
2345 found_key.type = BTRFS_INODE_ITEM_KEY;
2346 found_key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +00002347 inode = btrfs_iget(root->fs_info->sb, &found_key, root, NULL);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002348 BUG_ON(IS_ERR(inode));
Josef Bacik7b128762008-07-24 12:17:14 -04002349
Josef Bacik7b128762008-07-24 12:17:14 -04002350 /*
2351 * add this inode to the orphan list so btrfs_orphan_del does
2352 * the proper thing when we hit it
2353 */
Yan, Zhengd68fc572010-05-16 10:49:58 -04002354 spin_lock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002355 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002356 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002357
2358 /*
2359 * if this is a bad inode, means we actually succeeded in
2360 * removing the inode, but not the orphan record, which means
2361 * we need to manually delete the orphan since iput will just
2362 * do a destroy_inode
2363 */
2364 if (is_bad_inode(inode)) {
Yan, Zhenga22285a2010-05-16 10:48:46 -04002365 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002366 BUG_ON(IS_ERR(trans));
Josef Bacik7b128762008-07-24 12:17:14 -04002367 btrfs_orphan_del(trans, inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002368 btrfs_end_transaction(trans, root);
Josef Bacik7b128762008-07-24 12:17:14 -04002369 iput(inode);
2370 continue;
2371 }
2372
2373 /* if we have links, this was a truncate, lets do that */
2374 if (inode->i_nlink) {
Josef Bacika41ad392011-01-31 15:30:16 -05002375 if (!S_ISREG(inode->i_mode)) {
2376 WARN_ON(1);
2377 iput(inode);
2378 continue;
2379 }
Josef Bacik7b128762008-07-24 12:17:14 -04002380 nr_truncate++;
2381 btrfs_truncate(inode);
2382 } else {
2383 nr_unlink++;
2384 }
2385
2386 /* this will do delete_inode and everything for us */
2387 iput(inode);
2388 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002389 btrfs_free_path(path);
2390
2391 root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE;
2392
2393 if (root->orphan_block_rsv)
2394 btrfs_block_rsv_release(root, root->orphan_block_rsv,
2395 (u64)-1);
2396
2397 if (root->orphan_block_rsv || root->orphan_item_inserted) {
2398 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00002399 BUG_ON(IS_ERR(trans));
Yan, Zhengd68fc572010-05-16 10:49:58 -04002400 btrfs_end_transaction(trans, root);
2401 }
Josef Bacik7b128762008-07-24 12:17:14 -04002402
2403 if (nr_unlink)
2404 printk(KERN_INFO "btrfs: unlinked %d orphans\n", nr_unlink);
2405 if (nr_truncate)
2406 printk(KERN_INFO "btrfs: truncated %d orphans\n", nr_truncate);
Josef Bacik7b128762008-07-24 12:17:14 -04002407}
2408
Chris Masond352ac62008-09-29 15:18:18 -04002409/*
Chris Mason46a53cc2009-04-27 11:47:50 -04002410 * very simple check to peek ahead in the leaf looking for xattrs. If we
2411 * don't find any xattrs, we know there can't be any acls.
2412 *
2413 * slot is the slot the inode is in, objectid is the objectid of the inode
2414 */
2415static noinline int acls_after_inode_item(struct extent_buffer *leaf,
2416 int slot, u64 objectid)
2417{
2418 u32 nritems = btrfs_header_nritems(leaf);
2419 struct btrfs_key found_key;
2420 int scanned = 0;
2421
2422 slot++;
2423 while (slot < nritems) {
2424 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2425
2426 /* we found a different objectid, there must not be acls */
2427 if (found_key.objectid != objectid)
2428 return 0;
2429
2430 /* we found an xattr, assume we've got an acl */
2431 if (found_key.type == BTRFS_XATTR_ITEM_KEY)
2432 return 1;
2433
2434 /*
2435 * we found a key greater than an xattr key, there can't
2436 * be any acls later on
2437 */
2438 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
2439 return 0;
2440
2441 slot++;
2442 scanned++;
2443
2444 /*
2445 * it goes inode, inode backrefs, xattrs, extents,
2446 * so if there are a ton of hard links to an inode there can
2447 * be a lot of backrefs. Don't waste time searching too hard,
2448 * this is just an optimization
2449 */
2450 if (scanned >= 8)
2451 break;
2452 }
2453 /* we hit the end of the leaf before we found an xattr or
2454 * something larger than an xattr. We have to assume the inode
2455 * has acls
2456 */
2457 return 1;
2458}
2459
2460/*
Chris Masond352ac62008-09-29 15:18:18 -04002461 * read an inode from the btree into the in-memory inode
2462 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002463static void btrfs_read_locked_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002464{
2465 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002466 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002467 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -04002468 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -04002469 struct btrfs_root *root = BTRFS_I(inode)->root;
2470 struct btrfs_key location;
Chris Mason46a53cc2009-04-27 11:47:50 -04002471 int maybe_acls;
Chris Mason39279cc2007-06-12 06:35:45 -04002472 u64 alloc_group_block;
Josef Bacik618e21d2007-07-11 10:18:17 -04002473 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04002474 int ret;
2475
2476 path = btrfs_alloc_path();
2477 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -04002478 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05002479
Chris Mason39279cc2007-06-12 06:35:45 -04002480 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002481 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04002482 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -04002483
Chris Mason5f39d392007-10-15 16:14:19 -04002484 leaf = path->nodes[0];
2485 inode_item = btrfs_item_ptr(leaf, path->slots[0],
2486 struct btrfs_inode_item);
2487
2488 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
2489 inode->i_nlink = btrfs_inode_nlink(leaf, inode_item);
2490 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
2491 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
Chris Masondbe674a2008-07-17 12:54:05 -04002492 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002493
2494 tspec = btrfs_inode_atime(inode_item);
2495 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2496 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2497
2498 tspec = btrfs_inode_mtime(inode_item);
2499 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2500 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2501
2502 tspec = btrfs_inode_ctime(inode_item);
2503 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2504 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2505
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002506 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04002507 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Chris Masonc3027eb2008-12-08 16:40:21 -05002508 BTRFS_I(inode)->sequence = btrfs_inode_sequence(leaf, inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04002509 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04002510 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002511 rdev = btrfs_inode_rdev(leaf, inode_item);
2512
Josef Bacikaec74772008-07-24 12:12:38 -04002513 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05002514 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Josef Bacikaec74772008-07-24 12:12:38 -04002515
Chris Mason5f39d392007-10-15 16:14:19 -04002516 alloc_group_block = btrfs_inode_block_group(leaf, inode_item);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002517
Chris Mason46a53cc2009-04-27 11:47:50 -04002518 /*
2519 * try to precache a NULL acl entry for files that don't have
2520 * any xattrs or acls
2521 */
2522 maybe_acls = acls_after_inode_item(leaf, path->slots[0], inode->i_ino);
Al Viro72c04902009-06-24 16:58:48 -04002523 if (!maybe_acls)
2524 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04002525
Yan Zhengd2fb3432008-12-11 16:30:39 -05002526 BTRFS_I(inode)->block_group = btrfs_find_block_group(root, 0,
2527 alloc_group_block, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002528 btrfs_free_path(path);
2529 inode_item = NULL;
2530
Chris Mason39279cc2007-06-12 06:35:45 -04002531 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04002532 case S_IFREG:
2533 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04002534 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05002535 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04002536 inode->i_fop = &btrfs_file_operations;
2537 inode->i_op = &btrfs_file_inode_operations;
2538 break;
2539 case S_IFDIR:
2540 inode->i_fop = &btrfs_dir_file_operations;
2541 if (root == root->fs_info->tree_root)
2542 inode->i_op = &btrfs_dir_ro_inode_operations;
2543 else
2544 inode->i_op = &btrfs_dir_inode_operations;
2545 break;
2546 case S_IFLNK:
2547 inode->i_op = &btrfs_symlink_inode_operations;
2548 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04002549 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04002550 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04002551 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05002552 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04002553 init_special_inode(inode, inode->i_mode, rdev);
2554 break;
Chris Mason39279cc2007-06-12 06:35:45 -04002555 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002556
2557 btrfs_update_iflags(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002558 return;
2559
2560make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04002561 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002562 make_bad_inode(inode);
2563}
2564
Chris Masond352ac62008-09-29 15:18:18 -04002565/*
2566 * given a leaf and an inode, copy the inode fields into the leaf
2567 */
Chris Masone02119d2008-09-05 16:13:11 -04002568static void fill_inode_item(struct btrfs_trans_handle *trans,
2569 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04002570 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04002571 struct inode *inode)
2572{
Chris Mason5f39d392007-10-15 16:14:19 -04002573 btrfs_set_inode_uid(leaf, item, inode->i_uid);
2574 btrfs_set_inode_gid(leaf, item, inode->i_gid);
Chris Masondbe674a2008-07-17 12:54:05 -04002575 btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size);
Chris Mason5f39d392007-10-15 16:14:19 -04002576 btrfs_set_inode_mode(leaf, item, inode->i_mode);
2577 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
2578
2579 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
2580 inode->i_atime.tv_sec);
2581 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
2582 inode->i_atime.tv_nsec);
2583
2584 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
2585 inode->i_mtime.tv_sec);
2586 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
2587 inode->i_mtime.tv_nsec);
2588
2589 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
2590 inode->i_ctime.tv_sec);
2591 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
2592 inode->i_ctime.tv_nsec);
2593
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002594 btrfs_set_inode_nbytes(leaf, item, inode_get_bytes(inode));
Chris Masone02119d2008-09-05 16:13:11 -04002595 btrfs_set_inode_generation(leaf, item, BTRFS_I(inode)->generation);
Chris Masonc3027eb2008-12-08 16:40:21 -05002596 btrfs_set_inode_sequence(leaf, item, BTRFS_I(inode)->sequence);
Chris Masone02119d2008-09-05 16:13:11 -04002597 btrfs_set_inode_transid(leaf, item, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002598 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -05002599 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Yan Zhengd2fb3432008-12-11 16:30:39 -05002600 btrfs_set_inode_block_group(leaf, item, BTRFS_I(inode)->block_group);
Chris Mason39279cc2007-06-12 06:35:45 -04002601}
2602
Chris Masond352ac62008-09-29 15:18:18 -04002603/*
2604 * copy everything in the in-memory inode into the btree.
2605 */
Chris Masond3977122009-01-05 21:25:51 -05002606noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
2607 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002608{
2609 struct btrfs_inode_item *inode_item;
2610 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002611 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002612 int ret;
2613
2614 path = btrfs_alloc_path();
2615 BUG_ON(!path);
Chris Masonb9473432009-03-13 11:00:37 -04002616 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002617 ret = btrfs_lookup_inode(trans, root, path,
2618 &BTRFS_I(inode)->location, 1);
2619 if (ret) {
2620 if (ret > 0)
2621 ret = -ENOENT;
2622 goto failed;
2623 }
2624
Chris Masonb4ce94d2009-02-04 09:25:08 -05002625 btrfs_unlock_up_safe(path, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002626 leaf = path->nodes[0];
2627 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04002628 struct btrfs_inode_item);
2629
Chris Masone02119d2008-09-05 16:13:11 -04002630 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002631 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002632 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002633 ret = 0;
2634failed:
Chris Mason39279cc2007-06-12 06:35:45 -04002635 btrfs_free_path(path);
2636 return ret;
2637}
2638
2639
Chris Masond352ac62008-09-29 15:18:18 -04002640/*
2641 * unlink helper that gets used here in inode.c and in the tree logging
2642 * recovery code. It remove a link in a directory with a given name, and
2643 * also drops the back refs in the inode to the directory
2644 */
Chris Masone02119d2008-09-05 16:13:11 -04002645int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2646 struct btrfs_root *root,
2647 struct inode *dir, struct inode *inode,
2648 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04002649{
2650 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04002651 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002652 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002653 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04002654 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04002655 u64 index;
Chris Mason39279cc2007-06-12 06:35:45 -04002656
2657 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002658 if (!path) {
2659 ret = -ENOMEM;
Tsutomu Itoh554233a2011-02-03 03:16:25 +00002660 goto out;
Chris Mason54aa1f42007-06-22 14:16:25 -04002661 }
2662
Chris Masonb9473432009-03-13 11:00:37 -04002663 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002664 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
2665 name, name_len, -1);
2666 if (IS_ERR(di)) {
2667 ret = PTR_ERR(di);
2668 goto err;
2669 }
2670 if (!di) {
2671 ret = -ENOENT;
2672 goto err;
2673 }
Chris Mason5f39d392007-10-15 16:14:19 -04002674 leaf = path->nodes[0];
2675 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04002676 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04002677 if (ret)
2678 goto err;
Chris Mason39279cc2007-06-12 06:35:45 -04002679 btrfs_release_path(root, path);
2680
Josef Bacikaec74772008-07-24 12:12:38 -04002681 ret = btrfs_del_inode_ref(trans, root, name, name_len,
Chris Masone02119d2008-09-05 16:13:11 -04002682 inode->i_ino,
2683 dir->i_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04002684 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05002685 printk(KERN_INFO "btrfs failed to delete reference to %.*s, "
Josef Bacikaec74772008-07-24 12:12:38 -04002686 "inode %lu parent %lu\n", name_len, name,
Chris Masone02119d2008-09-05 16:13:11 -04002687 inode->i_ino, dir->i_ino);
Josef Bacikaec74772008-07-24 12:12:38 -04002688 goto err;
2689 }
2690
Chris Mason39279cc2007-06-12 06:35:45 -04002691 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
Josef Bacikaec74772008-07-24 12:12:38 -04002692 index, name, name_len, -1);
Chris Mason39279cc2007-06-12 06:35:45 -04002693 if (IS_ERR(di)) {
2694 ret = PTR_ERR(di);
2695 goto err;
2696 }
2697 if (!di) {
2698 ret = -ENOENT;
2699 goto err;
2700 }
2701 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason925baed2008-06-25 16:01:30 -04002702 btrfs_release_path(root, path);
Chris Mason39279cc2007-06-12 06:35:45 -04002703
Chris Masone02119d2008-09-05 16:13:11 -04002704 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
2705 inode, dir->i_ino);
Chris Mason49eb7e42008-09-11 15:53:12 -04002706 BUG_ON(ret != 0 && ret != -ENOENT);
Chris Masone02119d2008-09-05 16:13:11 -04002707
2708 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
2709 dir, index);
Chris Mason6418c962010-10-30 07:34:24 -04002710 if (ret == -ENOENT)
2711 ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002712err:
2713 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002714 if (ret)
2715 goto out;
2716
2717 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
2718 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
2719 btrfs_update_inode(trans, root, dir);
2720 btrfs_drop_nlink(inode);
2721 ret = btrfs_update_inode(trans, root, inode);
Chris Masone02119d2008-09-05 16:13:11 -04002722out:
Chris Mason39279cc2007-06-12 06:35:45 -04002723 return ret;
2724}
2725
Yan, Zhenga22285a2010-05-16 10:48:46 -04002726/* helper to check if there is any shared block in the path */
2727static int check_path_shared(struct btrfs_root *root,
2728 struct btrfs_path *path)
2729{
2730 struct extent_buffer *eb;
2731 int level;
Dan Carpenter0e4dcbe2010-06-01 08:23:11 +00002732 u64 refs = 1;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002733
2734 for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
Josef Bacikdedefd72011-01-24 21:43:18 +00002735 int ret;
2736
Yan, Zhenga22285a2010-05-16 10:48:46 -04002737 if (!path->nodes[level])
2738 break;
2739 eb = path->nodes[level];
2740 if (!btrfs_block_can_be_shared(root, eb))
2741 continue;
2742 ret = btrfs_lookup_extent_info(NULL, root, eb->start, eb->len,
2743 &refs, NULL);
2744 if (refs > 1)
2745 return 1;
2746 }
Josef Bacikdedefd72011-01-24 21:43:18 +00002747 return 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002748}
2749
2750/*
2751 * helper to start transaction for unlink and rmdir.
2752 *
2753 * unlink and rmdir are special in btrfs, they do not always free space.
2754 * so in enospc case, we should make sure they will free space before
2755 * allowing them to use the global metadata reservation.
2756 */
2757static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir,
2758 struct dentry *dentry)
2759{
2760 struct btrfs_trans_handle *trans;
2761 struct btrfs_root *root = BTRFS_I(dir)->root;
2762 struct btrfs_path *path;
2763 struct btrfs_inode_ref *ref;
2764 struct btrfs_dir_item *di;
2765 struct inode *inode = dentry->d_inode;
2766 u64 index;
2767 int check_link = 1;
2768 int err = -ENOSPC;
2769 int ret;
2770
2771 trans = btrfs_start_transaction(root, 10);
2772 if (!IS_ERR(trans) || PTR_ERR(trans) != -ENOSPC)
2773 return trans;
2774
2775 if (inode->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
2776 return ERR_PTR(-ENOSPC);
2777
2778 /* check if there is someone else holds reference */
2779 if (S_ISDIR(inode->i_mode) && atomic_read(&inode->i_count) > 1)
2780 return ERR_PTR(-ENOSPC);
2781
2782 if (atomic_read(&inode->i_count) > 2)
2783 return ERR_PTR(-ENOSPC);
2784
2785 if (xchg(&root->fs_info->enospc_unlink, 1))
2786 return ERR_PTR(-ENOSPC);
2787
2788 path = btrfs_alloc_path();
2789 if (!path) {
2790 root->fs_info->enospc_unlink = 0;
2791 return ERR_PTR(-ENOMEM);
2792 }
2793
2794 trans = btrfs_start_transaction(root, 0);
2795 if (IS_ERR(trans)) {
2796 btrfs_free_path(path);
2797 root->fs_info->enospc_unlink = 0;
2798 return trans;
2799 }
2800
2801 path->skip_locking = 1;
2802 path->search_commit_root = 1;
2803
2804 ret = btrfs_lookup_inode(trans, root, path,
2805 &BTRFS_I(dir)->location, 0);
2806 if (ret < 0) {
2807 err = ret;
2808 goto out;
2809 }
2810 if (ret == 0) {
2811 if (check_path_shared(root, path))
2812 goto out;
2813 } else {
2814 check_link = 0;
2815 }
2816 btrfs_release_path(root, path);
2817
2818 ret = btrfs_lookup_inode(trans, root, path,
2819 &BTRFS_I(inode)->location, 0);
2820 if (ret < 0) {
2821 err = ret;
2822 goto out;
2823 }
2824 if (ret == 0) {
2825 if (check_path_shared(root, path))
2826 goto out;
2827 } else {
2828 check_link = 0;
2829 }
2830 btrfs_release_path(root, path);
2831
2832 if (ret == 0 && S_ISREG(inode->i_mode)) {
2833 ret = btrfs_lookup_file_extent(trans, root, path,
2834 inode->i_ino, (u64)-1, 0);
2835 if (ret < 0) {
2836 err = ret;
2837 goto out;
2838 }
2839 BUG_ON(ret == 0);
2840 if (check_path_shared(root, path))
2841 goto out;
2842 btrfs_release_path(root, path);
2843 }
2844
2845 if (!check_link) {
2846 err = 0;
2847 goto out;
2848 }
2849
2850 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
2851 dentry->d_name.name, dentry->d_name.len, 0);
2852 if (IS_ERR(di)) {
2853 err = PTR_ERR(di);
2854 goto out;
2855 }
2856 if (di) {
2857 if (check_path_shared(root, path))
2858 goto out;
2859 } else {
2860 err = 0;
2861 goto out;
2862 }
2863 btrfs_release_path(root, path);
2864
2865 ref = btrfs_lookup_inode_ref(trans, root, path,
2866 dentry->d_name.name, dentry->d_name.len,
2867 inode->i_ino, dir->i_ino, 0);
2868 if (IS_ERR(ref)) {
2869 err = PTR_ERR(ref);
2870 goto out;
2871 }
2872 BUG_ON(!ref);
2873 if (check_path_shared(root, path))
2874 goto out;
2875 index = btrfs_inode_ref_index(path->nodes[0], ref);
2876 btrfs_release_path(root, path);
2877
2878 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino, index,
2879 dentry->d_name.name, dentry->d_name.len, 0);
2880 if (IS_ERR(di)) {
2881 err = PTR_ERR(di);
2882 goto out;
2883 }
2884 BUG_ON(ret == -ENOENT);
2885 if (check_path_shared(root, path))
2886 goto out;
2887
2888 err = 0;
2889out:
2890 btrfs_free_path(path);
2891 if (err) {
2892 btrfs_end_transaction(trans, root);
2893 root->fs_info->enospc_unlink = 0;
2894 return ERR_PTR(err);
2895 }
2896
2897 trans->block_rsv = &root->fs_info->global_block_rsv;
2898 return trans;
2899}
2900
2901static void __unlink_end_trans(struct btrfs_trans_handle *trans,
2902 struct btrfs_root *root)
2903{
2904 if (trans->block_rsv == &root->fs_info->global_block_rsv) {
2905 BUG_ON(!root->fs_info->enospc_unlink);
2906 root->fs_info->enospc_unlink = 0;
2907 }
2908 btrfs_end_transaction_throttle(trans, root);
2909}
2910
Chris Mason39279cc2007-06-12 06:35:45 -04002911static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
2912{
Yan, Zhenga22285a2010-05-16 10:48:46 -04002913 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002914 struct btrfs_trans_handle *trans;
Josef Bacik7b128762008-07-24 12:17:14 -04002915 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002916 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05002917 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002918
Yan, Zhenga22285a2010-05-16 10:48:46 -04002919 trans = __unlink_start_trans(dir, dentry);
2920 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002921 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04002922
Chris Mason39279cc2007-06-12 06:35:45 -04002923 btrfs_set_trans_block_group(trans, dir);
Chris Mason12fcfd22009-03-24 10:24:20 -04002924
2925 btrfs_record_unlink_dir(trans, dir, dentry->d_inode, 0);
2926
Chris Masone02119d2008-09-05 16:13:11 -04002927 ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
2928 dentry->d_name.name, dentry->d_name.len);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002929 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04002930
Yan, Zhenga22285a2010-05-16 10:48:46 -04002931 if (inode->i_nlink == 0) {
Josef Bacik7b128762008-07-24 12:17:14 -04002932 ret = btrfs_orphan_add(trans, inode);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002933 BUG_ON(ret);
2934 }
Josef Bacik7b128762008-07-24 12:17:14 -04002935
Chris Masond3c2fdc2007-09-17 10:58:06 -04002936 nr = trans->blocks_used;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002937 __unlink_end_trans(trans, root);
Chris Masond3c2fdc2007-09-17 10:58:06 -04002938 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002939 return ret;
2940}
2941
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002942int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
2943 struct btrfs_root *root,
2944 struct inode *dir, u64 objectid,
2945 const char *name, int name_len)
2946{
2947 struct btrfs_path *path;
2948 struct extent_buffer *leaf;
2949 struct btrfs_dir_item *di;
2950 struct btrfs_key key;
2951 u64 index;
2952 int ret;
2953
2954 path = btrfs_alloc_path();
2955 if (!path)
2956 return -ENOMEM;
2957
2958 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
2959 name, name_len, -1);
2960 BUG_ON(!di || IS_ERR(di));
2961
2962 leaf = path->nodes[0];
2963 btrfs_dir_item_key_to_cpu(leaf, di, &key);
2964 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
2965 ret = btrfs_delete_one_dir_name(trans, root, path, di);
2966 BUG_ON(ret);
2967 btrfs_release_path(root, path);
2968
2969 ret = btrfs_del_root_ref(trans, root->fs_info->tree_root,
2970 objectid, root->root_key.objectid,
2971 dir->i_ino, &index, name, name_len);
2972 if (ret < 0) {
2973 BUG_ON(ret != -ENOENT);
2974 di = btrfs_search_dir_index_item(root, path, dir->i_ino,
2975 name, name_len);
2976 BUG_ON(!di || IS_ERR(di));
2977
2978 leaf = path->nodes[0];
2979 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2980 btrfs_release_path(root, path);
2981 index = key.offset;
2982 }
2983
2984 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
2985 index, name, name_len, -1);
2986 BUG_ON(!di || IS_ERR(di));
2987
2988 leaf = path->nodes[0];
2989 btrfs_dir_item_key_to_cpu(leaf, di, &key);
2990 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
2991 ret = btrfs_delete_one_dir_name(trans, root, path, di);
2992 BUG_ON(ret);
2993 btrfs_release_path(root, path);
2994
2995 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
2996 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
2997 ret = btrfs_update_inode(trans, root, dir);
2998 BUG_ON(ret);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002999
3000 btrfs_free_path(path);
3001 return 0;
3002}
3003
Chris Mason39279cc2007-06-12 06:35:45 -04003004static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
3005{
3006 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05003007 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003008 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003009 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -05003010 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003011
Chris Mason3394e162008-11-17 20:42:26 -05003012 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003013 inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan134d4512007-10-25 15:49:25 -04003014 return -ENOTEMPTY;
3015
Yan, Zhenga22285a2010-05-16 10:48:46 -04003016 trans = __unlink_start_trans(dir, dentry);
3017 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003018 return PTR_ERR(trans);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003019
Chris Mason39279cc2007-06-12 06:35:45 -04003020 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -04003021
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003022 if (unlikely(inode->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
3023 err = btrfs_unlink_subvol(trans, root, dir,
3024 BTRFS_I(inode)->location.objectid,
3025 dentry->d_name.name,
3026 dentry->d_name.len);
3027 goto out;
3028 }
3029
Josef Bacik7b128762008-07-24 12:17:14 -04003030 err = btrfs_orphan_add(trans, inode);
3031 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003032 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003033
Chris Mason39279cc2007-06-12 06:35:45 -04003034 /* now the directory is empty */
Chris Masone02119d2008-09-05 16:13:11 -04003035 err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
3036 dentry->d_name.name, dentry->d_name.len);
Chris Masond3977122009-01-05 21:25:51 -05003037 if (!err)
Chris Masondbe674a2008-07-17 12:54:05 -04003038 btrfs_i_size_write(inode, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003039out:
Chris Masond3c2fdc2007-09-17 10:58:06 -04003040 nr = trans->blocks_used;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003041 __unlink_end_trans(trans, root);
Chris Masond3c2fdc2007-09-17 10:58:06 -04003042 btrfs_btree_balance_dirty(root, nr);
Chris Mason39544012007-12-12 14:38:19 -05003043
Chris Mason39279cc2007-06-12 06:35:45 -04003044 return err;
3045}
3046
Chris Masond20f7042008-12-08 16:58:54 -05003047#if 0
Chris Mason39279cc2007-06-12 06:35:45 -04003048/*
Chris Mason323ac952008-10-01 19:05:46 -04003049 * when truncating bytes in a file, it is possible to avoid reading
3050 * the leaves that contain only checksum items. This can be the
3051 * majority of the IO required to delete a large file, but it must
3052 * be done carefully.
3053 *
3054 * The keys in the level just above the leaves are checked to make sure
3055 * the lowest key in a given leaf is a csum key, and starts at an offset
3056 * after the new size.
3057 *
3058 * Then the key for the next leaf is checked to make sure it also has
3059 * a checksum item for the same file. If it does, we know our target leaf
3060 * contains only checksum items, and it can be safely freed without reading
3061 * it.
3062 *
3063 * This is just an optimization targeted at large files. It may do
3064 * nothing. It will return 0 unless things went badly.
3065 */
3066static noinline int drop_csum_leaves(struct btrfs_trans_handle *trans,
3067 struct btrfs_root *root,
3068 struct btrfs_path *path,
3069 struct inode *inode, u64 new_size)
3070{
3071 struct btrfs_key key;
3072 int ret;
3073 int nritems;
3074 struct btrfs_key found_key;
3075 struct btrfs_key other_key;
Yan Zheng5b84e8d2008-10-09 11:46:19 -04003076 struct btrfs_leaf_ref *ref;
3077 u64 leaf_gen;
3078 u64 leaf_start;
Chris Mason323ac952008-10-01 19:05:46 -04003079
3080 path->lowest_level = 1;
3081 key.objectid = inode->i_ino;
3082 key.type = BTRFS_CSUM_ITEM_KEY;
3083 key.offset = new_size;
3084again:
3085 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
3086 if (ret < 0)
3087 goto out;
3088
3089 if (path->nodes[1] == NULL) {
3090 ret = 0;
3091 goto out;
3092 }
3093 ret = 0;
3094 btrfs_node_key_to_cpu(path->nodes[1], &found_key, path->slots[1]);
3095 nritems = btrfs_header_nritems(path->nodes[1]);
3096
3097 if (!nritems)
3098 goto out;
3099
3100 if (path->slots[1] >= nritems)
3101 goto next_node;
3102
3103 /* did we find a key greater than anything we want to delete? */
3104 if (found_key.objectid > inode->i_ino ||
3105 (found_key.objectid == inode->i_ino && found_key.type > key.type))
3106 goto out;
3107
3108 /* we check the next key in the node to make sure the leave contains
3109 * only checksum items. This comparison doesn't work if our
3110 * leaf is the last one in the node
3111 */
3112 if (path->slots[1] + 1 >= nritems) {
3113next_node:
3114 /* search forward from the last key in the node, this
3115 * will bring us into the next node in the tree
3116 */
3117 btrfs_node_key_to_cpu(path->nodes[1], &found_key, nritems - 1);
3118
3119 /* unlikely, but we inc below, so check to be safe */
3120 if (found_key.offset == (u64)-1)
3121 goto out;
3122
3123 /* search_forward needs a path with locks held, do the
3124 * search again for the original key. It is possible
3125 * this will race with a balance and return a path that
3126 * we could modify, but this drop is just an optimization
3127 * and is allowed to miss some leaves.
3128 */
3129 btrfs_release_path(root, path);
3130 found_key.offset++;
3131
3132 /* setup a max key for search_forward */
3133 other_key.offset = (u64)-1;
3134 other_key.type = key.type;
3135 other_key.objectid = key.objectid;
3136
3137 path->keep_locks = 1;
3138 ret = btrfs_search_forward(root, &found_key, &other_key,
3139 path, 0, 0);
3140 path->keep_locks = 0;
3141 if (ret || found_key.objectid != key.objectid ||
3142 found_key.type != key.type) {
3143 ret = 0;
3144 goto out;
3145 }
3146
3147 key.offset = found_key.offset;
3148 btrfs_release_path(root, path);
3149 cond_resched();
3150 goto again;
3151 }
3152
3153 /* we know there's one more slot after us in the tree,
3154 * read that key so we can verify it is also a checksum item
3155 */
3156 btrfs_node_key_to_cpu(path->nodes[1], &other_key, path->slots[1] + 1);
3157
3158 if (found_key.objectid < inode->i_ino)
3159 goto next_key;
3160
3161 if (found_key.type != key.type || found_key.offset < new_size)
3162 goto next_key;
3163
3164 /*
3165 * if the key for the next leaf isn't a csum key from this objectid,
3166 * we can't be sure there aren't good items inside this leaf.
3167 * Bail out
3168 */
3169 if (other_key.objectid != inode->i_ino || other_key.type != key.type)
3170 goto out;
3171
Yan Zheng5b84e8d2008-10-09 11:46:19 -04003172 leaf_start = btrfs_node_blockptr(path->nodes[1], path->slots[1]);
3173 leaf_gen = btrfs_node_ptr_generation(path->nodes[1], path->slots[1]);
Chris Mason323ac952008-10-01 19:05:46 -04003174 /*
3175 * it is safe to delete this leaf, it contains only
3176 * csum items from this inode at an offset >= new_size
3177 */
Yan Zheng5b84e8d2008-10-09 11:46:19 -04003178 ret = btrfs_del_leaf(trans, root, path, leaf_start);
Chris Mason323ac952008-10-01 19:05:46 -04003179 BUG_ON(ret);
3180
Yan Zheng5b84e8d2008-10-09 11:46:19 -04003181 if (root->ref_cows && leaf_gen < trans->transid) {
3182 ref = btrfs_alloc_leaf_ref(root, 0);
3183 if (ref) {
3184 ref->root_gen = root->root_key.offset;
3185 ref->bytenr = leaf_start;
3186 ref->owner = 0;
3187 ref->generation = leaf_gen;
3188 ref->nritems = 0;
3189
Chris Masonbd56b302009-02-04 09:27:02 -05003190 btrfs_sort_leaf_ref(ref);
3191
Yan Zheng5b84e8d2008-10-09 11:46:19 -04003192 ret = btrfs_add_leaf_ref(root, ref, 0);
3193 WARN_ON(ret);
3194 btrfs_free_leaf_ref(root, ref);
3195 } else {
3196 WARN_ON(1);
3197 }
3198 }
Chris Mason323ac952008-10-01 19:05:46 -04003199next_key:
3200 btrfs_release_path(root, path);
3201
3202 if (other_key.objectid == inode->i_ino &&
3203 other_key.type == key.type && other_key.offset > key.offset) {
3204 key.offset = other_key.offset;
3205 cond_resched();
3206 goto again;
3207 }
3208 ret = 0;
3209out:
3210 /* fixup any changes we've made to the path */
3211 path->lowest_level = 0;
3212 path->keep_locks = 0;
3213 btrfs_release_path(root, path);
3214 return ret;
3215}
3216
Chris Masond20f7042008-12-08 16:58:54 -05003217#endif
3218
Chris Mason323ac952008-10-01 19:05:46 -04003219/*
Chris Mason39279cc2007-06-12 06:35:45 -04003220 * this can truncate away extent items, csum items and directory items.
3221 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04003222 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04003223 *
3224 * csum items that cross the new i_size are truncated to the new size
3225 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04003226 *
3227 * min_type is the minimum key type to truncate down to. If set to 0, this
3228 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04003229 */
Yan, Zheng80825102009-11-12 09:35:36 +00003230int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
3231 struct btrfs_root *root,
3232 struct inode *inode,
3233 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003234{
Chris Mason39279cc2007-06-12 06:35:45 -04003235 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003236 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003237 struct btrfs_file_extent_item *fi;
Yan, Zheng80825102009-11-12 09:35:36 +00003238 struct btrfs_key key;
3239 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04003240 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04003241 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003242 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003243 u64 item_end = 0;
Yan, Zheng80825102009-11-12 09:35:36 +00003244 u64 mask = root->sectorsize - 1;
3245 u32 found_type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -04003246 int found_extent;
3247 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05003248 int pending_del_nr = 0;
3249 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04003250 int extent_type = -1;
Chris Mason771ed682008-11-06 22:02:51 -05003251 int encoding;
Yan, Zheng80825102009-11-12 09:35:36 +00003252 int ret;
3253 int err = 0;
3254
3255 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04003256
Josef Bacik0af3d002010-06-21 14:48:16 -04003257 if (root->ref_cows || root == root->fs_info->tree_root)
Zheng Yan5b21f2e2008-09-26 10:05:38 -04003258 btrfs_drop_extent_cache(inode, new_size & (~mask), (u64)-1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003259
Chris Mason39279cc2007-06-12 06:35:45 -04003260 path = btrfs_alloc_path();
3261 BUG_ON(!path);
Julia Lawall33c17ad2009-07-22 16:49:01 -04003262 path->reada = -1;
Chris Mason5f39d392007-10-15 16:14:19 -04003263
Chris Mason39279cc2007-06-12 06:35:45 -04003264 key.objectid = inode->i_ino;
3265 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04003266 key.type = (u8)-1;
3267
Chris Mason85e21ba2008-01-29 15:11:36 -05003268search_again:
Chris Masonb9473432009-03-13 11:00:37 -04003269 path->leave_spinning = 1;
Chris Mason85e21ba2008-01-29 15:11:36 -05003270 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Yan, Zheng80825102009-11-12 09:35:36 +00003271 if (ret < 0) {
3272 err = ret;
3273 goto out;
3274 }
Chris Masond3977122009-01-05 21:25:51 -05003275
Chris Mason85e21ba2008-01-29 15:11:36 -05003276 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003277 /* there are no items in the tree for us to truncate, we're
3278 * done
3279 */
Yan, Zheng80825102009-11-12 09:35:36 +00003280 if (path->slots[0] == 0)
3281 goto out;
Chris Mason85e21ba2008-01-29 15:11:36 -05003282 path->slots[0]--;
3283 }
3284
Chris Masond3977122009-01-05 21:25:51 -05003285 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04003286 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04003287 leaf = path->nodes[0];
3288 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3289 found_type = btrfs_key_type(&found_key);
Chris Mason771ed682008-11-06 22:02:51 -05003290 encoding = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003291
Chris Mason5f39d392007-10-15 16:14:19 -04003292 if (found_key.objectid != inode->i_ino)
Chris Mason39279cc2007-06-12 06:35:45 -04003293 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003294
Chris Mason85e21ba2008-01-29 15:11:36 -05003295 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003296 break;
3297
Chris Mason5f39d392007-10-15 16:14:19 -04003298 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04003299 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04003300 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04003301 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04003302 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05003303 encoding = btrfs_file_extent_compression(leaf, fi);
3304 encoding |= btrfs_file_extent_encryption(leaf, fi);
3305 encoding |= btrfs_file_extent_other_encoding(leaf, fi);
3306
Chris Mason179e29e2007-11-01 11:28:41 -04003307 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04003308 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04003309 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04003310 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04003311 item_end += btrfs_file_extent_inline_len(leaf,
Chris Masonc8b97812008-10-29 14:49:59 -04003312 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003313 }
Yan008630c2007-11-07 13:31:09 -05003314 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04003315 }
Yan, Zheng80825102009-11-12 09:35:36 +00003316 if (found_type > min_type) {
Chris Mason39279cc2007-06-12 06:35:45 -04003317 del_item = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00003318 } else {
3319 if (item_end < new_size)
3320 break;
3321 if (found_key.offset >= new_size)
3322 del_item = 1;
3323 else
3324 del_item = 0;
3325 }
Chris Mason39279cc2007-06-12 06:35:45 -04003326 found_extent = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003327 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04003328 if (found_type != BTRFS_EXTENT_DATA_KEY)
3329 goto delete;
3330
3331 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04003332 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04003333 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05003334 if (!del_item && !encoding) {
Chris Masondb945352007-10-15 16:15:53 -04003335 u64 orig_num_bytes =
3336 btrfs_file_extent_num_bytes(leaf, fi);
Chris Masone02119d2008-09-05 16:13:11 -04003337 extent_num_bytes = new_size -
Chris Mason5f39d392007-10-15 16:14:19 -04003338 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -05003339 extent_num_bytes = extent_num_bytes &
3340 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04003341 btrfs_set_file_extent_num_bytes(leaf, fi,
3342 extent_num_bytes);
3343 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05003344 extent_num_bytes);
Chris Masone02119d2008-09-05 16:13:11 -04003345 if (root->ref_cows && extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003346 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04003347 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003348 } else {
Chris Masondb945352007-10-15 16:15:53 -04003349 extent_num_bytes =
3350 btrfs_file_extent_disk_num_bytes(leaf,
3351 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003352 extent_offset = found_key.offset -
3353 btrfs_file_extent_offset(leaf, fi);
3354
Chris Mason39279cc2007-06-12 06:35:45 -04003355 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05003356 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003357 if (extent_start != 0) {
3358 found_extent = 1;
Chris Masone02119d2008-09-05 16:13:11 -04003359 if (root->ref_cows)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003360 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04003361 }
3362 }
Chris Mason90692182008-02-08 13:49:28 -05003363 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003364 /*
3365 * we can't truncate inline items that have had
3366 * special encodings
3367 */
3368 if (!del_item &&
3369 btrfs_file_extent_compression(leaf, fi) == 0 &&
3370 btrfs_file_extent_encryption(leaf, fi) == 0 &&
3371 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003372 u32 size = new_size - found_key.offset;
3373
3374 if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003375 inode_sub_bytes(inode, item_end + 1 -
3376 new_size);
Chris Masone02119d2008-09-05 16:13:11 -04003377 }
3378 size =
3379 btrfs_file_extent_calc_inline_size(size);
Chris Mason90692182008-02-08 13:49:28 -05003380 ret = btrfs_truncate_item(trans, root, path,
Chris Masone02119d2008-09-05 16:13:11 -04003381 size, 1);
Chris Mason90692182008-02-08 13:49:28 -05003382 BUG_ON(ret);
Chris Masone02119d2008-09-05 16:13:11 -04003383 } else if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003384 inode_sub_bytes(inode, item_end + 1 -
3385 found_key.offset);
Chris Mason90692182008-02-08 13:49:28 -05003386 }
Chris Mason39279cc2007-06-12 06:35:45 -04003387 }
Chris Mason179e29e2007-11-01 11:28:41 -04003388delete:
Chris Mason39279cc2007-06-12 06:35:45 -04003389 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05003390 if (!pending_del_nr) {
3391 /* no pending yet, add ourselves */
3392 pending_del_slot = path->slots[0];
3393 pending_del_nr = 1;
3394 } else if (pending_del_nr &&
3395 path->slots[0] + 1 == pending_del_slot) {
3396 /* hop on the pending chunk */
3397 pending_del_nr++;
3398 pending_del_slot = path->slots[0];
3399 } else {
Chris Masond3977122009-01-05 21:25:51 -05003400 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05003401 }
Chris Mason39279cc2007-06-12 06:35:45 -04003402 } else {
3403 break;
3404 }
Josef Bacik0af3d002010-06-21 14:48:16 -04003405 if (found_extent && (root->ref_cows ||
3406 root == root->fs_info->tree_root)) {
Chris Masonb9473432009-03-13 11:00:37 -04003407 btrfs_set_path_blocking(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003408 ret = btrfs_free_extent(trans, root, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003409 extent_num_bytes, 0,
3410 btrfs_header_owner(leaf),
3411 inode->i_ino, extent_offset);
Chris Mason39279cc2007-06-12 06:35:45 -04003412 BUG_ON(ret);
3413 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003414
Yan, Zheng80825102009-11-12 09:35:36 +00003415 if (found_type == BTRFS_INODE_ITEM_KEY)
3416 break;
3417
3418 if (path->slots[0] == 0 ||
3419 path->slots[0] != pending_del_slot) {
3420 if (root->ref_cows) {
3421 err = -EAGAIN;
3422 goto out;
3423 }
3424 if (pending_del_nr) {
3425 ret = btrfs_del_items(trans, root, path,
3426 pending_del_slot,
3427 pending_del_nr);
3428 BUG_ON(ret);
3429 pending_del_nr = 0;
3430 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003431 btrfs_release_path(root, path);
3432 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00003433 } else {
3434 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05003435 }
Chris Mason39279cc2007-06-12 06:35:45 -04003436 }
Yan, Zheng80825102009-11-12 09:35:36 +00003437out:
Chris Mason85e21ba2008-01-29 15:11:36 -05003438 if (pending_del_nr) {
3439 ret = btrfs_del_items(trans, root, path, pending_del_slot,
3440 pending_del_nr);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003441 BUG_ON(ret);
Chris Mason85e21ba2008-01-29 15:11:36 -05003442 }
Chris Mason39279cc2007-06-12 06:35:45 -04003443 btrfs_free_path(path);
Yan, Zheng80825102009-11-12 09:35:36 +00003444 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003445}
3446
Chris Masona52d9a82007-08-27 16:49:44 -04003447/*
3448 * taken from block_truncate_page, but does cow as it zeros out
3449 * any bytes left in the last page in the file.
3450 */
3451static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
3452{
3453 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -04003454 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003455 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
3456 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003457 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003458 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04003459 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04003460 pgoff_t index = from >> PAGE_CACHE_SHIFT;
3461 unsigned offset = from & (PAGE_CACHE_SIZE-1);
3462 struct page *page;
3463 int ret = 0;
3464 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003465 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04003466
3467 if ((offset & (blocksize - 1)) == 0)
3468 goto out;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003469 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003470 if (ret)
3471 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003472
3473 ret = -ENOMEM;
Chris Mason211c17f2008-05-15 09:13:45 -04003474again:
Chris Masona52d9a82007-08-27 16:49:44 -04003475 page = grab_cache_page(mapping, index);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003476 if (!page) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003477 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Masona52d9a82007-08-27 16:49:44 -04003478 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04003479 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003480
3481 page_start = page_offset(page);
3482 page_end = page_start + PAGE_CACHE_SIZE - 1;
3483
Chris Masona52d9a82007-08-27 16:49:44 -04003484 if (!PageUptodate(page)) {
3485 ret = btrfs_readpage(NULL, page);
3486 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04003487 if (page->mapping != mapping) {
3488 unlock_page(page);
3489 page_cache_release(page);
3490 goto again;
3491 }
Chris Masona52d9a82007-08-27 16:49:44 -04003492 if (!PageUptodate(page)) {
3493 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04003494 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04003495 }
3496 }
Chris Mason211c17f2008-05-15 09:13:45 -04003497 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003498
Josef Bacik2ac55d42010-02-03 19:33:23 +00003499 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state,
3500 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003501 set_page_extent_mapped(page);
3502
3503 ordered = btrfs_lookup_ordered_extent(inode, page_start);
3504 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003505 unlock_extent_cached(io_tree, page_start, page_end,
3506 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003507 unlock_page(page);
3508 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04003509 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003510 btrfs_put_ordered_extent(ordered);
3511 goto again;
3512 }
3513
Josef Bacik2ac55d42010-02-03 19:33:23 +00003514 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Josef Bacik5d5e1032009-10-13 16:46:49 -04003515 EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003516 0, 0, &cached_state, GFP_NOFS);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003517
Josef Bacik2ac55d42010-02-03 19:33:23 +00003518 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
3519 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003520 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003521 unlock_extent_cached(io_tree, page_start, page_end,
3522 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003523 goto out_unlock;
3524 }
3525
Chris Masone6dcd2d2008-07-17 12:53:50 -04003526 ret = 0;
3527 if (offset != PAGE_CACHE_SIZE) {
3528 kaddr = kmap(page);
3529 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
3530 flush_dcache_page(page);
3531 kunmap(page);
3532 }
Chris Mason247e7432008-07-17 12:53:51 -04003533 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003534 set_page_dirty(page);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003535 unlock_extent_cached(io_tree, page_start, page_end, &cached_state,
3536 GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04003537
Chris Mason89642222008-07-24 09:41:53 -04003538out_unlock:
Josef Bacik5d5e1032009-10-13 16:46:49 -04003539 if (ret)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003540 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason39279cc2007-06-12 06:35:45 -04003541 unlock_page(page);
3542 page_cache_release(page);
3543out:
3544 return ret;
3545}
3546
Josef Bacika41ad392011-01-31 15:30:16 -05003547int btrfs_cont_expand(struct inode *inode, loff_t oldsize, loff_t size)
Yan Zheng9036c102008-10-30 14:19:41 -04003548{
3549 struct btrfs_trans_handle *trans;
3550 struct btrfs_root *root = BTRFS_I(inode)->root;
3551 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003552 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003553 struct extent_state *cached_state = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04003554 u64 mask = root->sectorsize - 1;
Josef Bacika41ad392011-01-31 15:30:16 -05003555 u64 hole_start = (oldsize + mask) & ~mask;
Yan Zheng9036c102008-10-30 14:19:41 -04003556 u64 block_end = (size + mask) & ~mask;
3557 u64 last_byte;
3558 u64 cur_offset;
3559 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003560 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003561
3562 if (size <= hole_start)
3563 return 0;
3564
Yan Zheng9036c102008-10-30 14:19:41 -04003565 while (1) {
3566 struct btrfs_ordered_extent *ordered;
3567 btrfs_wait_ordered_range(inode, hole_start,
3568 block_end - hole_start);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003569 lock_extent_bits(io_tree, hole_start, block_end - 1, 0,
3570 &cached_state, GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003571 ordered = btrfs_lookup_ordered_extent(inode, hole_start);
3572 if (!ordered)
3573 break;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003574 unlock_extent_cached(io_tree, hole_start, block_end - 1,
3575 &cached_state, GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003576 btrfs_put_ordered_extent(ordered);
3577 }
3578
Yan Zheng9036c102008-10-30 14:19:41 -04003579 cur_offset = hole_start;
3580 while (1) {
3581 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
3582 block_end - cur_offset, 0);
3583 BUG_ON(IS_ERR(em) || !em);
3584 last_byte = min(extent_map_end(em), block_end);
3585 last_byte = (last_byte + mask) & ~mask;
Yan, Zheng80825102009-11-12 09:35:36 +00003586 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Chris Mason771ed682008-11-06 22:02:51 -05003587 u64 hint_byte = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003588 hole_size = last_byte - cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00003589
Yan, Zhenga22285a2010-05-16 10:48:46 -04003590 trans = btrfs_start_transaction(root, 2);
3591 if (IS_ERR(trans)) {
3592 err = PTR_ERR(trans);
Chris Mason771ed682008-11-06 22:02:51 -05003593 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003594 }
Yan, Zheng80825102009-11-12 09:35:36 +00003595 btrfs_set_trans_block_group(trans, inode);
3596
3597 err = btrfs_drop_extents(trans, inode, cur_offset,
3598 cur_offset + hole_size,
3599 &hint_byte, 1);
Josef Bacik3893e332011-01-31 16:03:11 -05003600 if (err)
3601 break;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003602
Yan Zheng9036c102008-10-30 14:19:41 -04003603 err = btrfs_insert_file_extent(trans, root,
3604 inode->i_ino, cur_offset, 0,
3605 0, hole_size, 0, hole_size,
3606 0, 0, 0);
Josef Bacik3893e332011-01-31 16:03:11 -05003607 if (err)
3608 break;
Yan, Zheng80825102009-11-12 09:35:36 +00003609
Yan Zheng9036c102008-10-30 14:19:41 -04003610 btrfs_drop_extent_cache(inode, hole_start,
3611 last_byte - 1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003612
3613 btrfs_end_transaction(trans, root);
Yan Zheng9036c102008-10-30 14:19:41 -04003614 }
3615 free_extent_map(em);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003616 em = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04003617 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00003618 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04003619 break;
3620 }
3621
Yan, Zhenga22285a2010-05-16 10:48:46 -04003622 free_extent_map(em);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003623 unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state,
3624 GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003625 return err;
3626}
3627
Josef Bacika41ad392011-01-31 15:30:16 -05003628static int btrfs_setsize(struct inode *inode, loff_t newsize)
Yan, Zheng80825102009-11-12 09:35:36 +00003629{
3630 struct btrfs_root *root = BTRFS_I(inode)->root;
3631 struct btrfs_trans_handle *trans;
Josef Bacika41ad392011-01-31 15:30:16 -05003632 loff_t oldsize = i_size_read(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003633 unsigned long nr;
3634 int ret;
3635
Josef Bacika41ad392011-01-31 15:30:16 -05003636 if (newsize == oldsize)
Yan, Zheng80825102009-11-12 09:35:36 +00003637 return 0;
3638
Yan, Zhengd68fc572010-05-16 10:49:58 -04003639 trans = btrfs_start_transaction(root, 5);
3640 if (IS_ERR(trans))
3641 return PTR_ERR(trans);
Yan, Zheng80825102009-11-12 09:35:36 +00003642
Yan, Zheng80825102009-11-12 09:35:36 +00003643 btrfs_set_trans_block_group(trans, inode);
3644
3645 ret = btrfs_orphan_add(trans, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05003646 if (ret) {
3647 btrfs_end_transaction(trans, root);
3648 return ret;
3649 }
Yan, Zheng80825102009-11-12 09:35:36 +00003650
3651 nr = trans->blocks_used;
3652 btrfs_end_transaction(trans, root);
Yan, Zheng80825102009-11-12 09:35:36 +00003653 btrfs_btree_balance_dirty(root, nr);
3654
Josef Bacika41ad392011-01-31 15:30:16 -05003655 if (newsize > oldsize) {
3656 i_size_write(inode, newsize);
3657 btrfs_ordered_update_i_size(inode, i_size_read(inode), NULL);
3658 truncate_pagecache(inode, oldsize, newsize);
3659 ret = btrfs_cont_expand(inode, oldsize, newsize);
Yan, Zheng80825102009-11-12 09:35:36 +00003660 if (ret) {
Josef Bacika41ad392011-01-31 15:30:16 -05003661 btrfs_setsize(inode, oldsize);
Yan, Zheng80825102009-11-12 09:35:36 +00003662 return ret;
3663 }
3664
Yan, Zhengd68fc572010-05-16 10:49:58 -04003665 trans = btrfs_start_transaction(root, 0);
Josef Bacik3893e332011-01-31 16:03:11 -05003666 if (IS_ERR(trans))
3667 return PTR_ERR(trans);
3668
Yan, Zheng80825102009-11-12 09:35:36 +00003669 btrfs_set_trans_block_group(trans, inode);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003670 trans->block_rsv = root->orphan_block_rsv;
3671 BUG_ON(!trans->block_rsv);
Yan, Zheng80825102009-11-12 09:35:36 +00003672
Josef Bacik3893e332011-01-31 16:03:11 -05003673 /*
3674 * If this fails just leave the orphan item so that it can get
3675 * cleaned up next time we mount.
3676 */
Yan, Zheng80825102009-11-12 09:35:36 +00003677 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05003678 if (ret) {
3679 btrfs_end_transaction(trans, root);
3680 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00003681 }
Josef Bacik3893e332011-01-31 16:03:11 -05003682 if (inode->i_nlink > 0)
3683 ret = btrfs_orphan_del(trans, inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003684 nr = trans->blocks_used;
3685 btrfs_end_transaction(trans, root);
3686 btrfs_btree_balance_dirty(root, nr);
Josef Bacika41ad392011-01-31 15:30:16 -05003687 } else {
3688
3689 /*
3690 * We're truncating a file that used to have good data down to
3691 * zero. Make sure it gets into the ordered flush list so that
3692 * any new writes get down to disk quickly.
3693 */
3694 if (newsize == 0)
3695 BTRFS_I(inode)->ordered_data_close = 1;
3696
3697 /* we don't support swapfiles, so vmtruncate shouldn't fail */
3698 truncate_setsize(inode, newsize);
3699 ret = btrfs_truncate(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003700 }
3701
Josef Bacika41ad392011-01-31 15:30:16 -05003702 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00003703}
3704
Chris Mason39279cc2007-06-12 06:35:45 -04003705static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
3706{
3707 struct inode *inode = dentry->d_inode;
Li Zefanb83cc962010-12-20 16:04:08 +08003708 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003709 int err;
3710
Li Zefanb83cc962010-12-20 16:04:08 +08003711 if (btrfs_root_readonly(root))
3712 return -EROFS;
3713
Chris Mason39279cc2007-06-12 06:35:45 -04003714 err = inode_change_ok(inode, attr);
3715 if (err)
3716 return err;
3717
Chris Mason5a3f23d2009-03-31 13:27:11 -04003718 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Josef Bacika41ad392011-01-31 15:30:16 -05003719 err = btrfs_setsize(inode, attr->ia_size);
Yan, Zheng80825102009-11-12 09:35:36 +00003720 if (err)
3721 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003722 }
Yan Zheng9036c102008-10-30 14:19:41 -04003723
Christoph Hellwig10257742010-06-04 11:30:02 +02003724 if (attr->ia_valid) {
3725 setattr_copy(inode, attr);
3726 mark_inode_dirty(inode);
Josef Bacik33268ea2008-07-24 12:16:36 -04003727
Christoph Hellwig10257742010-06-04 11:30:02 +02003728 if (attr->ia_valid & ATTR_MODE)
3729 err = btrfs_acl_chmod(inode);
3730 }
3731
Chris Mason39279cc2007-06-12 06:35:45 -04003732 return err;
3733}
Chris Mason61295eb2008-01-14 16:24:38 -05003734
Al Virobd555972010-06-07 11:35:40 -04003735void btrfs_evict_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003736{
3737 struct btrfs_trans_handle *trans;
3738 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond3c2fdc2007-09-17 10:58:06 -04003739 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04003740 int ret;
3741
3742 truncate_inode_pages(&inode->i_data, 0);
Josef Bacik0af3d002010-06-21 14:48:16 -04003743 if (inode->i_nlink && (btrfs_root_refs(&root->root_item) != 0 ||
3744 root == root->fs_info->tree_root))
Al Virobd555972010-06-07 11:35:40 -04003745 goto no_delete;
3746
Chris Mason39279cc2007-06-12 06:35:45 -04003747 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04003748 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003749 goto no_delete;
3750 }
Al Virobd555972010-06-07 11:35:40 -04003751 /* do we really want it for ->i_nlink > 0 and zero btrfs_root_refs? */
Chris Mason4a096752008-07-21 10:29:44 -04003752 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04003753
Yan, Zhengc71bf092009-11-12 09:34:40 +00003754 if (root->fs_info->log_root_recovering) {
3755 BUG_ON(!list_empty(&BTRFS_I(inode)->i_orphan));
3756 goto no_delete;
3757 }
3758
Yan, Zheng76dda932009-09-21 16:00:26 -04003759 if (inode->i_nlink > 0) {
3760 BUG_ON(btrfs_root_refs(&root->root_item) != 0);
3761 goto no_delete;
3762 }
3763
Chris Masondbe674a2008-07-17 12:54:05 -04003764 btrfs_i_size_write(inode, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003765
Yan, Zheng80825102009-11-12 09:35:36 +00003766 while (1) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04003767 trans = btrfs_start_transaction(root, 0);
3768 BUG_ON(IS_ERR(trans));
Yan, Zheng80825102009-11-12 09:35:36 +00003769 btrfs_set_trans_block_group(trans, inode);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003770 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00003771
Yan, Zhengd68fc572010-05-16 10:49:58 -04003772 ret = btrfs_block_rsv_check(trans, root,
3773 root->orphan_block_rsv, 0, 5);
3774 if (ret) {
3775 BUG_ON(ret != -EAGAIN);
3776 ret = btrfs_commit_transaction(trans, root);
3777 BUG_ON(ret);
3778 continue;
3779 }
3780
3781 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003782 if (ret != -EAGAIN)
3783 break;
3784
3785 nr = trans->blocks_used;
3786 btrfs_end_transaction(trans, root);
3787 trans = NULL;
3788 btrfs_btree_balance_dirty(root, nr);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003789
Josef Bacik7b128762008-07-24 12:17:14 -04003790 }
3791
Yan, Zheng80825102009-11-12 09:35:36 +00003792 if (ret == 0) {
3793 ret = btrfs_orphan_del(trans, inode);
3794 BUG_ON(ret);
3795 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003796
Chris Masond3c2fdc2007-09-17 10:58:06 -04003797 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04003798 btrfs_end_transaction(trans, root);
Chris Masond3c2fdc2007-09-17 10:58:06 -04003799 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003800no_delete:
Al Virobd555972010-06-07 11:35:40 -04003801 end_writeback(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003802 return;
Chris Mason39279cc2007-06-12 06:35:45 -04003803}
3804
3805/*
3806 * this returns the key found in the dir entry in the location pointer.
3807 * If no dir entries were found, location->objectid is 0.
3808 */
3809static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
3810 struct btrfs_key *location)
3811{
3812 const char *name = dentry->d_name.name;
3813 int namelen = dentry->d_name.len;
3814 struct btrfs_dir_item *di;
3815 struct btrfs_path *path;
3816 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04003817 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003818
3819 path = btrfs_alloc_path();
3820 BUG_ON(!path);
Chris Mason39544012007-12-12 14:38:19 -05003821
Chris Mason39279cc2007-06-12 06:35:45 -04003822 di = btrfs_lookup_dir_item(NULL, root, path, dir->i_ino, name,
3823 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04003824 if (IS_ERR(di))
3825 ret = PTR_ERR(di);
Chris Masond3977122009-01-05 21:25:51 -05003826
3827 if (!di || IS_ERR(di))
Chris Mason39544012007-12-12 14:38:19 -05003828 goto out_err;
Chris Masond3977122009-01-05 21:25:51 -05003829
Chris Mason5f39d392007-10-15 16:14:19 -04003830 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04003831out:
Chris Mason39279cc2007-06-12 06:35:45 -04003832 btrfs_free_path(path);
3833 return ret;
Chris Mason39544012007-12-12 14:38:19 -05003834out_err:
3835 location->objectid = 0;
3836 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04003837}
3838
3839/*
3840 * when we hit a tree root in a directory, the btrfs part of the inode
3841 * needs to be changed to reflect the root directory of the tree root. This
3842 * is kind of like crossing a mount point.
3843 */
3844static int fixup_tree_root_location(struct btrfs_root *root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003845 struct inode *dir,
3846 struct dentry *dentry,
3847 struct btrfs_key *location,
3848 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04003849{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003850 struct btrfs_path *path;
3851 struct btrfs_root *new_root;
3852 struct btrfs_root_ref *ref;
3853 struct extent_buffer *leaf;
3854 int ret;
3855 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003856
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003857 path = btrfs_alloc_path();
3858 if (!path) {
3859 err = -ENOMEM;
3860 goto out;
3861 }
Chris Mason39279cc2007-06-12 06:35:45 -04003862
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003863 err = -ENOENT;
3864 ret = btrfs_find_root_ref(root->fs_info->tree_root, path,
3865 BTRFS_I(dir)->root->root_key.objectid,
3866 location->objectid);
3867 if (ret) {
3868 if (ret < 0)
3869 err = ret;
3870 goto out;
3871 }
Chris Mason39279cc2007-06-12 06:35:45 -04003872
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003873 leaf = path->nodes[0];
3874 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
3875 if (btrfs_root_ref_dirid(leaf, ref) != dir->i_ino ||
3876 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
3877 goto out;
3878
3879 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
3880 (unsigned long)(ref + 1),
3881 dentry->d_name.len);
3882 if (ret)
3883 goto out;
3884
3885 btrfs_release_path(root->fs_info->tree_root, path);
3886
3887 new_root = btrfs_read_fs_root_no_name(root->fs_info, location);
3888 if (IS_ERR(new_root)) {
3889 err = PTR_ERR(new_root);
3890 goto out;
3891 }
3892
3893 if (btrfs_root_refs(&new_root->root_item) == 0) {
3894 err = -ENOENT;
3895 goto out;
3896 }
3897
3898 *sub_root = new_root;
3899 location->objectid = btrfs_root_dirid(&new_root->root_item);
3900 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04003901 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003902 err = 0;
3903out:
3904 btrfs_free_path(path);
3905 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003906}
3907
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003908static void inode_tree_add(struct inode *inode)
3909{
3910 struct btrfs_root *root = BTRFS_I(inode)->root;
3911 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003912 struct rb_node **p;
3913 struct rb_node *parent;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003914again:
3915 p = &root->inode_tree.rb_node;
3916 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003917
Al Viro1d3382c2010-10-23 15:19:20 -04003918 if (inode_unhashed(inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04003919 return;
3920
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003921 spin_lock(&root->inode_lock);
3922 while (*p) {
3923 parent = *p;
3924 entry = rb_entry(parent, struct btrfs_inode, rb_node);
3925
3926 if (inode->i_ino < entry->vfs_inode.i_ino)
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003927 p = &parent->rb_left;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003928 else if (inode->i_ino > entry->vfs_inode.i_ino)
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003929 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003930 else {
3931 WARN_ON(!(entry->vfs_inode.i_state &
Al Viroa4ffdde2010-06-02 17:38:30 -04003932 (I_WILL_FREE | I_FREEING)));
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003933 rb_erase(parent, &root->inode_tree);
3934 RB_CLEAR_NODE(parent);
3935 spin_unlock(&root->inode_lock);
3936 goto again;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003937 }
3938 }
3939 rb_link_node(&BTRFS_I(inode)->rb_node, parent, p);
3940 rb_insert_color(&BTRFS_I(inode)->rb_node, &root->inode_tree);
3941 spin_unlock(&root->inode_lock);
3942}
3943
3944static void inode_tree_del(struct inode *inode)
3945{
3946 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04003947 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003948
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003949 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003950 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003951 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003952 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04003953 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003954 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003955 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04003956
Josef Bacik0af3d002010-06-21 14:48:16 -04003957 /*
3958 * Free space cache has inodes in the tree root, but the tree root has a
3959 * root_refs of 0, so this could end up dropping the tree root as a
3960 * snapshot, so we need the extra !root->fs_info->tree_root check to
3961 * make sure we don't drop it.
3962 */
3963 if (empty && btrfs_root_refs(&root->root_item) == 0 &&
3964 root != root->fs_info->tree_root) {
Yan, Zheng76dda932009-09-21 16:00:26 -04003965 synchronize_srcu(&root->fs_info->subvol_srcu);
3966 spin_lock(&root->inode_lock);
3967 empty = RB_EMPTY_ROOT(&root->inode_tree);
3968 spin_unlock(&root->inode_lock);
3969 if (empty)
3970 btrfs_add_dead_root(root);
3971 }
3972}
3973
3974int btrfs_invalidate_inodes(struct btrfs_root *root)
3975{
3976 struct rb_node *node;
3977 struct rb_node *prev;
3978 struct btrfs_inode *entry;
3979 struct inode *inode;
3980 u64 objectid = 0;
3981
3982 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
3983
3984 spin_lock(&root->inode_lock);
3985again:
3986 node = root->inode_tree.rb_node;
3987 prev = NULL;
3988 while (node) {
3989 prev = node;
3990 entry = rb_entry(node, struct btrfs_inode, rb_node);
3991
3992 if (objectid < entry->vfs_inode.i_ino)
3993 node = node->rb_left;
3994 else if (objectid > entry->vfs_inode.i_ino)
3995 node = node->rb_right;
3996 else
3997 break;
3998 }
3999 if (!node) {
4000 while (prev) {
4001 entry = rb_entry(prev, struct btrfs_inode, rb_node);
4002 if (objectid <= entry->vfs_inode.i_ino) {
4003 node = prev;
4004 break;
4005 }
4006 prev = rb_next(prev);
4007 }
4008 }
4009 while (node) {
4010 entry = rb_entry(node, struct btrfs_inode, rb_node);
4011 objectid = entry->vfs_inode.i_ino + 1;
4012 inode = igrab(&entry->vfs_inode);
4013 if (inode) {
4014 spin_unlock(&root->inode_lock);
4015 if (atomic_read(&inode->i_count) > 1)
4016 d_prune_aliases(inode);
4017 /*
Al Viro45321ac2010-06-07 13:43:19 -04004018 * btrfs_drop_inode will have it removed from
Yan, Zheng76dda932009-09-21 16:00:26 -04004019 * the inode cache when its usage count
4020 * hits zero.
4021 */
4022 iput(inode);
4023 cond_resched();
4024 spin_lock(&root->inode_lock);
4025 goto again;
4026 }
4027
4028 if (cond_resched_lock(&root->inode_lock))
4029 goto again;
4030
4031 node = rb_next(node);
4032 }
4033 spin_unlock(&root->inode_lock);
4034 return 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004035}
4036
Chris Masone02119d2008-09-05 16:13:11 -04004037static int btrfs_init_locked_inode(struct inode *inode, void *p)
4038{
4039 struct btrfs_iget_args *args = p;
4040 inode->i_ino = args->ino;
Chris Masone02119d2008-09-05 16:13:11 -04004041 BTRFS_I(inode)->root = args->root;
Josef Bacik6a632092009-02-20 11:00:09 -05004042 btrfs_set_inode_space_info(args->root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004043 return 0;
4044}
4045
4046static int btrfs_find_actor(struct inode *inode, void *opaque)
4047{
4048 struct btrfs_iget_args *args = opaque;
Chris Masond3977122009-01-05 21:25:51 -05004049 return args->ino == inode->i_ino &&
4050 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004051}
4052
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004053static struct inode *btrfs_iget_locked(struct super_block *s,
4054 u64 objectid,
4055 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04004056{
4057 struct inode *inode;
4058 struct btrfs_iget_args args;
4059 args.ino = objectid;
4060 args.root = root;
4061
4062 inode = iget5_locked(s, objectid, btrfs_find_actor,
4063 btrfs_init_locked_inode,
4064 (void *)&args);
4065 return inode;
4066}
4067
Balaji Rao1a54ef82008-07-21 02:01:04 +05304068/* Get an inode object given its location and corresponding root.
4069 * Returns in *is_new if the inode was read from disk
4070 */
4071struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
Josef Bacik73f73412009-12-04 17:38:27 +00004072 struct btrfs_root *root, int *new)
Balaji Rao1a54ef82008-07-21 02:01:04 +05304073{
4074 struct inode *inode;
4075
4076 inode = btrfs_iget_locked(s, location->objectid, root);
4077 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004078 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05304079
4080 if (inode->i_state & I_NEW) {
4081 BTRFS_I(inode)->root = root;
4082 memcpy(&BTRFS_I(inode)->location, location, sizeof(*location));
4083 btrfs_read_locked_inode(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004084
4085 inode_tree_add(inode);
Balaji Rao1a54ef82008-07-21 02:01:04 +05304086 unlock_new_inode(inode);
Josef Bacik73f73412009-12-04 17:38:27 +00004087 if (new)
4088 *new = 1;
Balaji Rao1a54ef82008-07-21 02:01:04 +05304089 }
4090
4091 return inode;
4092}
4093
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004094static struct inode *new_simple_dir(struct super_block *s,
4095 struct btrfs_key *key,
4096 struct btrfs_root *root)
4097{
4098 struct inode *inode = new_inode(s);
4099
4100 if (!inode)
4101 return ERR_PTR(-ENOMEM);
4102
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004103 BTRFS_I(inode)->root = root;
4104 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
4105 BTRFS_I(inode)->dummy_inode = 1;
4106
4107 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
4108 inode->i_op = &simple_dir_inode_operations;
4109 inode->i_fop = &simple_dir_operations;
4110 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
4111 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
4112
4113 return inode;
4114}
4115
Chris Mason3de45862008-11-17 21:02:50 -05004116struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04004117{
Chris Masond3977122009-01-05 21:25:51 -05004118 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004119 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004120 struct btrfs_root *sub_root = root;
4121 struct btrfs_key location;
Yan, Zheng76dda932009-09-21 16:00:26 -04004122 int index;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004123 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004124
4125 if (dentry->d_name.len > BTRFS_NAME_LEN)
4126 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04004127
Chris Mason39279cc2007-06-12 06:35:45 -04004128 ret = btrfs_inode_by_name(dir, dentry, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04004129
Chris Mason39279cc2007-06-12 06:35:45 -04004130 if (ret < 0)
4131 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04004132
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004133 if (location.objectid == 0)
4134 return NULL;
4135
4136 if (location.type == BTRFS_INODE_ITEM_KEY) {
Josef Bacik73f73412009-12-04 17:38:27 +00004137 inode = btrfs_iget(dir->i_sb, &location, root, NULL);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004138 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004139 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004140
4141 BUG_ON(location.type != BTRFS_ROOT_ITEM_KEY);
4142
Yan, Zheng76dda932009-09-21 16:00:26 -04004143 index = srcu_read_lock(&root->fs_info->subvol_srcu);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004144 ret = fixup_tree_root_location(root, dir, dentry,
4145 &location, &sub_root);
4146 if (ret < 0) {
4147 if (ret != -ENOENT)
4148 inode = ERR_PTR(ret);
4149 else
4150 inode = new_simple_dir(dir->i_sb, &location, sub_root);
4151 } else {
Josef Bacik73f73412009-12-04 17:38:27 +00004152 inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004153 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004154 srcu_read_unlock(&root->fs_info->subvol_srcu, index);
4155
Julia Lawall34d19ba2011-01-24 19:55:19 +00004156 if (!IS_ERR(inode) && root != sub_root) {
Yan, Zhengc71bf092009-11-12 09:34:40 +00004157 down_read(&root->fs_info->cleanup_work_sem);
4158 if (!(inode->i_sb->s_flags & MS_RDONLY))
4159 btrfs_orphan_cleanup(sub_root);
4160 up_read(&root->fs_info->cleanup_work_sem);
4161 }
4162
Chris Mason3de45862008-11-17 21:02:50 -05004163 return inode;
4164}
4165
Nick Pigginfe15ce42011-01-07 17:49:23 +11004166static int btrfs_dentry_delete(const struct dentry *dentry)
Yan, Zheng76dda932009-09-21 16:00:26 -04004167{
4168 struct btrfs_root *root;
4169
Yan, Zhengefefb142009-10-09 09:25:16 -04004170 if (!dentry->d_inode && !IS_ROOT(dentry))
4171 dentry = dentry->d_parent;
Yan, Zheng76dda932009-09-21 16:00:26 -04004172
Yan, Zhengefefb142009-10-09 09:25:16 -04004173 if (dentry->d_inode) {
4174 root = BTRFS_I(dentry->d_inode)->root;
4175 if (btrfs_root_refs(&root->root_item) == 0)
4176 return 1;
4177 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004178 return 0;
4179}
4180
Chris Mason3de45862008-11-17 21:02:50 -05004181static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
4182 struct nameidata *nd)
4183{
4184 struct inode *inode;
4185
Chris Mason3de45862008-11-17 21:02:50 -05004186 inode = btrfs_lookup_dentry(dir, dentry);
4187 if (IS_ERR(inode))
4188 return ERR_CAST(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04004189
Chris Mason39279cc2007-06-12 06:35:45 -04004190 return d_splice_alias(inode, dentry);
4191}
4192
Chris Mason39279cc2007-06-12 06:35:45 -04004193static unsigned char btrfs_filetype_table[] = {
4194 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
4195};
4196
David Woodhousecbdf5a22008-08-06 19:42:33 +01004197static int btrfs_real_readdir(struct file *filp, void *dirent,
4198 filldir_t filldir)
Chris Mason39279cc2007-06-12 06:35:45 -04004199{
Chris Mason6da6aba2007-12-18 16:15:09 -05004200 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004201 struct btrfs_root *root = BTRFS_I(inode)->root;
4202 struct btrfs_item *item;
4203 struct btrfs_dir_item *di;
4204 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04004205 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04004206 struct btrfs_path *path;
4207 int ret;
4208 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04004209 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04004210 int slot;
4211 int advance;
4212 unsigned char d_type;
4213 int over = 0;
4214 u32 di_cur;
4215 u32 di_total;
4216 u32 di_len;
4217 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004218 char tmp_name[32];
4219 char *name_ptr;
4220 int name_len;
Chris Mason39279cc2007-06-12 06:35:45 -04004221
4222 /* FIXME, use a real flag for deciding about the key type */
4223 if (root->fs_info->tree_root == root)
4224 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004225
Chris Mason39544012007-12-12 14:38:19 -05004226 /* special case for "." */
4227 if (filp->f_pos == 0) {
4228 over = filldir(dirent, ".", 1,
4229 1, inode->i_ino,
4230 DT_DIR);
4231 if (over)
4232 return 0;
4233 filp->f_pos = 1;
4234 }
Chris Mason39544012007-12-12 14:38:19 -05004235 /* special case for .., just use the back ref */
4236 if (filp->f_pos == 1) {
David Woodhouse5ecc7e52008-08-17 15:14:48 +01004237 u64 pino = parent_ino(filp->f_path.dentry);
Chris Mason39544012007-12-12 14:38:19 -05004238 over = filldir(dirent, "..", 2,
David Woodhouse5ecc7e52008-08-17 15:14:48 +01004239 2, pino, DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05004240 if (over)
David Woodhouse49593bf2008-08-17 17:08:36 +01004241 return 0;
Chris Mason39544012007-12-12 14:38:19 -05004242 filp->f_pos = 2;
4243 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004244 path = btrfs_alloc_path();
4245 path->reada = 2;
4246
Chris Mason39279cc2007-06-12 06:35:45 -04004247 btrfs_set_key_type(&key, key_type);
4248 key.offset = filp->f_pos;
David Woodhouse49593bf2008-08-17 17:08:36 +01004249 key.objectid = inode->i_ino;
Chris Mason5f39d392007-10-15 16:14:19 -04004250
Chris Mason39279cc2007-06-12 06:35:45 -04004251 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4252 if (ret < 0)
4253 goto err;
4254 advance = 0;
David Woodhouse49593bf2008-08-17 17:08:36 +01004255
4256 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04004257 leaf = path->nodes[0];
4258 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04004259 slot = path->slots[0];
4260 if (advance || slot >= nritems) {
David Woodhouse49593bf2008-08-17 17:08:36 +01004261 if (slot >= nritems - 1) {
Chris Mason39279cc2007-06-12 06:35:45 -04004262 ret = btrfs_next_leaf(root, path);
4263 if (ret)
4264 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004265 leaf = path->nodes[0];
4266 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04004267 slot = path->slots[0];
4268 } else {
4269 slot++;
4270 path->slots[0]++;
4271 }
4272 }
Chris Mason3de45862008-11-17 21:02:50 -05004273
Chris Mason39279cc2007-06-12 06:35:45 -04004274 advance = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04004275 item = btrfs_item_nr(leaf, slot);
4276 btrfs_item_key_to_cpu(leaf, &found_key, slot);
4277
4278 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04004279 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004280 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004281 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004282 if (found_key.offset < filp->f_pos)
Chris Mason39279cc2007-06-12 06:35:45 -04004283 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04004284
4285 filp->f_pos = found_key.offset;
David Woodhouse49593bf2008-08-17 17:08:36 +01004286
Chris Mason39279cc2007-06-12 06:35:45 -04004287 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
4288 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04004289 di_total = btrfs_item_size(leaf, item);
David Woodhouse49593bf2008-08-17 17:08:36 +01004290
4291 while (di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04004292 struct btrfs_key location;
4293
4294 name_len = btrfs_dir_name_len(leaf, di);
David Woodhouse49593bf2008-08-17 17:08:36 +01004295 if (name_len <= sizeof(tmp_name)) {
Chris Mason5f39d392007-10-15 16:14:19 -04004296 name_ptr = tmp_name;
4297 } else {
4298 name_ptr = kmalloc(name_len, GFP_NOFS);
David Woodhouse49593bf2008-08-17 17:08:36 +01004299 if (!name_ptr) {
4300 ret = -ENOMEM;
4301 goto err;
4302 }
Chris Mason5f39d392007-10-15 16:14:19 -04004303 }
4304 read_extent_buffer(leaf, name_ptr,
4305 (unsigned long)(di + 1), name_len);
4306
4307 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
4308 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason3de45862008-11-17 21:02:50 -05004309
4310 /* is this a reference to our own snapshot? If so
4311 * skip it
4312 */
4313 if (location.type == BTRFS_ROOT_ITEM_KEY &&
4314 location.objectid == root->root_key.objectid) {
4315 over = 0;
4316 goto skip;
4317 }
Chris Mason5f39d392007-10-15 16:14:19 -04004318 over = filldir(dirent, name_ptr, name_len,
David Woodhouse49593bf2008-08-17 17:08:36 +01004319 found_key.offset, location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04004320 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04004321
Chris Mason3de45862008-11-17 21:02:50 -05004322skip:
Chris Mason5f39d392007-10-15 16:14:19 -04004323 if (name_ptr != tmp_name)
4324 kfree(name_ptr);
4325
Chris Mason39279cc2007-06-12 06:35:45 -04004326 if (over)
4327 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05004328 di_len = btrfs_dir_name_len(leaf, di) +
David Woodhouse49593bf2008-08-17 17:08:36 +01004329 btrfs_dir_data_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04004330 di_cur += di_len;
4331 di = (struct btrfs_dir_item *)((char *)di + di_len);
4332 }
4333 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004334
4335 /* Reached end of directory/root. Bump pos past the last item. */
Yan Zheng5e591a02008-02-19 11:41:02 -05004336 if (key_type == BTRFS_DIR_INDEX_KEY)
Jan Engelhardt406266a2009-12-09 22:00:38 +00004337 /*
4338 * 32-bit glibc will use getdents64, but then strtol -
4339 * so the last number we can serve is this.
4340 */
4341 filp->f_pos = 0x7fffffff;
Yan Zheng5e591a02008-02-19 11:41:02 -05004342 else
4343 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04004344nopos:
4345 ret = 0;
4346err:
Chris Mason39279cc2007-06-12 06:35:45 -04004347 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004348 return ret;
4349}
4350
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004351int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc)
Chris Mason39279cc2007-06-12 06:35:45 -04004352{
4353 struct btrfs_root *root = BTRFS_I(inode)->root;
4354 struct btrfs_trans_handle *trans;
4355 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04004356 bool nolock = false;
Chris Mason39279cc2007-06-12 06:35:45 -04004357
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004358 if (BTRFS_I(inode)->dummy_inode)
Chris Mason4ca8b412008-08-05 13:30:48 -04004359 return 0;
4360
Josef Bacik0af3d002010-06-21 14:48:16 -04004361 smp_mb();
4362 nolock = (root->fs_info->closing && root == root->fs_info->tree_root);
4363
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004364 if (wbc->sync_mode == WB_SYNC_ALL) {
Josef Bacik0af3d002010-06-21 14:48:16 -04004365 if (nolock)
4366 trans = btrfs_join_transaction_nolock(root, 1);
4367 else
4368 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00004369 if (IS_ERR(trans))
4370 return PTR_ERR(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04004371 btrfs_set_trans_block_group(trans, inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04004372 if (nolock)
4373 ret = btrfs_end_transaction_nolock(trans, root);
4374 else
4375 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004376 }
4377 return ret;
4378}
4379
4380/*
Chris Mason54aa1f42007-06-22 14:16:25 -04004381 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04004382 * inode changes. But, it is most likely to find the inode in cache.
4383 * FIXME, needs more benchmarking...there are no reasons other than performance
4384 * to keep or drop this code.
4385 */
4386void btrfs_dirty_inode(struct inode *inode)
4387{
4388 struct btrfs_root *root = BTRFS_I(inode)->root;
4389 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004390 int ret;
4391
4392 if (BTRFS_I(inode)->dummy_inode)
4393 return;
Chris Mason39279cc2007-06-12 06:35:45 -04004394
Chris Masonf9295742008-07-17 12:54:14 -04004395 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00004396 BUG_ON(IS_ERR(trans));
Chris Mason39279cc2007-06-12 06:35:45 -04004397 btrfs_set_trans_block_group(trans, inode);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004398
4399 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04004400 if (ret && ret == -ENOSPC) {
4401 /* whoops, lets try again with the full transaction */
4402 btrfs_end_transaction(trans, root);
4403 trans = btrfs_start_transaction(root, 1);
Chris Mason9aeead72010-05-27 10:23:00 -04004404 if (IS_ERR(trans)) {
4405 if (printk_ratelimit()) {
4406 printk(KERN_ERR "btrfs: fail to "
4407 "dirty inode %lu error %ld\n",
4408 inode->i_ino, PTR_ERR(trans));
4409 }
4410 return;
4411 }
Chris Mason94b60442010-05-26 11:02:00 -04004412 btrfs_set_trans_block_group(trans, inode);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004413
Chris Mason94b60442010-05-26 11:02:00 -04004414 ret = btrfs_update_inode(trans, root, inode);
4415 if (ret) {
Chris Mason9aeead72010-05-27 10:23:00 -04004416 if (printk_ratelimit()) {
4417 printk(KERN_ERR "btrfs: fail to "
4418 "dirty inode %lu error %d\n",
4419 inode->i_ino, ret);
4420 }
Chris Mason94b60442010-05-26 11:02:00 -04004421 }
4422 }
Chris Mason39279cc2007-06-12 06:35:45 -04004423 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004424}
4425
Chris Masond352ac62008-09-29 15:18:18 -04004426/*
4427 * find the highest existing sequence number in a directory
4428 * and then set the in-memory index_cnt variable to reflect
4429 * free sequence numbers
4430 */
Josef Bacikaec74772008-07-24 12:12:38 -04004431static int btrfs_set_inode_index_count(struct inode *inode)
4432{
4433 struct btrfs_root *root = BTRFS_I(inode)->root;
4434 struct btrfs_key key, found_key;
4435 struct btrfs_path *path;
4436 struct extent_buffer *leaf;
4437 int ret;
4438
4439 key.objectid = inode->i_ino;
4440 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
4441 key.offset = (u64)-1;
4442
4443 path = btrfs_alloc_path();
4444 if (!path)
4445 return -ENOMEM;
4446
4447 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4448 if (ret < 0)
4449 goto out;
4450 /* FIXME: we should be able to handle this */
4451 if (ret == 0)
4452 goto out;
4453 ret = 0;
4454
4455 /*
4456 * MAGIC NUMBER EXPLANATION:
4457 * since we search a directory based on f_pos we have to start at 2
4458 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
4459 * else has to start at 2
4460 */
4461 if (path->slots[0] == 0) {
4462 BTRFS_I(inode)->index_cnt = 2;
4463 goto out;
4464 }
4465
4466 path->slots[0]--;
4467
4468 leaf = path->nodes[0];
4469 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4470
4471 if (found_key.objectid != inode->i_ino ||
4472 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
4473 BTRFS_I(inode)->index_cnt = 2;
4474 goto out;
4475 }
4476
4477 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
4478out:
4479 btrfs_free_path(path);
4480 return ret;
4481}
4482
Chris Masond352ac62008-09-29 15:18:18 -04004483/*
4484 * helper to find a free sequence number in a given directory. This current
4485 * code is very simple, later versions will do smarter things in the btree
4486 */
Chris Mason3de45862008-11-17 21:02:50 -05004487int btrfs_set_inode_index(struct inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04004488{
4489 int ret = 0;
4490
4491 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
4492 ret = btrfs_set_inode_index_count(dir);
Chris Masond3977122009-01-05 21:25:51 -05004493 if (ret)
Josef Bacikaec74772008-07-24 12:12:38 -04004494 return ret;
4495 }
4496
Chris Mason00e4e6b2008-08-05 11:18:09 -04004497 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04004498 BTRFS_I(dir)->index_cnt++;
4499
4500 return ret;
4501}
4502
Chris Mason39279cc2007-06-12 06:35:45 -04004503static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
4504 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04004505 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05004506 const char *name, int name_len,
Yan Zhengd2fb3432008-12-11 16:30:39 -05004507 u64 ref_objectid, u64 objectid,
4508 u64 alloc_hint, int mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04004509{
4510 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004511 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04004512 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04004513 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05004514 struct btrfs_inode_ref *ref;
4515 struct btrfs_key key[2];
4516 u32 sizes[2];
4517 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04004518 int ret;
4519 int owner;
4520
Chris Mason5f39d392007-10-15 16:14:19 -04004521 path = btrfs_alloc_path();
4522 BUG_ON(!path);
4523
Chris Mason39279cc2007-06-12 06:35:45 -04004524 inode = new_inode(root->fs_info->sb);
4525 if (!inode)
4526 return ERR_PTR(-ENOMEM);
4527
Josef Bacikaec74772008-07-24 12:12:38 -04004528 if (dir) {
Chris Mason3de45862008-11-17 21:02:50 -05004529 ret = btrfs_set_inode_index(dir, index);
Shen Feng09771432009-04-02 16:46:06 -04004530 if (ret) {
4531 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004532 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04004533 }
Josef Bacikaec74772008-07-24 12:12:38 -04004534 }
4535 /*
4536 * index_cnt is ignored for everything but a dir,
4537 * btrfs_get_inode_index_count has an explanation for the magic
4538 * number
4539 */
4540 BTRFS_I(inode)->index_cnt = 2;
Chris Mason39279cc2007-06-12 06:35:45 -04004541 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04004542 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik76195852010-11-19 02:18:02 +00004543 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik6a632092009-02-20 11:00:09 -05004544 btrfs_set_inode_space_info(root, inode);
Chris Masonb888db22007-08-27 16:49:44 -04004545
Chris Mason39279cc2007-06-12 06:35:45 -04004546 if (mode & S_IFDIR)
4547 owner = 0;
4548 else
4549 owner = 1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05004550 BTRFS_I(inode)->block_group =
4551 btrfs_find_block_group(root, 0, alloc_hint, owner);
Chris Mason9c583092008-01-29 15:15:18 -05004552
4553 key[0].objectid = objectid;
4554 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
4555 key[0].offset = 0;
4556
4557 key[1].objectid = objectid;
4558 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
4559 key[1].offset = ref_objectid;
4560
4561 sizes[0] = sizeof(struct btrfs_inode_item);
4562 sizes[1] = name_len + sizeof(*ref);
4563
Chris Masonb9473432009-03-13 11:00:37 -04004564 path->leave_spinning = 1;
Chris Mason9c583092008-01-29 15:15:18 -05004565 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
4566 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04004567 goto fail;
4568
Dmitry Monakhovecc11fab2010-03-04 17:31:47 +03004569 inode_init_owner(inode, dir, mode);
Chris Mason39279cc2007-06-12 06:35:45 -04004570 inode->i_ino = objectid;
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004571 inode_set_bytes(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004572 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04004573 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
4574 struct btrfs_inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04004575 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05004576
4577 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
4578 struct btrfs_inode_ref);
4579 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004580 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
Chris Mason9c583092008-01-29 15:15:18 -05004581 ptr = (unsigned long)(ref + 1);
4582 write_extent_buffer(path->nodes[0], name, ptr, name_len);
4583
Chris Mason5f39d392007-10-15 16:14:19 -04004584 btrfs_mark_buffer_dirty(path->nodes[0]);
4585 btrfs_free_path(path);
4586
Chris Mason39279cc2007-06-12 06:35:45 -04004587 location = &BTRFS_I(inode)->location;
4588 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04004589 location->offset = 0;
4590 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
4591
Christoph Hellwig6cbff002009-04-17 10:37:41 +02004592 btrfs_inherit_iflags(inode, dir);
4593
Chris Mason94272162009-07-02 12:26:06 -04004594 if ((mode & S_IFREG)) {
4595 if (btrfs_test_opt(root, NODATASUM))
4596 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
4597 if (btrfs_test_opt(root, NODATACOW))
4598 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
4599 }
4600
Chris Mason39279cc2007-06-12 06:35:45 -04004601 insert_inode_hash(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004602 inode_tree_add(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004603 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004604fail:
Josef Bacikaec74772008-07-24 12:12:38 -04004605 if (dir)
4606 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04004607 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004608 iput(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004609 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004610}
4611
4612static inline u8 btrfs_inode_type(struct inode *inode)
4613{
4614 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
4615}
4616
Chris Masond352ac62008-09-29 15:18:18 -04004617/*
4618 * utility function to add 'inode' into 'parent_inode' with
4619 * a give name and a given sequence number.
4620 * if 'add_backref' is true, also insert a backref from the
4621 * inode to the parent directory.
4622 */
Chris Masone02119d2008-09-05 16:13:11 -04004623int btrfs_add_link(struct btrfs_trans_handle *trans,
4624 struct inode *parent_inode, struct inode *inode,
4625 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004626{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004627 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004628 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04004629 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Chris Mason5f39d392007-10-15 16:14:19 -04004630
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004631 if (unlikely(inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
4632 memcpy(&key, &BTRFS_I(inode)->root->root_key, sizeof(key));
4633 } else {
4634 key.objectid = inode->i_ino;
4635 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
4636 key.offset = 0;
4637 }
Chris Mason39279cc2007-06-12 06:35:45 -04004638
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004639 if (unlikely(inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
4640 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
4641 key.objectid, root->root_key.objectid,
4642 parent_inode->i_ino,
4643 index, name, name_len);
4644 } else if (add_backref) {
4645 ret = btrfs_insert_inode_ref(trans, root,
4646 name, name_len, inode->i_ino,
4647 parent_inode->i_ino, index);
4648 }
4649
Chris Mason39279cc2007-06-12 06:35:45 -04004650 if (ret == 0) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004651 ret = btrfs_insert_dir_item(trans, root, name, name_len,
4652 parent_inode->i_ino, &key,
4653 btrfs_inode_type(inode), index);
4654 BUG_ON(ret);
4655
Chris Masondbe674a2008-07-17 12:54:05 -04004656 btrfs_i_size_write(parent_inode, parent_inode->i_size +
Chris Masone02119d2008-09-05 16:13:11 -04004657 name_len * 2);
Chris Mason79c44582007-06-25 10:09:33 -04004658 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
Chris Masone02119d2008-09-05 16:13:11 -04004659 ret = btrfs_update_inode(trans, root, parent_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004660 }
4661 return ret;
4662}
4663
4664static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Josef Bacika1b075d2010-11-19 20:36:11 +00004665 struct inode *dir, struct dentry *dentry,
4666 struct inode *inode, int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004667{
Josef Bacika1b075d2010-11-19 20:36:11 +00004668 int err = btrfs_add_link(trans, dir, inode,
4669 dentry->d_name.name, dentry->d_name.len,
4670 backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004671 if (!err) {
4672 d_instantiate(dentry, inode);
4673 return 0;
4674 }
4675 if (err > 0)
4676 err = -EEXIST;
4677 return err;
4678}
4679
Josef Bacik618e21d2007-07-11 10:18:17 -04004680static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
4681 int mode, dev_t rdev)
4682{
4683 struct btrfs_trans_handle *trans;
4684 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004685 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04004686 int err;
4687 int drop_inode = 0;
4688 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05004689 unsigned long nr = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004690 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04004691
4692 if (!new_valid_dev(rdev))
4693 return -EINVAL;
4694
Yan, Zhenga22285a2010-05-16 10:48:46 -04004695 err = btrfs_find_free_objectid(NULL, root, dir->i_ino, &objectid);
4696 if (err)
4697 return err;
4698
Josef Bacik9ed74f22009-09-11 16:12:44 -04004699 /*
4700 * 2 for inode item and ref
4701 * 2 for dir items
4702 * 1 for xattr if selinux is on
4703 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004704 trans = btrfs_start_transaction(root, 5);
4705 if (IS_ERR(trans))
4706 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05004707
Josef Bacik618e21d2007-07-11 10:18:17 -04004708 btrfs_set_trans_block_group(trans, dir);
4709
Josef Bacikaec74772008-07-24 12:12:38 -04004710 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Josef Bacika1b075d2010-11-19 20:36:11 +00004711 dentry->d_name.len, dir->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004712 BTRFS_I(dir)->block_group, mode, &index);
Josef Bacik618e21d2007-07-11 10:18:17 -04004713 err = PTR_ERR(inode);
4714 if (IS_ERR(inode))
4715 goto out_unlock;
4716
Yan, Zhengf34f57a2009-11-12 09:35:27 +00004717 err = btrfs_init_inode_security(trans, inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04004718 if (err) {
4719 drop_inode = 1;
4720 goto out_unlock;
4721 }
4722
Josef Bacik618e21d2007-07-11 10:18:17 -04004723 btrfs_set_trans_block_group(trans, inode);
Josef Bacika1b075d2010-11-19 20:36:11 +00004724 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Josef Bacik618e21d2007-07-11 10:18:17 -04004725 if (err)
4726 drop_inode = 1;
4727 else {
4728 inode->i_op = &btrfs_special_inode_operations;
4729 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04004730 btrfs_update_inode(trans, root, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04004731 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004732 btrfs_update_inode_block_group(trans, inode);
4733 btrfs_update_inode_block_group(trans, dir);
4734out_unlock:
Chris Masond3c2fdc2007-09-17 10:58:06 -04004735 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04004736 btrfs_end_transaction_throttle(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004737 btrfs_btree_balance_dirty(root, nr);
Josef Bacik618e21d2007-07-11 10:18:17 -04004738 if (drop_inode) {
4739 inode_dec_link_count(inode);
4740 iput(inode);
4741 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004742 return err;
4743}
4744
Chris Mason39279cc2007-06-12 06:35:45 -04004745static int btrfs_create(struct inode *dir, struct dentry *dentry,
4746 int mode, struct nameidata *nd)
4747{
4748 struct btrfs_trans_handle *trans;
4749 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004750 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004751 int drop_inode = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004752 int err;
Chris Mason1832a6d2007-12-21 16:27:21 -05004753 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004754 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004755 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004756
Yan, Zhenga22285a2010-05-16 10:48:46 -04004757 err = btrfs_find_free_objectid(NULL, root, dir->i_ino, &objectid);
4758 if (err)
4759 return err;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004760 /*
4761 * 2 for inode item and ref
4762 * 2 for dir items
4763 * 1 for xattr if selinux is on
4764 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004765 trans = btrfs_start_transaction(root, 5);
4766 if (IS_ERR(trans))
4767 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004768
Chris Mason39279cc2007-06-12 06:35:45 -04004769 btrfs_set_trans_block_group(trans, dir);
4770
Josef Bacikaec74772008-07-24 12:12:38 -04004771 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Josef Bacika1b075d2010-11-19 20:36:11 +00004772 dentry->d_name.len, dir->i_ino, objectid,
4773 BTRFS_I(dir)->block_group, mode, &index);
Chris Mason39279cc2007-06-12 06:35:45 -04004774 err = PTR_ERR(inode);
4775 if (IS_ERR(inode))
4776 goto out_unlock;
4777
Yan, Zhengf34f57a2009-11-12 09:35:27 +00004778 err = btrfs_init_inode_security(trans, inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04004779 if (err) {
4780 drop_inode = 1;
4781 goto out_unlock;
4782 }
4783
Chris Mason39279cc2007-06-12 06:35:45 -04004784 btrfs_set_trans_block_group(trans, inode);
Josef Bacika1b075d2010-11-19 20:36:11 +00004785 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004786 if (err)
4787 drop_inode = 1;
4788 else {
4789 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04004790 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04004791 inode->i_fop = &btrfs_file_operations;
4792 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05004793 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04004794 }
Chris Mason39279cc2007-06-12 06:35:45 -04004795 btrfs_update_inode_block_group(trans, inode);
4796 btrfs_update_inode_block_group(trans, dir);
4797out_unlock:
Chris Masond3c2fdc2007-09-17 10:58:06 -04004798 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004799 btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004800 if (drop_inode) {
4801 inode_dec_link_count(inode);
4802 iput(inode);
4803 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04004804 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004805 return err;
4806}
4807
4808static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
4809 struct dentry *dentry)
4810{
4811 struct btrfs_trans_handle *trans;
4812 struct btrfs_root *root = BTRFS_I(dir)->root;
4813 struct inode *inode = old_dentry->d_inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004814 u64 index;
Chris Mason1832a6d2007-12-21 16:27:21 -05004815 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004816 int err;
4817 int drop_inode = 0;
4818
4819 if (inode->i_nlink == 0)
4820 return -ENOENT;
4821
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00004822 /* do not allow sys_link's with other subvols of the same device */
4823 if (root->objectid != BTRFS_I(inode)->root->objectid)
4824 return -EPERM;
4825
Josef Bacik9ed74f22009-09-11 16:12:44 -04004826 btrfs_inc_nlink(inode);
Josef Bacikbc1cbf12010-11-23 19:50:59 +00004827 inode->i_ctime = CURRENT_TIME;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004828
Chris Mason3de45862008-11-17 21:02:50 -05004829 err = btrfs_set_inode_index(dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04004830 if (err)
4831 goto fail;
4832
Yan, Zhenga22285a2010-05-16 10:48:46 -04004833 /*
Miao Xie7e6b6462011-02-18 09:21:17 +00004834 * 2 items for inode and inode ref
Yan, Zhenga22285a2010-05-16 10:48:46 -04004835 * 2 items for dir items
Miao Xie7e6b6462011-02-18 09:21:17 +00004836 * 1 item for parent inode
Yan, Zhenga22285a2010-05-16 10:48:46 -04004837 */
Miao Xie7e6b6462011-02-18 09:21:17 +00004838 trans = btrfs_start_transaction(root, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004839 if (IS_ERR(trans)) {
4840 err = PTR_ERR(trans);
4841 goto fail;
4842 }
Chris Mason5f39d392007-10-15 16:14:19 -04004843
Chris Mason39279cc2007-06-12 06:35:45 -04004844 btrfs_set_trans_block_group(trans, dir);
Al Viro7de9c6e2010-10-23 11:11:40 -04004845 ihold(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004846
Josef Bacika1b075d2010-11-19 20:36:11 +00004847 err = btrfs_add_nondir(trans, dir, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04004848
Yan, Zhenga5719522009-09-24 09:17:31 -04004849 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04004850 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04004851 } else {
Josef Bacik6a912212010-11-20 09:48:00 +00004852 struct dentry *parent = dget_parent(dentry);
Yan, Zhenga5719522009-09-24 09:17:31 -04004853 btrfs_update_inode_block_group(trans, dir);
4854 err = btrfs_update_inode(trans, root, inode);
4855 BUG_ON(err);
Josef Bacik6a912212010-11-20 09:48:00 +00004856 btrfs_log_new_name(trans, inode, NULL, parent);
4857 dput(parent);
Yan, Zhenga5719522009-09-24 09:17:31 -04004858 }
Chris Mason39279cc2007-06-12 06:35:45 -04004859
Chris Masond3c2fdc2007-09-17 10:58:06 -04004860 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004861 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004862fail:
Chris Mason39279cc2007-06-12 06:35:45 -04004863 if (drop_inode) {
4864 inode_dec_link_count(inode);
4865 iput(inode);
4866 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04004867 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004868 return err;
4869}
4870
Chris Mason39279cc2007-06-12 06:35:45 -04004871static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
4872{
Chris Masonb9d86662008-05-02 16:13:49 -04004873 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004874 struct btrfs_trans_handle *trans;
4875 struct btrfs_root *root = BTRFS_I(dir)->root;
4876 int err = 0;
4877 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04004878 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004879 u64 index = 0;
Chris Masond3c2fdc2007-09-17 10:58:06 -04004880 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04004881
Yan, Zhenga22285a2010-05-16 10:48:46 -04004882 err = btrfs_find_free_objectid(NULL, root, dir->i_ino, &objectid);
4883 if (err)
4884 return err;
4885
Josef Bacik9ed74f22009-09-11 16:12:44 -04004886 /*
4887 * 2 items for inode and ref
4888 * 2 items for dir items
4889 * 1 for xattr if selinux is on
4890 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004891 trans = btrfs_start_transaction(root, 5);
4892 if (IS_ERR(trans))
4893 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004894 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -04004895
Josef Bacikaec74772008-07-24 12:12:38 -04004896 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Josef Bacika1b075d2010-11-19 20:36:11 +00004897 dentry->d_name.len, dir->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004898 BTRFS_I(dir)->block_group, S_IFDIR | mode,
4899 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04004900 if (IS_ERR(inode)) {
4901 err = PTR_ERR(inode);
4902 goto out_fail;
4903 }
Chris Mason5f39d392007-10-15 16:14:19 -04004904
Chris Mason39279cc2007-06-12 06:35:45 -04004905 drop_on_err = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -04004906
Yan, Zhengf34f57a2009-11-12 09:35:27 +00004907 err = btrfs_init_inode_security(trans, inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04004908 if (err)
4909 goto out_fail;
4910
Chris Mason39279cc2007-06-12 06:35:45 -04004911 inode->i_op = &btrfs_dir_inode_operations;
4912 inode->i_fop = &btrfs_dir_file_operations;
4913 btrfs_set_trans_block_group(trans, inode);
4914
Chris Masondbe674a2008-07-17 12:54:05 -04004915 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004916 err = btrfs_update_inode(trans, root, inode);
4917 if (err)
4918 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04004919
Josef Bacika1b075d2010-11-19 20:36:11 +00004920 err = btrfs_add_link(trans, dir, inode, dentry->d_name.name,
4921 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004922 if (err)
4923 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04004924
Chris Mason39279cc2007-06-12 06:35:45 -04004925 d_instantiate(dentry, inode);
4926 drop_on_err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004927 btrfs_update_inode_block_group(trans, inode);
4928 btrfs_update_inode_block_group(trans, dir);
4929
4930out_fail:
Chris Masond3c2fdc2007-09-17 10:58:06 -04004931 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004932 btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004933 if (drop_on_err)
4934 iput(inode);
Chris Masond3c2fdc2007-09-17 10:58:06 -04004935 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004936 return err;
4937}
4938
Chris Masond352ac62008-09-29 15:18:18 -04004939/* helper for btfs_get_extent. Given an existing extent in the tree,
4940 * and an extent that you want to insert, deal with overlap and insert
4941 * the new extent into the tree.
4942 */
Chris Mason3b951512008-04-17 11:29:12 -04004943static int merge_extent_mapping(struct extent_map_tree *em_tree,
4944 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04004945 struct extent_map *em,
4946 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04004947{
4948 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04004949
Chris Masone6dcd2d2008-07-17 12:53:50 -04004950 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
4951 start_diff = map_start - em->start;
4952 em->start = map_start;
4953 em->len = map_len;
Chris Masonc8b97812008-10-29 14:49:59 -04004954 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
4955 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04004956 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04004957 em->block_len -= start_diff;
4958 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004959 return add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04004960}
4961
Chris Masonc8b97812008-10-29 14:49:59 -04004962static noinline int uncompress_inline(struct btrfs_path *path,
4963 struct inode *inode, struct page *page,
4964 size_t pg_offset, u64 extent_offset,
4965 struct btrfs_file_extent_item *item)
4966{
4967 int ret;
4968 struct extent_buffer *leaf = path->nodes[0];
4969 char *tmp;
4970 size_t max_size;
4971 unsigned long inline_size;
4972 unsigned long ptr;
Li Zefan261507a02010-12-17 14:21:50 +08004973 int compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04004974
4975 WARN_ON(pg_offset != 0);
Li Zefan261507a02010-12-17 14:21:50 +08004976 compress_type = btrfs_file_extent_compression(leaf, item);
Chris Masonc8b97812008-10-29 14:49:59 -04004977 max_size = btrfs_file_extent_ram_bytes(leaf, item);
4978 inline_size = btrfs_file_extent_inline_item_len(leaf,
4979 btrfs_item_nr(leaf, path->slots[0]));
4980 tmp = kmalloc(inline_size, GFP_NOFS);
4981 ptr = btrfs_file_extent_inline_start(item);
4982
4983 read_extent_buffer(leaf, tmp, ptr, inline_size);
4984
Chris Mason5b050f02008-11-11 09:34:41 -05004985 max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size);
Li Zefan261507a02010-12-17 14:21:50 +08004986 ret = btrfs_decompress(compress_type, tmp, page,
4987 extent_offset, inline_size, max_size);
Chris Masonc8b97812008-10-29 14:49:59 -04004988 if (ret) {
4989 char *kaddr = kmap_atomic(page, KM_USER0);
4990 unsigned long copy_size = min_t(u64,
4991 PAGE_CACHE_SIZE - pg_offset,
4992 max_size - extent_offset);
4993 memset(kaddr + pg_offset, 0, copy_size);
4994 kunmap_atomic(kaddr, KM_USER0);
4995 }
4996 kfree(tmp);
4997 return 0;
4998}
4999
Chris Masond352ac62008-09-29 15:18:18 -04005000/*
5001 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05005002 * the ugly parts come from merging extents from the disk with the in-ram
5003 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04005004 * where the in-ram extents might be locked pending data=ordered completion.
5005 *
5006 * This also copies inline extents directly into the page.
5007 */
Chris Masond3977122009-01-05 21:25:51 -05005008
Chris Masona52d9a82007-08-27 16:49:44 -04005009struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05005010 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04005011 int create)
5012{
5013 int ret;
5014 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04005015 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04005016 u64 extent_start = 0;
5017 u64 extent_end = 0;
5018 u64 objectid = inode->i_ino;
5019 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04005020 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04005021 struct btrfs_root *root = BTRFS_I(inode)->root;
5022 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04005023 struct extent_buffer *leaf;
5024 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04005025 struct extent_map *em = NULL;
5026 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05005027 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04005028 struct btrfs_trans_handle *trans = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08005029 int compress_type;
Chris Masona52d9a82007-08-27 16:49:44 -04005030
Chris Masona52d9a82007-08-27 16:49:44 -04005031again:
Chris Mason890871b2009-09-02 16:24:52 -04005032 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05005033 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04005034 if (em)
5035 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04005036 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05005037
Chris Masona52d9a82007-08-27 16:49:44 -04005038 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04005039 if (em->start > start || em->start + em->len <= start)
5040 free_extent_map(em);
5041 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05005042 free_extent_map(em);
5043 else
5044 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005045 }
Chris Masond1310b22008-01-24 16:13:08 -05005046 em = alloc_extent_map(GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04005047 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05005048 err = -ENOMEM;
5049 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005050 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005051 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05005052 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05005053 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05005054 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04005055 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04005056
5057 if (!path) {
5058 path = btrfs_alloc_path();
5059 BUG_ON(!path);
5060 }
5061
Chris Mason179e29e2007-11-01 11:28:41 -04005062 ret = btrfs_lookup_file_extent(trans, root, path,
5063 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04005064 if (ret < 0) {
5065 err = ret;
5066 goto out;
5067 }
5068
5069 if (ret != 0) {
5070 if (path->slots[0] == 0)
5071 goto not_found;
5072 path->slots[0]--;
5073 }
5074
Chris Mason5f39d392007-10-15 16:14:19 -04005075 leaf = path->nodes[0];
5076 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04005077 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04005078 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04005079 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5080 found_type = btrfs_key_type(&found_key);
5081 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04005082 found_type != BTRFS_EXTENT_DATA_KEY) {
5083 goto not_found;
5084 }
5085
Chris Mason5f39d392007-10-15 16:14:19 -04005086 found_type = btrfs_file_extent_type(leaf, item);
5087 extent_start = found_key.offset;
Li Zefan261507a02010-12-17 14:21:50 +08005088 compress_type = btrfs_file_extent_compression(leaf, item);
Yan Zhengd899e052008-10-30 14:25:28 -04005089 if (found_type == BTRFS_FILE_EXTENT_REG ||
5090 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04005091 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04005092 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04005093 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
5094 size_t size;
5095 size = btrfs_file_extent_inline_len(leaf, item);
5096 extent_end = (extent_start + size + root->sectorsize - 1) &
5097 ~((u64)root->sectorsize - 1);
5098 }
5099
5100 if (start >= extent_end) {
5101 path->slots[0]++;
5102 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
5103 ret = btrfs_next_leaf(root, path);
5104 if (ret < 0) {
5105 err = ret;
5106 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005107 }
Yan Zheng9036c102008-10-30 14:19:41 -04005108 if (ret > 0)
5109 goto not_found;
5110 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04005111 }
Yan Zheng9036c102008-10-30 14:19:41 -04005112 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5113 if (found_key.objectid != objectid ||
5114 found_key.type != BTRFS_EXTENT_DATA_KEY)
5115 goto not_found;
5116 if (start + len <= found_key.offset)
5117 goto not_found;
5118 em->start = start;
5119 em->len = found_key.offset - start;
5120 goto not_found_em;
5121 }
5122
Yan Zhengd899e052008-10-30 14:25:28 -04005123 if (found_type == BTRFS_FILE_EXTENT_REG ||
5124 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng9036c102008-10-30 14:19:41 -04005125 em->start = extent_start;
5126 em->len = extent_end - extent_start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005127 em->orig_start = extent_start -
5128 btrfs_file_extent_offset(leaf, item);
Chris Masondb945352007-10-15 16:15:53 -04005129 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
5130 if (bytenr == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04005131 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04005132 goto insert;
5133 }
Li Zefan261507a02010-12-17 14:21:50 +08005134 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04005135 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08005136 em->compress_type = compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04005137 em->block_start = bytenr;
5138 em->block_len = btrfs_file_extent_disk_num_bytes(leaf,
5139 item);
5140 } else {
5141 bytenr += btrfs_file_extent_offset(leaf, item);
5142 em->block_start = bytenr;
5143 em->block_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04005144 if (found_type == BTRFS_FILE_EXTENT_PREALLOC)
5145 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -04005146 }
Chris Masona52d9a82007-08-27 16:49:44 -04005147 goto insert;
5148 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04005149 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04005150 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04005151 size_t size;
5152 size_t extent_offset;
5153 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04005154
Chris Masona52d9a82007-08-27 16:49:44 -04005155 em->block_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04005156 if (!page || create) {
Yan689f9342007-10-29 11:41:07 -04005157 em->start = extent_start;
Yan Zheng9036c102008-10-30 14:19:41 -04005158 em->len = extent_end - extent_start;
Yan689f9342007-10-29 11:41:07 -04005159 goto out;
5160 }
5161
Yan Zheng9036c102008-10-30 14:19:41 -04005162 size = btrfs_file_extent_inline_len(leaf, item);
5163 extent_offset = page_offset(page) + pg_offset - extent_start;
Chris Mason70dec802008-01-29 09:59:12 -05005164 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04005165 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04005166 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05005167 em->len = (copy_size + root->sectorsize - 1) &
5168 ~((u64)root->sectorsize - 1);
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005169 em->orig_start = EXTENT_MAP_INLINE;
Li Zefan261507a02010-12-17 14:21:50 +08005170 if (compress_type) {
Chris Masonc8b97812008-10-29 14:49:59 -04005171 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08005172 em->compress_type = compress_type;
5173 }
Yan689f9342007-10-29 11:41:07 -04005174 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04005175 if (create == 0 && !PageUptodate(page)) {
Li Zefan261507a02010-12-17 14:21:50 +08005176 if (btrfs_file_extent_compression(leaf, item) !=
5177 BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04005178 ret = uncompress_inline(path, inode, page,
5179 pg_offset,
5180 extent_offset, item);
5181 BUG_ON(ret);
5182 } else {
5183 map = kmap(page);
5184 read_extent_buffer(leaf, map + pg_offset, ptr,
5185 copy_size);
Chris Mason93c82d52009-09-11 12:36:29 -04005186 if (pg_offset + copy_size < PAGE_CACHE_SIZE) {
5187 memset(map + pg_offset + copy_size, 0,
5188 PAGE_CACHE_SIZE - pg_offset -
5189 copy_size);
5190 }
Chris Masonc8b97812008-10-29 14:49:59 -04005191 kunmap(page);
5192 }
Chris Mason179e29e2007-11-01 11:28:41 -04005193 flush_dcache_page(page);
5194 } else if (create && PageUptodate(page)) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005195 WARN_ON(1);
Chris Mason179e29e2007-11-01 11:28:41 -04005196 if (!trans) {
5197 kunmap(page);
5198 free_extent_map(em);
5199 em = NULL;
5200 btrfs_release_path(root, path);
Chris Masonf9295742008-07-17 12:54:14 -04005201 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005202 if (IS_ERR(trans))
5203 return ERR_CAST(trans);
Chris Mason179e29e2007-11-01 11:28:41 -04005204 goto again;
5205 }
Chris Masonc8b97812008-10-29 14:49:59 -04005206 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05005207 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04005208 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04005209 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04005210 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04005211 }
Chris Masond1310b22008-01-24 16:13:08 -05005212 set_extent_uptodate(io_tree, em->start,
5213 extent_map_end(em) - 1, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04005214 goto insert;
5215 } else {
Chris Masond3977122009-01-05 21:25:51 -05005216 printk(KERN_ERR "btrfs unknown found_type %d\n", found_type);
Chris Masona52d9a82007-08-27 16:49:44 -04005217 WARN_ON(1);
5218 }
5219not_found:
5220 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05005221 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04005222not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04005223 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04005224 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04005225insert:
5226 btrfs_release_path(root, path);
Chris Masond1310b22008-01-24 16:13:08 -05005227 if (em->start > start || extent_map_end(em) <= start) {
Chris Masond3977122009-01-05 21:25:51 -05005228 printk(KERN_ERR "Btrfs: bad extent! em: [%llu %llu] passed "
5229 "[%llu %llu]\n", (unsigned long long)em->start,
5230 (unsigned long long)em->len,
5231 (unsigned long long)start,
5232 (unsigned long long)len);
Chris Masona52d9a82007-08-27 16:49:44 -04005233 err = -EIO;
5234 goto out;
5235 }
Chris Masond1310b22008-01-24 16:13:08 -05005236
5237 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04005238 write_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005239 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04005240 /* it is possible that someone inserted the extent into the tree
5241 * while we had the lock dropped. It is also possible that
5242 * an overlapping map exists in the tree
5243 */
Chris Masona52d9a82007-08-27 16:49:44 -04005244 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04005245 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005246
5247 ret = 0;
5248
Chris Mason3b951512008-04-17 11:29:12 -04005249 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04005250 if (existing && (existing->start > start ||
5251 existing->start + existing->len <= start)) {
5252 free_extent_map(existing);
5253 existing = NULL;
5254 }
Chris Mason3b951512008-04-17 11:29:12 -04005255 if (!existing) {
5256 existing = lookup_extent_mapping(em_tree, em->start,
5257 em->len);
5258 if (existing) {
5259 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005260 em, start,
5261 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04005262 free_extent_map(existing);
5263 if (err) {
5264 free_extent_map(em);
5265 em = NULL;
5266 }
5267 } else {
5268 err = -EIO;
Chris Mason3b951512008-04-17 11:29:12 -04005269 free_extent_map(em);
5270 em = NULL;
5271 }
5272 } else {
5273 free_extent_map(em);
5274 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005275 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04005276 }
Chris Masona52d9a82007-08-27 16:49:44 -04005277 }
Chris Mason890871b2009-09-02 16:24:52 -04005278 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005279out:
Chris Masonf4219502008-07-22 11:18:09 -04005280 if (path)
5281 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04005282 if (trans) {
5283 ret = btrfs_end_transaction(trans, root);
Chris Masond3977122009-01-05 21:25:51 -05005284 if (!err)
Chris Masona52d9a82007-08-27 16:49:44 -04005285 err = ret;
5286 }
Chris Masona52d9a82007-08-27 16:49:44 -04005287 if (err) {
5288 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04005289 return ERR_PTR(err);
5290 }
5291 return em;
5292}
5293
Chris Masonec29ed52011-02-23 16:23:20 -05005294struct extent_map *btrfs_get_extent_fiemap(struct inode *inode, struct page *page,
5295 size_t pg_offset, u64 start, u64 len,
5296 int create)
5297{
5298 struct extent_map *em;
5299 struct extent_map *hole_em = NULL;
5300 u64 range_start = start;
5301 u64 end;
5302 u64 found;
5303 u64 found_end;
5304 int err = 0;
5305
5306 em = btrfs_get_extent(inode, page, pg_offset, start, len, create);
5307 if (IS_ERR(em))
5308 return em;
5309 if (em) {
5310 /*
5311 * if our em maps to a hole, there might
5312 * actually be delalloc bytes behind it
5313 */
5314 if (em->block_start != EXTENT_MAP_HOLE)
5315 return em;
5316 else
5317 hole_em = em;
5318 }
5319
5320 /* check to see if we've wrapped (len == -1 or similar) */
5321 end = start + len;
5322 if (end < start)
5323 end = (u64)-1;
5324 else
5325 end -= 1;
5326
5327 em = NULL;
5328
5329 /* ok, we didn't find anything, lets look for delalloc */
5330 found = count_range_bits(&BTRFS_I(inode)->io_tree, &range_start,
5331 end, len, EXTENT_DELALLOC, 1);
5332 found_end = range_start + found;
5333 if (found_end < range_start)
5334 found_end = (u64)-1;
5335
5336 /*
5337 * we didn't find anything useful, return
5338 * the original results from get_extent()
5339 */
5340 if (range_start > end || found_end <= start) {
5341 em = hole_em;
5342 hole_em = NULL;
5343 goto out;
5344 }
5345
5346 /* adjust the range_start to make sure it doesn't
5347 * go backwards from the start they passed in
5348 */
5349 range_start = max(start,range_start);
5350 found = found_end - range_start;
5351
5352 if (found > 0) {
5353 u64 hole_start = start;
5354 u64 hole_len = len;
5355
5356 em = alloc_extent_map(GFP_NOFS);
5357 if (!em) {
5358 err = -ENOMEM;
5359 goto out;
5360 }
5361 /*
5362 * when btrfs_get_extent can't find anything it
5363 * returns one huge hole
5364 *
5365 * make sure what it found really fits our range, and
5366 * adjust to make sure it is based on the start from
5367 * the caller
5368 */
5369 if (hole_em) {
5370 u64 calc_end = extent_map_end(hole_em);
5371
5372 if (calc_end <= start || (hole_em->start > end)) {
5373 free_extent_map(hole_em);
5374 hole_em = NULL;
5375 } else {
5376 hole_start = max(hole_em->start, start);
5377 hole_len = calc_end - hole_start;
5378 }
5379 }
5380 em->bdev = NULL;
5381 if (hole_em && range_start > hole_start) {
5382 /* our hole starts before our delalloc, so we
5383 * have to return just the parts of the hole
5384 * that go until the delalloc starts
5385 */
5386 em->len = min(hole_len,
5387 range_start - hole_start);
5388 em->start = hole_start;
5389 em->orig_start = hole_start;
5390 /*
5391 * don't adjust block start at all,
5392 * it is fixed at EXTENT_MAP_HOLE
5393 */
5394 em->block_start = hole_em->block_start;
5395 em->block_len = hole_len;
5396 } else {
5397 em->start = range_start;
5398 em->len = found;
5399 em->orig_start = range_start;
5400 em->block_start = EXTENT_MAP_DELALLOC;
5401 em->block_len = found;
5402 }
5403 } else if (hole_em) {
5404 return hole_em;
5405 }
5406out:
5407
5408 free_extent_map(hole_em);
5409 if (err) {
5410 free_extent_map(em);
5411 return ERR_PTR(err);
5412 }
5413 return em;
5414}
5415
Josef Bacik4b46fce2010-05-23 11:00:55 -04005416static struct extent_map *btrfs_new_extent_direct(struct inode *inode,
5417 u64 start, u64 len)
5418{
5419 struct btrfs_root *root = BTRFS_I(inode)->root;
5420 struct btrfs_trans_handle *trans;
5421 struct extent_map *em;
5422 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
5423 struct btrfs_key ins;
5424 u64 alloc_hint;
5425 int ret;
5426
5427 btrfs_drop_extent_cache(inode, start, start + len - 1, 0);
5428
5429 trans = btrfs_join_transaction(root, 0);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005430 if (IS_ERR(trans))
5431 return ERR_CAST(trans);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005432
5433 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
5434
5435 alloc_hint = get_extent_allocation_hint(inode, start, len);
5436 ret = btrfs_reserve_extent(trans, root, len, root->sectorsize, 0,
5437 alloc_hint, (u64)-1, &ins, 1);
5438 if (ret) {
5439 em = ERR_PTR(ret);
5440 goto out;
5441 }
5442
5443 em = alloc_extent_map(GFP_NOFS);
5444 if (!em) {
5445 em = ERR_PTR(-ENOMEM);
5446 goto out;
5447 }
5448
5449 em->start = start;
5450 em->orig_start = em->start;
5451 em->len = ins.offset;
5452
5453 em->block_start = ins.objectid;
5454 em->block_len = ins.offset;
5455 em->bdev = root->fs_info->fs_devices->latest_bdev;
5456 set_bit(EXTENT_FLAG_PINNED, &em->flags);
5457
5458 while (1) {
5459 write_lock(&em_tree->lock);
5460 ret = add_extent_mapping(em_tree, em);
5461 write_unlock(&em_tree->lock);
5462 if (ret != -EEXIST)
5463 break;
5464 btrfs_drop_extent_cache(inode, start, start + em->len - 1, 0);
5465 }
5466
5467 ret = btrfs_add_ordered_extent_dio(inode, start, ins.objectid,
5468 ins.offset, ins.offset, 0);
5469 if (ret) {
5470 btrfs_free_reserved_extent(root, ins.objectid, ins.offset);
5471 em = ERR_PTR(ret);
5472 }
5473out:
5474 btrfs_end_transaction(trans, root);
5475 return em;
5476}
5477
Chris Mason46bfbb52010-05-26 11:04:10 -04005478/*
5479 * returns 1 when the nocow is safe, < 1 on error, 0 if the
5480 * block must be cow'd
5481 */
5482static noinline int can_nocow_odirect(struct btrfs_trans_handle *trans,
5483 struct inode *inode, u64 offset, u64 len)
5484{
5485 struct btrfs_path *path;
5486 int ret;
5487 struct extent_buffer *leaf;
5488 struct btrfs_root *root = BTRFS_I(inode)->root;
5489 struct btrfs_file_extent_item *fi;
5490 struct btrfs_key key;
5491 u64 disk_bytenr;
5492 u64 backref_offset;
5493 u64 extent_end;
5494 u64 num_bytes;
5495 int slot;
5496 int found_type;
5497
5498 path = btrfs_alloc_path();
5499 if (!path)
5500 return -ENOMEM;
5501
5502 ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino,
5503 offset, 0);
5504 if (ret < 0)
5505 goto out;
5506
5507 slot = path->slots[0];
5508 if (ret == 1) {
5509 if (slot == 0) {
5510 /* can't find the item, must cow */
5511 ret = 0;
5512 goto out;
5513 }
5514 slot--;
5515 }
5516 ret = 0;
5517 leaf = path->nodes[0];
5518 btrfs_item_key_to_cpu(leaf, &key, slot);
5519 if (key.objectid != inode->i_ino ||
5520 key.type != BTRFS_EXTENT_DATA_KEY) {
5521 /* not our file or wrong item type, must cow */
5522 goto out;
5523 }
5524
5525 if (key.offset > offset) {
5526 /* Wrong offset, must cow */
5527 goto out;
5528 }
5529
5530 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
5531 found_type = btrfs_file_extent_type(leaf, fi);
5532 if (found_type != BTRFS_FILE_EXTENT_REG &&
5533 found_type != BTRFS_FILE_EXTENT_PREALLOC) {
5534 /* not a regular extent, must cow */
5535 goto out;
5536 }
5537 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
5538 backref_offset = btrfs_file_extent_offset(leaf, fi);
5539
5540 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
5541 if (extent_end < offset + len) {
5542 /* extent doesn't include our full range, must cow */
5543 goto out;
5544 }
5545
5546 if (btrfs_extent_readonly(root, disk_bytenr))
5547 goto out;
5548
5549 /*
5550 * look for other files referencing this extent, if we
5551 * find any we must cow
5552 */
5553 if (btrfs_cross_ref_exist(trans, root, inode->i_ino,
5554 key.offset - backref_offset, disk_bytenr))
5555 goto out;
5556
5557 /*
5558 * adjust disk_bytenr and num_bytes to cover just the bytes
5559 * in this extent we are about to write. If there
5560 * are any csums in that range we have to cow in order
5561 * to keep the csums correct
5562 */
5563 disk_bytenr += backref_offset;
5564 disk_bytenr += offset - key.offset;
5565 num_bytes = min(offset + len, extent_end) - offset;
5566 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
5567 goto out;
5568 /*
5569 * all of the above have passed, it is safe to overwrite this extent
5570 * without cow
5571 */
5572 ret = 1;
5573out:
5574 btrfs_free_path(path);
5575 return ret;
5576}
5577
Josef Bacik4b46fce2010-05-23 11:00:55 -04005578static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock,
5579 struct buffer_head *bh_result, int create)
5580{
5581 struct extent_map *em;
5582 struct btrfs_root *root = BTRFS_I(inode)->root;
5583 u64 start = iblock << inode->i_blkbits;
5584 u64 len = bh_result->b_size;
Chris Mason46bfbb52010-05-26 11:04:10 -04005585 struct btrfs_trans_handle *trans;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005586
5587 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
5588 if (IS_ERR(em))
5589 return PTR_ERR(em);
5590
5591 /*
5592 * Ok for INLINE and COMPRESSED extents we need to fallback on buffered
5593 * io. INLINE is special, and we could probably kludge it in here, but
5594 * it's still buffered so for safety lets just fall back to the generic
5595 * buffered path.
5596 *
5597 * For COMPRESSED we _have_ to read the entire extent in so we can
5598 * decompress it, so there will be buffering required no matter what we
5599 * do, so go ahead and fallback to buffered.
5600 *
5601 * We return -ENOTBLK because thats what makes DIO go ahead and go back
5602 * to buffered IO. Don't blame me, this is the price we pay for using
5603 * the generic code.
5604 */
5605 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) ||
5606 em->block_start == EXTENT_MAP_INLINE) {
5607 free_extent_map(em);
5608 return -ENOTBLK;
5609 }
5610
5611 /* Just a good old fashioned hole, return */
5612 if (!create && (em->block_start == EXTENT_MAP_HOLE ||
5613 test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
5614 free_extent_map(em);
5615 /* DIO will do one hole at a time, so just unlock a sector */
5616 unlock_extent(&BTRFS_I(inode)->io_tree, start,
5617 start + root->sectorsize - 1, GFP_NOFS);
5618 return 0;
5619 }
5620
5621 /*
5622 * We don't allocate a new extent in the following cases
5623 *
5624 * 1) The inode is marked as NODATACOW. In this case we'll just use the
5625 * existing extent.
5626 * 2) The extent is marked as PREALLOC. We're good to go here and can
5627 * just use the extent.
5628 *
5629 */
Chris Mason46bfbb52010-05-26 11:04:10 -04005630 if (!create) {
5631 len = em->len - (start - em->start);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005632 goto map;
Chris Mason46bfbb52010-05-26 11:04:10 -04005633 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005634
5635 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
5636 ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
5637 em->block_start != EXTENT_MAP_HOLE)) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04005638 int type;
5639 int ret;
Chris Mason46bfbb52010-05-26 11:04:10 -04005640 u64 block_start;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005641
5642 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
5643 type = BTRFS_ORDERED_PREALLOC;
5644 else
5645 type = BTRFS_ORDERED_NOCOW;
Chris Mason46bfbb52010-05-26 11:04:10 -04005646 len = min(len, em->len - (start - em->start));
Josef Bacik4b46fce2010-05-23 11:00:55 -04005647 block_start = em->block_start + (start - em->start);
Chris Mason46bfbb52010-05-26 11:04:10 -04005648
5649 /*
5650 * we're not going to log anything, but we do need
5651 * to make sure the current transaction stays open
5652 * while we look for nocow cross refs
5653 */
5654 trans = btrfs_join_transaction(root, 0);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005655 if (IS_ERR(trans))
Chris Mason46bfbb52010-05-26 11:04:10 -04005656 goto must_cow;
5657
5658 if (can_nocow_odirect(trans, inode, start, len) == 1) {
5659 ret = btrfs_add_ordered_extent_dio(inode, start,
5660 block_start, len, len, type);
5661 btrfs_end_transaction(trans, root);
5662 if (ret) {
5663 free_extent_map(em);
5664 return ret;
5665 }
5666 goto unlock;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005667 }
Chris Mason46bfbb52010-05-26 11:04:10 -04005668 btrfs_end_transaction(trans, root);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005669 }
Chris Mason46bfbb52010-05-26 11:04:10 -04005670must_cow:
5671 /*
5672 * this will cow the extent, reset the len in case we changed
5673 * it above
5674 */
5675 len = bh_result->b_size;
5676 free_extent_map(em);
5677 em = btrfs_new_extent_direct(inode, start, len);
5678 if (IS_ERR(em))
5679 return PTR_ERR(em);
5680 len = min(len, em->len - (start - em->start));
5681unlock:
Chris Mason4845e442010-05-25 20:56:50 -04005682 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, start + len - 1,
5683 EXTENT_LOCKED | EXTENT_DELALLOC | EXTENT_DIRTY, 1,
5684 0, NULL, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005685map:
5686 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
5687 inode->i_blkbits;
Chris Mason46bfbb52010-05-26 11:04:10 -04005688 bh_result->b_size = len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005689 bh_result->b_bdev = em->bdev;
5690 set_buffer_mapped(bh_result);
5691 if (create && !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
5692 set_buffer_new(bh_result);
5693
5694 free_extent_map(em);
5695
5696 return 0;
5697}
5698
5699struct btrfs_dio_private {
5700 struct inode *inode;
5701 u64 logical_offset;
5702 u64 disk_bytenr;
5703 u64 bytes;
5704 u32 *csums;
5705 void *private;
Miao Xiee65e1532010-11-22 03:04:43 +00005706
5707 /* number of bios pending for this dio */
5708 atomic_t pending_bios;
5709
5710 /* IO errors */
5711 int errors;
5712
5713 struct bio *orig_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005714};
5715
5716static void btrfs_endio_direct_read(struct bio *bio, int err)
5717{
Miao Xiee65e1532010-11-22 03:04:43 +00005718 struct btrfs_dio_private *dip = bio->bi_private;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005719 struct bio_vec *bvec_end = bio->bi_io_vec + bio->bi_vcnt - 1;
5720 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005721 struct inode *inode = dip->inode;
5722 struct btrfs_root *root = BTRFS_I(inode)->root;
5723 u64 start;
5724 u32 *private = dip->csums;
5725
5726 start = dip->logical_offset;
5727 do {
5728 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)) {
5729 struct page *page = bvec->bv_page;
5730 char *kaddr;
5731 u32 csum = ~(u32)0;
5732 unsigned long flags;
5733
5734 local_irq_save(flags);
5735 kaddr = kmap_atomic(page, KM_IRQ0);
5736 csum = btrfs_csum_data(root, kaddr + bvec->bv_offset,
5737 csum, bvec->bv_len);
5738 btrfs_csum_final(csum, (char *)&csum);
5739 kunmap_atomic(kaddr, KM_IRQ0);
5740 local_irq_restore(flags);
5741
5742 flush_dcache_page(bvec->bv_page);
5743 if (csum != *private) {
5744 printk(KERN_ERR "btrfs csum failed ino %lu off"
5745 " %llu csum %u private %u\n",
5746 inode->i_ino, (unsigned long long)start,
5747 csum, *private);
5748 err = -EIO;
5749 }
5750 }
5751
5752 start += bvec->bv_len;
5753 private++;
5754 bvec++;
5755 } while (bvec <= bvec_end);
5756
5757 unlock_extent(&BTRFS_I(inode)->io_tree, dip->logical_offset,
5758 dip->logical_offset + dip->bytes - 1, GFP_NOFS);
5759 bio->bi_private = dip->private;
5760
5761 kfree(dip->csums);
5762 kfree(dip);
5763 dio_end_io(bio, err);
5764}
5765
5766static void btrfs_endio_direct_write(struct bio *bio, int err)
5767{
5768 struct btrfs_dio_private *dip = bio->bi_private;
5769 struct inode *inode = dip->inode;
5770 struct btrfs_root *root = BTRFS_I(inode)->root;
5771 struct btrfs_trans_handle *trans;
5772 struct btrfs_ordered_extent *ordered = NULL;
5773 struct extent_state *cached_state = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05005774 u64 ordered_offset = dip->logical_offset;
5775 u64 ordered_bytes = dip->bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005776 int ret;
5777
5778 if (err)
5779 goto out_done;
Chris Mason163cf092010-11-28 19:56:33 -05005780again:
5781 ret = btrfs_dec_test_first_ordered_pending(inode, &ordered,
5782 &ordered_offset,
5783 ordered_bytes);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005784 if (!ret)
Chris Mason163cf092010-11-28 19:56:33 -05005785 goto out_test;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005786
5787 BUG_ON(!ordered);
5788
5789 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005790 if (IS_ERR(trans)) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04005791 err = -ENOMEM;
5792 goto out;
5793 }
5794 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
5795
5796 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags)) {
5797 ret = btrfs_ordered_update_i_size(inode, 0, ordered);
5798 if (!ret)
5799 ret = btrfs_update_inode(trans, root, inode);
5800 err = ret;
5801 goto out;
5802 }
5803
5804 lock_extent_bits(&BTRFS_I(inode)->io_tree, ordered->file_offset,
5805 ordered->file_offset + ordered->len - 1, 0,
5806 &cached_state, GFP_NOFS);
5807
5808 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags)) {
5809 ret = btrfs_mark_extent_written(trans, inode,
5810 ordered->file_offset,
5811 ordered->file_offset +
5812 ordered->len);
5813 if (ret) {
5814 err = ret;
5815 goto out_unlock;
5816 }
5817 } else {
5818 ret = insert_reserved_file_extent(trans, inode,
5819 ordered->file_offset,
5820 ordered->start,
5821 ordered->disk_len,
5822 ordered->len,
5823 ordered->len,
5824 0, 0, 0,
5825 BTRFS_FILE_EXTENT_REG);
5826 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
5827 ordered->file_offset, ordered->len);
5828 if (ret) {
5829 err = ret;
5830 WARN_ON(1);
5831 goto out_unlock;
5832 }
5833 }
5834
5835 add_pending_csums(trans, inode, ordered->file_offset, &ordered->list);
5836 btrfs_ordered_update_i_size(inode, 0, ordered);
5837 btrfs_update_inode(trans, root, inode);
5838out_unlock:
5839 unlock_extent_cached(&BTRFS_I(inode)->io_tree, ordered->file_offset,
5840 ordered->file_offset + ordered->len - 1,
5841 &cached_state, GFP_NOFS);
5842out:
5843 btrfs_delalloc_release_metadata(inode, ordered->len);
5844 btrfs_end_transaction(trans, root);
Chris Mason163cf092010-11-28 19:56:33 -05005845 ordered_offset = ordered->file_offset + ordered->len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005846 btrfs_put_ordered_extent(ordered);
5847 btrfs_put_ordered_extent(ordered);
Chris Mason163cf092010-11-28 19:56:33 -05005848
5849out_test:
5850 /*
5851 * our bio might span multiple ordered extents. If we haven't
5852 * completed the accounting for the whole dio, go back and try again
5853 */
5854 if (ordered_offset < dip->logical_offset + dip->bytes) {
5855 ordered_bytes = dip->logical_offset + dip->bytes -
5856 ordered_offset;
5857 goto again;
5858 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005859out_done:
5860 bio->bi_private = dip->private;
5861
5862 kfree(dip->csums);
5863 kfree(dip);
5864 dio_end_io(bio, err);
5865}
5866
Chris Masoneaf25d92010-05-25 09:48:28 -04005867static int __btrfs_submit_bio_start_direct_io(struct inode *inode, int rw,
5868 struct bio *bio, int mirror_num,
5869 unsigned long bio_flags, u64 offset)
5870{
5871 int ret;
5872 struct btrfs_root *root = BTRFS_I(inode)->root;
5873 ret = btrfs_csum_one_bio(root, inode, bio, offset, 1);
5874 BUG_ON(ret);
5875 return 0;
5876}
5877
Miao Xiee65e1532010-11-22 03:04:43 +00005878static void btrfs_end_dio_bio(struct bio *bio, int err)
5879{
5880 struct btrfs_dio_private *dip = bio->bi_private;
5881
5882 if (err) {
5883 printk(KERN_ERR "btrfs direct IO failed ino %lu rw %lu "
Jan Beulich3dd14622010-12-07 14:54:09 +00005884 "sector %#Lx len %u err no %d\n",
5885 dip->inode->i_ino, bio->bi_rw,
5886 (unsigned long long)bio->bi_sector, bio->bi_size, err);
Miao Xiee65e1532010-11-22 03:04:43 +00005887 dip->errors = 1;
5888
5889 /*
5890 * before atomic variable goto zero, we must make sure
5891 * dip->errors is perceived to be set.
5892 */
5893 smp_mb__before_atomic_dec();
5894 }
5895
5896 /* if there are more bios still pending for this dio, just exit */
5897 if (!atomic_dec_and_test(&dip->pending_bios))
5898 goto out;
5899
5900 if (dip->errors)
5901 bio_io_error(dip->orig_bio);
5902 else {
5903 set_bit(BIO_UPTODATE, &dip->orig_bio->bi_flags);
5904 bio_endio(dip->orig_bio, 0);
5905 }
5906out:
5907 bio_put(bio);
5908}
5909
5910static struct bio *btrfs_dio_bio_alloc(struct block_device *bdev,
5911 u64 first_sector, gfp_t gfp_flags)
5912{
5913 int nr_vecs = bio_get_nr_vecs(bdev);
5914 return btrfs_bio_alloc(bdev, first_sector, nr_vecs, gfp_flags);
5915}
5916
5917static inline int __btrfs_submit_dio_bio(struct bio *bio, struct inode *inode,
5918 int rw, u64 file_offset, int skip_sum,
5919 u32 *csums)
5920{
5921 int write = rw & REQ_WRITE;
5922 struct btrfs_root *root = BTRFS_I(inode)->root;
5923 int ret;
5924
5925 bio_get(bio);
5926 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
5927 if (ret)
5928 goto err;
5929
5930 if (write && !skip_sum) {
5931 ret = btrfs_wq_submit_bio(root->fs_info,
5932 inode, rw, bio, 0, 0,
5933 file_offset,
5934 __btrfs_submit_bio_start_direct_io,
5935 __btrfs_submit_bio_done);
5936 goto err;
5937 } else if (!skip_sum)
5938 btrfs_lookup_bio_sums_dio(root, inode, bio,
5939 file_offset, csums);
5940
5941 ret = btrfs_map_bio(root, rw, bio, 0, 1);
5942err:
5943 bio_put(bio);
5944 return ret;
5945}
5946
5947static int btrfs_submit_direct_hook(int rw, struct btrfs_dio_private *dip,
5948 int skip_sum)
5949{
5950 struct inode *inode = dip->inode;
5951 struct btrfs_root *root = BTRFS_I(inode)->root;
5952 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
5953 struct bio *bio;
5954 struct bio *orig_bio = dip->orig_bio;
5955 struct bio_vec *bvec = orig_bio->bi_io_vec;
5956 u64 start_sector = orig_bio->bi_sector;
5957 u64 file_offset = dip->logical_offset;
5958 u64 submit_len = 0;
5959 u64 map_length;
5960 int nr_pages = 0;
5961 u32 *csums = dip->csums;
5962 int ret = 0;
5963
5964 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev, start_sector, GFP_NOFS);
5965 if (!bio)
5966 return -ENOMEM;
5967 bio->bi_private = dip;
5968 bio->bi_end_io = btrfs_end_dio_bio;
5969 atomic_inc(&dip->pending_bios);
5970
5971 map_length = orig_bio->bi_size;
5972 ret = btrfs_map_block(map_tree, READ, start_sector << 9,
5973 &map_length, NULL, 0);
5974 if (ret) {
5975 bio_put(bio);
5976 return -EIO;
5977 }
5978
5979 while (bvec <= (orig_bio->bi_io_vec + orig_bio->bi_vcnt - 1)) {
5980 if (unlikely(map_length < submit_len + bvec->bv_len ||
5981 bio_add_page(bio, bvec->bv_page, bvec->bv_len,
5982 bvec->bv_offset) < bvec->bv_len)) {
5983 /*
5984 * inc the count before we submit the bio so
5985 * we know the end IO handler won't happen before
5986 * we inc the count. Otherwise, the dip might get freed
5987 * before we're done setting it up
5988 */
5989 atomic_inc(&dip->pending_bios);
5990 ret = __btrfs_submit_dio_bio(bio, inode, rw,
5991 file_offset, skip_sum,
5992 csums);
5993 if (ret) {
5994 bio_put(bio);
5995 atomic_dec(&dip->pending_bios);
5996 goto out_err;
5997 }
5998
5999 if (!skip_sum)
6000 csums = csums + nr_pages;
6001 start_sector += submit_len >> 9;
6002 file_offset += submit_len;
6003
6004 submit_len = 0;
6005 nr_pages = 0;
6006
6007 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev,
6008 start_sector, GFP_NOFS);
6009 if (!bio)
6010 goto out_err;
6011 bio->bi_private = dip;
6012 bio->bi_end_io = btrfs_end_dio_bio;
6013
6014 map_length = orig_bio->bi_size;
6015 ret = btrfs_map_block(map_tree, READ, start_sector << 9,
6016 &map_length, NULL, 0);
6017 if (ret) {
6018 bio_put(bio);
6019 goto out_err;
6020 }
6021 } else {
6022 submit_len += bvec->bv_len;
6023 nr_pages ++;
6024 bvec++;
6025 }
6026 }
6027
6028 ret = __btrfs_submit_dio_bio(bio, inode, rw, file_offset, skip_sum,
6029 csums);
6030 if (!ret)
6031 return 0;
6032
6033 bio_put(bio);
6034out_err:
6035 dip->errors = 1;
6036 /*
6037 * before atomic variable goto zero, we must
6038 * make sure dip->errors is perceived to be set.
6039 */
6040 smp_mb__before_atomic_dec();
6041 if (atomic_dec_and_test(&dip->pending_bios))
6042 bio_io_error(dip->orig_bio);
6043
6044 /* bio_end_io() will handle error, so we needn't return it */
6045 return 0;
6046}
6047
Josef Bacik4b46fce2010-05-23 11:00:55 -04006048static void btrfs_submit_direct(int rw, struct bio *bio, struct inode *inode,
6049 loff_t file_offset)
6050{
6051 struct btrfs_root *root = BTRFS_I(inode)->root;
6052 struct btrfs_dio_private *dip;
6053 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006054 int skip_sum;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02006055 int write = rw & REQ_WRITE;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006056 int ret = 0;
6057
6058 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
6059
6060 dip = kmalloc(sizeof(*dip), GFP_NOFS);
6061 if (!dip) {
6062 ret = -ENOMEM;
6063 goto free_ordered;
6064 }
6065 dip->csums = NULL;
6066
6067 if (!skip_sum) {
6068 dip->csums = kmalloc(sizeof(u32) * bio->bi_vcnt, GFP_NOFS);
6069 if (!dip->csums) {
Daniel J Bluemanb4966b72011-03-09 16:46:42 +00006070 kfree(dip);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006071 ret = -ENOMEM;
6072 goto free_ordered;
6073 }
6074 }
6075
6076 dip->private = bio->bi_private;
6077 dip->inode = inode;
6078 dip->logical_offset = file_offset;
6079
Josef Bacik4b46fce2010-05-23 11:00:55 -04006080 dip->bytes = 0;
6081 do {
6082 dip->bytes += bvec->bv_len;
6083 bvec++;
6084 } while (bvec <= (bio->bi_io_vec + bio->bi_vcnt - 1));
6085
Chris Mason46bfbb52010-05-26 11:04:10 -04006086 dip->disk_bytenr = (u64)bio->bi_sector << 9;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006087 bio->bi_private = dip;
Miao Xiee65e1532010-11-22 03:04:43 +00006088 dip->errors = 0;
6089 dip->orig_bio = bio;
6090 atomic_set(&dip->pending_bios, 0);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006091
6092 if (write)
6093 bio->bi_end_io = btrfs_endio_direct_write;
6094 else
6095 bio->bi_end_io = btrfs_endio_direct_read;
6096
Miao Xiee65e1532010-11-22 03:04:43 +00006097 ret = btrfs_submit_direct_hook(rw, dip, skip_sum);
6098 if (!ret)
Chris Masoneaf25d92010-05-25 09:48:28 -04006099 return;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006100free_ordered:
6101 /*
6102 * If this is a write, we need to clean up the reserved space and kill
6103 * the ordered extent.
6104 */
6105 if (write) {
6106 struct btrfs_ordered_extent *ordered;
Josef Bacik955256f2010-11-19 09:41:10 -05006107 ordered = btrfs_lookup_ordered_extent(inode, file_offset);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006108 if (!test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags) &&
6109 !test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags))
6110 btrfs_free_reserved_extent(root, ordered->start,
6111 ordered->disk_len);
6112 btrfs_put_ordered_extent(ordered);
6113 btrfs_put_ordered_extent(ordered);
6114 }
6115 bio_endio(bio, ret);
6116}
6117
Chris Mason5a5f79b2010-05-26 21:33:37 -04006118static ssize_t check_direct_IO(struct btrfs_root *root, int rw, struct kiocb *iocb,
6119 const struct iovec *iov, loff_t offset,
6120 unsigned long nr_segs)
6121{
6122 int seg;
6123 size_t size;
6124 unsigned long addr;
6125 unsigned blocksize_mask = root->sectorsize - 1;
6126 ssize_t retval = -EINVAL;
6127 loff_t end = offset;
6128
6129 if (offset & blocksize_mask)
6130 goto out;
6131
6132 /* Check the memory alignment. Blocks cannot straddle pages */
6133 for (seg = 0; seg < nr_segs; seg++) {
6134 addr = (unsigned long)iov[seg].iov_base;
6135 size = iov[seg].iov_len;
6136 end += size;
6137 if ((addr & blocksize_mask) || (size & blocksize_mask))
6138 goto out;
6139 }
6140 retval = 0;
6141out:
6142 return retval;
6143}
Chris Mason16432982008-04-10 10:23:21 -04006144static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
6145 const struct iovec *iov, loff_t offset,
6146 unsigned long nr_segs)
6147{
Josef Bacik4b46fce2010-05-23 11:00:55 -04006148 struct file *file = iocb->ki_filp;
6149 struct inode *inode = file->f_mapping->host;
6150 struct btrfs_ordered_extent *ordered;
Chris Mason4845e442010-05-25 20:56:50 -04006151 struct extent_state *cached_state = NULL;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006152 u64 lockstart, lockend;
6153 ssize_t ret;
Chris Mason4845e442010-05-25 20:56:50 -04006154 int writing = rw & WRITE;
6155 int write_bits = 0;
Chris Mason3f7c5792010-05-26 10:59:53 -04006156 size_t count = iov_length(iov, nr_segs);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006157
Chris Mason5a5f79b2010-05-26 21:33:37 -04006158 if (check_direct_IO(BTRFS_I(inode)->root, rw, iocb, iov,
6159 offset, nr_segs)) {
6160 return 0;
6161 }
6162
Josef Bacik4b46fce2010-05-23 11:00:55 -04006163 lockstart = offset;
Chris Mason3f7c5792010-05-26 10:59:53 -04006164 lockend = offset + count - 1;
6165
6166 if (writing) {
6167 ret = btrfs_delalloc_reserve_space(inode, count);
6168 if (ret)
6169 goto out;
6170 }
Chris Mason4845e442010-05-25 20:56:50 -04006171
Josef Bacik4b46fce2010-05-23 11:00:55 -04006172 while (1) {
Chris Mason4845e442010-05-25 20:56:50 -04006173 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6174 0, &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006175 /*
6176 * We're concerned with the entire range that we're going to be
6177 * doing DIO to, so we need to make sure theres no ordered
6178 * extents in this range.
6179 */
6180 ordered = btrfs_lookup_ordered_range(inode, lockstart,
6181 lockend - lockstart + 1);
6182 if (!ordered)
6183 break;
Chris Mason4845e442010-05-25 20:56:50 -04006184 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6185 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006186 btrfs_start_ordered_extent(inode, ordered, 1);
6187 btrfs_put_ordered_extent(ordered);
6188 cond_resched();
6189 }
6190
Chris Mason4845e442010-05-25 20:56:50 -04006191 /*
6192 * we don't use btrfs_set_extent_delalloc because we don't want
6193 * the dirty or uptodate bits
6194 */
6195 if (writing) {
6196 write_bits = EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING;
6197 ret = set_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6198 EXTENT_DELALLOC, 0, NULL, &cached_state,
6199 GFP_NOFS);
6200 if (ret) {
6201 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
6202 lockend, EXTENT_LOCKED | write_bits,
6203 1, 0, &cached_state, GFP_NOFS);
6204 goto out;
6205 }
6206 }
6207
6208 free_extent_state(cached_state);
6209 cached_state = NULL;
6210
Chris Mason5a5f79b2010-05-26 21:33:37 -04006211 ret = __blockdev_direct_IO(rw, iocb, inode,
6212 BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev,
6213 iov, offset, nr_segs, btrfs_get_blocks_direct, NULL,
6214 btrfs_submit_direct, 0);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006215
6216 if (ret < 0 && ret != -EIOCBQUEUED) {
Chris Mason4845e442010-05-25 20:56:50 -04006217 clear_extent_bit(&BTRFS_I(inode)->io_tree, offset,
6218 offset + iov_length(iov, nr_segs) - 1,
6219 EXTENT_LOCKED | write_bits, 1, 0,
6220 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006221 } else if (ret >= 0 && ret < iov_length(iov, nr_segs)) {
6222 /*
6223 * We're falling back to buffered, unlock the section we didn't
6224 * do IO on.
6225 */
Chris Mason4845e442010-05-25 20:56:50 -04006226 clear_extent_bit(&BTRFS_I(inode)->io_tree, offset + ret,
6227 offset + iov_length(iov, nr_segs) - 1,
6228 EXTENT_LOCKED | write_bits, 1, 0,
6229 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006230 }
Chris Mason4845e442010-05-25 20:56:50 -04006231out:
6232 free_extent_state(cached_state);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006233 return ret;
Chris Mason16432982008-04-10 10:23:21 -04006234}
6235
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006236static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
6237 __u64 start, __u64 len)
6238{
Chris Masonec29ed52011-02-23 16:23:20 -05006239 return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent_fiemap);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006240}
6241
Chris Mason9ebefb182007-06-15 13:50:00 -04006242int btrfs_readpage(struct file *file, struct page *page)
6243{
Chris Masond1310b22008-01-24 16:13:08 -05006244 struct extent_io_tree *tree;
6245 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04006246 return extent_read_full_page(tree, page, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04006247}
Chris Mason1832a6d2007-12-21 16:27:21 -05006248
Chris Mason39279cc2007-06-12 06:35:45 -04006249static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
6250{
Chris Masond1310b22008-01-24 16:13:08 -05006251 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04006252
6253
6254 if (current->flags & PF_MEMALLOC) {
6255 redirty_page_for_writepage(wbc, page);
6256 unlock_page(page);
6257 return 0;
6258 }
Chris Masond1310b22008-01-24 16:13:08 -05006259 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04006260 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
6261}
Chris Mason39279cc2007-06-12 06:35:45 -04006262
Chris Masonf4219502008-07-22 11:18:09 -04006263int btrfs_writepages(struct address_space *mapping,
6264 struct writeback_control *wbc)
Chris Masonb293f022007-11-01 19:45:34 -04006265{
Chris Masond1310b22008-01-24 16:13:08 -05006266 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05006267
Chris Masond1310b22008-01-24 16:13:08 -05006268 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04006269 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
6270}
6271
Chris Mason3ab2fb52007-11-08 10:59:22 -05006272static int
6273btrfs_readpages(struct file *file, struct address_space *mapping,
6274 struct list_head *pages, unsigned nr_pages)
6275{
Chris Masond1310b22008-01-24 16:13:08 -05006276 struct extent_io_tree *tree;
6277 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05006278 return extent_readpages(tree, mapping, pages, nr_pages,
6279 btrfs_get_extent);
6280}
Chris Masone6dcd2d2008-07-17 12:53:50 -04006281static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04006282{
Chris Masond1310b22008-01-24 16:13:08 -05006283 struct extent_io_tree *tree;
6284 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04006285 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006286
Chris Masond1310b22008-01-24 16:13:08 -05006287 tree = &BTRFS_I(page->mapping->host)->io_tree;
6288 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05006289 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04006290 if (ret == 1) {
6291 ClearPagePrivate(page);
6292 set_page_private(page, 0);
6293 page_cache_release(page);
6294 }
6295 return ret;
6296}
Chris Mason39279cc2007-06-12 06:35:45 -04006297
Chris Masone6dcd2d2008-07-17 12:53:50 -04006298static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
6299{
Chris Mason98509cf2008-09-11 15:51:43 -04006300 if (PageWriteback(page) || PageDirty(page))
6301 return 0;
Yan Zhengb335b002009-02-12 10:06:04 -05006302 return __btrfs_releasepage(page, gfp_flags & GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006303}
6304
Chris Masona52d9a82007-08-27 16:49:44 -04006305static void btrfs_invalidatepage(struct page *page, unsigned long offset)
6306{
Chris Masond1310b22008-01-24 16:13:08 -05006307 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006308 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006309 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006310 u64 page_start = page_offset(page);
6311 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006312
Chris Mason8b62b722009-09-02 16:53:46 -04006313
6314 /*
6315 * we have the page locked, so new writeback can't start,
6316 * and the dirty bit won't be cleared while we are here.
6317 *
6318 * Wait for IO on this page so that we can safely clear
6319 * the PagePrivate2 bit and do ordered accounting
6320 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006321 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04006322
Chris Masond1310b22008-01-24 16:13:08 -05006323 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006324 if (offset) {
6325 btrfs_releasepage(page, GFP_NOFS);
6326 return;
6327 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00006328 lock_extent_bits(tree, page_start, page_end, 0, &cached_state,
6329 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006330 ordered = btrfs_lookup_ordered_extent(page->mapping->host,
6331 page_offset(page));
6332 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04006333 /*
6334 * IO on this page will never be started, so we need
6335 * to account for any ordered extents now
6336 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006337 clear_extent_bit(tree, page_start, page_end,
6338 EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik32c00af2009-10-08 13:34:05 -04006339 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING, 1, 0,
Josef Bacik2ac55d42010-02-03 19:33:23 +00006340 &cached_state, GFP_NOFS);
Chris Mason8b62b722009-09-02 16:53:46 -04006341 /*
6342 * whoever cleared the private bit is responsible
6343 * for the finish_ordered_io
6344 */
6345 if (TestClearPagePrivate2(page)) {
6346 btrfs_finish_ordered_io(page->mapping->host,
6347 page_start, page_end);
6348 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006349 btrfs_put_ordered_extent(ordered);
Josef Bacik2ac55d42010-02-03 19:33:23 +00006350 cached_state = NULL;
6351 lock_extent_bits(tree, page_start, page_end, 0, &cached_state,
6352 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006353 }
6354 clear_extent_bit(tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04006355 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik2ac55d42010-02-03 19:33:23 +00006356 EXTENT_DO_ACCOUNTING, 1, 1, &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006357 __btrfs_releasepage(page, GFP_NOFS);
6358
Chris Mason4a096752008-07-21 10:29:44 -04006359 ClearPageChecked(page);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04006360 if (PagePrivate(page)) {
Chris Mason9ad6b7b2008-04-18 16:11:30 -04006361 ClearPagePrivate(page);
6362 set_page_private(page, 0);
6363 page_cache_release(page);
6364 }
Chris Mason39279cc2007-06-12 06:35:45 -04006365}
6366
Chris Mason9ebefb182007-06-15 13:50:00 -04006367/*
6368 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
6369 * called from a page fault handler when a page is first dirtied. Hence we must
6370 * be careful to check for EOF conditions here. We set the page up correctly
6371 * for a written page which means we get ENOSPC checking when writing into
6372 * holes and correct delalloc and unwritten extent mapping on filesystems that
6373 * support these features.
6374 *
6375 * We are not allowed to take the i_mutex here so we have to play games to
6376 * protect against truncate races as the page could now be beyond EOF. Because
6377 * vmtruncate() writes the inode size before removing pages, once we have the
6378 * page lock we can determine safely if the page is beyond EOF. If it is not
6379 * beyond EOF, then the page is guaranteed safe against truncation until we
6380 * unlock the page.
6381 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07006382int btrfs_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04006383{
Nick Pigginc2ec1752009-03-31 15:23:21 -07006384 struct page *page = vmf->page;
Chris Mason6da6aba2007-12-18 16:15:09 -05006385 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05006386 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006387 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
6388 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006389 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006390 char *kaddr;
6391 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04006392 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05006393 int ret;
Chris Masona52d9a82007-08-27 16:49:44 -04006394 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006395 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04006396
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006397 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Nick Piggin56a76f82009-03-31 15:23:23 -07006398 if (ret) {
6399 if (ret == -ENOMEM)
6400 ret = VM_FAULT_OOM;
6401 else /* -ENOSPC, -EIO, etc */
6402 ret = VM_FAULT_SIGBUS;
Chris Mason1832a6d2007-12-21 16:27:21 -05006403 goto out;
Nick Piggin56a76f82009-03-31 15:23:23 -07006404 }
Chris Mason1832a6d2007-12-21 16:27:21 -05006405
Nick Piggin56a76f82009-03-31 15:23:23 -07006406 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006407again:
Chris Mason9ebefb182007-06-15 13:50:00 -04006408 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04006409 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006410 page_start = page_offset(page);
6411 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006412
Chris Mason9ebefb182007-06-15 13:50:00 -04006413 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04006414 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04006415 /* page got truncated out from underneath us */
6416 goto out_unlock;
6417 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006418 wait_on_page_writeback(page);
6419
Josef Bacik2ac55d42010-02-03 19:33:23 +00006420 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state,
6421 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006422 set_page_extent_mapped(page);
6423
Chris Masoneb84ae02008-07-17 13:53:27 -04006424 /*
6425 * we can't set the delalloc bits if there are pending ordered
6426 * extents. Drop our locks and wait for them to finish
6427 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006428 ordered = btrfs_lookup_ordered_extent(inode, page_start);
6429 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006430 unlock_extent_cached(io_tree, page_start, page_end,
6431 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006432 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04006433 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006434 btrfs_put_ordered_extent(ordered);
6435 goto again;
6436 }
6437
Josef Bacikfbf19082009-10-01 17:10:23 -04006438 /*
6439 * XXX - page_mkwrite gets called every time the page is dirtied, even
6440 * if it was already dirty, so for space accounting reasons we need to
6441 * clear any delalloc bits for the range we are fixing to save. There
6442 * is probably a better way to do this, but for now keep consistent with
6443 * prepare_pages in the normal write path.
6444 */
Josef Bacik2ac55d42010-02-03 19:33:23 +00006445 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04006446 EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00006447 0, 0, &cached_state, GFP_NOFS);
Josef Bacikfbf19082009-10-01 17:10:23 -04006448
Josef Bacik2ac55d42010-02-03 19:33:23 +00006449 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
6450 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006451 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006452 unlock_extent_cached(io_tree, page_start, page_end,
6453 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006454 ret = VM_FAULT_SIGBUS;
6455 goto out_unlock;
6456 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006457 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04006458
6459 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04006460 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04006461 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04006462 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04006463 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04006464
Chris Masone6dcd2d2008-07-17 12:53:50 -04006465 if (zero_start != PAGE_CACHE_SIZE) {
6466 kaddr = kmap(page);
6467 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
6468 flush_dcache_page(page);
6469 kunmap(page);
6470 }
Chris Mason247e7432008-07-17 12:53:51 -04006471 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006472 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04006473 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04006474
Chris Mason257c62e2009-10-13 13:21:08 -04006475 BTRFS_I(inode)->last_trans = root->fs_info->generation;
6476 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
6477
Josef Bacik2ac55d42010-02-03 19:33:23 +00006478 unlock_extent_cached(io_tree, page_start, page_end, &cached_state, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04006479
6480out_unlock:
Chris Mason50a9b212009-09-11 12:33:12 -04006481 if (!ret)
6482 return VM_FAULT_LOCKED;
Chris Mason9ebefb182007-06-15 13:50:00 -04006483 unlock_page(page);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006484 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason1832a6d2007-12-21 16:27:21 -05006485out:
Chris Mason9ebefb182007-06-15 13:50:00 -04006486 return ret;
6487}
6488
Josef Bacika41ad392011-01-31 15:30:16 -05006489static int btrfs_truncate(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04006490{
6491 struct btrfs_root *root = BTRFS_I(inode)->root;
6492 int ret;
Josef Bacik3893e332011-01-31 16:03:11 -05006493 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006494 struct btrfs_trans_handle *trans;
Chris Masond3c2fdc2007-09-17 10:58:06 -04006495 unsigned long nr;
Chris Masondbe674a2008-07-17 12:54:05 -04006496 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -04006497
Josef Bacik5d5e1032009-10-13 16:46:49 -04006498 ret = btrfs_truncate_page(inode->i_mapping, inode->i_size);
6499 if (ret)
Josef Bacika41ad392011-01-31 15:30:16 -05006500 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00006501
Chris Mason4a096752008-07-21 10:29:44 -04006502 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
Yan, Zheng80825102009-11-12 09:35:36 +00006503 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006504
Yan, Zhengd68fc572010-05-16 10:49:58 -04006505 trans = btrfs_start_transaction(root, 0);
Josef Bacik3893e332011-01-31 16:03:11 -05006506 if (IS_ERR(trans))
6507 return PTR_ERR(trans);
Yan, Zheng80825102009-11-12 09:35:36 +00006508 btrfs_set_trans_block_group(trans, inode);
Yan, Zhengd68fc572010-05-16 10:49:58 -04006509 trans->block_rsv = root->orphan_block_rsv;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006510
6511 /*
6512 * setattr is responsible for setting the ordered_data_close flag,
6513 * but that is only tested during the last file release. That
6514 * could happen well after the next commit, leaving a great big
6515 * window where new writes may get lost if someone chooses to write
6516 * to this file after truncating to zero
6517 *
6518 * The inode doesn't have any dirty data here, and so if we commit
6519 * this is a noop. If someone immediately starts writing to the inode
6520 * it is very likely we'll catch some of their writes in this
6521 * transaction, and the commit will find this file on the ordered
6522 * data list with good things to send down.
6523 *
6524 * This is a best effort solution, there is still a window where
6525 * using truncate to replace the contents of the file will
6526 * end up with a zero length file after a crash.
6527 */
6528 if (inode->i_size == 0 && BTRFS_I(inode)->ordered_data_close)
6529 btrfs_add_ordered_operation(trans, root, inode);
6530
Yan, Zheng80825102009-11-12 09:35:36 +00006531 while (1) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04006532 if (!trans) {
6533 trans = btrfs_start_transaction(root, 0);
Josef Bacik3893e332011-01-31 16:03:11 -05006534 if (IS_ERR(trans))
6535 return PTR_ERR(trans);
Yan, Zhengd68fc572010-05-16 10:49:58 -04006536 btrfs_set_trans_block_group(trans, inode);
6537 trans->block_rsv = root->orphan_block_rsv;
6538 }
6539
6540 ret = btrfs_block_rsv_check(trans, root,
6541 root->orphan_block_rsv, 0, 5);
Josef Bacik3893e332011-01-31 16:03:11 -05006542 if (ret == -EAGAIN) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04006543 ret = btrfs_commit_transaction(trans, root);
Josef Bacik3893e332011-01-31 16:03:11 -05006544 if (ret)
6545 return ret;
Yan, Zhengd68fc572010-05-16 10:49:58 -04006546 trans = NULL;
6547 continue;
Josef Bacik3893e332011-01-31 16:03:11 -05006548 } else if (ret) {
6549 err = ret;
6550 break;
Yan, Zhengd68fc572010-05-16 10:49:58 -04006551 }
6552
Yan, Zheng80825102009-11-12 09:35:36 +00006553 ret = btrfs_truncate_inode_items(trans, root, inode,
6554 inode->i_size,
6555 BTRFS_EXTENT_DATA_KEY);
Josef Bacik3893e332011-01-31 16:03:11 -05006556 if (ret != -EAGAIN) {
6557 err = ret;
Yan, Zheng80825102009-11-12 09:35:36 +00006558 break;
Josef Bacik3893e332011-01-31 16:03:11 -05006559 }
Chris Mason39279cc2007-06-12 06:35:45 -04006560
Yan, Zheng80825102009-11-12 09:35:36 +00006561 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05006562 if (ret) {
6563 err = ret;
6564 break;
6565 }
Chris Mason5f39d392007-10-15 16:14:19 -04006566
Yan, Zheng80825102009-11-12 09:35:36 +00006567 nr = trans->blocks_used;
6568 btrfs_end_transaction(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -04006569 trans = NULL;
Yan, Zheng80825102009-11-12 09:35:36 +00006570 btrfs_btree_balance_dirty(root, nr);
Yan, Zheng80825102009-11-12 09:35:36 +00006571 }
6572
6573 if (ret == 0 && inode->i_nlink > 0) {
6574 ret = btrfs_orphan_del(trans, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05006575 if (ret)
6576 err = ret;
Yan, Zheng80825102009-11-12 09:35:36 +00006577 }
6578
6579 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05006580 if (ret && !err)
6581 err = ret;
Josef Bacik7b128762008-07-24 12:17:14 -04006582
Josef Bacik7b128762008-07-24 12:17:14 -04006583 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04006584 ret = btrfs_end_transaction_throttle(trans, root);
Josef Bacik3893e332011-01-31 16:03:11 -05006585 if (ret && !err)
6586 err = ret;
Chris Masond3c2fdc2007-09-17 10:58:06 -04006587 btrfs_btree_balance_dirty(root, nr);
Josef Bacika41ad392011-01-31 15:30:16 -05006588
Josef Bacik3893e332011-01-31 16:03:11 -05006589 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04006590}
6591
Sven Wegener3b963622008-06-09 21:57:42 -04006592/*
Chris Masond352ac62008-09-29 15:18:18 -04006593 * create a new subvolume directory/inode (helper for the ioctl).
6594 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05006595int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Yan, Zheng76dda932009-09-21 16:00:26 -04006596 struct btrfs_root *new_root,
Yan Zhengd2fb3432008-12-11 16:30:39 -05006597 u64 new_dirid, u64 alloc_hint)
Chris Mason39279cc2007-06-12 06:35:45 -04006598{
Chris Mason39279cc2007-06-12 06:35:45 -04006599 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04006600 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006601 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006602
Josef Bacikaec74772008-07-24 12:12:38 -04006603 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2, new_dirid,
Yan Zhengd2fb3432008-12-11 16:30:39 -05006604 new_dirid, alloc_hint, S_IFDIR | 0700, &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04006605 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04006606 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006607 inode->i_op = &btrfs_dir_inode_operations;
6608 inode->i_fop = &btrfs_dir_file_operations;
6609
Chris Mason39279cc2007-06-12 06:35:45 -04006610 inode->i_nlink = 1;
Chris Masondbe674a2008-07-17 12:54:05 -04006611 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04006612
Yan, Zheng76dda932009-09-21 16:00:26 -04006613 err = btrfs_update_inode(trans, new_root, inode);
6614 BUG_ON(err);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04006615
Yan, Zheng76dda932009-09-21 16:00:26 -04006616 iput(inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04006617 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006618}
6619
Chris Masond352ac62008-09-29 15:18:18 -04006620/* helper function for file defrag and space balancing. This
6621 * forces readahead on a given range of bytes in an inode
6622 */
Chris Masonedbd8d42007-12-21 16:27:24 -05006623unsigned long btrfs_force_ra(struct address_space *mapping,
Chris Mason86479a02007-09-10 19:58:16 -04006624 struct file_ra_state *ra, struct file *file,
6625 pgoff_t offset, pgoff_t last_index)
6626{
Chris Mason8e7bf942008-04-28 09:02:36 -04006627 pgoff_t req_size = last_index - offset + 1;
Chris Mason86479a02007-09-10 19:58:16 -04006628
Chris Mason86479a02007-09-10 19:58:16 -04006629 page_cache_sync_readahead(mapping, ra, file, offset, req_size);
6630 return offset + req_size;
Chris Mason86479a02007-09-10 19:58:16 -04006631}
6632
Chris Mason39279cc2007-06-12 06:35:45 -04006633struct inode *btrfs_alloc_inode(struct super_block *sb)
6634{
6635 struct btrfs_inode *ei;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006636 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04006637
6638 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
6639 if (!ei)
6640 return NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006641
6642 ei->root = NULL;
6643 ei->space_info = NULL;
6644 ei->generation = 0;
6645 ei->sequence = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04006646 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04006647 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04006648 ei->logged_trans = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006649 ei->delalloc_bytes = 0;
6650 ei->reserved_bytes = 0;
6651 ei->disk_i_size = 0;
6652 ei->flags = 0;
6653 ei->index_cnt = (u64)-1;
6654 ei->last_unlink_trans = 0;
6655
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006656 atomic_set(&ei->outstanding_extents, 0);
Josef Bacik57a45ced2011-01-25 16:30:38 -05006657 atomic_set(&ei->reserved_extents, 0);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006658
6659 ei->ordered_data_close = 0;
Yan, Zhengd68fc572010-05-16 10:49:58 -04006660 ei->orphan_meta_reserved = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006661 ei->dummy_inode = 0;
Li Zefan261507a02010-12-17 14:21:50 +08006662 ei->force_compress = BTRFS_COMPRESS_NONE;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006663
6664 inode = &ei->vfs_inode;
6665 extent_map_tree_init(&ei->extent_tree, GFP_NOFS);
6666 extent_io_tree_init(&ei->io_tree, &inode->i_data, GFP_NOFS);
6667 extent_io_tree_init(&ei->io_failure_tree, &inode->i_data, GFP_NOFS);
6668 mutex_init(&ei->log_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006669 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Josef Bacik7b128762008-07-24 12:17:14 -04006670 INIT_LIST_HEAD(&ei->i_orphan);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006671 INIT_LIST_HEAD(&ei->delalloc_inodes);
Chris Mason5a3f23d2009-03-31 13:27:11 -04006672 INIT_LIST_HEAD(&ei->ordered_operations);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006673 RB_CLEAR_NODE(&ei->rb_node);
6674
6675 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04006676}
6677
Nick Pigginfa0d7e32011-01-07 17:49:49 +11006678static void btrfs_i_callback(struct rcu_head *head)
6679{
6680 struct inode *inode = container_of(head, struct inode, i_rcu);
6681 INIT_LIST_HEAD(&inode->i_dentry);
6682 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
6683}
6684
Chris Mason39279cc2007-06-12 06:35:45 -04006685void btrfs_destroy_inode(struct inode *inode)
6686{
Chris Masone6dcd2d2008-07-17 12:53:50 -04006687 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006688 struct btrfs_root *root = BTRFS_I(inode)->root;
6689
Chris Mason39279cc2007-06-12 06:35:45 -04006690 WARN_ON(!list_empty(&inode->i_dentry));
6691 WARN_ON(inode->i_data.nrpages);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006692 WARN_ON(atomic_read(&BTRFS_I(inode)->outstanding_extents));
Josef Bacik57a45ced2011-01-25 16:30:38 -05006693 WARN_ON(atomic_read(&BTRFS_I(inode)->reserved_extents));
Chris Mason39279cc2007-06-12 06:35:45 -04006694
Chris Mason5a3f23d2009-03-31 13:27:11 -04006695 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05006696 * This can happen where we create an inode, but somebody else also
6697 * created the same inode and we need to destroy the one we already
6698 * created.
6699 */
6700 if (!root)
6701 goto free;
6702
6703 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04006704 * Make sure we're properly removed from the ordered operation
6705 * lists.
6706 */
6707 smp_mb();
6708 if (!list_empty(&BTRFS_I(inode)->ordered_operations)) {
6709 spin_lock(&root->fs_info->ordered_extent_lock);
6710 list_del_init(&BTRFS_I(inode)->ordered_operations);
6711 spin_unlock(&root->fs_info->ordered_extent_lock);
6712 }
6713
Josef Bacik0af3d002010-06-21 14:48:16 -04006714 if (root == root->fs_info->tree_root) {
6715 struct btrfs_block_group_cache *block_group;
6716
6717 block_group = btrfs_lookup_block_group(root->fs_info,
6718 BTRFS_I(inode)->block_group);
6719 if (block_group && block_group->inode == inode) {
6720 spin_lock(&block_group->lock);
6721 block_group->inode = NULL;
6722 spin_unlock(&block_group->lock);
6723 btrfs_put_block_group(block_group);
6724 } else if (block_group) {
6725 btrfs_put_block_group(block_group);
6726 }
6727 }
6728
Yan, Zhengd68fc572010-05-16 10:49:58 -04006729 spin_lock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04006730 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
Yan, Zheng80825102009-11-12 09:35:36 +00006731 printk(KERN_INFO "BTRFS: inode %lu still on the orphan list\n",
6732 inode->i_ino);
6733 list_del_init(&BTRFS_I(inode)->i_orphan);
Josef Bacik7b128762008-07-24 12:17:14 -04006734 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04006735 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04006736
Chris Masond3977122009-01-05 21:25:51 -05006737 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04006738 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
6739 if (!ordered)
6740 break;
6741 else {
Chris Masond3977122009-01-05 21:25:51 -05006742 printk(KERN_ERR "btrfs found ordered "
6743 "extent %llu %llu on inode cleanup\n",
6744 (unsigned long long)ordered->file_offset,
6745 (unsigned long long)ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006746 btrfs_remove_ordered_extent(inode, ordered);
6747 btrfs_put_ordered_extent(ordered);
6748 btrfs_put_ordered_extent(ordered);
6749 }
6750 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006751 inode_tree_del(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04006752 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
Josef Bacika6dbd422009-11-11 15:53:34 -05006753free:
Nick Pigginfa0d7e32011-01-07 17:49:49 +11006754 call_rcu(&inode->i_rcu, btrfs_i_callback);
Chris Mason39279cc2007-06-12 06:35:45 -04006755}
6756
Al Viro45321ac2010-06-07 13:43:19 -04006757int btrfs_drop_inode(struct inode *inode)
Yan, Zheng76dda932009-09-21 16:00:26 -04006758{
6759 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro45321ac2010-06-07 13:43:19 -04006760
Josef Bacik0af3d002010-06-21 14:48:16 -04006761 if (btrfs_root_refs(&root->root_item) == 0 &&
6762 root != root->fs_info->tree_root)
Al Viro45321ac2010-06-07 13:43:19 -04006763 return 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04006764 else
Al Viro45321ac2010-06-07 13:43:19 -04006765 return generic_drop_inode(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04006766}
6767
Sven Wegener0ee0fda2008-07-30 16:54:26 -04006768static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04006769{
6770 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
6771
6772 inode_init_once(&ei->vfs_inode);
6773}
6774
6775void btrfs_destroy_cachep(void)
6776{
6777 if (btrfs_inode_cachep)
6778 kmem_cache_destroy(btrfs_inode_cachep);
6779 if (btrfs_trans_handle_cachep)
6780 kmem_cache_destroy(btrfs_trans_handle_cachep);
6781 if (btrfs_transaction_cachep)
6782 kmem_cache_destroy(btrfs_transaction_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04006783 if (btrfs_path_cachep)
6784 kmem_cache_destroy(btrfs_path_cachep);
Josef Bacikdc89e982011-01-28 17:05:48 -05006785 if (btrfs_free_space_cachep)
6786 kmem_cache_destroy(btrfs_free_space_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04006787}
6788
6789int btrfs_init_cachep(void)
6790{
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006791 btrfs_inode_cachep = kmem_cache_create("btrfs_inode_cache",
6792 sizeof(struct btrfs_inode), 0,
6793 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04006794 if (!btrfs_inode_cachep)
6795 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006796
6797 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle_cache",
6798 sizeof(struct btrfs_trans_handle), 0,
6799 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006800 if (!btrfs_trans_handle_cachep)
6801 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006802
6803 btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction_cache",
6804 sizeof(struct btrfs_transaction), 0,
6805 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006806 if (!btrfs_transaction_cachep)
6807 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006808
6809 btrfs_path_cachep = kmem_cache_create("btrfs_path_cache",
6810 sizeof(struct btrfs_path), 0,
6811 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006812 if (!btrfs_path_cachep)
6813 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006814
Josef Bacikdc89e982011-01-28 17:05:48 -05006815 btrfs_free_space_cachep = kmem_cache_create("btrfs_free_space_cache",
6816 sizeof(struct btrfs_free_space), 0,
6817 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
6818 if (!btrfs_free_space_cachep)
6819 goto fail;
6820
Chris Mason39279cc2007-06-12 06:35:45 -04006821 return 0;
6822fail:
6823 btrfs_destroy_cachep();
6824 return -ENOMEM;
6825}
6826
6827static int btrfs_getattr(struct vfsmount *mnt,
6828 struct dentry *dentry, struct kstat *stat)
6829{
6830 struct inode *inode = dentry->d_inode;
6831 generic_fillattr(inode, stat);
Chris Mason3394e162008-11-17 20:42:26 -05006832 stat->dev = BTRFS_I(inode)->root->anon_super.s_dev;
Chris Masond6667462008-01-03 14:51:00 -05006833 stat->blksize = PAGE_CACHE_SIZE;
Yan Zhenga76a3cd2008-10-09 11:46:29 -04006834 stat->blocks = (inode_get_bytes(inode) +
6835 BTRFS_I(inode)->delalloc_bytes) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04006836 return 0;
6837}
6838
Chris Masond3977122009-01-05 21:25:51 -05006839static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
6840 struct inode *new_dir, struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04006841{
6842 struct btrfs_trans_handle *trans;
6843 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006844 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04006845 struct inode *new_inode = new_dentry->d_inode;
6846 struct inode *old_inode = old_dentry->d_inode;
6847 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006848 u64 index = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006849 u64 root_objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04006850 int ret;
6851
Yan, Zhengf679a842009-09-24 09:17:31 -04006852 if (new_dir->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
6853 return -EPERM;
6854
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006855 /* we only allow rename subvolume link between subvolumes */
6856 if (old_inode->i_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05006857 return -EXDEV;
6858
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006859 if (old_inode->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
6860 (new_inode && new_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID))
6861 return -ENOTEMPTY;
6862
Chris Mason39279cc2007-06-12 06:35:45 -04006863 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006864 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04006865 return -ENOTEMPTY;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006866 /*
6867 * we're using rename to replace one file with another.
6868 * and the replacement file is large. Start IO on it now so
6869 * we don't add too much work to the end of the transaction
6870 */
Bartlomiej Zolnierkiewicz4baf8c92009-08-07 13:47:08 -04006871 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size &&
Chris Mason5a3f23d2009-03-31 13:27:11 -04006872 old_inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
6873 filemap_flush(old_inode->i_mapping);
6874
Yan, Zheng76dda932009-09-21 16:00:26 -04006875 /* close the racy window with snapshot create/destroy ioctl */
6876 if (old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
6877 down_read(&root->fs_info->subvol_sem);
Yan, Zhenga22285a2010-05-16 10:48:46 -04006878 /*
6879 * We want to reserve the absolute worst case amount of items. So if
6880 * both inodes are subvols and we need to unlink them then that would
6881 * require 4 item modifications, but if they are both normal inodes it
6882 * would require 5 item modifications, so we'll assume their normal
6883 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
6884 * should cover the worst case number of items we'll modify.
6885 */
6886 trans = btrfs_start_transaction(root, 20);
6887 if (IS_ERR(trans))
6888 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04006889
Yan, Zhenga5719522009-09-24 09:17:31 -04006890 btrfs_set_trans_block_group(trans, new_dir);
Chris Mason39279cc2007-06-12 06:35:45 -04006891
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006892 if (dest != root)
6893 btrfs_record_root_in_trans(trans, dest);
6894
Yan, Zhenga5719522009-09-24 09:17:31 -04006895 ret = btrfs_set_inode_index(new_dir, &index);
6896 if (ret)
6897 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006898
Yan, Zhenga5719522009-09-24 09:17:31 -04006899 if (unlikely(old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006900 /* force full log commit if subvolume involved. */
6901 root->fs_info->last_trans_log_full_commit = trans->transid;
6902 } else {
Yan, Zhenga5719522009-09-24 09:17:31 -04006903 ret = btrfs_insert_inode_ref(trans, dest,
6904 new_dentry->d_name.name,
6905 new_dentry->d_name.len,
6906 old_inode->i_ino,
6907 new_dir->i_ino, index);
6908 if (ret)
6909 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006910 /*
6911 * this is an ugly little race, but the rename is required
6912 * to make sure that if we crash, the inode is either at the
6913 * old name or the new one. pinning the log transaction lets
6914 * us make sure we don't allow a log commit to come in after
6915 * we unlink the name but before we add the new name back in.
6916 */
6917 btrfs_pin_log_trans(root);
6918 }
Chris Mason12fcfd22009-03-24 10:24:20 -04006919 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04006920 * make sure the inode gets flushed if it is replacing
6921 * something.
6922 */
6923 if (new_inode && new_inode->i_size &&
6924 old_inode && S_ISREG(old_inode->i_mode)) {
6925 btrfs_add_ordered_operation(trans, root, old_inode);
6926 }
6927
Chris Mason39279cc2007-06-12 06:35:45 -04006928 old_dir->i_ctime = old_dir->i_mtime = ctime;
6929 new_dir->i_ctime = new_dir->i_mtime = ctime;
6930 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04006931
Chris Mason12fcfd22009-03-24 10:24:20 -04006932 if (old_dentry->d_parent != new_dentry->d_parent)
6933 btrfs_record_unlink_dir(trans, old_dir, old_inode, 1);
6934
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006935 if (unlikely(old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
6936 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
6937 ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid,
6938 old_dentry->d_name.name,
6939 old_dentry->d_name.len);
6940 } else {
6941 btrfs_inc_nlink(old_dentry->d_inode);
6942 ret = btrfs_unlink_inode(trans, root, old_dir,
6943 old_dentry->d_inode,
6944 old_dentry->d_name.name,
6945 old_dentry->d_name.len);
6946 }
6947 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04006948
6949 if (new_inode) {
6950 new_inode->i_ctime = CURRENT_TIME;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006951 if (unlikely(new_inode->i_ino ==
6952 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
6953 root_objectid = BTRFS_I(new_inode)->location.objectid;
6954 ret = btrfs_unlink_subvol(trans, dest, new_dir,
6955 root_objectid,
6956 new_dentry->d_name.name,
6957 new_dentry->d_name.len);
6958 BUG_ON(new_inode->i_nlink == 0);
6959 } else {
6960 ret = btrfs_unlink_inode(trans, dest, new_dir,
6961 new_dentry->d_inode,
6962 new_dentry->d_name.name,
6963 new_dentry->d_name.len);
6964 }
6965 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04006966 if (new_inode->i_nlink == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04006967 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006968 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04006969 }
Chris Mason39279cc2007-06-12 06:35:45 -04006970 }
Josef Bacikaec74772008-07-24 12:12:38 -04006971
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006972 ret = btrfs_add_link(trans, new_dir, old_inode,
6973 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04006974 new_dentry->d_name.len, 0, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006975 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04006976
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006977 if (old_inode->i_ino != BTRFS_FIRST_FREE_OBJECTID) {
Josef Bacik6a912212010-11-20 09:48:00 +00006978 struct dentry *parent = dget_parent(new_dentry);
6979 btrfs_log_new_name(trans, old_inode, old_dir, parent);
6980 dput(parent);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006981 btrfs_end_log_trans(root);
6982 }
Chris Mason39279cc2007-06-12 06:35:45 -04006983out_fail:
Chris Masonab78c842008-07-29 16:15:18 -04006984 btrfs_end_transaction_throttle(trans, root);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006985
Yan, Zheng76dda932009-09-21 16:00:26 -04006986 if (old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
6987 up_read(&root->fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006988
Chris Mason39279cc2007-06-12 06:35:45 -04006989 return ret;
6990}
6991
Chris Masond352ac62008-09-29 15:18:18 -04006992/*
6993 * some fairly slow code that needs optimization. This walks the list
6994 * of all the inodes with pending delalloc and forces them to disk.
6995 */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00006996int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput)
Chris Masonea8c2812008-08-04 23:17:27 -04006997{
6998 struct list_head *head = &root->fs_info->delalloc_inodes;
6999 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007000 struct inode *inode;
Chris Masonea8c2812008-08-04 23:17:27 -04007001
Yan Zhengc146afa2008-11-12 14:34:12 -05007002 if (root->fs_info->sb->s_flags & MS_RDONLY)
7003 return -EROFS;
7004
Chris Mason75eff682008-12-15 15:54:40 -05007005 spin_lock(&root->fs_info->delalloc_lock);
Chris Masond3977122009-01-05 21:25:51 -05007006 while (!list_empty(head)) {
Chris Masonea8c2812008-08-04 23:17:27 -04007007 binode = list_entry(head->next, struct btrfs_inode,
7008 delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007009 inode = igrab(&binode->vfs_inode);
7010 if (!inode)
7011 list_del_init(&binode->delalloc_inodes);
Chris Mason75eff682008-12-15 15:54:40 -05007012 spin_unlock(&root->fs_info->delalloc_lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007013 if (inode) {
Chris Mason8c8bee12008-09-29 11:19:10 -04007014 filemap_flush(inode->i_mapping);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00007015 if (delay_iput)
7016 btrfs_add_delayed_iput(inode);
7017 else
7018 iput(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007019 }
7020 cond_resched();
Chris Mason75eff682008-12-15 15:54:40 -05007021 spin_lock(&root->fs_info->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04007022 }
Chris Mason75eff682008-12-15 15:54:40 -05007023 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -04007024
7025 /* the filemap_flush will queue IO into the worker threads, but
7026 * we have to make sure the IO is actually started and that
7027 * ordered extents get created before we return
7028 */
7029 atomic_inc(&root->fs_info->async_submit_draining);
Chris Masond3977122009-01-05 21:25:51 -05007030 while (atomic_read(&root->fs_info->nr_async_submits) ||
Chris Mason771ed682008-11-06 22:02:51 -05007031 atomic_read(&root->fs_info->async_delalloc_pages)) {
Chris Mason8c8bee12008-09-29 11:19:10 -04007032 wait_event(root->fs_info->async_submit_wait,
Chris Mason771ed682008-11-06 22:02:51 -05007033 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
7034 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee12008-09-29 11:19:10 -04007035 }
7036 atomic_dec(&root->fs_info->async_submit_draining);
Chris Masonea8c2812008-08-04 23:17:27 -04007037 return 0;
7038}
7039
Josef Bacik0019f102010-10-15 15:18:40 -04007040int btrfs_start_one_delalloc_inode(struct btrfs_root *root, int delay_iput,
7041 int sync)
Yan, Zheng5da9d012010-05-16 10:46:25 -04007042{
7043 struct btrfs_inode *binode;
7044 struct inode *inode = NULL;
7045
7046 spin_lock(&root->fs_info->delalloc_lock);
7047 while (!list_empty(&root->fs_info->delalloc_inodes)) {
7048 binode = list_entry(root->fs_info->delalloc_inodes.next,
7049 struct btrfs_inode, delalloc_inodes);
7050 inode = igrab(&binode->vfs_inode);
7051 if (inode) {
7052 list_move_tail(&binode->delalloc_inodes,
7053 &root->fs_info->delalloc_inodes);
7054 break;
7055 }
7056
7057 list_del_init(&binode->delalloc_inodes);
7058 cond_resched_lock(&root->fs_info->delalloc_lock);
7059 }
7060 spin_unlock(&root->fs_info->delalloc_lock);
7061
7062 if (inode) {
Josef Bacik0019f102010-10-15 15:18:40 -04007063 if (sync) {
7064 filemap_write_and_wait(inode->i_mapping);
7065 /*
7066 * We have to do this because compression doesn't
7067 * actually set PG_writeback until it submits the pages
7068 * for IO, which happens in an async thread, so we could
7069 * race and not actually wait for any writeback pages
7070 * because they've not been submitted yet. Technically
7071 * this could still be the case for the ordered stuff
7072 * since the async thread may not have started to do its
7073 * work yet. If this becomes the case then we need to
7074 * figure out a way to make sure that in writepage we
7075 * wait for any async pages to be submitted before
7076 * returning so that fdatawait does what its supposed to
7077 * do.
7078 */
7079 btrfs_wait_ordered_range(inode, 0, (u64)-1);
7080 } else {
7081 filemap_flush(inode->i_mapping);
7082 }
Yan, Zheng5da9d012010-05-16 10:46:25 -04007083 if (delay_iput)
7084 btrfs_add_delayed_iput(inode);
7085 else
7086 iput(inode);
7087 return 1;
7088 }
7089 return 0;
7090}
7091
Chris Mason39279cc2007-06-12 06:35:45 -04007092static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
7093 const char *symname)
7094{
7095 struct btrfs_trans_handle *trans;
7096 struct btrfs_root *root = BTRFS_I(dir)->root;
7097 struct btrfs_path *path;
7098 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05007099 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04007100 int err;
7101 int drop_inode = 0;
7102 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04007103 u64 index = 0 ;
Chris Mason39279cc2007-06-12 06:35:45 -04007104 int name_len;
7105 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04007106 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04007107 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04007108 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05007109 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007110
7111 name_len = strlen(symname) + 1;
7112 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
7113 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05007114
Yan, Zhenga22285a2010-05-16 10:48:46 -04007115 err = btrfs_find_free_objectid(NULL, root, dir->i_ino, &objectid);
7116 if (err)
7117 return err;
Josef Bacik9ed74f22009-09-11 16:12:44 -04007118 /*
7119 * 2 items for inode item and ref
7120 * 2 items for dir items
7121 * 1 item for xattr if selinux is on
7122 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04007123 trans = btrfs_start_transaction(root, 5);
7124 if (IS_ERR(trans))
7125 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05007126
Chris Mason39279cc2007-06-12 06:35:45 -04007127 btrfs_set_trans_block_group(trans, dir);
7128
Josef Bacikaec74772008-07-24 12:12:38 -04007129 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Josef Bacika1b075d2010-11-19 20:36:11 +00007130 dentry->d_name.len, dir->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04007131 BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO,
7132 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04007133 err = PTR_ERR(inode);
7134 if (IS_ERR(inode))
7135 goto out_unlock;
7136
Yan, Zhengf34f57a2009-11-12 09:35:27 +00007137 err = btrfs_init_inode_security(trans, inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04007138 if (err) {
7139 drop_inode = 1;
7140 goto out_unlock;
7141 }
7142
Chris Mason39279cc2007-06-12 06:35:45 -04007143 btrfs_set_trans_block_group(trans, inode);
Josef Bacika1b075d2010-11-19 20:36:11 +00007144 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04007145 if (err)
7146 drop_inode = 1;
7147 else {
7148 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04007149 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04007150 inode->i_fop = &btrfs_file_operations;
7151 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05007152 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04007153 }
Chris Mason39279cc2007-06-12 06:35:45 -04007154 btrfs_update_inode_block_group(trans, inode);
7155 btrfs_update_inode_block_group(trans, dir);
7156 if (drop_inode)
7157 goto out_unlock;
7158
7159 path = btrfs_alloc_path();
7160 BUG_ON(!path);
7161 key.objectid = inode->i_ino;
7162 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007163 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
7164 datasize = btrfs_file_extent_calc_inline_size(name_len);
7165 err = btrfs_insert_empty_item(trans, root, path, &key,
7166 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04007167 if (err) {
7168 drop_inode = 1;
7169 goto out_unlock;
7170 }
Chris Mason5f39d392007-10-15 16:14:19 -04007171 leaf = path->nodes[0];
7172 ei = btrfs_item_ptr(leaf, path->slots[0],
7173 struct btrfs_file_extent_item);
7174 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
7175 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04007176 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -04007177 btrfs_set_file_extent_encryption(leaf, ei, 0);
7178 btrfs_set_file_extent_compression(leaf, ei, 0);
7179 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
7180 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
7181
Chris Mason39279cc2007-06-12 06:35:45 -04007182 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04007183 write_extent_buffer(leaf, symname, ptr, name_len);
7184 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04007185 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04007186
Chris Mason39279cc2007-06-12 06:35:45 -04007187 inode->i_op = &btrfs_symlink_inode_operations;
7188 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04007189 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Yan Zhengd899e052008-10-30 14:25:28 -04007190 inode_set_bytes(inode, name_len);
Chris Masondbe674a2008-07-17 12:54:05 -04007191 btrfs_i_size_write(inode, name_len - 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04007192 err = btrfs_update_inode(trans, root, inode);
7193 if (err)
7194 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04007195
7196out_unlock:
Chris Masond3c2fdc2007-09-17 10:58:06 -04007197 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04007198 btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04007199 if (drop_inode) {
7200 inode_dec_link_count(inode);
7201 iput(inode);
7202 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04007203 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04007204 return err;
7205}
Chris Mason16432982008-04-10 10:23:21 -04007206
Josef Bacik0af3d002010-06-21 14:48:16 -04007207static int __btrfs_prealloc_file_range(struct inode *inode, int mode,
7208 u64 start, u64 num_bytes, u64 min_size,
7209 loff_t actual_len, u64 *alloc_hint,
7210 struct btrfs_trans_handle *trans)
Yan Zhengd899e052008-10-30 14:25:28 -04007211{
Yan Zhengd899e052008-10-30 14:25:28 -04007212 struct btrfs_root *root = BTRFS_I(inode)->root;
7213 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -04007214 u64 cur_offset = start;
Josef Bacik55a61d12010-11-22 18:50:32 +00007215 u64 i_size;
Yan Zhengd899e052008-10-30 14:25:28 -04007216 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04007217 bool own_trans = true;
Yan Zhengd899e052008-10-30 14:25:28 -04007218
Josef Bacik0af3d002010-06-21 14:48:16 -04007219 if (trans)
7220 own_trans = false;
Yan Zhengd899e052008-10-30 14:25:28 -04007221 while (num_bytes > 0) {
Josef Bacik0af3d002010-06-21 14:48:16 -04007222 if (own_trans) {
7223 trans = btrfs_start_transaction(root, 3);
7224 if (IS_ERR(trans)) {
7225 ret = PTR_ERR(trans);
7226 break;
7227 }
Yan Zhengd899e052008-10-30 14:25:28 -04007228 }
Yan, Zheng5a303d52009-11-12 09:34:52 +00007229
Yan, Zhengefa56462010-05-16 10:49:59 -04007230 ret = btrfs_reserve_extent(trans, root, num_bytes, min_size,
7231 0, *alloc_hint, (u64)-1, &ins, 1);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007232 if (ret) {
Josef Bacik0af3d002010-06-21 14:48:16 -04007233 if (own_trans)
7234 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04007235 break;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007236 }
7237
Yan Zhengd899e052008-10-30 14:25:28 -04007238 ret = insert_reserved_file_extent(trans, inode,
7239 cur_offset, ins.objectid,
7240 ins.offset, ins.offset,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00007241 ins.offset, 0, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04007242 BTRFS_FILE_EXTENT_PREALLOC);
7243 BUG_ON(ret);
Chris Masona1ed8352009-09-11 12:27:37 -04007244 btrfs_drop_extent_cache(inode, cur_offset,
7245 cur_offset + ins.offset -1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007246
Yan Zhengd899e052008-10-30 14:25:28 -04007247 num_bytes -= ins.offset;
7248 cur_offset += ins.offset;
Yan, Zhengefa56462010-05-16 10:49:59 -04007249 *alloc_hint = ins.objectid + ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007250
Yan Zhengd899e052008-10-30 14:25:28 -04007251 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +02007252 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -04007253 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
Yan, Zhengefa56462010-05-16 10:49:59 -04007254 (actual_len > inode->i_size) &&
7255 (cur_offset > inode->i_size)) {
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00007256 if (cur_offset > actual_len)
Josef Bacik55a61d12010-11-22 18:50:32 +00007257 i_size = actual_len;
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00007258 else
Josef Bacik55a61d12010-11-22 18:50:32 +00007259 i_size = cur_offset;
7260 i_size_write(inode, i_size);
7261 btrfs_ordered_update_i_size(inode, i_size, NULL);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007262 }
7263
Yan Zhengd899e052008-10-30 14:25:28 -04007264 ret = btrfs_update_inode(trans, root, inode);
7265 BUG_ON(ret);
Yan Zhengd899e052008-10-30 14:25:28 -04007266
Josef Bacik0af3d002010-06-21 14:48:16 -04007267 if (own_trans)
7268 btrfs_end_transaction(trans, root);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007269 }
Yan Zhengd899e052008-10-30 14:25:28 -04007270 return ret;
7271}
7272
Josef Bacik0af3d002010-06-21 14:48:16 -04007273int btrfs_prealloc_file_range(struct inode *inode, int mode,
7274 u64 start, u64 num_bytes, u64 min_size,
7275 loff_t actual_len, u64 *alloc_hint)
7276{
7277 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
7278 min_size, actual_len, alloc_hint,
7279 NULL);
7280}
7281
7282int btrfs_prealloc_file_range_trans(struct inode *inode,
7283 struct btrfs_trans_handle *trans, int mode,
7284 u64 start, u64 num_bytes, u64 min_size,
7285 loff_t actual_len, u64 *alloc_hint)
7286{
7287 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
7288 min_size, actual_len, alloc_hint, trans);
7289}
7290
Chris Masone6dcd2d2008-07-17 12:53:50 -04007291static int btrfs_set_page_dirty(struct page *page)
7292{
Chris Masone6dcd2d2008-07-17 12:53:50 -04007293 return __set_page_dirty_nobuffers(page);
7294}
7295
Nick Pigginb74c79e2011-01-07 17:49:58 +11007296static int btrfs_permission(struct inode *inode, int mask, unsigned int flags)
Yanfdebe2b2008-01-14 13:26:08 -05007297{
Li Zefanb83cc962010-12-20 16:04:08 +08007298 struct btrfs_root *root = BTRFS_I(inode)->root;
7299
7300 if (btrfs_root_readonly(root) && (mask & MAY_WRITE))
7301 return -EROFS;
Christoph Hellwig6cbff002009-04-17 10:37:41 +02007302 if ((BTRFS_I(inode)->flags & BTRFS_INODE_READONLY) && (mask & MAY_WRITE))
Yanfdebe2b2008-01-14 13:26:08 -05007303 return -EACCES;
Nick Pigginb74c79e2011-01-07 17:49:58 +11007304 return generic_permission(inode, mask, flags, btrfs_check_acl);
Yanfdebe2b2008-01-14 13:26:08 -05007305}
Chris Mason39279cc2007-06-12 06:35:45 -04007306
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007307static const struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -05007308 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -04007309 .lookup = btrfs_lookup,
7310 .create = btrfs_create,
7311 .unlink = btrfs_unlink,
7312 .link = btrfs_link,
7313 .mkdir = btrfs_mkdir,
7314 .rmdir = btrfs_rmdir,
7315 .rename = btrfs_rename,
7316 .symlink = btrfs_symlink,
7317 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04007318 .mknod = btrfs_mknod,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007319 .setxattr = btrfs_setxattr,
7320 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05007321 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007322 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05007323 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04007324};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007325static const struct inode_operations btrfs_dir_ro_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007326 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05007327 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04007328};
Yan, Zheng76dda932009-09-21 16:00:26 -04007329
Alexey Dobriyan828c0952009-10-01 15:43:56 -07007330static const struct file_operations btrfs_dir_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007331 .llseek = generic_file_llseek,
7332 .read = generic_read_dir,
David Woodhousecbdf5a22008-08-06 19:42:33 +01007333 .readdir = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04007334 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04007335#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04007336 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04007337#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04007338 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -04007339 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -04007340};
7341
Chris Masond1310b22008-01-24 16:13:08 -05007342static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04007343 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05007344 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04007345 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04007346 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04007347 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04007348 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Mason1259ab72008-05-12 13:39:03 -04007349 .readpage_io_failed_hook = btrfs_io_failed_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05007350 .set_bit_hook = btrfs_set_bit_hook,
7351 .clear_bit_hook = btrfs_clear_bit_hook,
Josef Bacik9ed74f22009-09-11 16:12:44 -04007352 .merge_extent_hook = btrfs_merge_extent_hook,
7353 .split_extent_hook = btrfs_split_extent_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04007354};
7355
Chris Mason35054392009-01-21 13:11:13 -05007356/*
7357 * btrfs doesn't support the bmap operation because swapfiles
7358 * use bmap to make a mapping of extents in the file. They assume
7359 * these extents won't change over the life of the file and they
7360 * use the bmap result to do IO directly to the drive.
7361 *
7362 * the btrfs bmap call would return logical addresses that aren't
7363 * suitable for IO and they also will change frequently as COW
7364 * operations happen. So, swapfile + btrfs == corruption.
7365 *
7366 * For now we're avoiding this by dropping bmap.
7367 */
Alexey Dobriyan7f094102009-09-21 17:01:10 -07007368static const struct address_space_operations btrfs_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04007369 .readpage = btrfs_readpage,
7370 .writepage = btrfs_writepage,
Chris Masonb293f022007-11-01 19:45:34 -04007371 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05007372 .readpages = btrfs_readpages,
Chris Mason39279cc2007-06-12 06:35:45 -04007373 .sync_page = block_sync_page,
Chris Mason16432982008-04-10 10:23:21 -04007374 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04007375 .invalidatepage = btrfs_invalidatepage,
7376 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04007377 .set_page_dirty = btrfs_set_page_dirty,
Andi Kleen465fdd92009-09-16 11:50:18 +02007378 .error_remove_page = generic_error_remove_page,
Chris Mason39279cc2007-06-12 06:35:45 -04007379};
7380
Alexey Dobriyan7f094102009-09-21 17:01:10 -07007381static const struct address_space_operations btrfs_symlink_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04007382 .readpage = btrfs_readpage,
7383 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04007384 .invalidatepage = btrfs_invalidatepage,
7385 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04007386};
7387
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007388static const struct inode_operations btrfs_file_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007389 .getattr = btrfs_getattr,
7390 .setattr = btrfs_setattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007391 .setxattr = btrfs_setxattr,
7392 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05007393 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007394 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05007395 .permission = btrfs_permission,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05007396 .fiemap = btrfs_fiemap,
Chris Mason39279cc2007-06-12 06:35:45 -04007397};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007398static const struct inode_operations btrfs_special_inode_operations = {
Josef Bacik618e21d2007-07-11 10:18:17 -04007399 .getattr = btrfs_getattr,
7400 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05007401 .permission = btrfs_permission,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007402 .setxattr = btrfs_setxattr,
7403 .getxattr = btrfs_getxattr,
Josef Bacik33268ea2008-07-24 12:16:36 -04007404 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007405 .removexattr = btrfs_removexattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04007406};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007407static const struct inode_operations btrfs_symlink_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007408 .readlink = generic_readlink,
7409 .follow_link = page_follow_link_light,
7410 .put_link = page_put_link,
Li Zefanf2095612010-11-19 02:05:24 +00007411 .getattr = btrfs_getattr,
Yanfdebe2b2008-01-14 13:26:08 -05007412 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -05007413 .setxattr = btrfs_setxattr,
7414 .getxattr = btrfs_getxattr,
7415 .listxattr = btrfs_listxattr,
7416 .removexattr = btrfs_removexattr,
Chris Mason39279cc2007-06-12 06:35:45 -04007417};
Yan, Zheng76dda932009-09-21 16:00:26 -04007418
Alexey Dobriyan82d339d2009-10-09 09:54:36 -04007419const struct dentry_operations btrfs_dentry_operations = {
Yan, Zheng76dda932009-09-21 16:00:26 -04007420 .d_delete = btrfs_dentry_delete,
7421};