blob: 2d2e079713d73672f922b8ce38fa871e58578ba9 [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 Bacik7b128762008-07-24 12:17:14 -040087static void btrfs_truncate(struct inode *inode);
Chris Masonc8b97812008-10-29 14:49:59 -040088static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end);
Chris Mason771ed682008-11-06 22:02:51 -050089static noinline int cow_file_range(struct inode *inode,
90 struct page *locked_page,
91 u64 start, u64 end, int *page_started,
92 unsigned long *nr_written, int unlock);
Josef Bacik7b128762008-07-24 12:17:14 -040093
Yan, Zhengf34f57a2009-11-12 09:35:27 +000094static int btrfs_init_inode_security(struct btrfs_trans_handle *trans,
95 struct inode *inode, struct inode *dir)
Jim Owens0279b4c2009-02-04 09:29:13 -050096{
97 int err;
98
Yan, Zhengf34f57a2009-11-12 09:35:27 +000099 err = btrfs_init_acl(trans, inode, dir);
Jim Owens0279b4c2009-02-04 09:29:13 -0500100 if (!err)
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000101 err = btrfs_xattr_security_init(trans, inode, dir);
Jim Owens0279b4c2009-02-04 09:29:13 -0500102 return err;
103}
104
Chris Masond352ac62008-09-29 15:18:18 -0400105/*
Chris Masonc8b97812008-10-29 14:49:59 -0400106 * this does all the hard work for inserting an inline extent into
107 * the btree. The caller should have done a btrfs_drop_extents so that
108 * no overlapping inline items exist in the btree
109 */
Chris Masond3977122009-01-05 21:25:51 -0500110static noinline int insert_inline_extent(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400111 struct btrfs_root *root, struct inode *inode,
112 u64 start, size_t size, size_t compressed_size,
113 struct page **compressed_pages)
114{
115 struct btrfs_key key;
116 struct btrfs_path *path;
117 struct extent_buffer *leaf;
118 struct page *page = NULL;
119 char *kaddr;
120 unsigned long ptr;
121 struct btrfs_file_extent_item *ei;
122 int err = 0;
123 int ret;
124 size_t cur_size = size;
125 size_t datasize;
126 unsigned long offset;
Li Zefan261507a02010-12-17 14:21:50 +0800127 int compress_type = BTRFS_COMPRESS_NONE;
Chris Masonc8b97812008-10-29 14:49:59 -0400128
129 if (compressed_size && compressed_pages) {
Li Zefan261507a02010-12-17 14:21:50 +0800130 compress_type = root->fs_info->compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -0400131 cur_size = compressed_size;
132 }
133
Chris Masond3977122009-01-05 21:25:51 -0500134 path = btrfs_alloc_path();
135 if (!path)
Chris Masonc8b97812008-10-29 14:49:59 -0400136 return -ENOMEM;
137
Chris Masonb9473432009-03-13 11:00:37 -0400138 path->leave_spinning = 1;
Chris Masonc8b97812008-10-29 14:49:59 -0400139 btrfs_set_trans_block_group(trans, inode);
140
141 key.objectid = inode->i_ino;
142 key.offset = start;
143 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
Chris Masonc8b97812008-10-29 14:49:59 -0400144 datasize = btrfs_file_extent_calc_inline_size(cur_size);
145
146 inode_add_bytes(inode, size);
147 ret = btrfs_insert_empty_item(trans, root, path, &key,
148 datasize);
149 BUG_ON(ret);
150 if (ret) {
151 err = ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400152 goto fail;
153 }
154 leaf = path->nodes[0];
155 ei = btrfs_item_ptr(leaf, path->slots[0],
156 struct btrfs_file_extent_item);
157 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
158 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
159 btrfs_set_file_extent_encryption(leaf, ei, 0);
160 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
161 btrfs_set_file_extent_ram_bytes(leaf, ei, size);
162 ptr = btrfs_file_extent_inline_start(ei);
163
Li Zefan261507a02010-12-17 14:21:50 +0800164 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -0400165 struct page *cpage;
166 int i = 0;
Chris Masond3977122009-01-05 21:25:51 -0500167 while (compressed_size > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -0400168 cpage = compressed_pages[i];
Chris Mason5b050f02008-11-11 09:34:41 -0500169 cur_size = min_t(unsigned long, compressed_size,
Chris Masonc8b97812008-10-29 14:49:59 -0400170 PAGE_CACHE_SIZE);
171
Chris Masonb9473432009-03-13 11:00:37 -0400172 kaddr = kmap_atomic(cpage, KM_USER0);
Chris Masonc8b97812008-10-29 14:49:59 -0400173 write_extent_buffer(leaf, kaddr, ptr, cur_size);
Chris Masonb9473432009-03-13 11:00:37 -0400174 kunmap_atomic(kaddr, KM_USER0);
Chris Masonc8b97812008-10-29 14:49:59 -0400175
176 i++;
177 ptr += cur_size;
178 compressed_size -= cur_size;
179 }
180 btrfs_set_file_extent_compression(leaf, ei,
Li Zefan261507a02010-12-17 14:21:50 +0800181 compress_type);
Chris Masonc8b97812008-10-29 14:49:59 -0400182 } else {
183 page = find_get_page(inode->i_mapping,
184 start >> PAGE_CACHE_SHIFT);
185 btrfs_set_file_extent_compression(leaf, ei, 0);
186 kaddr = kmap_atomic(page, KM_USER0);
187 offset = start & (PAGE_CACHE_SIZE - 1);
188 write_extent_buffer(leaf, kaddr + offset, ptr, size);
189 kunmap_atomic(kaddr, KM_USER0);
190 page_cache_release(page);
191 }
192 btrfs_mark_buffer_dirty(leaf);
193 btrfs_free_path(path);
194
Yan, Zhengc2167752009-11-12 09:34:21 +0000195 /*
196 * we're an inline extent, so nobody can
197 * extend the file past i_size without locking
198 * a page we already have locked.
199 *
200 * We must do any isize and inode updates
201 * before we unlock the pages. Otherwise we
202 * could end up racing with unlink.
203 */
Chris Masonc8b97812008-10-29 14:49:59 -0400204 BTRFS_I(inode)->disk_i_size = inode->i_size;
205 btrfs_update_inode(trans, root, inode);
Yan, Zhengc2167752009-11-12 09:34:21 +0000206
Chris Masonc8b97812008-10-29 14:49:59 -0400207 return 0;
208fail:
209 btrfs_free_path(path);
210 return err;
211}
212
213
214/*
215 * conditionally insert an inline extent into the file. This
216 * does the checks required to make sure the data is small enough
217 * to fit as an inline extent.
218 */
Chris Mason7f366cf2009-03-12 20:12:45 -0400219static noinline int cow_file_range_inline(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400220 struct btrfs_root *root,
221 struct inode *inode, u64 start, u64 end,
222 size_t compressed_size,
223 struct page **compressed_pages)
224{
225 u64 isize = i_size_read(inode);
226 u64 actual_end = min(end + 1, isize);
227 u64 inline_len = actual_end - start;
228 u64 aligned_end = (end + root->sectorsize - 1) &
229 ~((u64)root->sectorsize - 1);
230 u64 hint_byte;
231 u64 data_len = inline_len;
232 int ret;
233
234 if (compressed_size)
235 data_len = compressed_size;
236
237 if (start > 0 ||
Chris Mason70b99e62008-10-31 12:46:39 -0400238 actual_end >= PAGE_CACHE_SIZE ||
Chris Masonc8b97812008-10-29 14:49:59 -0400239 data_len >= BTRFS_MAX_INLINE_DATA_SIZE(root) ||
240 (!compressed_size &&
241 (actual_end & (root->sectorsize - 1)) == 0) ||
242 end + 1 < isize ||
243 data_len > root->fs_info->max_inline) {
244 return 1;
245 }
246
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000247 ret = btrfs_drop_extents(trans, inode, start, aligned_end,
Chris Masona1ed8352009-09-11 12:27:37 -0400248 &hint_byte, 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400249 BUG_ON(ret);
250
251 if (isize > actual_end)
252 inline_len = min_t(u64, isize, actual_end);
253 ret = insert_inline_extent(trans, root, inode, start,
254 inline_len, compressed_size,
255 compressed_pages);
256 BUG_ON(ret);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400257 btrfs_delalloc_release_metadata(inode, end + 1 - start);
Chris Masona1ed8352009-09-11 12:27:37 -0400258 btrfs_drop_extent_cache(inode, start, aligned_end - 1, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400259 return 0;
260}
261
Chris Mason771ed682008-11-06 22:02:51 -0500262struct async_extent {
263 u64 start;
264 u64 ram_size;
265 u64 compressed_size;
266 struct page **pages;
267 unsigned long nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800268 int compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500269 struct list_head list;
270};
271
272struct async_cow {
273 struct inode *inode;
274 struct btrfs_root *root;
275 struct page *locked_page;
276 u64 start;
277 u64 end;
278 struct list_head extents;
279 struct btrfs_work work;
280};
281
282static noinline int add_async_extent(struct async_cow *cow,
283 u64 start, u64 ram_size,
284 u64 compressed_size,
285 struct page **pages,
Li Zefan261507a02010-12-17 14:21:50 +0800286 unsigned long nr_pages,
287 int compress_type)
Chris Mason771ed682008-11-06 22:02:51 -0500288{
289 struct async_extent *async_extent;
290
291 async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS);
292 async_extent->start = start;
293 async_extent->ram_size = ram_size;
294 async_extent->compressed_size = compressed_size;
295 async_extent->pages = pages;
296 async_extent->nr_pages = nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800297 async_extent->compress_type = compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500298 list_add_tail(&async_extent->list, &cow->extents);
299 return 0;
300}
301
Chris Masonc8b97812008-10-29 14:49:59 -0400302/*
Chris Mason771ed682008-11-06 22:02:51 -0500303 * we create compressed extents in two phases. The first
304 * phase compresses a range of pages that have already been
305 * locked (both pages and state bits are locked).
Chris Masonc8b97812008-10-29 14:49:59 -0400306 *
Chris Mason771ed682008-11-06 22:02:51 -0500307 * This is done inside an ordered work queue, and the compression
308 * is spread across many cpus. The actual IO submission is step
309 * two, and the ordered work queue takes care of making sure that
310 * happens in the same order things were put onto the queue by
311 * writepages and friends.
Chris Masonc8b97812008-10-29 14:49:59 -0400312 *
Chris Mason771ed682008-11-06 22:02:51 -0500313 * If this code finds it can't get good compression, it puts an
314 * entry onto the work queue to write the uncompressed bytes. This
315 * makes sure that both compressed inodes and uncompressed inodes
316 * are written in the same order that pdflush sent them down.
Chris Masond352ac62008-09-29 15:18:18 -0400317 */
Chris Mason771ed682008-11-06 22:02:51 -0500318static noinline int compress_file_range(struct inode *inode,
319 struct page *locked_page,
320 u64 start, u64 end,
321 struct async_cow *async_cow,
322 int *num_added)
Chris Masonb888db22007-08-27 16:49:44 -0400323{
324 struct btrfs_root *root = BTRFS_I(inode)->root;
325 struct btrfs_trans_handle *trans;
Chris Masondb945352007-10-15 16:15:53 -0400326 u64 num_bytes;
Chris Masondb945352007-10-15 16:15:53 -0400327 u64 blocksize = root->sectorsize;
Chris Masonc8b97812008-10-29 14:49:59 -0400328 u64 actual_end;
Chris Mason42dc7ba2008-12-15 11:44:56 -0500329 u64 isize = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400330 int ret = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400331 struct page **pages = NULL;
332 unsigned long nr_pages;
333 unsigned long nr_pages_ret = 0;
334 unsigned long total_compressed = 0;
335 unsigned long total_in = 0;
336 unsigned long max_compressed = 128 * 1024;
Chris Mason771ed682008-11-06 22:02:51 -0500337 unsigned long max_uncompressed = 128 * 1024;
Chris Masonc8b97812008-10-29 14:49:59 -0400338 int i;
339 int will_compress;
Li Zefan261507a02010-12-17 14:21:50 +0800340 int compress_type = root->fs_info->compress_type;
Chris Masonb888db22007-08-27 16:49:44 -0400341
Chris Mason42dc7ba2008-12-15 11:44:56 -0500342 actual_end = min_t(u64, isize, end + 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400343again:
344 will_compress = 0;
345 nr_pages = (end >> PAGE_CACHE_SHIFT) - (start >> PAGE_CACHE_SHIFT) + 1;
346 nr_pages = min(nr_pages, (128 * 1024UL) / PAGE_CACHE_SIZE);
347
Chris Masonf03d9302009-02-04 09:31:06 -0500348 /*
349 * we don't want to send crud past the end of i_size through
350 * compression, that's just a waste of CPU time. So, if the
351 * end of the file is before the start of our current
352 * requested range of bytes, we bail out to the uncompressed
353 * cleanup code that can deal with all of this.
354 *
355 * It isn't really the fastest way to fix things, but this is a
356 * very uncommon corner.
357 */
358 if (actual_end <= start)
359 goto cleanup_and_bail_uncompressed;
360
Chris Masonc8b97812008-10-29 14:49:59 -0400361 total_compressed = actual_end - start;
362
363 /* we want to make sure that amount of ram required to uncompress
364 * an extent is reasonable, so we limit the total size in ram
Chris Mason771ed682008-11-06 22:02:51 -0500365 * of a compressed extent to 128k. This is a crucial number
366 * because it also controls how easily we can spread reads across
367 * cpus for decompression.
368 *
369 * We also want to make sure the amount of IO required to do
370 * a random read is reasonably small, so we limit the size of
371 * a compressed extent to 128k.
Chris Masonc8b97812008-10-29 14:49:59 -0400372 */
373 total_compressed = min(total_compressed, max_uncompressed);
Chris Masondb945352007-10-15 16:15:53 -0400374 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
Chris Masonbe20aa92007-12-17 20:14:01 -0500375 num_bytes = max(blocksize, num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -0400376 total_in = 0;
377 ret = 0;
Chris Masondb945352007-10-15 16:15:53 -0400378
Chris Mason771ed682008-11-06 22:02:51 -0500379 /*
380 * we do compression for mount -o compress and when the
381 * inode has not been flagged as nocompress. This flag can
382 * change at any time if we discover bad compression ratios.
Chris Masonc8b97812008-10-29 14:49:59 -0400383 */
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200384 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS) &&
Chris Mason1e701a32010-03-11 09:42:04 -0500385 (btrfs_test_opt(root, COMPRESS) ||
386 (BTRFS_I(inode)->force_compress))) {
Chris Masonc8b97812008-10-29 14:49:59 -0400387 WARN_ON(pages);
Chris Masoncfbc2462008-10-30 13:22:14 -0400388 pages = kzalloc(sizeof(struct page *) * nr_pages, GFP_NOFS);
Chris Mason179e29e2007-11-01 11:28:41 -0400389
Li Zefan261507a02010-12-17 14:21:50 +0800390 if (BTRFS_I(inode)->force_compress)
391 compress_type = BTRFS_I(inode)->force_compress;
392
393 ret = btrfs_compress_pages(compress_type,
394 inode->i_mapping, start,
395 total_compressed, pages,
396 nr_pages, &nr_pages_ret,
397 &total_in,
398 &total_compressed,
399 max_compressed);
Chris Masonc8b97812008-10-29 14:49:59 -0400400
401 if (!ret) {
402 unsigned long offset = total_compressed &
403 (PAGE_CACHE_SIZE - 1);
404 struct page *page = pages[nr_pages_ret - 1];
405 char *kaddr;
406
407 /* zero the tail end of the last page, we might be
408 * sending it down to disk
409 */
410 if (offset) {
411 kaddr = kmap_atomic(page, KM_USER0);
412 memset(kaddr + offset, 0,
413 PAGE_CACHE_SIZE - offset);
414 kunmap_atomic(kaddr, KM_USER0);
415 }
416 will_compress = 1;
417 }
418 }
419 if (start == 0) {
Chris Mason771ed682008-11-06 22:02:51 -0500420 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +0000421 BUG_ON(IS_ERR(trans));
Chris Mason771ed682008-11-06 22:02:51 -0500422 btrfs_set_trans_block_group(trans, inode);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400423 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason771ed682008-11-06 22:02:51 -0500424
Chris Masonc8b97812008-10-29 14:49:59 -0400425 /* lets try to make an inline extent */
Chris Mason771ed682008-11-06 22:02:51 -0500426 if (ret || total_in < (actual_end - start)) {
Chris Masonc8b97812008-10-29 14:49:59 -0400427 /* we didn't compress the entire range, try
Chris Mason771ed682008-11-06 22:02:51 -0500428 * to make an uncompressed inline extent.
Chris Masonc8b97812008-10-29 14:49:59 -0400429 */
430 ret = cow_file_range_inline(trans, root, inode,
431 start, end, 0, NULL);
432 } else {
Chris Mason771ed682008-11-06 22:02:51 -0500433 /* try making a compressed inline extent */
Chris Masonc8b97812008-10-29 14:49:59 -0400434 ret = cow_file_range_inline(trans, root, inode,
435 start, end,
436 total_compressed, pages);
437 }
438 if (ret == 0) {
Chris Mason771ed682008-11-06 22:02:51 -0500439 /*
440 * inline extent creation worked, we don't need
441 * to create any more async work items. Unlock
442 * and free up our temp pages.
443 */
Chris Masonc8b97812008-10-29 14:49:59 -0400444 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400445 &BTRFS_I(inode)->io_tree,
446 start, end, NULL,
447 EXTENT_CLEAR_UNLOCK_PAGE | EXTENT_CLEAR_DIRTY |
Chris Masona3429ab2009-10-08 12:30:20 -0400448 EXTENT_CLEAR_DELALLOC |
Chris Masona791e352009-10-08 11:27:10 -0400449 EXTENT_SET_WRITEBACK | EXTENT_END_WRITEBACK);
Yan, Zhengc2167752009-11-12 09:34:21 +0000450
451 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400452 goto free_pages_out;
453 }
Yan, Zhengc2167752009-11-12 09:34:21 +0000454 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400455 }
456
457 if (will_compress) {
458 /*
459 * we aren't doing an inline extent round the compressed size
460 * up to a block size boundary so the allocator does sane
461 * things
462 */
463 total_compressed = (total_compressed + blocksize - 1) &
464 ~(blocksize - 1);
465
466 /*
467 * one last check to make sure the compression is really a
468 * win, compare the page count read with the blocks on disk
469 */
470 total_in = (total_in + PAGE_CACHE_SIZE - 1) &
471 ~(PAGE_CACHE_SIZE - 1);
472 if (total_compressed >= total_in) {
473 will_compress = 0;
474 } else {
Chris Masonc8b97812008-10-29 14:49:59 -0400475 num_bytes = total_in;
476 }
477 }
478 if (!will_compress && pages) {
479 /*
480 * the compression code ran but failed to make things smaller,
481 * free any pages it allocated and our page pointer array
482 */
483 for (i = 0; i < nr_pages_ret; i++) {
Chris Mason70b99e62008-10-31 12:46:39 -0400484 WARN_ON(pages[i]->mapping);
Chris Masonc8b97812008-10-29 14:49:59 -0400485 page_cache_release(pages[i]);
486 }
487 kfree(pages);
488 pages = NULL;
489 total_compressed = 0;
490 nr_pages_ret = 0;
491
492 /* flag the file so we don't compress in the future */
Chris Mason1e701a32010-03-11 09:42:04 -0500493 if (!btrfs_test_opt(root, FORCE_COMPRESS) &&
494 !(BTRFS_I(inode)->force_compress)) {
Chris Masona555f812010-01-28 16:18:15 -0500495 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
Chris Mason1e701a32010-03-11 09:42:04 -0500496 }
Chris Masonc8b97812008-10-29 14:49:59 -0400497 }
Chris Mason771ed682008-11-06 22:02:51 -0500498 if (will_compress) {
499 *num_added += 1;
500
501 /* the async work queues will take care of doing actual
502 * allocation on disk for these compressed pages,
503 * and will submit them to the elevator.
504 */
505 add_async_extent(async_cow, start, num_bytes,
Li Zefan261507a02010-12-17 14:21:50 +0800506 total_compressed, pages, nr_pages_ret,
507 compress_type);
Chris Mason771ed682008-11-06 22:02:51 -0500508
Yan, Zheng24ae6362010-12-06 07:02:36 +0000509 if (start + num_bytes < end) {
Chris Mason771ed682008-11-06 22:02:51 -0500510 start += num_bytes;
511 pages = NULL;
512 cond_resched();
513 goto again;
514 }
515 } else {
Chris Masonf03d9302009-02-04 09:31:06 -0500516cleanup_and_bail_uncompressed:
Chris Mason771ed682008-11-06 22:02:51 -0500517 /*
518 * No compression, but we still need to write the pages in
519 * the file we've been given so far. redirty the locked
520 * page if it corresponds to our extent and set things up
521 * for the async work queue to run cow_file_range to do
522 * the normal delalloc dance
523 */
524 if (page_offset(locked_page) >= start &&
525 page_offset(locked_page) <= end) {
526 __set_page_dirty_nobuffers(locked_page);
527 /* unlocked later on in the async handlers */
528 }
Li Zefan261507a02010-12-17 14:21:50 +0800529 add_async_extent(async_cow, start, end - start + 1,
530 0, NULL, 0, BTRFS_COMPRESS_NONE);
Chris Mason771ed682008-11-06 22:02:51 -0500531 *num_added += 1;
532 }
533
534out:
535 return 0;
536
537free_pages_out:
538 for (i = 0; i < nr_pages_ret; i++) {
539 WARN_ON(pages[i]->mapping);
540 page_cache_release(pages[i]);
541 }
Chris Masond3977122009-01-05 21:25:51 -0500542 kfree(pages);
Chris Mason771ed682008-11-06 22:02:51 -0500543
544 goto out;
545}
546
547/*
548 * phase two of compressed writeback. This is the ordered portion
549 * of the code, which only gets called in the order the work was
550 * queued. We walk all the async extents created by compress_file_range
551 * and send them down to the disk.
552 */
553static noinline int submit_compressed_extents(struct inode *inode,
554 struct async_cow *async_cow)
555{
556 struct async_extent *async_extent;
557 u64 alloc_hint = 0;
558 struct btrfs_trans_handle *trans;
559 struct btrfs_key ins;
560 struct extent_map *em;
561 struct btrfs_root *root = BTRFS_I(inode)->root;
562 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
563 struct extent_io_tree *io_tree;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500564 int ret = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500565
566 if (list_empty(&async_cow->extents))
567 return 0;
568
Chris Mason771ed682008-11-06 22:02:51 -0500569
Chris Masond3977122009-01-05 21:25:51 -0500570 while (!list_empty(&async_cow->extents)) {
Chris Mason771ed682008-11-06 22:02:51 -0500571 async_extent = list_entry(async_cow->extents.next,
572 struct async_extent, list);
573 list_del(&async_extent->list);
574
575 io_tree = &BTRFS_I(inode)->io_tree;
576
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500577retry:
Chris Mason771ed682008-11-06 22:02:51 -0500578 /* did the compression code fall back to uncompressed IO? */
579 if (!async_extent->pages) {
580 int page_started = 0;
581 unsigned long nr_written = 0;
582
583 lock_extent(io_tree, async_extent->start,
Josef Bacik2ac55d42010-02-03 19:33:23 +0000584 async_extent->start +
585 async_extent->ram_size - 1, GFP_NOFS);
Chris Mason771ed682008-11-06 22:02:51 -0500586
587 /* allocate blocks */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500588 ret = cow_file_range(inode, async_cow->locked_page,
589 async_extent->start,
590 async_extent->start +
591 async_extent->ram_size - 1,
592 &page_started, &nr_written, 0);
Chris Mason771ed682008-11-06 22:02:51 -0500593
594 /*
595 * if page_started, cow_file_range inserted an
596 * inline extent and took care of all the unlocking
597 * and IO for us. Otherwise, we need to submit
598 * all those pages down to the drive.
599 */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500600 if (!page_started && !ret)
Chris Mason771ed682008-11-06 22:02:51 -0500601 extent_write_locked_range(io_tree,
602 inode, async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500603 async_extent->start +
Chris Mason771ed682008-11-06 22:02:51 -0500604 async_extent->ram_size - 1,
605 btrfs_get_extent,
606 WB_SYNC_ALL);
607 kfree(async_extent);
608 cond_resched();
609 continue;
610 }
611
612 lock_extent(io_tree, async_extent->start,
613 async_extent->start + async_extent->ram_size - 1,
614 GFP_NOFS);
Chris Mason771ed682008-11-06 22:02:51 -0500615
Yan, Zhengc2167752009-11-12 09:34:21 +0000616 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +0000617 BUG_ON(IS_ERR(trans));
Chris Mason771ed682008-11-06 22:02:51 -0500618 ret = btrfs_reserve_extent(trans, root,
619 async_extent->compressed_size,
620 async_extent->compressed_size,
621 0, alloc_hint,
622 (u64)-1, &ins, 1);
Yan, Zhengc2167752009-11-12 09:34:21 +0000623 btrfs_end_transaction(trans, root);
624
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500625 if (ret) {
626 int i;
627 for (i = 0; i < async_extent->nr_pages; i++) {
628 WARN_ON(async_extent->pages[i]->mapping);
629 page_cache_release(async_extent->pages[i]);
630 }
631 kfree(async_extent->pages);
632 async_extent->nr_pages = 0;
633 async_extent->pages = NULL;
634 unlock_extent(io_tree, async_extent->start,
635 async_extent->start +
636 async_extent->ram_size - 1, GFP_NOFS);
637 goto retry;
638 }
639
Yan, Zhengc2167752009-11-12 09:34:21 +0000640 /*
641 * here we're doing allocation and writeback of the
642 * compressed pages
643 */
644 btrfs_drop_extent_cache(inode, async_extent->start,
645 async_extent->start +
646 async_extent->ram_size - 1, 0);
647
Chris Mason771ed682008-11-06 22:02:51 -0500648 em = alloc_extent_map(GFP_NOFS);
Tsutomu Itohc26a9202011-02-14 00:45:29 +0000649 BUG_ON(!em);
Chris Mason771ed682008-11-06 22:02:51 -0500650 em->start = async_extent->start;
651 em->len = async_extent->ram_size;
Chris Mason445a6942008-11-10 11:53:33 -0500652 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500653
654 em->block_start = ins.objectid;
655 em->block_len = ins.offset;
656 em->bdev = root->fs_info->fs_devices->latest_bdev;
Li Zefan261507a02010-12-17 14:21:50 +0800657 em->compress_type = async_extent->compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500658 set_bit(EXTENT_FLAG_PINNED, &em->flags);
659 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
660
Chris Masond3977122009-01-05 21:25:51 -0500661 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400662 write_lock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500663 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400664 write_unlock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500665 if (ret != -EEXIST) {
666 free_extent_map(em);
667 break;
668 }
669 btrfs_drop_extent_cache(inode, async_extent->start,
670 async_extent->start +
671 async_extent->ram_size - 1, 0);
672 }
673
Li Zefan261507a02010-12-17 14:21:50 +0800674 ret = btrfs_add_ordered_extent_compress(inode,
675 async_extent->start,
676 ins.objectid,
677 async_extent->ram_size,
678 ins.offset,
679 BTRFS_ORDERED_COMPRESSED,
680 async_extent->compress_type);
Chris Mason771ed682008-11-06 22:02:51 -0500681 BUG_ON(ret);
682
Chris Mason771ed682008-11-06 22:02:51 -0500683 /*
684 * clear dirty, set writeback and unlock the pages.
685 */
686 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400687 &BTRFS_I(inode)->io_tree,
688 async_extent->start,
689 async_extent->start +
690 async_extent->ram_size - 1,
691 NULL, EXTENT_CLEAR_UNLOCK_PAGE |
692 EXTENT_CLEAR_UNLOCK |
Chris Masona3429ab2009-10-08 12:30:20 -0400693 EXTENT_CLEAR_DELALLOC |
Chris Masona791e352009-10-08 11:27:10 -0400694 EXTENT_CLEAR_DIRTY | EXTENT_SET_WRITEBACK);
Chris Mason771ed682008-11-06 22:02:51 -0500695
696 ret = btrfs_submit_compressed_write(inode,
Chris Masond3977122009-01-05 21:25:51 -0500697 async_extent->start,
698 async_extent->ram_size,
699 ins.objectid,
700 ins.offset, async_extent->pages,
701 async_extent->nr_pages);
Chris Mason771ed682008-11-06 22:02:51 -0500702
703 BUG_ON(ret);
Chris Mason771ed682008-11-06 22:02:51 -0500704 alloc_hint = ins.objectid + ins.offset;
705 kfree(async_extent);
706 cond_resched();
707 }
708
Chris Mason771ed682008-11-06 22:02:51 -0500709 return 0;
710}
711
Josef Bacik4b46fce2010-05-23 11:00:55 -0400712static u64 get_extent_allocation_hint(struct inode *inode, u64 start,
713 u64 num_bytes)
714{
715 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
716 struct extent_map *em;
717 u64 alloc_hint = 0;
718
719 read_lock(&em_tree->lock);
720 em = search_extent_mapping(em_tree, start, num_bytes);
721 if (em) {
722 /*
723 * if block start isn't an actual block number then find the
724 * first block in this inode and use that as a hint. If that
725 * block is also bogus then just don't worry about it.
726 */
727 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
728 free_extent_map(em);
729 em = search_extent_mapping(em_tree, 0, 0);
730 if (em && em->block_start < EXTENT_MAP_LAST_BYTE)
731 alloc_hint = em->block_start;
732 if (em)
733 free_extent_map(em);
734 } else {
735 alloc_hint = em->block_start;
736 free_extent_map(em);
737 }
738 }
739 read_unlock(&em_tree->lock);
740
741 return alloc_hint;
742}
743
Chris Mason771ed682008-11-06 22:02:51 -0500744/*
745 * when extent_io.c finds a delayed allocation range in the file,
746 * the call backs end up in this code. The basic idea is to
747 * allocate extents on disk for the range, and create ordered data structs
748 * in ram to track those extents.
749 *
750 * locked_page is the page that writepage had locked already. We use
751 * it to make sure we don't do extra locks or unlocks.
752 *
753 * *page_started is set to one if we unlock locked_page and do everything
754 * required to start IO on it. It may be clean and already done with
755 * IO when we return.
756 */
757static noinline int cow_file_range(struct inode *inode,
758 struct page *locked_page,
759 u64 start, u64 end, int *page_started,
760 unsigned long *nr_written,
761 int unlock)
762{
763 struct btrfs_root *root = BTRFS_I(inode)->root;
764 struct btrfs_trans_handle *trans;
765 u64 alloc_hint = 0;
766 u64 num_bytes;
767 unsigned long ram_size;
768 u64 disk_num_bytes;
769 u64 cur_alloc_size;
770 u64 blocksize = root->sectorsize;
Chris Mason771ed682008-11-06 22:02:51 -0500771 struct btrfs_key ins;
772 struct extent_map *em;
773 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
774 int ret = 0;
775
Josef Bacik0cb59c92010-07-02 12:14:14 -0400776 BUG_ON(root == root->fs_info->tree_root);
Chris Mason771ed682008-11-06 22:02:51 -0500777 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +0000778 BUG_ON(IS_ERR(trans));
Chris Mason771ed682008-11-06 22:02:51 -0500779 btrfs_set_trans_block_group(trans, inode);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400780 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason771ed682008-11-06 22:02:51 -0500781
Chris Mason771ed682008-11-06 22:02:51 -0500782 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
783 num_bytes = max(blocksize, num_bytes);
784 disk_num_bytes = num_bytes;
785 ret = 0;
786
787 if (start == 0) {
788 /* lets try to make an inline extent */
789 ret = cow_file_range_inline(trans, root, inode,
790 start, end, 0, NULL);
791 if (ret == 0) {
792 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400793 &BTRFS_I(inode)->io_tree,
794 start, end, NULL,
795 EXTENT_CLEAR_UNLOCK_PAGE |
796 EXTENT_CLEAR_UNLOCK |
797 EXTENT_CLEAR_DELALLOC |
798 EXTENT_CLEAR_DIRTY |
799 EXTENT_SET_WRITEBACK |
800 EXTENT_END_WRITEBACK);
Yan, Zhengc2167752009-11-12 09:34:21 +0000801
Chris Mason771ed682008-11-06 22:02:51 -0500802 *nr_written = *nr_written +
803 (end - start + PAGE_CACHE_SIZE) / PAGE_CACHE_SIZE;
804 *page_started = 1;
805 ret = 0;
806 goto out;
807 }
808 }
Chris Masonc8b97812008-10-29 14:49:59 -0400809
810 BUG_ON(disk_num_bytes >
811 btrfs_super_total_bytes(&root->fs_info->super_copy));
812
Josef Bacik4b46fce2010-05-23 11:00:55 -0400813 alloc_hint = get_extent_allocation_hint(inode, start, num_bytes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400814 btrfs_drop_extent_cache(inode, start, start + num_bytes - 1, 0);
Chris Mason3b951512008-04-17 11:29:12 -0400815
Chris Masond3977122009-01-05 21:25:51 -0500816 while (disk_num_bytes > 0) {
Chris Masona791e352009-10-08 11:27:10 -0400817 unsigned long op;
818
Josef Bacik287a0ab2010-03-19 18:07:23 +0000819 cur_alloc_size = disk_num_bytes;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400820 ret = btrfs_reserve_extent(trans, root, cur_alloc_size,
Chris Mason771ed682008-11-06 22:02:51 -0500821 root->sectorsize, 0, alloc_hint,
Chris Masone6dcd2d2008-07-17 12:53:50 -0400822 (u64)-1, &ins, 1);
Chris Masond3977122009-01-05 21:25:51 -0500823 BUG_ON(ret);
824
Chris Masone6dcd2d2008-07-17 12:53:50 -0400825 em = alloc_extent_map(GFP_NOFS);
Tsutomu Itohc26a9202011-02-14 00:45:29 +0000826 BUG_ON(!em);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400827 em->start = start;
Chris Mason445a6942008-11-10 11:53:33 -0500828 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500829 ram_size = ins.offset;
830 em->len = ins.offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400831
Chris Masone6dcd2d2008-07-17 12:53:50 -0400832 em->block_start = ins.objectid;
Chris Masonc8b97812008-10-29 14:49:59 -0400833 em->block_len = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400834 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -0400835 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -0400836
Chris Masond3977122009-01-05 21:25:51 -0500837 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400838 write_lock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400839 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400840 write_unlock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400841 if (ret != -EEXIST) {
842 free_extent_map(em);
843 break;
844 }
845 btrfs_drop_extent_cache(inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -0400846 start + ram_size - 1, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400847 }
848
Chris Mason98d20f62008-04-14 09:46:10 -0400849 cur_alloc_size = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400850 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
Chris Mason771ed682008-11-06 22:02:51 -0500851 ram_size, cur_alloc_size, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400852 BUG_ON(ret);
Chris Masonc8b97812008-10-29 14:49:59 -0400853
Yan Zheng17d217f2008-12-12 10:03:38 -0500854 if (root->root_key.objectid ==
855 BTRFS_DATA_RELOC_TREE_OBJECTID) {
856 ret = btrfs_reloc_clone_csums(inode, start,
857 cur_alloc_size);
858 BUG_ON(ret);
859 }
860
Chris Masond3977122009-01-05 21:25:51 -0500861 if (disk_num_bytes < cur_alloc_size)
Chris Mason3b951512008-04-17 11:29:12 -0400862 break;
Chris Masond3977122009-01-05 21:25:51 -0500863
Chris Masonc8b97812008-10-29 14:49:59 -0400864 /* we're not doing compressed IO, don't unlock the first
865 * page (which the caller expects to stay locked), don't
866 * clear any dirty bits and don't set any writeback bits
Chris Mason8b62b722009-09-02 16:53:46 -0400867 *
868 * Do set the Private2 bit so we know this page was properly
869 * setup for writepage
Chris Masonc8b97812008-10-29 14:49:59 -0400870 */
Chris Masona791e352009-10-08 11:27:10 -0400871 op = unlock ? EXTENT_CLEAR_UNLOCK_PAGE : 0;
872 op |= EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
873 EXTENT_SET_PRIVATE2;
874
Chris Masonc8b97812008-10-29 14:49:59 -0400875 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
876 start, start + ram_size - 1,
Chris Masona791e352009-10-08 11:27:10 -0400877 locked_page, op);
Chris Masonc8b97812008-10-29 14:49:59 -0400878 disk_num_bytes -= cur_alloc_size;
Chris Masonc59f8952007-12-17 20:14:04 -0500879 num_bytes -= cur_alloc_size;
880 alloc_hint = ins.objectid + ins.offset;
881 start += cur_alloc_size;
Chris Masonb888db22007-08-27 16:49:44 -0400882 }
Chris Masonb888db22007-08-27 16:49:44 -0400883out:
Chris Mason771ed682008-11-06 22:02:51 -0500884 ret = 0;
Chris Masonb888db22007-08-27 16:49:44 -0400885 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400886
Chris Masonbe20aa92007-12-17 20:14:01 -0500887 return ret;
Chris Mason771ed682008-11-06 22:02:51 -0500888}
Chris Masonc8b97812008-10-29 14:49:59 -0400889
Chris Mason771ed682008-11-06 22:02:51 -0500890/*
891 * work queue call back to started compression on a file and pages
892 */
893static noinline void async_cow_start(struct btrfs_work *work)
894{
895 struct async_cow *async_cow;
896 int num_added = 0;
897 async_cow = container_of(work, struct async_cow, work);
898
899 compress_file_range(async_cow->inode, async_cow->locked_page,
900 async_cow->start, async_cow->end, async_cow,
901 &num_added);
902 if (num_added == 0)
903 async_cow->inode = NULL;
904}
905
906/*
907 * work queue call back to submit previously compressed pages
908 */
909static noinline void async_cow_submit(struct btrfs_work *work)
910{
911 struct async_cow *async_cow;
912 struct btrfs_root *root;
913 unsigned long nr_pages;
914
915 async_cow = container_of(work, struct async_cow, work);
916
917 root = async_cow->root;
918 nr_pages = (async_cow->end - async_cow->start + PAGE_CACHE_SIZE) >>
919 PAGE_CACHE_SHIFT;
920
921 atomic_sub(nr_pages, &root->fs_info->async_delalloc_pages);
922
923 if (atomic_read(&root->fs_info->async_delalloc_pages) <
924 5 * 1042 * 1024 &&
925 waitqueue_active(&root->fs_info->async_submit_wait))
926 wake_up(&root->fs_info->async_submit_wait);
927
Chris Masond3977122009-01-05 21:25:51 -0500928 if (async_cow->inode)
Chris Mason771ed682008-11-06 22:02:51 -0500929 submit_compressed_extents(async_cow->inode, async_cow);
Chris Mason771ed682008-11-06 22:02:51 -0500930}
Chris Masonc8b97812008-10-29 14:49:59 -0400931
Chris Mason771ed682008-11-06 22:02:51 -0500932static noinline void async_cow_free(struct btrfs_work *work)
933{
934 struct async_cow *async_cow;
935 async_cow = container_of(work, struct async_cow, work);
936 kfree(async_cow);
937}
938
939static int cow_file_range_async(struct inode *inode, struct page *locked_page,
940 u64 start, u64 end, int *page_started,
941 unsigned long *nr_written)
942{
943 struct async_cow *async_cow;
944 struct btrfs_root *root = BTRFS_I(inode)->root;
945 unsigned long nr_pages;
946 u64 cur_end;
947 int limit = 10 * 1024 * 1042;
948
Chris Masona3429ab2009-10-08 12:30:20 -0400949 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED,
950 1, 0, NULL, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -0500951 while (start < end) {
Chris Mason771ed682008-11-06 22:02:51 -0500952 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
953 async_cow->inode = inode;
954 async_cow->root = root;
955 async_cow->locked_page = locked_page;
956 async_cow->start = start;
957
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200958 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS)
Chris Mason771ed682008-11-06 22:02:51 -0500959 cur_end = end;
960 else
961 cur_end = min(end, start + 512 * 1024 - 1);
962
963 async_cow->end = cur_end;
964 INIT_LIST_HEAD(&async_cow->extents);
965
966 async_cow->work.func = async_cow_start;
967 async_cow->work.ordered_func = async_cow_submit;
968 async_cow->work.ordered_free = async_cow_free;
969 async_cow->work.flags = 0;
970
Chris Mason771ed682008-11-06 22:02:51 -0500971 nr_pages = (cur_end - start + PAGE_CACHE_SIZE) >>
972 PAGE_CACHE_SHIFT;
973 atomic_add(nr_pages, &root->fs_info->async_delalloc_pages);
974
975 btrfs_queue_worker(&root->fs_info->delalloc_workers,
976 &async_cow->work);
977
978 if (atomic_read(&root->fs_info->async_delalloc_pages) > limit) {
979 wait_event(root->fs_info->async_submit_wait,
980 (atomic_read(&root->fs_info->async_delalloc_pages) <
981 limit));
982 }
983
Chris Masond3977122009-01-05 21:25:51 -0500984 while (atomic_read(&root->fs_info->async_submit_draining) &&
Chris Mason771ed682008-11-06 22:02:51 -0500985 atomic_read(&root->fs_info->async_delalloc_pages)) {
986 wait_event(root->fs_info->async_submit_wait,
987 (atomic_read(&root->fs_info->async_delalloc_pages) ==
988 0));
989 }
990
991 *nr_written += nr_pages;
992 start = cur_end + 1;
993 }
994 *page_started = 1;
995 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -0500996}
997
Chris Masond3977122009-01-05 21:25:51 -0500998static noinline int csum_exist_in_range(struct btrfs_root *root,
Yan Zheng17d217f2008-12-12 10:03:38 -0500999 u64 bytenr, u64 num_bytes)
1000{
1001 int ret;
1002 struct btrfs_ordered_sum *sums;
1003 LIST_HEAD(list);
1004
Yan Zheng07d400a2009-01-06 11:42:00 -05001005 ret = btrfs_lookup_csums_range(root->fs_info->csum_root, bytenr,
1006 bytenr + num_bytes - 1, &list);
Yan Zheng17d217f2008-12-12 10:03:38 -05001007 if (ret == 0 && list_empty(&list))
1008 return 0;
1009
1010 while (!list_empty(&list)) {
1011 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
1012 list_del(&sums->list);
1013 kfree(sums);
1014 }
1015 return 1;
1016}
1017
Chris Masond352ac62008-09-29 15:18:18 -04001018/*
1019 * when nowcow writeback call back. This checks for snapshots or COW copies
1020 * of the extents that exist in the file, and COWs the file as required.
1021 *
1022 * If no cow copies or snapshots exist, we write directly to the existing
1023 * blocks on disk
1024 */
Chris Mason7f366cf2009-03-12 20:12:45 -04001025static noinline int run_delalloc_nocow(struct inode *inode,
1026 struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001027 u64 start, u64 end, int *page_started, int force,
1028 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001029{
Chris Masonbe20aa92007-12-17 20:14:01 -05001030 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001031 struct btrfs_trans_handle *trans;
Chris Masonbe20aa92007-12-17 20:14:01 -05001032 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -05001033 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -04001034 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -05001035 struct btrfs_key found_key;
Yan Zheng80ff3852008-10-30 14:20:02 -04001036 u64 cow_start;
1037 u64 cur_offset;
1038 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001039 u64 extent_offset;
Yan Zheng80ff3852008-10-30 14:20:02 -04001040 u64 disk_bytenr;
1041 u64 num_bytes;
1042 int extent_type;
1043 int ret;
Yan Zhengd899e052008-10-30 14:25:28 -04001044 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -04001045 int nocow;
1046 int check_prev = 1;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001047 bool nolock = false;
Chris Masonbe20aa92007-12-17 20:14:01 -05001048
1049 path = btrfs_alloc_path();
1050 BUG_ON(!path);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001051 if (root == root->fs_info->tree_root) {
1052 nolock = true;
1053 trans = btrfs_join_transaction_nolock(root, 1);
1054 } else {
1055 trans = btrfs_join_transaction(root, 1);
1056 }
Tsutomu Itoh3612b492011-01-25 02:51:38 +00001057 BUG_ON(IS_ERR(trans));
Chris Masonbe20aa92007-12-17 20:14:01 -05001058
Yan Zheng80ff3852008-10-30 14:20:02 -04001059 cow_start = (u64)-1;
1060 cur_offset = start;
1061 while (1) {
1062 ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino,
1063 cur_offset, 0);
1064 BUG_ON(ret < 0);
1065 if (ret > 0 && path->slots[0] > 0 && check_prev) {
1066 leaf = path->nodes[0];
1067 btrfs_item_key_to_cpu(leaf, &found_key,
1068 path->slots[0] - 1);
1069 if (found_key.objectid == inode->i_ino &&
1070 found_key.type == BTRFS_EXTENT_DATA_KEY)
1071 path->slots[0]--;
1072 }
1073 check_prev = 0;
1074next_slot:
1075 leaf = path->nodes[0];
1076 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1077 ret = btrfs_next_leaf(root, path);
1078 if (ret < 0)
1079 BUG_ON(1);
1080 if (ret > 0)
1081 break;
1082 leaf = path->nodes[0];
1083 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001084
Yan Zheng80ff3852008-10-30 14:20:02 -04001085 nocow = 0;
1086 disk_bytenr = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -05001087 num_bytes = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001088 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05001089
Yan Zheng80ff3852008-10-30 14:20:02 -04001090 if (found_key.objectid > inode->i_ino ||
1091 found_key.type > BTRFS_EXTENT_DATA_KEY ||
1092 found_key.offset > end)
1093 break;
Chris Masonbe20aa92007-12-17 20:14:01 -05001094
Yan Zheng80ff3852008-10-30 14:20:02 -04001095 if (found_key.offset > cur_offset) {
1096 extent_end = found_key.offset;
Chris Masone9061e22009-10-09 09:57:45 -04001097 extent_type = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001098 goto out_check;
1099 }
Chris Masonc31f8832008-01-08 15:46:31 -05001100
Yan Zheng80ff3852008-10-30 14:20:02 -04001101 fi = btrfs_item_ptr(leaf, path->slots[0],
1102 struct btrfs_file_extent_item);
1103 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -05001104
Yan Zhengd899e052008-10-30 14:25:28 -04001105 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1106 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001107 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001108 extent_offset = btrfs_file_extent_offset(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001109 extent_end = found_key.offset +
1110 btrfs_file_extent_num_bytes(leaf, fi);
1111 if (extent_end <= start) {
1112 path->slots[0]++;
1113 goto next_slot;
1114 }
Yan Zheng17d217f2008-12-12 10:03:38 -05001115 if (disk_bytenr == 0)
1116 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001117 if (btrfs_file_extent_compression(leaf, fi) ||
1118 btrfs_file_extent_encryption(leaf, fi) ||
1119 btrfs_file_extent_other_encoding(leaf, fi))
1120 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001121 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1122 goto out_check;
Yan Zhengd2fb3432008-12-11 16:30:39 -05001123 if (btrfs_extent_readonly(root, disk_bytenr))
Yan Zheng80ff3852008-10-30 14:20:02 -04001124 goto out_check;
Yan Zheng17d217f2008-12-12 10:03:38 -05001125 if (btrfs_cross_ref_exist(trans, root, inode->i_ino,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001126 found_key.offset -
1127 extent_offset, disk_bytenr))
Yan Zheng17d217f2008-12-12 10:03:38 -05001128 goto out_check;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001129 disk_bytenr += extent_offset;
Yan Zheng17d217f2008-12-12 10:03:38 -05001130 disk_bytenr += cur_offset - found_key.offset;
1131 num_bytes = min(end + 1, extent_end) - cur_offset;
1132 /*
1133 * force cow if csum exists in the range.
1134 * this ensure that csum for a given extent are
1135 * either valid or do not exist.
1136 */
1137 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
1138 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001139 nocow = 1;
1140 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1141 extent_end = found_key.offset +
1142 btrfs_file_extent_inline_len(leaf, fi);
1143 extent_end = ALIGN(extent_end, root->sectorsize);
1144 } else {
1145 BUG_ON(1);
1146 }
1147out_check:
1148 if (extent_end <= start) {
1149 path->slots[0]++;
1150 goto next_slot;
1151 }
1152 if (!nocow) {
1153 if (cow_start == (u64)-1)
1154 cow_start = cur_offset;
1155 cur_offset = extent_end;
1156 if (cur_offset > end)
1157 break;
1158 path->slots[0]++;
1159 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001160 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001161
Yan Zheng7ea394f2008-08-05 13:05:02 -04001162 btrfs_release_path(root, path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001163 if (cow_start != (u64)-1) {
1164 ret = cow_file_range(inode, locked_page, cow_start,
Chris Mason771ed682008-11-06 22:02:51 -05001165 found_key.offset - 1, page_started,
1166 nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001167 BUG_ON(ret);
1168 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001169 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001170
Yan Zhengd899e052008-10-30 14:25:28 -04001171 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1172 struct extent_map *em;
1173 struct extent_map_tree *em_tree;
1174 em_tree = &BTRFS_I(inode)->extent_tree;
1175 em = alloc_extent_map(GFP_NOFS);
Tsutomu Itohc26a9202011-02-14 00:45:29 +00001176 BUG_ON(!em);
Yan Zhengd899e052008-10-30 14:25:28 -04001177 em->start = cur_offset;
Chris Mason445a6942008-11-10 11:53:33 -05001178 em->orig_start = em->start;
Yan Zhengd899e052008-10-30 14:25:28 -04001179 em->len = num_bytes;
1180 em->block_len = num_bytes;
1181 em->block_start = disk_bytenr;
1182 em->bdev = root->fs_info->fs_devices->latest_bdev;
1183 set_bit(EXTENT_FLAG_PINNED, &em->flags);
1184 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04001185 write_lock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001186 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04001187 write_unlock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001188 if (ret != -EEXIST) {
1189 free_extent_map(em);
1190 break;
1191 }
1192 btrfs_drop_extent_cache(inode, em->start,
1193 em->start + em->len - 1, 0);
1194 }
1195 type = BTRFS_ORDERED_PREALLOC;
1196 } else {
1197 type = BTRFS_ORDERED_NOCOW;
1198 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001199
1200 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001201 num_bytes, num_bytes, type);
1202 BUG_ON(ret);
Chris Mason771ed682008-11-06 22:02:51 -05001203
Yan, Zhengefa56462010-05-16 10:49:59 -04001204 if (root->root_key.objectid ==
1205 BTRFS_DATA_RELOC_TREE_OBJECTID) {
1206 ret = btrfs_reloc_clone_csums(inode, cur_offset,
1207 num_bytes);
1208 BUG_ON(ret);
1209 }
1210
Yan Zhengd899e052008-10-30 14:25:28 -04001211 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
Chris Masona791e352009-10-08 11:27:10 -04001212 cur_offset, cur_offset + num_bytes - 1,
1213 locked_page, EXTENT_CLEAR_UNLOCK_PAGE |
1214 EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
1215 EXTENT_SET_PRIVATE2);
Yan Zheng80ff3852008-10-30 14:20:02 -04001216 cur_offset = extent_end;
1217 if (cur_offset > end)
1218 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001219 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001220 btrfs_release_path(root, path);
1221
1222 if (cur_offset <= end && cow_start == (u64)-1)
1223 cow_start = cur_offset;
1224 if (cow_start != (u64)-1) {
1225 ret = cow_file_range(inode, locked_page, cow_start, end,
Chris Mason771ed682008-11-06 22:02:51 -05001226 page_started, nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001227 BUG_ON(ret);
1228 }
1229
Josef Bacik0cb59c92010-07-02 12:14:14 -04001230 if (nolock) {
1231 ret = btrfs_end_transaction_nolock(trans, root);
1232 BUG_ON(ret);
1233 } else {
1234 ret = btrfs_end_transaction(trans, root);
1235 BUG_ON(ret);
1236 }
Yan Zheng7ea394f2008-08-05 13:05:02 -04001237 btrfs_free_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001238 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001239}
1240
Chris Masond352ac62008-09-29 15:18:18 -04001241/*
1242 * extent_io.c call back to do delayed allocation processing
1243 */
Chris Masonc8b97812008-10-29 14:49:59 -04001244static int run_delalloc_range(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001245 u64 start, u64 end, int *page_started,
1246 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001247{
Chris Masonbe20aa92007-12-17 20:14:01 -05001248 int ret;
Chris Mason7f366cf2009-03-12 20:12:45 -04001249 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masona2135012008-06-25 16:01:30 -04001250
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001251 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW)
Chris Masonc8b97812008-10-29 14:49:59 -04001252 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001253 page_started, 1, nr_written);
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001254 else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC)
Yan Zhengd899e052008-10-30 14:25:28 -04001255 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001256 page_started, 0, nr_written);
Chris Mason1e701a32010-03-11 09:42:04 -05001257 else if (!btrfs_test_opt(root, COMPRESS) &&
1258 !(BTRFS_I(inode)->force_compress))
Chris Mason7f366cf2009-03-12 20:12:45 -04001259 ret = cow_file_range(inode, locked_page, start, end,
1260 page_started, nr_written, 1);
Chris Masonbe20aa92007-12-17 20:14:01 -05001261 else
Chris Mason771ed682008-11-06 22:02:51 -05001262 ret = cow_file_range_async(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001263 page_started, nr_written);
Chris Masonb888db22007-08-27 16:49:44 -04001264 return ret;
1265}
1266
Josef Bacik9ed74f22009-09-11 16:12:44 -04001267static int btrfs_split_extent_hook(struct inode *inode,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001268 struct extent_state *orig, u64 split)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001269{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001270 /* not delalloc, ignore it */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001271 if (!(orig->state & EXTENT_DELALLOC))
1272 return 0;
1273
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001274 atomic_inc(&BTRFS_I(inode)->outstanding_extents);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001275 return 0;
1276}
1277
1278/*
1279 * extent_io.c merge_extent_hook, used to track merged delayed allocation
1280 * extents so we can keep track of new extents that are just merged onto old
1281 * extents, such as when we are doing sequential writes, so we can properly
1282 * account for the metadata space we'll need.
1283 */
1284static int btrfs_merge_extent_hook(struct inode *inode,
1285 struct extent_state *new,
1286 struct extent_state *other)
1287{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001288 /* not delalloc, ignore it */
1289 if (!(other->state & EXTENT_DELALLOC))
1290 return 0;
1291
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001292 atomic_dec(&BTRFS_I(inode)->outstanding_extents);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001293 return 0;
1294}
1295
Chris Masond352ac62008-09-29 15:18:18 -04001296/*
1297 * extent_io.c set_bit_hook, used to track delayed allocation
1298 * bytes in this file, and to maintain the list of inodes that
1299 * have pending delalloc work to be done.
1300 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001301static int btrfs_set_bit_hook(struct inode *inode,
1302 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001303{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001304
Chris Mason75eff682008-12-15 15:54:40 -05001305 /*
1306 * set_bit and clear bit hooks normally require _irqsave/restore
1307 * but in this case, we are only testeing for the DELALLOC
1308 * bit, which is only set or cleared with irqs on
1309 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001310 if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001311 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001312 u64 len = state->end + 1 - state->start;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001313 int do_list = (root->root_key.objectid !=
1314 BTRFS_ROOT_TREE_OBJECTID);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001315
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001316 if (*bits & EXTENT_FIRST_DELALLOC)
1317 *bits &= ~EXTENT_FIRST_DELALLOC;
1318 else
1319 atomic_inc(&BTRFS_I(inode)->outstanding_extents);
Josef Bacik287a0ab2010-03-19 18:07:23 +00001320
Chris Mason75eff682008-12-15 15:54:40 -05001321 spin_lock(&root->fs_info->delalloc_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001322 BTRFS_I(inode)->delalloc_bytes += len;
1323 root->fs_info->delalloc_bytes += len;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001324 if (do_list && list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
Chris Masonea8c2812008-08-04 23:17:27 -04001325 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1326 &root->fs_info->delalloc_inodes);
1327 }
Chris Mason75eff682008-12-15 15:54:40 -05001328 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001329 }
1330 return 0;
1331}
1332
Chris Masond352ac62008-09-29 15:18:18 -04001333/*
1334 * extent_io.c clear_bit_hook, see set_bit_hook for why
1335 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001336static int btrfs_clear_bit_hook(struct inode *inode,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001337 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001338{
Chris Mason75eff682008-12-15 15:54:40 -05001339 /*
1340 * set_bit and clear bit hooks normally require _irqsave/restore
1341 * but in this case, we are only testeing for the DELALLOC
1342 * bit, which is only set or cleared with irqs on
1343 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001344 if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001345 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001346 u64 len = state->end + 1 - state->start;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001347 int do_list = (root->root_key.objectid !=
1348 BTRFS_ROOT_TREE_OBJECTID);
Chris Masonbcbfce82008-04-22 13:26:47 -04001349
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001350 if (*bits & EXTENT_FIRST_DELALLOC)
1351 *bits &= ~EXTENT_FIRST_DELALLOC;
1352 else if (!(*bits & EXTENT_DO_ACCOUNTING))
1353 atomic_dec(&BTRFS_I(inode)->outstanding_extents);
1354
1355 if (*bits & EXTENT_DO_ACCOUNTING)
1356 btrfs_delalloc_release_metadata(inode, len);
1357
Josef Bacik0cb59c92010-07-02 12:14:14 -04001358 if (root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID
1359 && do_list)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001360 btrfs_free_reserved_data_space(inode, len);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001361
Chris Mason75eff682008-12-15 15:54:40 -05001362 spin_lock(&root->fs_info->delalloc_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001363 root->fs_info->delalloc_bytes -= len;
1364 BTRFS_I(inode)->delalloc_bytes -= len;
1365
Josef Bacik0cb59c92010-07-02 12:14:14 -04001366 if (do_list && BTRFS_I(inode)->delalloc_bytes == 0 &&
Chris Masonea8c2812008-08-04 23:17:27 -04001367 !list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1368 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
1369 }
Chris Mason75eff682008-12-15 15:54:40 -05001370 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001371 }
1372 return 0;
1373}
1374
Chris Masond352ac62008-09-29 15:18:18 -04001375/*
1376 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1377 * we don't create bios that span stripes or chunks
1378 */
Chris Mason239b14b2008-03-24 15:02:07 -04001379int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001380 size_t size, struct bio *bio,
1381 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001382{
1383 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
1384 struct btrfs_mapping_tree *map_tree;
Chris Masona62b9402008-10-03 16:31:08 -04001385 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001386 u64 length = 0;
1387 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001388 int ret;
1389
Chris Mason771ed682008-11-06 22:02:51 -05001390 if (bio_flags & EXTENT_BIO_COMPRESSED)
1391 return 0;
1392
Chris Masonf2d8d742008-04-21 10:03:05 -04001393 length = bio->bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001394 map_tree = &root->fs_info->mapping_tree;
1395 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04001396 ret = btrfs_map_block(map_tree, READ, logical,
Chris Masonf1885912008-04-09 16:28:12 -04001397 &map_length, NULL, 0);
Chris Masoncea9e442008-04-09 16:28:12 -04001398
Chris Masond3977122009-01-05 21:25:51 -05001399 if (map_length < length + size)
Chris Mason239b14b2008-03-24 15:02:07 -04001400 return 1;
Andi Kleen411fc6b2010-10-29 15:14:31 -04001401 return ret;
Chris Mason239b14b2008-03-24 15:02:07 -04001402}
1403
Chris Masond352ac62008-09-29 15:18:18 -04001404/*
1405 * in order to insert checksums into the metadata in large chunks,
1406 * we wait until bio submission time. All the pages in the bio are
1407 * checksummed and sums are attached onto the ordered extent record.
1408 *
1409 * At IO completion time the cums attached on the ordered extent record
1410 * are inserted into the btree
1411 */
Chris Masond3977122009-01-05 21:25:51 -05001412static int __btrfs_submit_bio_start(struct inode *inode, int rw,
1413 struct bio *bio, int mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001414 unsigned long bio_flags,
1415 u64 bio_offset)
Chris Mason065631f2008-02-20 12:07:25 -05001416{
Chris Mason065631f2008-02-20 12:07:25 -05001417 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason065631f2008-02-20 12:07:25 -05001418 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001419
Chris Masond20f7042008-12-08 16:58:54 -05001420 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
Chris Mason44b8bd72008-04-16 11:14:51 -04001421 BUG_ON(ret);
Chris Mason4a69a412008-11-06 22:03:00 -05001422 return 0;
1423}
Chris Masone0156402008-04-16 11:15:20 -04001424
Chris Mason4a69a412008-11-06 22:03:00 -05001425/*
1426 * in order to insert checksums into the metadata in large chunks,
1427 * we wait until bio submission time. All the pages in the bio are
1428 * checksummed and sums are attached onto the ordered extent record.
1429 *
1430 * At IO completion time the cums attached on the ordered extent record
1431 * are inserted into the btree
1432 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001433static int __btrfs_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001434 int mirror_num, unsigned long bio_flags,
1435 u64 bio_offset)
Chris Mason4a69a412008-11-06 22:03:00 -05001436{
1437 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason8b712842008-06-11 16:50:36 -04001438 return btrfs_map_bio(root, rw, bio, mirror_num, 1);
Chris Mason44b8bd72008-04-16 11:14:51 -04001439}
1440
Chris Masond352ac62008-09-29 15:18:18 -04001441/*
Chris Masoncad321a2008-12-17 14:51:42 -05001442 * extent_io.c submission hook. This does the right thing for csum calculation
1443 * on write, or reading the csums from the tree before a read
Chris Masond352ac62008-09-29 15:18:18 -04001444 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001445static int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001446 int mirror_num, unsigned long bio_flags,
1447 u64 bio_offset)
Chris Mason44b8bd72008-04-16 11:14:51 -04001448{
1449 struct btrfs_root *root = BTRFS_I(inode)->root;
1450 int ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001451 int skip_sum;
Chris Mason44b8bd72008-04-16 11:14:51 -04001452
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001453 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masoncad321a2008-12-17 14:51:42 -05001454
Josef Bacik0cb59c92010-07-02 12:14:14 -04001455 if (root == root->fs_info->tree_root)
1456 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 2);
1457 else
1458 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001459 BUG_ON(ret);
Chris Mason065631f2008-02-20 12:07:25 -05001460
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001461 if (!(rw & REQ_WRITE)) {
Chris Masond20f7042008-12-08 16:58:54 -05001462 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Chris Masonc8b97812008-10-29 14:49:59 -04001463 return btrfs_submit_compressed_read(inode, bio,
1464 mirror_num, bio_flags);
Chris Masond20f7042008-12-08 16:58:54 -05001465 } else if (!skip_sum)
1466 btrfs_lookup_bio_sums(root, inode, bio, NULL);
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001467 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001468 } else if (!skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001469 /* csum items have already been cloned */
1470 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1471 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001472 /* we're doing a write, do the async checksumming */
1473 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
Chris Mason44b8bd72008-04-16 11:14:51 -04001474 inode, rw, bio, mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001475 bio_flags, bio_offset,
1476 __btrfs_submit_bio_start,
Chris Mason4a69a412008-11-06 22:03:00 -05001477 __btrfs_submit_bio_done);
Chris Mason19b9bdb2008-10-30 14:23:13 -04001478 }
1479
Chris Mason0b86a832008-03-24 15:01:56 -04001480mapit:
Chris Mason8b712842008-06-11 16:50:36 -04001481 return btrfs_map_bio(root, rw, bio, mirror_num, 0);
Chris Mason065631f2008-02-20 12:07:25 -05001482}
Chris Mason6885f302008-02-20 16:11:05 -05001483
Chris Masond352ac62008-09-29 15:18:18 -04001484/*
1485 * given a list of ordered sums record them in the inode. This happens
1486 * at IO completion time based on sums calculated at bio submission time.
1487 */
Chris Masonba1da2f2008-07-17 12:54:15 -04001488static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -04001489 struct inode *inode, u64 file_offset,
1490 struct list_head *list)
1491{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001492 struct btrfs_ordered_sum *sum;
1493
1494 btrfs_set_trans_block_group(trans, inode);
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001495
1496 list_for_each_entry(sum, list, list) {
Chris Masond20f7042008-12-08 16:58:54 -05001497 btrfs_csum_file_blocks(trans,
1498 BTRFS_I(inode)->root->fs_info->csum_root, sum);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001499 }
1500 return 0;
1501}
1502
Josef Bacik2ac55d42010-02-03 19:33:23 +00001503int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end,
1504 struct extent_state **cached_state)
Chris Masonea8c2812008-08-04 23:17:27 -04001505{
Chris Masond3977122009-01-05 21:25:51 -05001506 if ((end & (PAGE_CACHE_SIZE - 1)) == 0)
Chris Mason771ed682008-11-06 22:02:51 -05001507 WARN_ON(1);
Chris Masonea8c2812008-08-04 23:17:27 -04001508 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001509 cached_state, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04001510}
1511
Chris Masond352ac62008-09-29 15:18:18 -04001512/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04001513struct btrfs_writepage_fixup {
1514 struct page *page;
1515 struct btrfs_work work;
1516};
1517
Christoph Hellwigb2950862008-12-02 09:54:17 -05001518static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04001519{
1520 struct btrfs_writepage_fixup *fixup;
1521 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001522 struct extent_state *cached_state = NULL;
Chris Mason247e7432008-07-17 12:53:51 -04001523 struct page *page;
1524 struct inode *inode;
1525 u64 page_start;
1526 u64 page_end;
1527
1528 fixup = container_of(work, struct btrfs_writepage_fixup, work);
1529 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04001530again:
Chris Mason247e7432008-07-17 12:53:51 -04001531 lock_page(page);
1532 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
1533 ClearPageChecked(page);
1534 goto out_page;
1535 }
1536
1537 inode = page->mapping->host;
1538 page_start = page_offset(page);
1539 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
1540
Josef Bacik2ac55d42010-02-03 19:33:23 +00001541 lock_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end, 0,
1542 &cached_state, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001543
1544 /* already ordered? We're done */
Chris Mason8b62b722009-09-02 16:53:46 -04001545 if (PagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001546 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04001547
1548 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1549 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00001550 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start,
1551 page_end, &cached_state, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001552 unlock_page(page);
1553 btrfs_start_ordered_extent(inode, ordered, 1);
1554 goto again;
1555 }
Chris Mason247e7432008-07-17 12:53:51 -04001556
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001557 BUG();
Josef Bacik2ac55d42010-02-03 19:33:23 +00001558 btrfs_set_extent_delalloc(inode, page_start, page_end, &cached_state);
Chris Mason247e7432008-07-17 12:53:51 -04001559 ClearPageChecked(page);
1560out:
Josef Bacik2ac55d42010-02-03 19:33:23 +00001561 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, page_end,
1562 &cached_state, GFP_NOFS);
Chris Mason247e7432008-07-17 12:53:51 -04001563out_page:
1564 unlock_page(page);
1565 page_cache_release(page);
Miao Xieb897abe2011-01-26 16:19:22 +08001566 kfree(fixup);
Chris Mason247e7432008-07-17 12:53:51 -04001567}
1568
1569/*
1570 * There are a few paths in the higher layers of the kernel that directly
1571 * set the page dirty bit without asking the filesystem if it is a
1572 * good idea. This causes problems because we want to make sure COW
1573 * properly happens and the data=ordered rules are followed.
1574 *
Chris Masonc8b97812008-10-29 14:49:59 -04001575 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04001576 * hasn't been properly setup for IO. We kick off an async process
1577 * to fix it up. The async helper will wait for ordered extents, set
1578 * the delalloc bit and make it safe to write the page.
1579 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001580static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04001581{
1582 struct inode *inode = page->mapping->host;
1583 struct btrfs_writepage_fixup *fixup;
1584 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason247e7432008-07-17 12:53:51 -04001585
Chris Mason8b62b722009-09-02 16:53:46 -04001586 /* this page is properly in the ordered list */
1587 if (TestClearPagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001588 return 0;
1589
1590 if (PageChecked(page))
1591 return -EAGAIN;
1592
1593 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
1594 if (!fixup)
1595 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04001596
Chris Mason247e7432008-07-17 12:53:51 -04001597 SetPageChecked(page);
1598 page_cache_get(page);
1599 fixup->work.func = btrfs_writepage_fixup_worker;
1600 fixup->page = page;
1601 btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work);
1602 return -EAGAIN;
1603}
1604
Yan Zhengd899e052008-10-30 14:25:28 -04001605static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
1606 struct inode *inode, u64 file_pos,
1607 u64 disk_bytenr, u64 disk_num_bytes,
1608 u64 num_bytes, u64 ram_bytes,
1609 u8 compression, u8 encryption,
1610 u16 other_encoding, int extent_type)
1611{
1612 struct btrfs_root *root = BTRFS_I(inode)->root;
1613 struct btrfs_file_extent_item *fi;
1614 struct btrfs_path *path;
1615 struct extent_buffer *leaf;
1616 struct btrfs_key ins;
1617 u64 hint;
1618 int ret;
1619
1620 path = btrfs_alloc_path();
1621 BUG_ON(!path);
1622
Chris Masonb9473432009-03-13 11:00:37 -04001623 path->leave_spinning = 1;
Chris Masona1ed8352009-09-11 12:27:37 -04001624
1625 /*
1626 * we may be replacing one extent in the tree with another.
1627 * The new extent is pinned in the extent map, and we don't want
1628 * to drop it from the cache until it is completely in the btree.
1629 *
1630 * So, tell btrfs_drop_extents to leave this extent in the cache.
1631 * the caller is expected to unpin it and allow it to be merged
1632 * with the others.
1633 */
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001634 ret = btrfs_drop_extents(trans, inode, file_pos, file_pos + num_bytes,
1635 &hint, 0);
Yan Zhengd899e052008-10-30 14:25:28 -04001636 BUG_ON(ret);
1637
1638 ins.objectid = inode->i_ino;
1639 ins.offset = file_pos;
1640 ins.type = BTRFS_EXTENT_DATA_KEY;
1641 ret = btrfs_insert_empty_item(trans, root, path, &ins, sizeof(*fi));
1642 BUG_ON(ret);
1643 leaf = path->nodes[0];
1644 fi = btrfs_item_ptr(leaf, path->slots[0],
1645 struct btrfs_file_extent_item);
1646 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
1647 btrfs_set_file_extent_type(leaf, fi, extent_type);
1648 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
1649 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
1650 btrfs_set_file_extent_offset(leaf, fi, 0);
1651 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
1652 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
1653 btrfs_set_file_extent_compression(leaf, fi, compression);
1654 btrfs_set_file_extent_encryption(leaf, fi, encryption);
1655 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
Chris Masonb9473432009-03-13 11:00:37 -04001656
1657 btrfs_unlock_up_safe(path, 1);
1658 btrfs_set_lock_blocking(leaf);
1659
Yan Zhengd899e052008-10-30 14:25:28 -04001660 btrfs_mark_buffer_dirty(leaf);
1661
1662 inode_add_bytes(inode, num_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -04001663
1664 ins.objectid = disk_bytenr;
1665 ins.offset = disk_num_bytes;
1666 ins.type = BTRFS_EXTENT_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001667 ret = btrfs_alloc_reserved_file_extent(trans, root,
1668 root->root_key.objectid,
1669 inode->i_ino, file_pos, &ins);
Yan Zhengd899e052008-10-30 14:25:28 -04001670 BUG_ON(ret);
Yan Zhengd899e052008-10-30 14:25:28 -04001671 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04001672
Yan Zhengd899e052008-10-30 14:25:28 -04001673 return 0;
1674}
1675
Chris Mason5d13a982009-03-13 11:41:46 -04001676/*
1677 * helper function for btrfs_finish_ordered_io, this
1678 * just reads in some of the csum leaves to prime them into ram
1679 * before we start the transaction. It limits the amount of btree
1680 * reads required while inside the transaction.
1681 */
Chris Masond352ac62008-09-29 15:18:18 -04001682/* as ordered data IO finishes, this gets called so we can finish
1683 * an ordered extent if the range of bytes in the file it covers are
1684 * fully written.
1685 */
Chris Mason211f90e2008-07-18 11:56:15 -04001686static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001687{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001688 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001689 struct btrfs_trans_handle *trans = NULL;
Chris Mason5d13a982009-03-13 11:41:46 -04001690 struct btrfs_ordered_extent *ordered_extent = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001691 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001692 struct extent_state *cached_state = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08001693 int compress_type = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001694 int ret;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001695 bool nolock = false;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001696
Josef Bacik5a1a3df2010-02-02 20:51:14 +00001697 ret = btrfs_dec_test_ordered_pending(inode, &ordered_extent, start,
1698 end - start + 1);
Chris Masonba1da2f2008-07-17 12:54:15 -04001699 if (!ret)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001700 return 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001701 BUG_ON(!ordered_extent);
Josef Bacikefd049f2010-02-02 20:50:10 +00001702
Josef Bacik0cb59c92010-07-02 12:14:14 -04001703 nolock = (root == root->fs_info->tree_root);
1704
Yan, Zhengc2167752009-11-12 09:34:21 +00001705 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
1706 BUG_ON(!list_empty(&ordered_extent->list));
1707 ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent);
1708 if (!ret) {
Josef Bacik0cb59c92010-07-02 12:14:14 -04001709 if (nolock)
1710 trans = btrfs_join_transaction_nolock(root, 1);
1711 else
1712 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00001713 BUG_ON(IS_ERR(trans));
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001714 btrfs_set_trans_block_group(trans, inode);
1715 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Yan, Zhengc2167752009-11-12 09:34:21 +00001716 ret = btrfs_update_inode(trans, root, inode);
1717 BUG_ON(ret);
Yan, Zhengc2167752009-11-12 09:34:21 +00001718 }
1719 goto out;
1720 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001721
Josef Bacik2ac55d42010-02-03 19:33:23 +00001722 lock_extent_bits(io_tree, ordered_extent->file_offset,
1723 ordered_extent->file_offset + ordered_extent->len - 1,
1724 0, &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001725
Josef Bacik0cb59c92010-07-02 12:14:14 -04001726 if (nolock)
1727 trans = btrfs_join_transaction_nolock(root, 1);
1728 else
1729 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00001730 BUG_ON(IS_ERR(trans));
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001731 btrfs_set_trans_block_group(trans, inode);
1732 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Yan, Zhengc2167752009-11-12 09:34:21 +00001733
Chris Masonc8b97812008-10-29 14:49:59 -04001734 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Li Zefan261507a02010-12-17 14:21:50 +08001735 compress_type = ordered_extent->compress_type;
Yan Zhengd899e052008-10-30 14:25:28 -04001736 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Li Zefan261507a02010-12-17 14:21:50 +08001737 BUG_ON(compress_type);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001738 ret = btrfs_mark_extent_written(trans, inode,
Yan Zhengd899e052008-10-30 14:25:28 -04001739 ordered_extent->file_offset,
1740 ordered_extent->file_offset +
1741 ordered_extent->len);
1742 BUG_ON(ret);
1743 } else {
Josef Bacik0af3d002010-06-21 14:48:16 -04001744 BUG_ON(root == root->fs_info->tree_root);
Yan Zhengd899e052008-10-30 14:25:28 -04001745 ret = insert_reserved_file_extent(trans, inode,
1746 ordered_extent->file_offset,
1747 ordered_extent->start,
1748 ordered_extent->disk_len,
1749 ordered_extent->len,
1750 ordered_extent->len,
Li Zefan261507a02010-12-17 14:21:50 +08001751 compress_type, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04001752 BTRFS_FILE_EXTENT_REG);
Chris Masona1ed8352009-09-11 12:27:37 -04001753 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
1754 ordered_extent->file_offset,
1755 ordered_extent->len);
Yan Zhengd899e052008-10-30 14:25:28 -04001756 BUG_ON(ret);
1757 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00001758 unlock_extent_cached(io_tree, ordered_extent->file_offset,
1759 ordered_extent->file_offset +
1760 ordered_extent->len - 1, &cached_state, GFP_NOFS);
1761
Chris Masone6dcd2d2008-07-17 12:53:50 -04001762 add_pending_csums(trans, inode, ordered_extent->file_offset,
1763 &ordered_extent->list);
1764
Yan, Zhengc2167752009-11-12 09:34:21 +00001765 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
1766 ret = btrfs_update_inode(trans, root, inode);
1767 BUG_ON(ret);
Yan, Zhengc2167752009-11-12 09:34:21 +00001768out:
Josef Bacik0cb59c92010-07-02 12:14:14 -04001769 if (nolock) {
1770 if (trans)
1771 btrfs_end_transaction_nolock(trans, root);
1772 } else {
1773 btrfs_delalloc_release_metadata(inode, ordered_extent->len);
1774 if (trans)
1775 btrfs_end_transaction(trans, root);
1776 }
1777
Chris Masone6dcd2d2008-07-17 12:53:50 -04001778 /* once for us */
1779 btrfs_put_ordered_extent(ordered_extent);
1780 /* once for the tree */
1781 btrfs_put_ordered_extent(ordered_extent);
1782
Chris Masone6dcd2d2008-07-17 12:53:50 -04001783 return 0;
1784}
1785
Christoph Hellwigb2950862008-12-02 09:54:17 -05001786static int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04001787 struct extent_state *state, int uptodate)
1788{
Chris Mason8b62b722009-09-02 16:53:46 -04001789 ClearPagePrivate2(page);
Chris Mason211f90e2008-07-18 11:56:15 -04001790 return btrfs_finish_ordered_io(page->mapping->host, start, end);
1791}
1792
Chris Masond352ac62008-09-29 15:18:18 -04001793/*
1794 * When IO fails, either with EIO or csum verification fails, we
1795 * try other mirrors that might have a good copy of the data. This
1796 * io_failure_record is used to record state as we go through all the
1797 * mirrors. If another mirror has good data, the page is set up to date
1798 * and things continue. If a good mirror can't be found, the original
1799 * bio end_io callback is called to indicate things have failed.
1800 */
Chris Mason7e383262008-04-09 16:28:12 -04001801struct io_failure_record {
1802 struct page *page;
1803 u64 start;
1804 u64 len;
1805 u64 logical;
Chris Masond20f7042008-12-08 16:58:54 -05001806 unsigned long bio_flags;
Chris Mason7e383262008-04-09 16:28:12 -04001807 int last_mirror;
1808};
1809
Christoph Hellwigb2950862008-12-02 09:54:17 -05001810static int btrfs_io_failed_hook(struct bio *failed_bio,
Chris Mason1259ab72008-05-12 13:39:03 -04001811 struct page *page, u64 start, u64 end,
1812 struct extent_state *state)
Chris Mason7e383262008-04-09 16:28:12 -04001813{
1814 struct io_failure_record *failrec = NULL;
1815 u64 private;
1816 struct extent_map *em;
1817 struct inode *inode = page->mapping->host;
1818 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Chris Mason3b951512008-04-17 11:29:12 -04001819 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason7e383262008-04-09 16:28:12 -04001820 struct bio *bio;
1821 int num_copies;
1822 int ret;
Chris Mason1259ab72008-05-12 13:39:03 -04001823 int rw;
Chris Mason7e383262008-04-09 16:28:12 -04001824 u64 logical;
1825
1826 ret = get_state_private(failure_tree, start, &private);
1827 if (ret) {
Chris Mason7e383262008-04-09 16:28:12 -04001828 failrec = kmalloc(sizeof(*failrec), GFP_NOFS);
1829 if (!failrec)
1830 return -ENOMEM;
1831 failrec->start = start;
1832 failrec->len = end - start + 1;
1833 failrec->last_mirror = 0;
Chris Masond20f7042008-12-08 16:58:54 -05001834 failrec->bio_flags = 0;
Chris Mason7e383262008-04-09 16:28:12 -04001835
Chris Mason890871b2009-09-02 16:24:52 -04001836 read_lock(&em_tree->lock);
Chris Mason3b951512008-04-17 11:29:12 -04001837 em = lookup_extent_mapping(em_tree, start, failrec->len);
1838 if (em->start > start || em->start + em->len < start) {
1839 free_extent_map(em);
1840 em = NULL;
1841 }
Chris Mason890871b2009-09-02 16:24:52 -04001842 read_unlock(&em_tree->lock);
Chris Mason7e383262008-04-09 16:28:12 -04001843
1844 if (!em || IS_ERR(em)) {
1845 kfree(failrec);
1846 return -EIO;
1847 }
1848 logical = start - em->start;
1849 logical = em->block_start + logical;
Chris Masond20f7042008-12-08 16:58:54 -05001850 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
1851 logical = em->block_start;
1852 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08001853 extent_set_compress_type(&failrec->bio_flags,
1854 em->compress_type);
Chris Masond20f7042008-12-08 16:58:54 -05001855 }
Chris Mason7e383262008-04-09 16:28:12 -04001856 failrec->logical = logical;
1857 free_extent_map(em);
1858 set_extent_bits(failure_tree, start, end, EXTENT_LOCKED |
1859 EXTENT_DIRTY, GFP_NOFS);
Chris Mason587f7702008-04-11 12:16:46 -04001860 set_state_private(failure_tree, start,
1861 (u64)(unsigned long)failrec);
Chris Mason7e383262008-04-09 16:28:12 -04001862 } else {
Chris Mason587f7702008-04-11 12:16:46 -04001863 failrec = (struct io_failure_record *)(unsigned long)private;
Chris Mason7e383262008-04-09 16:28:12 -04001864 }
1865 num_copies = btrfs_num_copies(
1866 &BTRFS_I(inode)->root->fs_info->mapping_tree,
1867 failrec->logical, failrec->len);
1868 failrec->last_mirror++;
1869 if (!state) {
Chris Masoncad321a2008-12-17 14:51:42 -05001870 spin_lock(&BTRFS_I(inode)->io_tree.lock);
Chris Mason7e383262008-04-09 16:28:12 -04001871 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
1872 failrec->start,
1873 EXTENT_LOCKED);
1874 if (state && state->start != failrec->start)
1875 state = NULL;
Chris Masoncad321a2008-12-17 14:51:42 -05001876 spin_unlock(&BTRFS_I(inode)->io_tree.lock);
Chris Mason7e383262008-04-09 16:28:12 -04001877 }
1878 if (!state || failrec->last_mirror > num_copies) {
1879 set_state_private(failure_tree, failrec->start, 0);
1880 clear_extent_bits(failure_tree, failrec->start,
1881 failrec->start + failrec->len - 1,
1882 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
1883 kfree(failrec);
1884 return -EIO;
1885 }
1886 bio = bio_alloc(GFP_NOFS, 1);
1887 bio->bi_private = state;
1888 bio->bi_end_io = failed_bio->bi_end_io;
1889 bio->bi_sector = failrec->logical >> 9;
1890 bio->bi_bdev = failed_bio->bi_bdev;
Chris Masone1c4b742008-04-22 13:26:46 -04001891 bio->bi_size = 0;
Chris Masond20f7042008-12-08 16:58:54 -05001892
Chris Mason7e383262008-04-09 16:28:12 -04001893 bio_add_page(bio, page, failrec->len, start - page_offset(page));
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001894 if (failed_bio->bi_rw & REQ_WRITE)
Chris Mason1259ab72008-05-12 13:39:03 -04001895 rw = WRITE;
1896 else
1897 rw = READ;
1898
1899 BTRFS_I(inode)->io_tree.ops->submit_bio_hook(inode, rw, bio,
Chris Masonc8b97812008-10-29 14:49:59 -04001900 failrec->last_mirror,
Chris Masoneaf25d92010-05-25 09:48:28 -04001901 failrec->bio_flags, 0);
Chris Mason1259ab72008-05-12 13:39:03 -04001902 return 0;
1903}
1904
Chris Masond352ac62008-09-29 15:18:18 -04001905/*
1906 * each time an IO finishes, we do a fast check in the IO failure tree
1907 * to see if we need to process or clean up an io_failure_record
1908 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001909static int btrfs_clean_io_failures(struct inode *inode, u64 start)
Chris Mason1259ab72008-05-12 13:39:03 -04001910{
1911 u64 private;
1912 u64 private_failure;
1913 struct io_failure_record *failure;
1914 int ret;
1915
1916 private = 0;
1917 if (count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
Chris Masonec29ed52011-02-23 16:23:20 -05001918 (u64)-1, 1, EXTENT_DIRTY, 0)) {
Chris Mason1259ab72008-05-12 13:39:03 -04001919 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree,
1920 start, &private_failure);
1921 if (ret == 0) {
1922 failure = (struct io_failure_record *)(unsigned long)
1923 private_failure;
1924 set_state_private(&BTRFS_I(inode)->io_failure_tree,
1925 failure->start, 0);
1926 clear_extent_bits(&BTRFS_I(inode)->io_failure_tree,
1927 failure->start,
1928 failure->start + failure->len - 1,
1929 EXTENT_DIRTY | EXTENT_LOCKED,
1930 GFP_NOFS);
1931 kfree(failure);
1932 }
1933 }
Chris Mason7e383262008-04-09 16:28:12 -04001934 return 0;
1935}
1936
Chris Masond352ac62008-09-29 15:18:18 -04001937/*
1938 * when reads are done, we need to check csums to verify the data is correct
1939 * if there's a match, we allow the bio to finish. If not, we go through
1940 * the io_failure_record routines to find good copies
1941 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001942static int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason70dec802008-01-29 09:59:12 -05001943 struct extent_state *state)
Chris Mason07157aa2007-08-30 08:50:51 -04001944{
Chris Mason35ebb932007-10-30 16:56:53 -04001945 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -04001946 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05001947 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -04001948 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -05001949 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -04001950 int ret;
Chris Masonff79f812007-10-15 16:22:25 -04001951 struct btrfs_root *root = BTRFS_I(inode)->root;
1952 u32 csum = ~(u32)0;
Chris Masond1310b22008-01-24 16:13:08 -05001953
Chris Masond20f7042008-12-08 16:58:54 -05001954 if (PageChecked(page)) {
1955 ClearPageChecked(page);
1956 goto good;
1957 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001958
1959 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Chris Masonb6cda9b2007-12-14 15:30:32 -05001960 return 0;
Chris Masond20f7042008-12-08 16:58:54 -05001961
Yan Zheng17d217f2008-12-12 10:03:38 -05001962 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04001963 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001964 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM,
1965 GFP_NOFS);
1966 return 0;
1967 }
1968
Yanc2e639f2008-02-04 08:57:25 -05001969 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -05001970 private = state->private;
1971 ret = 0;
1972 } else {
1973 ret = get_state_private(io_tree, start, &private);
1974 }
Chris Mason9ab86c82009-01-07 09:48:51 -05001975 kaddr = kmap_atomic(page, KM_USER0);
Chris Masond3977122009-01-05 21:25:51 -05001976 if (ret)
Chris Mason07157aa2007-08-30 08:50:51 -04001977 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05001978
Chris Masonff79f812007-10-15 16:22:25 -04001979 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
1980 btrfs_csum_final(csum, (char *)&csum);
Chris Masond3977122009-01-05 21:25:51 -05001981 if (csum != private)
Chris Mason07157aa2007-08-30 08:50:51 -04001982 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05001983
Chris Mason9ab86c82009-01-07 09:48:51 -05001984 kunmap_atomic(kaddr, KM_USER0);
Chris Masond20f7042008-12-08 16:58:54 -05001985good:
Chris Mason7e383262008-04-09 16:28:12 -04001986 /* if the io failure tree for this inode is non-empty,
1987 * check to see if we've recovered from a failed IO
1988 */
Chris Mason1259ab72008-05-12 13:39:03 -04001989 btrfs_clean_io_failures(inode, start);
Chris Mason07157aa2007-08-30 08:50:51 -04001990 return 0;
1991
1992zeroit:
Chris Mason193f2842009-04-27 07:29:05 -04001993 if (printk_ratelimit()) {
1994 printk(KERN_INFO "btrfs csum failed ino %lu off %llu csum %u "
1995 "private %llu\n", page->mapping->host->i_ino,
1996 (unsigned long long)start, csum,
1997 (unsigned long long)private);
1998 }
Chris Masondb945352007-10-15 16:15:53 -04001999 memset(kaddr + offset, 1, end - start + 1);
2000 flush_dcache_page(page);
Chris Mason9ab86c82009-01-07 09:48:51 -05002001 kunmap_atomic(kaddr, KM_USER0);
Chris Mason3b951512008-04-17 11:29:12 -04002002 if (private == 0)
2003 return 0;
Chris Mason7e383262008-04-09 16:28:12 -04002004 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -04002005}
Chris Masonb888db22007-08-27 16:49:44 -04002006
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002007struct delayed_iput {
2008 struct list_head list;
2009 struct inode *inode;
2010};
2011
2012void btrfs_add_delayed_iput(struct inode *inode)
2013{
2014 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2015 struct delayed_iput *delayed;
2016
2017 if (atomic_add_unless(&inode->i_count, -1, 1))
2018 return;
2019
2020 delayed = kmalloc(sizeof(*delayed), GFP_NOFS | __GFP_NOFAIL);
2021 delayed->inode = inode;
2022
2023 spin_lock(&fs_info->delayed_iput_lock);
2024 list_add_tail(&delayed->list, &fs_info->delayed_iputs);
2025 spin_unlock(&fs_info->delayed_iput_lock);
2026}
2027
2028void btrfs_run_delayed_iputs(struct btrfs_root *root)
2029{
2030 LIST_HEAD(list);
2031 struct btrfs_fs_info *fs_info = root->fs_info;
2032 struct delayed_iput *delayed;
2033 int empty;
2034
2035 spin_lock(&fs_info->delayed_iput_lock);
2036 empty = list_empty(&fs_info->delayed_iputs);
2037 spin_unlock(&fs_info->delayed_iput_lock);
2038 if (empty)
2039 return;
2040
2041 down_read(&root->fs_info->cleanup_work_sem);
2042 spin_lock(&fs_info->delayed_iput_lock);
2043 list_splice_init(&fs_info->delayed_iputs, &list);
2044 spin_unlock(&fs_info->delayed_iput_lock);
2045
2046 while (!list_empty(&list)) {
2047 delayed = list_entry(list.next, struct delayed_iput, list);
2048 list_del(&delayed->list);
2049 iput(delayed->inode);
2050 kfree(delayed);
2051 }
2052 up_read(&root->fs_info->cleanup_work_sem);
2053}
2054
Josef Bacik7b128762008-07-24 12:17:14 -04002055/*
Yan, Zhengd68fc572010-05-16 10:49:58 -04002056 * calculate extra metadata reservation when snapshotting a subvolume
2057 * contains orphan files.
2058 */
2059void btrfs_orphan_pre_snapshot(struct btrfs_trans_handle *trans,
2060 struct btrfs_pending_snapshot *pending,
2061 u64 *bytes_to_reserve)
2062{
2063 struct btrfs_root *root;
2064 struct btrfs_block_rsv *block_rsv;
2065 u64 num_bytes;
2066 int index;
2067
2068 root = pending->root;
2069 if (!root->orphan_block_rsv || list_empty(&root->orphan_list))
2070 return;
2071
2072 block_rsv = root->orphan_block_rsv;
2073
2074 /* orphan block reservation for the snapshot */
2075 num_bytes = block_rsv->size;
2076
2077 /*
2078 * after the snapshot is created, COWing tree blocks may use more
2079 * space than it frees. So we should make sure there is enough
2080 * reserved space.
2081 */
2082 index = trans->transid & 0x1;
2083 if (block_rsv->reserved + block_rsv->freed[index] < block_rsv->size) {
2084 num_bytes += block_rsv->size -
2085 (block_rsv->reserved + block_rsv->freed[index]);
2086 }
2087
2088 *bytes_to_reserve += num_bytes;
2089}
2090
2091void btrfs_orphan_post_snapshot(struct btrfs_trans_handle *trans,
2092 struct btrfs_pending_snapshot *pending)
2093{
2094 struct btrfs_root *root = pending->root;
2095 struct btrfs_root *snap = pending->snap;
2096 struct btrfs_block_rsv *block_rsv;
2097 u64 num_bytes;
2098 int index;
2099 int ret;
2100
2101 if (!root->orphan_block_rsv || list_empty(&root->orphan_list))
2102 return;
2103
2104 /* refill source subvolume's orphan block reservation */
2105 block_rsv = root->orphan_block_rsv;
2106 index = trans->transid & 0x1;
2107 if (block_rsv->reserved + block_rsv->freed[index] < block_rsv->size) {
2108 num_bytes = block_rsv->size -
2109 (block_rsv->reserved + block_rsv->freed[index]);
2110 ret = btrfs_block_rsv_migrate(&pending->block_rsv,
2111 root->orphan_block_rsv,
2112 num_bytes);
2113 BUG_ON(ret);
2114 }
2115
2116 /* setup orphan block reservation for the snapshot */
2117 block_rsv = btrfs_alloc_block_rsv(snap);
2118 BUG_ON(!block_rsv);
2119
2120 btrfs_add_durable_block_rsv(root->fs_info, block_rsv);
2121 snap->orphan_block_rsv = block_rsv;
2122
2123 num_bytes = root->orphan_block_rsv->size;
2124 ret = btrfs_block_rsv_migrate(&pending->block_rsv,
2125 block_rsv, num_bytes);
2126 BUG_ON(ret);
2127
2128#if 0
2129 /* insert orphan item for the snapshot */
2130 WARN_ON(!root->orphan_item_inserted);
2131 ret = btrfs_insert_orphan_item(trans, root->fs_info->tree_root,
2132 snap->root_key.objectid);
2133 BUG_ON(ret);
2134 snap->orphan_item_inserted = 1;
2135#endif
2136}
2137
2138enum btrfs_orphan_cleanup_state {
2139 ORPHAN_CLEANUP_STARTED = 1,
2140 ORPHAN_CLEANUP_DONE = 2,
2141};
2142
2143/*
2144 * This is called in transaction commmit time. If there are no orphan
2145 * files in the subvolume, it removes orphan item and frees block_rsv
2146 * structure.
2147 */
2148void btrfs_orphan_commit_root(struct btrfs_trans_handle *trans,
2149 struct btrfs_root *root)
2150{
2151 int ret;
2152
2153 if (!list_empty(&root->orphan_list) ||
2154 root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE)
2155 return;
2156
2157 if (root->orphan_item_inserted &&
2158 btrfs_root_refs(&root->root_item) > 0) {
2159 ret = btrfs_del_orphan_item(trans, root->fs_info->tree_root,
2160 root->root_key.objectid);
2161 BUG_ON(ret);
2162 root->orphan_item_inserted = 0;
2163 }
2164
2165 if (root->orphan_block_rsv) {
2166 WARN_ON(root->orphan_block_rsv->size > 0);
2167 btrfs_free_block_rsv(root, root->orphan_block_rsv);
2168 root->orphan_block_rsv = NULL;
2169 }
2170}
2171
2172/*
Josef Bacik7b128762008-07-24 12:17:14 -04002173 * This creates an orphan entry for the given inode in case something goes
2174 * wrong in the middle of an unlink/truncate.
Yan, Zhengd68fc572010-05-16 10:49:58 -04002175 *
2176 * NOTE: caller of this function should reserve 5 units of metadata for
2177 * this function.
Josef Bacik7b128762008-07-24 12:17:14 -04002178 */
2179int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
2180{
2181 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002182 struct btrfs_block_rsv *block_rsv = NULL;
2183 int reserve = 0;
2184 int insert = 0;
2185 int ret;
Josef Bacik7b128762008-07-24 12:17:14 -04002186
Yan, Zhengd68fc572010-05-16 10:49:58 -04002187 if (!root->orphan_block_rsv) {
2188 block_rsv = btrfs_alloc_block_rsv(root);
2189 BUG_ON(!block_rsv);
Josef Bacik7b128762008-07-24 12:17:14 -04002190 }
2191
Yan, Zhengd68fc572010-05-16 10:49:58 -04002192 spin_lock(&root->orphan_lock);
2193 if (!root->orphan_block_rsv) {
2194 root->orphan_block_rsv = block_rsv;
2195 } else if (block_rsv) {
2196 btrfs_free_block_rsv(root, block_rsv);
2197 block_rsv = NULL;
2198 }
Josef Bacik7b128762008-07-24 12:17:14 -04002199
Yan, Zhengd68fc572010-05-16 10:49:58 -04002200 if (list_empty(&BTRFS_I(inode)->i_orphan)) {
2201 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
2202#if 0
2203 /*
2204 * For proper ENOSPC handling, we should do orphan
2205 * cleanup when mounting. But this introduces backward
2206 * compatibility issue.
2207 */
2208 if (!xchg(&root->orphan_item_inserted, 1))
2209 insert = 2;
2210 else
2211 insert = 1;
2212#endif
2213 insert = 1;
2214 } else {
2215 WARN_ON(!BTRFS_I(inode)->orphan_meta_reserved);
2216 }
Josef Bacik7b128762008-07-24 12:17:14 -04002217
Yan, Zhengd68fc572010-05-16 10:49:58 -04002218 if (!BTRFS_I(inode)->orphan_meta_reserved) {
2219 BTRFS_I(inode)->orphan_meta_reserved = 1;
2220 reserve = 1;
2221 }
2222 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002223
Yan, Zhengd68fc572010-05-16 10:49:58 -04002224 if (block_rsv)
2225 btrfs_add_durable_block_rsv(root->fs_info, block_rsv);
2226
2227 /* grab metadata reservation from transaction handle */
2228 if (reserve) {
2229 ret = btrfs_orphan_reserve_metadata(trans, inode);
2230 BUG_ON(ret);
2231 }
2232
2233 /* insert an orphan item to track this unlinked/truncated file */
2234 if (insert >= 1) {
2235 ret = btrfs_insert_orphan_item(trans, root, inode->i_ino);
2236 BUG_ON(ret);
2237 }
2238
2239 /* insert an orphan item to track subvolume contains orphan files */
2240 if (insert >= 2) {
2241 ret = btrfs_insert_orphan_item(trans, root->fs_info->tree_root,
2242 root->root_key.objectid);
2243 BUG_ON(ret);
2244 }
2245 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002246}
2247
2248/*
2249 * We have done the truncate/delete so we can go ahead and remove the orphan
2250 * item for this particular inode.
2251 */
2252int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode)
2253{
2254 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002255 int delete_item = 0;
2256 int release_rsv = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002257 int ret = 0;
2258
Yan, Zhengd68fc572010-05-16 10:49:58 -04002259 spin_lock(&root->orphan_lock);
2260 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
2261 list_del_init(&BTRFS_I(inode)->i_orphan);
2262 delete_item = 1;
Josef Bacik7b128762008-07-24 12:17:14 -04002263 }
2264
Yan, Zhengd68fc572010-05-16 10:49:58 -04002265 if (BTRFS_I(inode)->orphan_meta_reserved) {
2266 BTRFS_I(inode)->orphan_meta_reserved = 0;
2267 release_rsv = 1;
2268 }
2269 spin_unlock(&root->orphan_lock);
2270
2271 if (trans && delete_item) {
2272 ret = btrfs_del_orphan_item(trans, root, inode->i_ino);
2273 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04002274 }
2275
Yan, Zhengd68fc572010-05-16 10:49:58 -04002276 if (release_rsv)
2277 btrfs_orphan_release_metadata(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04002278
Yan, Zhengd68fc572010-05-16 10:49:58 -04002279 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002280}
2281
2282/*
2283 * this cleans up any orphans that may be left on the list from the last use
2284 * of this root.
2285 */
2286void btrfs_orphan_cleanup(struct btrfs_root *root)
2287{
2288 struct btrfs_path *path;
2289 struct extent_buffer *leaf;
Josef Bacik7b128762008-07-24 12:17:14 -04002290 struct btrfs_key key, found_key;
2291 struct btrfs_trans_handle *trans;
2292 struct inode *inode;
2293 int ret = 0, nr_unlink = 0, nr_truncate = 0;
2294
Yan, Zhengd68fc572010-05-16 10:49:58 -04002295 if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED))
Josef Bacik7b128762008-07-24 12:17:14 -04002296 return;
Yan, Zhengc71bf092009-11-12 09:34:40 +00002297
2298 path = btrfs_alloc_path();
2299 BUG_ON(!path);
Josef Bacik7b128762008-07-24 12:17:14 -04002300 path->reada = -1;
2301
2302 key.objectid = BTRFS_ORPHAN_OBJECTID;
2303 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
2304 key.offset = (u64)-1;
2305
Josef Bacik7b128762008-07-24 12:17:14 -04002306 while (1) {
2307 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2308 if (ret < 0) {
2309 printk(KERN_ERR "Error searching slot for orphan: %d"
2310 "\n", ret);
2311 break;
2312 }
2313
2314 /*
2315 * if ret == 0 means we found what we were searching for, which
2316 * is weird, but possible, so only screw with path if we didnt
2317 * find the key and see if we have stuff that matches
2318 */
2319 if (ret > 0) {
2320 if (path->slots[0] == 0)
2321 break;
2322 path->slots[0]--;
2323 }
2324
2325 /* pull out the item */
2326 leaf = path->nodes[0];
Josef Bacik7b128762008-07-24 12:17:14 -04002327 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2328
2329 /* make sure the item matches what we want */
2330 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
2331 break;
2332 if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY)
2333 break;
2334
2335 /* release the path since we're done with it */
2336 btrfs_release_path(root, path);
2337
2338 /*
2339 * this is where we are basically btrfs_lookup, without the
2340 * crossing root thing. we store the inode number in the
2341 * offset of the orphan item.
2342 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002343 found_key.objectid = found_key.offset;
2344 found_key.type = BTRFS_INODE_ITEM_KEY;
2345 found_key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +00002346 inode = btrfs_iget(root->fs_info->sb, &found_key, root, NULL);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002347 BUG_ON(IS_ERR(inode));
Josef Bacik7b128762008-07-24 12:17:14 -04002348
Josef Bacik7b128762008-07-24 12:17:14 -04002349 /*
2350 * add this inode to the orphan list so btrfs_orphan_del does
2351 * the proper thing when we hit it
2352 */
Yan, Zhengd68fc572010-05-16 10:49:58 -04002353 spin_lock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002354 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002355 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002356
2357 /*
2358 * if this is a bad inode, means we actually succeeded in
2359 * removing the inode, but not the orphan record, which means
2360 * we need to manually delete the orphan since iput will just
2361 * do a destroy_inode
2362 */
2363 if (is_bad_inode(inode)) {
Yan, Zhenga22285a2010-05-16 10:48:46 -04002364 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002365 BUG_ON(IS_ERR(trans));
Josef Bacik7b128762008-07-24 12:17:14 -04002366 btrfs_orphan_del(trans, inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002367 btrfs_end_transaction(trans, root);
Josef Bacik7b128762008-07-24 12:17:14 -04002368 iput(inode);
2369 continue;
2370 }
2371
2372 /* if we have links, this was a truncate, lets do that */
2373 if (inode->i_nlink) {
2374 nr_truncate++;
2375 btrfs_truncate(inode);
2376 } else {
2377 nr_unlink++;
2378 }
2379
2380 /* this will do delete_inode and everything for us */
2381 iput(inode);
2382 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002383 btrfs_free_path(path);
2384
2385 root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE;
2386
2387 if (root->orphan_block_rsv)
2388 btrfs_block_rsv_release(root, root->orphan_block_rsv,
2389 (u64)-1);
2390
2391 if (root->orphan_block_rsv || root->orphan_item_inserted) {
2392 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00002393 BUG_ON(IS_ERR(trans));
Yan, Zhengd68fc572010-05-16 10:49:58 -04002394 btrfs_end_transaction(trans, root);
2395 }
Josef Bacik7b128762008-07-24 12:17:14 -04002396
2397 if (nr_unlink)
2398 printk(KERN_INFO "btrfs: unlinked %d orphans\n", nr_unlink);
2399 if (nr_truncate)
2400 printk(KERN_INFO "btrfs: truncated %d orphans\n", nr_truncate);
Josef Bacik7b128762008-07-24 12:17:14 -04002401}
2402
Chris Masond352ac62008-09-29 15:18:18 -04002403/*
Chris Mason46a53cc2009-04-27 11:47:50 -04002404 * very simple check to peek ahead in the leaf looking for xattrs. If we
2405 * don't find any xattrs, we know there can't be any acls.
2406 *
2407 * slot is the slot the inode is in, objectid is the objectid of the inode
2408 */
2409static noinline int acls_after_inode_item(struct extent_buffer *leaf,
2410 int slot, u64 objectid)
2411{
2412 u32 nritems = btrfs_header_nritems(leaf);
2413 struct btrfs_key found_key;
2414 int scanned = 0;
2415
2416 slot++;
2417 while (slot < nritems) {
2418 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2419
2420 /* we found a different objectid, there must not be acls */
2421 if (found_key.objectid != objectid)
2422 return 0;
2423
2424 /* we found an xattr, assume we've got an acl */
2425 if (found_key.type == BTRFS_XATTR_ITEM_KEY)
2426 return 1;
2427
2428 /*
2429 * we found a key greater than an xattr key, there can't
2430 * be any acls later on
2431 */
2432 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
2433 return 0;
2434
2435 slot++;
2436 scanned++;
2437
2438 /*
2439 * it goes inode, inode backrefs, xattrs, extents,
2440 * so if there are a ton of hard links to an inode there can
2441 * be a lot of backrefs. Don't waste time searching too hard,
2442 * this is just an optimization
2443 */
2444 if (scanned >= 8)
2445 break;
2446 }
2447 /* we hit the end of the leaf before we found an xattr or
2448 * something larger than an xattr. We have to assume the inode
2449 * has acls
2450 */
2451 return 1;
2452}
2453
2454/*
Chris Masond352ac62008-09-29 15:18:18 -04002455 * read an inode from the btree into the in-memory inode
2456 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002457static void btrfs_read_locked_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002458{
2459 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002460 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002461 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -04002462 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -04002463 struct btrfs_root *root = BTRFS_I(inode)->root;
2464 struct btrfs_key location;
Chris Mason46a53cc2009-04-27 11:47:50 -04002465 int maybe_acls;
Chris Mason39279cc2007-06-12 06:35:45 -04002466 u64 alloc_group_block;
Josef Bacik618e21d2007-07-11 10:18:17 -04002467 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04002468 int ret;
2469
2470 path = btrfs_alloc_path();
2471 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -04002472 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05002473
Chris Mason39279cc2007-06-12 06:35:45 -04002474 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002475 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04002476 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -04002477
Chris Mason5f39d392007-10-15 16:14:19 -04002478 leaf = path->nodes[0];
2479 inode_item = btrfs_item_ptr(leaf, path->slots[0],
2480 struct btrfs_inode_item);
2481
2482 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
2483 inode->i_nlink = btrfs_inode_nlink(leaf, inode_item);
2484 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
2485 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
Chris Masondbe674a2008-07-17 12:54:05 -04002486 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002487
2488 tspec = btrfs_inode_atime(inode_item);
2489 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2490 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2491
2492 tspec = btrfs_inode_mtime(inode_item);
2493 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2494 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2495
2496 tspec = btrfs_inode_ctime(inode_item);
2497 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2498 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2499
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002500 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04002501 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Chris Masonc3027eb2008-12-08 16:40:21 -05002502 BTRFS_I(inode)->sequence = btrfs_inode_sequence(leaf, inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04002503 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04002504 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002505 rdev = btrfs_inode_rdev(leaf, inode_item);
2506
Josef Bacikaec74772008-07-24 12:12:38 -04002507 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05002508 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Josef Bacikaec74772008-07-24 12:12:38 -04002509
Chris Mason5f39d392007-10-15 16:14:19 -04002510 alloc_group_block = btrfs_inode_block_group(leaf, inode_item);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002511
Chris Mason46a53cc2009-04-27 11:47:50 -04002512 /*
2513 * try to precache a NULL acl entry for files that don't have
2514 * any xattrs or acls
2515 */
2516 maybe_acls = acls_after_inode_item(leaf, path->slots[0], inode->i_ino);
Al Viro72c04902009-06-24 16:58:48 -04002517 if (!maybe_acls)
2518 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04002519
Yan Zhengd2fb3432008-12-11 16:30:39 -05002520 BTRFS_I(inode)->block_group = btrfs_find_block_group(root, 0,
2521 alloc_group_block, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002522 btrfs_free_path(path);
2523 inode_item = NULL;
2524
Chris Mason39279cc2007-06-12 06:35:45 -04002525 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04002526 case S_IFREG:
2527 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04002528 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05002529 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04002530 inode->i_fop = &btrfs_file_operations;
2531 inode->i_op = &btrfs_file_inode_operations;
2532 break;
2533 case S_IFDIR:
2534 inode->i_fop = &btrfs_dir_file_operations;
2535 if (root == root->fs_info->tree_root)
2536 inode->i_op = &btrfs_dir_ro_inode_operations;
2537 else
2538 inode->i_op = &btrfs_dir_inode_operations;
2539 break;
2540 case S_IFLNK:
2541 inode->i_op = &btrfs_symlink_inode_operations;
2542 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04002543 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04002544 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04002545 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05002546 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04002547 init_special_inode(inode, inode->i_mode, rdev);
2548 break;
Chris Mason39279cc2007-06-12 06:35:45 -04002549 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002550
2551 btrfs_update_iflags(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002552 return;
2553
2554make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04002555 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002556 make_bad_inode(inode);
2557}
2558
Chris Masond352ac62008-09-29 15:18:18 -04002559/*
2560 * given a leaf and an inode, copy the inode fields into the leaf
2561 */
Chris Masone02119d2008-09-05 16:13:11 -04002562static void fill_inode_item(struct btrfs_trans_handle *trans,
2563 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04002564 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04002565 struct inode *inode)
2566{
Chris Mason5f39d392007-10-15 16:14:19 -04002567 btrfs_set_inode_uid(leaf, item, inode->i_uid);
2568 btrfs_set_inode_gid(leaf, item, inode->i_gid);
Chris Masondbe674a2008-07-17 12:54:05 -04002569 btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size);
Chris Mason5f39d392007-10-15 16:14:19 -04002570 btrfs_set_inode_mode(leaf, item, inode->i_mode);
2571 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
2572
2573 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
2574 inode->i_atime.tv_sec);
2575 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
2576 inode->i_atime.tv_nsec);
2577
2578 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
2579 inode->i_mtime.tv_sec);
2580 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
2581 inode->i_mtime.tv_nsec);
2582
2583 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
2584 inode->i_ctime.tv_sec);
2585 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
2586 inode->i_ctime.tv_nsec);
2587
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002588 btrfs_set_inode_nbytes(leaf, item, inode_get_bytes(inode));
Chris Masone02119d2008-09-05 16:13:11 -04002589 btrfs_set_inode_generation(leaf, item, BTRFS_I(inode)->generation);
Chris Masonc3027eb2008-12-08 16:40:21 -05002590 btrfs_set_inode_sequence(leaf, item, BTRFS_I(inode)->sequence);
Chris Masone02119d2008-09-05 16:13:11 -04002591 btrfs_set_inode_transid(leaf, item, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002592 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -05002593 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Yan Zhengd2fb3432008-12-11 16:30:39 -05002594 btrfs_set_inode_block_group(leaf, item, BTRFS_I(inode)->block_group);
Chris Mason39279cc2007-06-12 06:35:45 -04002595}
2596
Chris Masond352ac62008-09-29 15:18:18 -04002597/*
2598 * copy everything in the in-memory inode into the btree.
2599 */
Chris Masond3977122009-01-05 21:25:51 -05002600noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
2601 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002602{
2603 struct btrfs_inode_item *inode_item;
2604 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002605 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002606 int ret;
2607
2608 path = btrfs_alloc_path();
2609 BUG_ON(!path);
Chris Masonb9473432009-03-13 11:00:37 -04002610 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002611 ret = btrfs_lookup_inode(trans, root, path,
2612 &BTRFS_I(inode)->location, 1);
2613 if (ret) {
2614 if (ret > 0)
2615 ret = -ENOENT;
2616 goto failed;
2617 }
2618
Chris Masonb4ce94d2009-02-04 09:25:08 -05002619 btrfs_unlock_up_safe(path, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002620 leaf = path->nodes[0];
2621 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04002622 struct btrfs_inode_item);
2623
Chris Masone02119d2008-09-05 16:13:11 -04002624 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002625 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002626 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002627 ret = 0;
2628failed:
Chris Mason39279cc2007-06-12 06:35:45 -04002629 btrfs_free_path(path);
2630 return ret;
2631}
2632
2633
Chris Masond352ac62008-09-29 15:18:18 -04002634/*
2635 * unlink helper that gets used here in inode.c and in the tree logging
2636 * recovery code. It remove a link in a directory with a given name, and
2637 * also drops the back refs in the inode to the directory
2638 */
Chris Masone02119d2008-09-05 16:13:11 -04002639int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2640 struct btrfs_root *root,
2641 struct inode *dir, struct inode *inode,
2642 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04002643{
2644 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04002645 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002646 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002647 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04002648 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04002649 u64 index;
Chris Mason39279cc2007-06-12 06:35:45 -04002650
2651 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002652 if (!path) {
2653 ret = -ENOMEM;
Tsutomu Itoh554233a2011-02-03 03:16:25 +00002654 goto out;
Chris Mason54aa1f42007-06-22 14:16:25 -04002655 }
2656
Chris Masonb9473432009-03-13 11:00:37 -04002657 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002658 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
2659 name, name_len, -1);
2660 if (IS_ERR(di)) {
2661 ret = PTR_ERR(di);
2662 goto err;
2663 }
2664 if (!di) {
2665 ret = -ENOENT;
2666 goto err;
2667 }
Chris Mason5f39d392007-10-15 16:14:19 -04002668 leaf = path->nodes[0];
2669 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04002670 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04002671 if (ret)
2672 goto err;
Chris Mason39279cc2007-06-12 06:35:45 -04002673 btrfs_release_path(root, path);
2674
Josef Bacikaec74772008-07-24 12:12:38 -04002675 ret = btrfs_del_inode_ref(trans, root, name, name_len,
Chris Masone02119d2008-09-05 16:13:11 -04002676 inode->i_ino,
2677 dir->i_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04002678 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05002679 printk(KERN_INFO "btrfs failed to delete reference to %.*s, "
Josef Bacikaec74772008-07-24 12:12:38 -04002680 "inode %lu parent %lu\n", name_len, name,
Chris Masone02119d2008-09-05 16:13:11 -04002681 inode->i_ino, dir->i_ino);
Josef Bacikaec74772008-07-24 12:12:38 -04002682 goto err;
2683 }
2684
Chris Mason39279cc2007-06-12 06:35:45 -04002685 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
Josef Bacikaec74772008-07-24 12:12:38 -04002686 index, name, name_len, -1);
Chris Mason39279cc2007-06-12 06:35:45 -04002687 if (IS_ERR(di)) {
2688 ret = PTR_ERR(di);
2689 goto err;
2690 }
2691 if (!di) {
2692 ret = -ENOENT;
2693 goto err;
2694 }
2695 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason925baed2008-06-25 16:01:30 -04002696 btrfs_release_path(root, path);
Chris Mason39279cc2007-06-12 06:35:45 -04002697
Chris Masone02119d2008-09-05 16:13:11 -04002698 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
2699 inode, dir->i_ino);
Chris Mason49eb7e42008-09-11 15:53:12 -04002700 BUG_ON(ret != 0 && ret != -ENOENT);
Chris Masone02119d2008-09-05 16:13:11 -04002701
2702 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
2703 dir, index);
Chris Mason6418c962010-10-30 07:34:24 -04002704 if (ret == -ENOENT)
2705 ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002706err:
2707 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002708 if (ret)
2709 goto out;
2710
2711 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
2712 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
2713 btrfs_update_inode(trans, root, dir);
2714 btrfs_drop_nlink(inode);
2715 ret = btrfs_update_inode(trans, root, inode);
Chris Masone02119d2008-09-05 16:13:11 -04002716out:
Chris Mason39279cc2007-06-12 06:35:45 -04002717 return ret;
2718}
2719
Yan, Zhenga22285a2010-05-16 10:48:46 -04002720/* helper to check if there is any shared block in the path */
2721static int check_path_shared(struct btrfs_root *root,
2722 struct btrfs_path *path)
2723{
2724 struct extent_buffer *eb;
2725 int level;
Dan Carpenter0e4dcbef2010-06-01 08:23:11 +00002726 u64 refs = 1;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002727
2728 for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
Josef Bacikdedefd72011-01-24 21:43:18 +00002729 int ret;
2730
Yan, Zhenga22285a2010-05-16 10:48:46 -04002731 if (!path->nodes[level])
2732 break;
2733 eb = path->nodes[level];
2734 if (!btrfs_block_can_be_shared(root, eb))
2735 continue;
2736 ret = btrfs_lookup_extent_info(NULL, root, eb->start, eb->len,
2737 &refs, NULL);
2738 if (refs > 1)
2739 return 1;
2740 }
Josef Bacikdedefd72011-01-24 21:43:18 +00002741 return 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002742}
2743
2744/*
2745 * helper to start transaction for unlink and rmdir.
2746 *
2747 * unlink and rmdir are special in btrfs, they do not always free space.
2748 * so in enospc case, we should make sure they will free space before
2749 * allowing them to use the global metadata reservation.
2750 */
2751static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir,
2752 struct dentry *dentry)
2753{
2754 struct btrfs_trans_handle *trans;
2755 struct btrfs_root *root = BTRFS_I(dir)->root;
2756 struct btrfs_path *path;
2757 struct btrfs_inode_ref *ref;
2758 struct btrfs_dir_item *di;
2759 struct inode *inode = dentry->d_inode;
2760 u64 index;
2761 int check_link = 1;
2762 int err = -ENOSPC;
2763 int ret;
2764
2765 trans = btrfs_start_transaction(root, 10);
2766 if (!IS_ERR(trans) || PTR_ERR(trans) != -ENOSPC)
2767 return trans;
2768
2769 if (inode->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
2770 return ERR_PTR(-ENOSPC);
2771
2772 /* check if there is someone else holds reference */
2773 if (S_ISDIR(inode->i_mode) && atomic_read(&inode->i_count) > 1)
2774 return ERR_PTR(-ENOSPC);
2775
2776 if (atomic_read(&inode->i_count) > 2)
2777 return ERR_PTR(-ENOSPC);
2778
2779 if (xchg(&root->fs_info->enospc_unlink, 1))
2780 return ERR_PTR(-ENOSPC);
2781
2782 path = btrfs_alloc_path();
2783 if (!path) {
2784 root->fs_info->enospc_unlink = 0;
2785 return ERR_PTR(-ENOMEM);
2786 }
2787
2788 trans = btrfs_start_transaction(root, 0);
2789 if (IS_ERR(trans)) {
2790 btrfs_free_path(path);
2791 root->fs_info->enospc_unlink = 0;
2792 return trans;
2793 }
2794
2795 path->skip_locking = 1;
2796 path->search_commit_root = 1;
2797
2798 ret = btrfs_lookup_inode(trans, root, path,
2799 &BTRFS_I(dir)->location, 0);
2800 if (ret < 0) {
2801 err = ret;
2802 goto out;
2803 }
2804 if (ret == 0) {
2805 if (check_path_shared(root, path))
2806 goto out;
2807 } else {
2808 check_link = 0;
2809 }
2810 btrfs_release_path(root, path);
2811
2812 ret = btrfs_lookup_inode(trans, root, path,
2813 &BTRFS_I(inode)->location, 0);
2814 if (ret < 0) {
2815 err = ret;
2816 goto out;
2817 }
2818 if (ret == 0) {
2819 if (check_path_shared(root, path))
2820 goto out;
2821 } else {
2822 check_link = 0;
2823 }
2824 btrfs_release_path(root, path);
2825
2826 if (ret == 0 && S_ISREG(inode->i_mode)) {
2827 ret = btrfs_lookup_file_extent(trans, root, path,
2828 inode->i_ino, (u64)-1, 0);
2829 if (ret < 0) {
2830 err = ret;
2831 goto out;
2832 }
2833 BUG_ON(ret == 0);
2834 if (check_path_shared(root, path))
2835 goto out;
2836 btrfs_release_path(root, path);
2837 }
2838
2839 if (!check_link) {
2840 err = 0;
2841 goto out;
2842 }
2843
2844 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
2845 dentry->d_name.name, dentry->d_name.len, 0);
2846 if (IS_ERR(di)) {
2847 err = PTR_ERR(di);
2848 goto out;
2849 }
2850 if (di) {
2851 if (check_path_shared(root, path))
2852 goto out;
2853 } else {
2854 err = 0;
2855 goto out;
2856 }
2857 btrfs_release_path(root, path);
2858
2859 ref = btrfs_lookup_inode_ref(trans, root, path,
2860 dentry->d_name.name, dentry->d_name.len,
2861 inode->i_ino, dir->i_ino, 0);
2862 if (IS_ERR(ref)) {
2863 err = PTR_ERR(ref);
2864 goto out;
2865 }
2866 BUG_ON(!ref);
2867 if (check_path_shared(root, path))
2868 goto out;
2869 index = btrfs_inode_ref_index(path->nodes[0], ref);
2870 btrfs_release_path(root, path);
2871
2872 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino, index,
2873 dentry->d_name.name, dentry->d_name.len, 0);
2874 if (IS_ERR(di)) {
2875 err = PTR_ERR(di);
2876 goto out;
2877 }
2878 BUG_ON(ret == -ENOENT);
2879 if (check_path_shared(root, path))
2880 goto out;
2881
2882 err = 0;
2883out:
2884 btrfs_free_path(path);
2885 if (err) {
2886 btrfs_end_transaction(trans, root);
2887 root->fs_info->enospc_unlink = 0;
2888 return ERR_PTR(err);
2889 }
2890
2891 trans->block_rsv = &root->fs_info->global_block_rsv;
2892 return trans;
2893}
2894
2895static void __unlink_end_trans(struct btrfs_trans_handle *trans,
2896 struct btrfs_root *root)
2897{
2898 if (trans->block_rsv == &root->fs_info->global_block_rsv) {
2899 BUG_ON(!root->fs_info->enospc_unlink);
2900 root->fs_info->enospc_unlink = 0;
2901 }
2902 btrfs_end_transaction_throttle(trans, root);
2903}
2904
Chris Mason39279cc2007-06-12 06:35:45 -04002905static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
2906{
Yan, Zhenga22285a2010-05-16 10:48:46 -04002907 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002908 struct btrfs_trans_handle *trans;
Josef Bacik7b128762008-07-24 12:17:14 -04002909 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002910 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05002911 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002912
Yan, Zhenga22285a2010-05-16 10:48:46 -04002913 trans = __unlink_start_trans(dir, dentry);
2914 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002915 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04002916
Chris Mason39279cc2007-06-12 06:35:45 -04002917 btrfs_set_trans_block_group(trans, dir);
Chris Mason12fcfd22009-03-24 10:24:20 -04002918
2919 btrfs_record_unlink_dir(trans, dir, dentry->d_inode, 0);
2920
Chris Masone02119d2008-09-05 16:13:11 -04002921 ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
2922 dentry->d_name.name, dentry->d_name.len);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002923 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04002924
Yan, Zhenga22285a2010-05-16 10:48:46 -04002925 if (inode->i_nlink == 0) {
Josef Bacik7b128762008-07-24 12:17:14 -04002926 ret = btrfs_orphan_add(trans, inode);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002927 BUG_ON(ret);
2928 }
Josef Bacik7b128762008-07-24 12:17:14 -04002929
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002930 nr = trans->blocks_used;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002931 __unlink_end_trans(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002932 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002933 return ret;
2934}
2935
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002936int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
2937 struct btrfs_root *root,
2938 struct inode *dir, u64 objectid,
2939 const char *name, int name_len)
2940{
2941 struct btrfs_path *path;
2942 struct extent_buffer *leaf;
2943 struct btrfs_dir_item *di;
2944 struct btrfs_key key;
2945 u64 index;
2946 int ret;
2947
2948 path = btrfs_alloc_path();
2949 if (!path)
2950 return -ENOMEM;
2951
2952 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
2953 name, name_len, -1);
2954 BUG_ON(!di || IS_ERR(di));
2955
2956 leaf = path->nodes[0];
2957 btrfs_dir_item_key_to_cpu(leaf, di, &key);
2958 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
2959 ret = btrfs_delete_one_dir_name(trans, root, path, di);
2960 BUG_ON(ret);
2961 btrfs_release_path(root, path);
2962
2963 ret = btrfs_del_root_ref(trans, root->fs_info->tree_root,
2964 objectid, root->root_key.objectid,
2965 dir->i_ino, &index, name, name_len);
2966 if (ret < 0) {
2967 BUG_ON(ret != -ENOENT);
2968 di = btrfs_search_dir_index_item(root, path, dir->i_ino,
2969 name, name_len);
2970 BUG_ON(!di || IS_ERR(di));
2971
2972 leaf = path->nodes[0];
2973 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2974 btrfs_release_path(root, path);
2975 index = key.offset;
2976 }
2977
2978 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
2979 index, name, name_len, -1);
2980 BUG_ON(!di || IS_ERR(di));
2981
2982 leaf = path->nodes[0];
2983 btrfs_dir_item_key_to_cpu(leaf, di, &key);
2984 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
2985 ret = btrfs_delete_one_dir_name(trans, root, path, di);
2986 BUG_ON(ret);
2987 btrfs_release_path(root, path);
2988
2989 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
2990 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
2991 ret = btrfs_update_inode(trans, root, dir);
2992 BUG_ON(ret);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002993
2994 btrfs_free_path(path);
2995 return 0;
2996}
2997
Chris Mason39279cc2007-06-12 06:35:45 -04002998static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
2999{
3000 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05003001 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003002 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003003 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -05003004 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003005
Chris Mason3394e162008-11-17 20:42:26 -05003006 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003007 inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan134d4512007-10-25 15:49:25 -04003008 return -ENOTEMPTY;
3009
Yan, Zhenga22285a2010-05-16 10:48:46 -04003010 trans = __unlink_start_trans(dir, dentry);
3011 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003012 return PTR_ERR(trans);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003013
Chris Mason39279cc2007-06-12 06:35:45 -04003014 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -04003015
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003016 if (unlikely(inode->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
3017 err = btrfs_unlink_subvol(trans, root, dir,
3018 BTRFS_I(inode)->location.objectid,
3019 dentry->d_name.name,
3020 dentry->d_name.len);
3021 goto out;
3022 }
3023
Josef Bacik7b128762008-07-24 12:17:14 -04003024 err = btrfs_orphan_add(trans, inode);
3025 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003026 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003027
Chris Mason39279cc2007-06-12 06:35:45 -04003028 /* now the directory is empty */
Chris Masone02119d2008-09-05 16:13:11 -04003029 err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
3030 dentry->d_name.name, dentry->d_name.len);
Chris Masond3977122009-01-05 21:25:51 -05003031 if (!err)
Chris Masondbe674a2008-07-17 12:54:05 -04003032 btrfs_i_size_write(inode, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003033out:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003034 nr = trans->blocks_used;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003035 __unlink_end_trans(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003036 btrfs_btree_balance_dirty(root, nr);
Chris Mason39544012007-12-12 14:38:19 -05003037
Chris Mason39279cc2007-06-12 06:35:45 -04003038 return err;
3039}
3040
Chris Masond20f7042008-12-08 16:58:54 -05003041#if 0
Chris Mason39279cc2007-06-12 06:35:45 -04003042/*
Chris Mason323ac952008-10-01 19:05:46 -04003043 * when truncating bytes in a file, it is possible to avoid reading
3044 * the leaves that contain only checksum items. This can be the
3045 * majority of the IO required to delete a large file, but it must
3046 * be done carefully.
3047 *
3048 * The keys in the level just above the leaves are checked to make sure
3049 * the lowest key in a given leaf is a csum key, and starts at an offset
3050 * after the new size.
3051 *
3052 * Then the key for the next leaf is checked to make sure it also has
3053 * a checksum item for the same file. If it does, we know our target leaf
3054 * contains only checksum items, and it can be safely freed without reading
3055 * it.
3056 *
3057 * This is just an optimization targeted at large files. It may do
3058 * nothing. It will return 0 unless things went badly.
3059 */
3060static noinline int drop_csum_leaves(struct btrfs_trans_handle *trans,
3061 struct btrfs_root *root,
3062 struct btrfs_path *path,
3063 struct inode *inode, u64 new_size)
3064{
3065 struct btrfs_key key;
3066 int ret;
3067 int nritems;
3068 struct btrfs_key found_key;
3069 struct btrfs_key other_key;
Yan Zheng5b84e8d2008-10-09 11:46:19 -04003070 struct btrfs_leaf_ref *ref;
3071 u64 leaf_gen;
3072 u64 leaf_start;
Chris Mason323ac952008-10-01 19:05:46 -04003073
3074 path->lowest_level = 1;
3075 key.objectid = inode->i_ino;
3076 key.type = BTRFS_CSUM_ITEM_KEY;
3077 key.offset = new_size;
3078again:
3079 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
3080 if (ret < 0)
3081 goto out;
3082
3083 if (path->nodes[1] == NULL) {
3084 ret = 0;
3085 goto out;
3086 }
3087 ret = 0;
3088 btrfs_node_key_to_cpu(path->nodes[1], &found_key, path->slots[1]);
3089 nritems = btrfs_header_nritems(path->nodes[1]);
3090
3091 if (!nritems)
3092 goto out;
3093
3094 if (path->slots[1] >= nritems)
3095 goto next_node;
3096
3097 /* did we find a key greater than anything we want to delete? */
3098 if (found_key.objectid > inode->i_ino ||
3099 (found_key.objectid == inode->i_ino && found_key.type > key.type))
3100 goto out;
3101
3102 /* we check the next key in the node to make sure the leave contains
3103 * only checksum items. This comparison doesn't work if our
3104 * leaf is the last one in the node
3105 */
3106 if (path->slots[1] + 1 >= nritems) {
3107next_node:
3108 /* search forward from the last key in the node, this
3109 * will bring us into the next node in the tree
3110 */
3111 btrfs_node_key_to_cpu(path->nodes[1], &found_key, nritems - 1);
3112
3113 /* unlikely, but we inc below, so check to be safe */
3114 if (found_key.offset == (u64)-1)
3115 goto out;
3116
3117 /* search_forward needs a path with locks held, do the
3118 * search again for the original key. It is possible
3119 * this will race with a balance and return a path that
3120 * we could modify, but this drop is just an optimization
3121 * and is allowed to miss some leaves.
3122 */
3123 btrfs_release_path(root, path);
3124 found_key.offset++;
3125
3126 /* setup a max key for search_forward */
3127 other_key.offset = (u64)-1;
3128 other_key.type = key.type;
3129 other_key.objectid = key.objectid;
3130
3131 path->keep_locks = 1;
3132 ret = btrfs_search_forward(root, &found_key, &other_key,
3133 path, 0, 0);
3134 path->keep_locks = 0;
3135 if (ret || found_key.objectid != key.objectid ||
3136 found_key.type != key.type) {
3137 ret = 0;
3138 goto out;
3139 }
3140
3141 key.offset = found_key.offset;
3142 btrfs_release_path(root, path);
3143 cond_resched();
3144 goto again;
3145 }
3146
3147 /* we know there's one more slot after us in the tree,
3148 * read that key so we can verify it is also a checksum item
3149 */
3150 btrfs_node_key_to_cpu(path->nodes[1], &other_key, path->slots[1] + 1);
3151
3152 if (found_key.objectid < inode->i_ino)
3153 goto next_key;
3154
3155 if (found_key.type != key.type || found_key.offset < new_size)
3156 goto next_key;
3157
3158 /*
3159 * if the key for the next leaf isn't a csum key from this objectid,
3160 * we can't be sure there aren't good items inside this leaf.
3161 * Bail out
3162 */
3163 if (other_key.objectid != inode->i_ino || other_key.type != key.type)
3164 goto out;
3165
Yan Zheng5b84e8d2008-10-09 11:46:19 -04003166 leaf_start = btrfs_node_blockptr(path->nodes[1], path->slots[1]);
3167 leaf_gen = btrfs_node_ptr_generation(path->nodes[1], path->slots[1]);
Chris Mason323ac952008-10-01 19:05:46 -04003168 /*
3169 * it is safe to delete this leaf, it contains only
3170 * csum items from this inode at an offset >= new_size
3171 */
Yan Zheng5b84e8d2008-10-09 11:46:19 -04003172 ret = btrfs_del_leaf(trans, root, path, leaf_start);
Chris Mason323ac952008-10-01 19:05:46 -04003173 BUG_ON(ret);
3174
Yan Zheng5b84e8d2008-10-09 11:46:19 -04003175 if (root->ref_cows && leaf_gen < trans->transid) {
3176 ref = btrfs_alloc_leaf_ref(root, 0);
3177 if (ref) {
3178 ref->root_gen = root->root_key.offset;
3179 ref->bytenr = leaf_start;
3180 ref->owner = 0;
3181 ref->generation = leaf_gen;
3182 ref->nritems = 0;
3183
Chris Masonbd56b302009-02-04 09:27:02 -05003184 btrfs_sort_leaf_ref(ref);
3185
Yan Zheng5b84e8d2008-10-09 11:46:19 -04003186 ret = btrfs_add_leaf_ref(root, ref, 0);
3187 WARN_ON(ret);
3188 btrfs_free_leaf_ref(root, ref);
3189 } else {
3190 WARN_ON(1);
3191 }
3192 }
Chris Mason323ac952008-10-01 19:05:46 -04003193next_key:
3194 btrfs_release_path(root, path);
3195
3196 if (other_key.objectid == inode->i_ino &&
3197 other_key.type == key.type && other_key.offset > key.offset) {
3198 key.offset = other_key.offset;
3199 cond_resched();
3200 goto again;
3201 }
3202 ret = 0;
3203out:
3204 /* fixup any changes we've made to the path */
3205 path->lowest_level = 0;
3206 path->keep_locks = 0;
3207 btrfs_release_path(root, path);
3208 return ret;
3209}
3210
Chris Masond20f7042008-12-08 16:58:54 -05003211#endif
3212
Chris Mason323ac952008-10-01 19:05:46 -04003213/*
Chris Mason39279cc2007-06-12 06:35:45 -04003214 * this can truncate away extent items, csum items and directory items.
3215 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04003216 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04003217 *
3218 * csum items that cross the new i_size are truncated to the new size
3219 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04003220 *
3221 * min_type is the minimum key type to truncate down to. If set to 0, this
3222 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04003223 */
Yan, Zheng80825102009-11-12 09:35:36 +00003224int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
3225 struct btrfs_root *root,
3226 struct inode *inode,
3227 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003228{
Chris Mason39279cc2007-06-12 06:35:45 -04003229 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003230 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003231 struct btrfs_file_extent_item *fi;
Yan, Zheng80825102009-11-12 09:35:36 +00003232 struct btrfs_key key;
3233 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04003234 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04003235 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003236 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003237 u64 item_end = 0;
Yan, Zheng80825102009-11-12 09:35:36 +00003238 u64 mask = root->sectorsize - 1;
3239 u32 found_type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -04003240 int found_extent;
3241 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05003242 int pending_del_nr = 0;
3243 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04003244 int extent_type = -1;
Chris Mason771ed682008-11-06 22:02:51 -05003245 int encoding;
Yan, Zheng80825102009-11-12 09:35:36 +00003246 int ret;
3247 int err = 0;
3248
3249 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04003250
Josef Bacik0af3d002010-06-21 14:48:16 -04003251 if (root->ref_cows || root == root->fs_info->tree_root)
Zheng Yan5b21f2e2008-09-26 10:05:38 -04003252 btrfs_drop_extent_cache(inode, new_size & (~mask), (u64)-1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003253
Chris Mason39279cc2007-06-12 06:35:45 -04003254 path = btrfs_alloc_path();
3255 BUG_ON(!path);
Julia Lawall33c17ad2009-07-22 16:49:01 -04003256 path->reada = -1;
Chris Mason5f39d392007-10-15 16:14:19 -04003257
Chris Mason39279cc2007-06-12 06:35:45 -04003258 key.objectid = inode->i_ino;
3259 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04003260 key.type = (u8)-1;
3261
Chris Mason85e21ba2008-01-29 15:11:36 -05003262search_again:
Chris Masonb9473432009-03-13 11:00:37 -04003263 path->leave_spinning = 1;
Chris Mason85e21ba2008-01-29 15:11:36 -05003264 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Yan, Zheng80825102009-11-12 09:35:36 +00003265 if (ret < 0) {
3266 err = ret;
3267 goto out;
3268 }
Chris Masond3977122009-01-05 21:25:51 -05003269
Chris Mason85e21ba2008-01-29 15:11:36 -05003270 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003271 /* there are no items in the tree for us to truncate, we're
3272 * done
3273 */
Yan, Zheng80825102009-11-12 09:35:36 +00003274 if (path->slots[0] == 0)
3275 goto out;
Chris Mason85e21ba2008-01-29 15:11:36 -05003276 path->slots[0]--;
3277 }
3278
Chris Masond3977122009-01-05 21:25:51 -05003279 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04003280 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04003281 leaf = path->nodes[0];
3282 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3283 found_type = btrfs_key_type(&found_key);
Chris Mason771ed682008-11-06 22:02:51 -05003284 encoding = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003285
Chris Mason5f39d392007-10-15 16:14:19 -04003286 if (found_key.objectid != inode->i_ino)
Chris Mason39279cc2007-06-12 06:35:45 -04003287 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003288
Chris Mason85e21ba2008-01-29 15:11:36 -05003289 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003290 break;
3291
Chris Mason5f39d392007-10-15 16:14:19 -04003292 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04003293 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04003294 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04003295 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04003296 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05003297 encoding = btrfs_file_extent_compression(leaf, fi);
3298 encoding |= btrfs_file_extent_encryption(leaf, fi);
3299 encoding |= btrfs_file_extent_other_encoding(leaf, fi);
3300
Chris Mason179e29e2007-11-01 11:28:41 -04003301 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04003302 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04003303 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04003304 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04003305 item_end += btrfs_file_extent_inline_len(leaf,
Chris Masonc8b97812008-10-29 14:49:59 -04003306 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003307 }
Yan008630c2007-11-07 13:31:09 -05003308 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04003309 }
Yan, Zheng80825102009-11-12 09:35:36 +00003310 if (found_type > min_type) {
Chris Mason39279cc2007-06-12 06:35:45 -04003311 del_item = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00003312 } else {
3313 if (item_end < new_size)
3314 break;
3315 if (found_key.offset >= new_size)
3316 del_item = 1;
3317 else
3318 del_item = 0;
3319 }
Chris Mason39279cc2007-06-12 06:35:45 -04003320 found_extent = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003321 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04003322 if (found_type != BTRFS_EXTENT_DATA_KEY)
3323 goto delete;
3324
3325 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04003326 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04003327 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05003328 if (!del_item && !encoding) {
Chris Masondb945352007-10-15 16:15:53 -04003329 u64 orig_num_bytes =
3330 btrfs_file_extent_num_bytes(leaf, fi);
Chris Masone02119d2008-09-05 16:13:11 -04003331 extent_num_bytes = new_size -
Chris Mason5f39d392007-10-15 16:14:19 -04003332 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -05003333 extent_num_bytes = extent_num_bytes &
3334 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04003335 btrfs_set_file_extent_num_bytes(leaf, fi,
3336 extent_num_bytes);
3337 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05003338 extent_num_bytes);
Chris Masone02119d2008-09-05 16:13:11 -04003339 if (root->ref_cows && extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003340 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04003341 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003342 } else {
Chris Masondb945352007-10-15 16:15:53 -04003343 extent_num_bytes =
3344 btrfs_file_extent_disk_num_bytes(leaf,
3345 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003346 extent_offset = found_key.offset -
3347 btrfs_file_extent_offset(leaf, fi);
3348
Chris Mason39279cc2007-06-12 06:35:45 -04003349 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05003350 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003351 if (extent_start != 0) {
3352 found_extent = 1;
Chris Masone02119d2008-09-05 16:13:11 -04003353 if (root->ref_cows)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003354 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04003355 }
3356 }
Chris Mason90692182008-02-08 13:49:28 -05003357 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003358 /*
3359 * we can't truncate inline items that have had
3360 * special encodings
3361 */
3362 if (!del_item &&
3363 btrfs_file_extent_compression(leaf, fi) == 0 &&
3364 btrfs_file_extent_encryption(leaf, fi) == 0 &&
3365 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003366 u32 size = new_size - found_key.offset;
3367
3368 if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003369 inode_sub_bytes(inode, item_end + 1 -
3370 new_size);
Chris Masone02119d2008-09-05 16:13:11 -04003371 }
3372 size =
3373 btrfs_file_extent_calc_inline_size(size);
Chris Mason90692182008-02-08 13:49:28 -05003374 ret = btrfs_truncate_item(trans, root, path,
Chris Masone02119d2008-09-05 16:13:11 -04003375 size, 1);
Chris Mason90692182008-02-08 13:49:28 -05003376 BUG_ON(ret);
Chris Masone02119d2008-09-05 16:13:11 -04003377 } else if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003378 inode_sub_bytes(inode, item_end + 1 -
3379 found_key.offset);
Chris Mason90692182008-02-08 13:49:28 -05003380 }
Chris Mason39279cc2007-06-12 06:35:45 -04003381 }
Chris Mason179e29e2007-11-01 11:28:41 -04003382delete:
Chris Mason39279cc2007-06-12 06:35:45 -04003383 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05003384 if (!pending_del_nr) {
3385 /* no pending yet, add ourselves */
3386 pending_del_slot = path->slots[0];
3387 pending_del_nr = 1;
3388 } else if (pending_del_nr &&
3389 path->slots[0] + 1 == pending_del_slot) {
3390 /* hop on the pending chunk */
3391 pending_del_nr++;
3392 pending_del_slot = path->slots[0];
3393 } else {
Chris Masond3977122009-01-05 21:25:51 -05003394 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05003395 }
Chris Mason39279cc2007-06-12 06:35:45 -04003396 } else {
3397 break;
3398 }
Josef Bacik0af3d002010-06-21 14:48:16 -04003399 if (found_extent && (root->ref_cows ||
3400 root == root->fs_info->tree_root)) {
Chris Masonb9473432009-03-13 11:00:37 -04003401 btrfs_set_path_blocking(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003402 ret = btrfs_free_extent(trans, root, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003403 extent_num_bytes, 0,
3404 btrfs_header_owner(leaf),
3405 inode->i_ino, extent_offset);
Chris Mason39279cc2007-06-12 06:35:45 -04003406 BUG_ON(ret);
3407 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003408
Yan, Zheng80825102009-11-12 09:35:36 +00003409 if (found_type == BTRFS_INODE_ITEM_KEY)
3410 break;
3411
3412 if (path->slots[0] == 0 ||
3413 path->slots[0] != pending_del_slot) {
3414 if (root->ref_cows) {
3415 err = -EAGAIN;
3416 goto out;
3417 }
3418 if (pending_del_nr) {
3419 ret = btrfs_del_items(trans, root, path,
3420 pending_del_slot,
3421 pending_del_nr);
3422 BUG_ON(ret);
3423 pending_del_nr = 0;
3424 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003425 btrfs_release_path(root, path);
3426 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00003427 } else {
3428 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05003429 }
Chris Mason39279cc2007-06-12 06:35:45 -04003430 }
Yan, Zheng80825102009-11-12 09:35:36 +00003431out:
Chris Mason85e21ba2008-01-29 15:11:36 -05003432 if (pending_del_nr) {
3433 ret = btrfs_del_items(trans, root, path, pending_del_slot,
3434 pending_del_nr);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003435 BUG_ON(ret);
Chris Mason85e21ba2008-01-29 15:11:36 -05003436 }
Chris Mason39279cc2007-06-12 06:35:45 -04003437 btrfs_free_path(path);
Yan, Zheng80825102009-11-12 09:35:36 +00003438 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003439}
3440
Chris Masona52d9a82007-08-27 16:49:44 -04003441/*
3442 * taken from block_truncate_page, but does cow as it zeros out
3443 * any bytes left in the last page in the file.
3444 */
3445static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
3446{
3447 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -04003448 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003449 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
3450 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003451 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003452 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04003453 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04003454 pgoff_t index = from >> PAGE_CACHE_SHIFT;
3455 unsigned offset = from & (PAGE_CACHE_SIZE-1);
3456 struct page *page;
3457 int ret = 0;
3458 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003459 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04003460
3461 if ((offset & (blocksize - 1)) == 0)
3462 goto out;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003463 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003464 if (ret)
3465 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003466
3467 ret = -ENOMEM;
Chris Mason211c17f2008-05-15 09:13:45 -04003468again:
Chris Masona52d9a82007-08-27 16:49:44 -04003469 page = grab_cache_page(mapping, index);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003470 if (!page) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003471 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Masona52d9a82007-08-27 16:49:44 -04003472 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04003473 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003474
3475 page_start = page_offset(page);
3476 page_end = page_start + PAGE_CACHE_SIZE - 1;
3477
Chris Masona52d9a82007-08-27 16:49:44 -04003478 if (!PageUptodate(page)) {
3479 ret = btrfs_readpage(NULL, page);
3480 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04003481 if (page->mapping != mapping) {
3482 unlock_page(page);
3483 page_cache_release(page);
3484 goto again;
3485 }
Chris Masona52d9a82007-08-27 16:49:44 -04003486 if (!PageUptodate(page)) {
3487 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04003488 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04003489 }
3490 }
Chris Mason211c17f2008-05-15 09:13:45 -04003491 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003492
Josef Bacik2ac55d42010-02-03 19:33:23 +00003493 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state,
3494 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003495 set_page_extent_mapped(page);
3496
3497 ordered = btrfs_lookup_ordered_extent(inode, page_start);
3498 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003499 unlock_extent_cached(io_tree, page_start, page_end,
3500 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003501 unlock_page(page);
3502 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04003503 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003504 btrfs_put_ordered_extent(ordered);
3505 goto again;
3506 }
3507
Josef Bacik2ac55d42010-02-03 19:33:23 +00003508 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Josef Bacik5d5e1032009-10-13 16:46:49 -04003509 EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003510 0, 0, &cached_state, GFP_NOFS);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003511
Josef Bacik2ac55d42010-02-03 19:33:23 +00003512 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
3513 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003514 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003515 unlock_extent_cached(io_tree, page_start, page_end,
3516 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003517 goto out_unlock;
3518 }
3519
Chris Masone6dcd2d2008-07-17 12:53:50 -04003520 ret = 0;
3521 if (offset != PAGE_CACHE_SIZE) {
3522 kaddr = kmap(page);
3523 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
3524 flush_dcache_page(page);
3525 kunmap(page);
3526 }
Chris Mason247e7432008-07-17 12:53:51 -04003527 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003528 set_page_dirty(page);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003529 unlock_extent_cached(io_tree, page_start, page_end, &cached_state,
3530 GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04003531
Chris Mason89642222008-07-24 09:41:53 -04003532out_unlock:
Josef Bacik5d5e1032009-10-13 16:46:49 -04003533 if (ret)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003534 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason39279cc2007-06-12 06:35:45 -04003535 unlock_page(page);
3536 page_cache_release(page);
3537out:
3538 return ret;
3539}
3540
Yan Zheng9036c102008-10-30 14:19:41 -04003541int btrfs_cont_expand(struct inode *inode, loff_t size)
3542{
3543 struct btrfs_trans_handle *trans;
3544 struct btrfs_root *root = BTRFS_I(inode)->root;
3545 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003546 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003547 struct extent_state *cached_state = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04003548 u64 mask = root->sectorsize - 1;
3549 u64 hole_start = (inode->i_size + mask) & ~mask;
3550 u64 block_end = (size + mask) & ~mask;
3551 u64 last_byte;
3552 u64 cur_offset;
3553 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003554 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003555
3556 if (size <= hole_start)
3557 return 0;
3558
Yan Zheng9036c102008-10-30 14:19:41 -04003559 while (1) {
3560 struct btrfs_ordered_extent *ordered;
3561 btrfs_wait_ordered_range(inode, hole_start,
3562 block_end - hole_start);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003563 lock_extent_bits(io_tree, hole_start, block_end - 1, 0,
3564 &cached_state, GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003565 ordered = btrfs_lookup_ordered_extent(inode, hole_start);
3566 if (!ordered)
3567 break;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003568 unlock_extent_cached(io_tree, hole_start, block_end - 1,
3569 &cached_state, GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003570 btrfs_put_ordered_extent(ordered);
3571 }
3572
Yan Zheng9036c102008-10-30 14:19:41 -04003573 cur_offset = hole_start;
3574 while (1) {
3575 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
3576 block_end - cur_offset, 0);
3577 BUG_ON(IS_ERR(em) || !em);
3578 last_byte = min(extent_map_end(em), block_end);
3579 last_byte = (last_byte + mask) & ~mask;
Yan, Zheng80825102009-11-12 09:35:36 +00003580 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Chris Mason771ed682008-11-06 22:02:51 -05003581 u64 hint_byte = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003582 hole_size = last_byte - cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00003583
Yan, Zhenga22285a2010-05-16 10:48:46 -04003584 trans = btrfs_start_transaction(root, 2);
3585 if (IS_ERR(trans)) {
3586 err = PTR_ERR(trans);
Chris Mason771ed682008-11-06 22:02:51 -05003587 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003588 }
Yan, Zheng80825102009-11-12 09:35:36 +00003589 btrfs_set_trans_block_group(trans, inode);
3590
3591 err = btrfs_drop_extents(trans, inode, cur_offset,
3592 cur_offset + hole_size,
3593 &hint_byte, 1);
3594 BUG_ON(err);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003595
Yan Zheng9036c102008-10-30 14:19:41 -04003596 err = btrfs_insert_file_extent(trans, root,
3597 inode->i_ino, cur_offset, 0,
3598 0, hole_size, 0, hole_size,
3599 0, 0, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003600 BUG_ON(err);
3601
Yan Zheng9036c102008-10-30 14:19:41 -04003602 btrfs_drop_extent_cache(inode, hole_start,
3603 last_byte - 1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003604
3605 btrfs_end_transaction(trans, root);
Yan Zheng9036c102008-10-30 14:19:41 -04003606 }
3607 free_extent_map(em);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003608 em = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04003609 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00003610 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04003611 break;
3612 }
3613
Yan, Zhenga22285a2010-05-16 10:48:46 -04003614 free_extent_map(em);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003615 unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state,
3616 GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003617 return err;
3618}
3619
Yan, Zheng80825102009-11-12 09:35:36 +00003620static int btrfs_setattr_size(struct inode *inode, struct iattr *attr)
3621{
3622 struct btrfs_root *root = BTRFS_I(inode)->root;
3623 struct btrfs_trans_handle *trans;
3624 unsigned long nr;
3625 int ret;
3626
3627 if (attr->ia_size == inode->i_size)
3628 return 0;
3629
3630 if (attr->ia_size > inode->i_size) {
3631 unsigned long limit;
3632 limit = current->signal->rlim[RLIMIT_FSIZE].rlim_cur;
3633 if (attr->ia_size > inode->i_sb->s_maxbytes)
3634 return -EFBIG;
3635 if (limit != RLIM_INFINITY && attr->ia_size > limit) {
3636 send_sig(SIGXFSZ, current, 0);
3637 return -EFBIG;
3638 }
3639 }
3640
Yan, Zhengd68fc572010-05-16 10:49:58 -04003641 trans = btrfs_start_transaction(root, 5);
3642 if (IS_ERR(trans))
3643 return PTR_ERR(trans);
Yan, Zheng80825102009-11-12 09:35:36 +00003644
Yan, Zheng80825102009-11-12 09:35:36 +00003645 btrfs_set_trans_block_group(trans, inode);
3646
3647 ret = btrfs_orphan_add(trans, inode);
3648 BUG_ON(ret);
3649
3650 nr = trans->blocks_used;
3651 btrfs_end_transaction(trans, root);
Yan, Zheng80825102009-11-12 09:35:36 +00003652 btrfs_btree_balance_dirty(root, nr);
3653
3654 if (attr->ia_size > inode->i_size) {
3655 ret = btrfs_cont_expand(inode, attr->ia_size);
3656 if (ret) {
3657 btrfs_truncate(inode);
3658 return ret;
3659 }
3660
3661 i_size_write(inode, attr->ia_size);
3662 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
3663
Yan, Zhengd68fc572010-05-16 10:49:58 -04003664 trans = btrfs_start_transaction(root, 0);
3665 BUG_ON(IS_ERR(trans));
Yan, Zheng80825102009-11-12 09:35:36 +00003666 btrfs_set_trans_block_group(trans, inode);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003667 trans->block_rsv = root->orphan_block_rsv;
3668 BUG_ON(!trans->block_rsv);
Yan, Zheng80825102009-11-12 09:35:36 +00003669
3670 ret = btrfs_update_inode(trans, root, inode);
3671 BUG_ON(ret);
3672 if (inode->i_nlink > 0) {
3673 ret = btrfs_orphan_del(trans, inode);
3674 BUG_ON(ret);
3675 }
3676 nr = trans->blocks_used;
3677 btrfs_end_transaction(trans, root);
3678 btrfs_btree_balance_dirty(root, nr);
3679 return 0;
3680 }
3681
3682 /*
3683 * We're truncating a file that used to have good data down to
3684 * zero. Make sure it gets into the ordered flush list so that
3685 * any new writes get down to disk quickly.
3686 */
3687 if (attr->ia_size == 0)
3688 BTRFS_I(inode)->ordered_data_close = 1;
3689
3690 /* we don't support swapfiles, so vmtruncate shouldn't fail */
3691 ret = vmtruncate(inode, attr->ia_size);
3692 BUG_ON(ret);
3693
3694 return 0;
3695}
3696
Chris Mason39279cc2007-06-12 06:35:45 -04003697static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
3698{
3699 struct inode *inode = dentry->d_inode;
Li Zefanb83cc962010-12-20 16:04:08 +08003700 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003701 int err;
3702
Li Zefanb83cc962010-12-20 16:04:08 +08003703 if (btrfs_root_readonly(root))
3704 return -EROFS;
3705
Chris Mason39279cc2007-06-12 06:35:45 -04003706 err = inode_change_ok(inode, attr);
3707 if (err)
3708 return err;
3709
Chris Mason5a3f23d2009-03-31 13:27:11 -04003710 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Yan, Zheng80825102009-11-12 09:35:36 +00003711 err = btrfs_setattr_size(inode, attr);
3712 if (err)
3713 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003714 }
Yan Zheng9036c102008-10-30 14:19:41 -04003715
Christoph Hellwig10257742010-06-04 11:30:02 +02003716 if (attr->ia_valid) {
3717 setattr_copy(inode, attr);
3718 mark_inode_dirty(inode);
Josef Bacik33268ea2008-07-24 12:16:36 -04003719
Christoph Hellwig10257742010-06-04 11:30:02 +02003720 if (attr->ia_valid & ATTR_MODE)
3721 err = btrfs_acl_chmod(inode);
3722 }
3723
Chris Mason39279cc2007-06-12 06:35:45 -04003724 return err;
3725}
Chris Mason61295eb2008-01-14 16:24:38 -05003726
Al Virobd555972010-06-07 11:35:40 -04003727void btrfs_evict_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003728{
3729 struct btrfs_trans_handle *trans;
3730 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003731 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04003732 int ret;
3733
3734 truncate_inode_pages(&inode->i_data, 0);
Josef Bacik0af3d002010-06-21 14:48:16 -04003735 if (inode->i_nlink && (btrfs_root_refs(&root->root_item) != 0 ||
3736 root == root->fs_info->tree_root))
Al Virobd555972010-06-07 11:35:40 -04003737 goto no_delete;
3738
Chris Mason39279cc2007-06-12 06:35:45 -04003739 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04003740 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003741 goto no_delete;
3742 }
Al Virobd555972010-06-07 11:35:40 -04003743 /* do we really want it for ->i_nlink > 0 and zero btrfs_root_refs? */
Chris Mason4a096752008-07-21 10:29:44 -04003744 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04003745
Yan, Zhengc71bf092009-11-12 09:34:40 +00003746 if (root->fs_info->log_root_recovering) {
3747 BUG_ON(!list_empty(&BTRFS_I(inode)->i_orphan));
3748 goto no_delete;
3749 }
3750
Yan, Zheng76dda932009-09-21 16:00:26 -04003751 if (inode->i_nlink > 0) {
3752 BUG_ON(btrfs_root_refs(&root->root_item) != 0);
3753 goto no_delete;
3754 }
3755
Chris Masondbe674a2008-07-17 12:54:05 -04003756 btrfs_i_size_write(inode, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003757
Yan, Zheng80825102009-11-12 09:35:36 +00003758 while (1) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04003759 trans = btrfs_start_transaction(root, 0);
3760 BUG_ON(IS_ERR(trans));
Yan, Zheng80825102009-11-12 09:35:36 +00003761 btrfs_set_trans_block_group(trans, inode);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003762 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00003763
Yan, Zhengd68fc572010-05-16 10:49:58 -04003764 ret = btrfs_block_rsv_check(trans, root,
3765 root->orphan_block_rsv, 0, 5);
3766 if (ret) {
3767 BUG_ON(ret != -EAGAIN);
3768 ret = btrfs_commit_transaction(trans, root);
3769 BUG_ON(ret);
3770 continue;
3771 }
3772
3773 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003774 if (ret != -EAGAIN)
3775 break;
3776
3777 nr = trans->blocks_used;
3778 btrfs_end_transaction(trans, root);
3779 trans = NULL;
3780 btrfs_btree_balance_dirty(root, nr);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003781
Josef Bacik7b128762008-07-24 12:17:14 -04003782 }
3783
Yan, Zheng80825102009-11-12 09:35:36 +00003784 if (ret == 0) {
3785 ret = btrfs_orphan_del(trans, inode);
3786 BUG_ON(ret);
3787 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003788
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003789 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04003790 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003791 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003792no_delete:
Al Virobd555972010-06-07 11:35:40 -04003793 end_writeback(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003794 return;
Chris Mason39279cc2007-06-12 06:35:45 -04003795}
3796
3797/*
3798 * this returns the key found in the dir entry in the location pointer.
3799 * If no dir entries were found, location->objectid is 0.
3800 */
3801static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
3802 struct btrfs_key *location)
3803{
3804 const char *name = dentry->d_name.name;
3805 int namelen = dentry->d_name.len;
3806 struct btrfs_dir_item *di;
3807 struct btrfs_path *path;
3808 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04003809 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003810
3811 path = btrfs_alloc_path();
3812 BUG_ON(!path);
Chris Mason39544012007-12-12 14:38:19 -05003813
Chris Mason39279cc2007-06-12 06:35:45 -04003814 di = btrfs_lookup_dir_item(NULL, root, path, dir->i_ino, name,
3815 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04003816 if (IS_ERR(di))
3817 ret = PTR_ERR(di);
Chris Masond3977122009-01-05 21:25:51 -05003818
3819 if (!di || IS_ERR(di))
Chris Mason39544012007-12-12 14:38:19 -05003820 goto out_err;
Chris Masond3977122009-01-05 21:25:51 -05003821
Chris Mason5f39d392007-10-15 16:14:19 -04003822 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04003823out:
Chris Mason39279cc2007-06-12 06:35:45 -04003824 btrfs_free_path(path);
3825 return ret;
Chris Mason39544012007-12-12 14:38:19 -05003826out_err:
3827 location->objectid = 0;
3828 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04003829}
3830
3831/*
3832 * when we hit a tree root in a directory, the btrfs part of the inode
3833 * needs to be changed to reflect the root directory of the tree root. This
3834 * is kind of like crossing a mount point.
3835 */
3836static int fixup_tree_root_location(struct btrfs_root *root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003837 struct inode *dir,
3838 struct dentry *dentry,
3839 struct btrfs_key *location,
3840 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04003841{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003842 struct btrfs_path *path;
3843 struct btrfs_root *new_root;
3844 struct btrfs_root_ref *ref;
3845 struct extent_buffer *leaf;
3846 int ret;
3847 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003848
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003849 path = btrfs_alloc_path();
3850 if (!path) {
3851 err = -ENOMEM;
3852 goto out;
3853 }
Chris Mason39279cc2007-06-12 06:35:45 -04003854
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003855 err = -ENOENT;
3856 ret = btrfs_find_root_ref(root->fs_info->tree_root, path,
3857 BTRFS_I(dir)->root->root_key.objectid,
3858 location->objectid);
3859 if (ret) {
3860 if (ret < 0)
3861 err = ret;
3862 goto out;
3863 }
Chris Mason39279cc2007-06-12 06:35:45 -04003864
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003865 leaf = path->nodes[0];
3866 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
3867 if (btrfs_root_ref_dirid(leaf, ref) != dir->i_ino ||
3868 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
3869 goto out;
3870
3871 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
3872 (unsigned long)(ref + 1),
3873 dentry->d_name.len);
3874 if (ret)
3875 goto out;
3876
3877 btrfs_release_path(root->fs_info->tree_root, path);
3878
3879 new_root = btrfs_read_fs_root_no_name(root->fs_info, location);
3880 if (IS_ERR(new_root)) {
3881 err = PTR_ERR(new_root);
3882 goto out;
3883 }
3884
3885 if (btrfs_root_refs(&new_root->root_item) == 0) {
3886 err = -ENOENT;
3887 goto out;
3888 }
3889
3890 *sub_root = new_root;
3891 location->objectid = btrfs_root_dirid(&new_root->root_item);
3892 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04003893 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003894 err = 0;
3895out:
3896 btrfs_free_path(path);
3897 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003898}
3899
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003900static void inode_tree_add(struct inode *inode)
3901{
3902 struct btrfs_root *root = BTRFS_I(inode)->root;
3903 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003904 struct rb_node **p;
3905 struct rb_node *parent;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003906again:
3907 p = &root->inode_tree.rb_node;
3908 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003909
Al Viro1d3382cb2010-10-23 15:19:20 -04003910 if (inode_unhashed(inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04003911 return;
3912
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003913 spin_lock(&root->inode_lock);
3914 while (*p) {
3915 parent = *p;
3916 entry = rb_entry(parent, struct btrfs_inode, rb_node);
3917
3918 if (inode->i_ino < entry->vfs_inode.i_ino)
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003919 p = &parent->rb_left;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003920 else if (inode->i_ino > entry->vfs_inode.i_ino)
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003921 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003922 else {
3923 WARN_ON(!(entry->vfs_inode.i_state &
Al Viroa4ffdde2010-06-02 17:38:30 -04003924 (I_WILL_FREE | I_FREEING)));
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003925 rb_erase(parent, &root->inode_tree);
3926 RB_CLEAR_NODE(parent);
3927 spin_unlock(&root->inode_lock);
3928 goto again;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003929 }
3930 }
3931 rb_link_node(&BTRFS_I(inode)->rb_node, parent, p);
3932 rb_insert_color(&BTRFS_I(inode)->rb_node, &root->inode_tree);
3933 spin_unlock(&root->inode_lock);
3934}
3935
3936static void inode_tree_del(struct inode *inode)
3937{
3938 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04003939 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003940
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003941 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003942 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003943 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003944 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04003945 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003946 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003947 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04003948
Josef Bacik0af3d002010-06-21 14:48:16 -04003949 /*
3950 * Free space cache has inodes in the tree root, but the tree root has a
3951 * root_refs of 0, so this could end up dropping the tree root as a
3952 * snapshot, so we need the extra !root->fs_info->tree_root check to
3953 * make sure we don't drop it.
3954 */
3955 if (empty && btrfs_root_refs(&root->root_item) == 0 &&
3956 root != root->fs_info->tree_root) {
Yan, Zheng76dda932009-09-21 16:00:26 -04003957 synchronize_srcu(&root->fs_info->subvol_srcu);
3958 spin_lock(&root->inode_lock);
3959 empty = RB_EMPTY_ROOT(&root->inode_tree);
3960 spin_unlock(&root->inode_lock);
3961 if (empty)
3962 btrfs_add_dead_root(root);
3963 }
3964}
3965
3966int btrfs_invalidate_inodes(struct btrfs_root *root)
3967{
3968 struct rb_node *node;
3969 struct rb_node *prev;
3970 struct btrfs_inode *entry;
3971 struct inode *inode;
3972 u64 objectid = 0;
3973
3974 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
3975
3976 spin_lock(&root->inode_lock);
3977again:
3978 node = root->inode_tree.rb_node;
3979 prev = NULL;
3980 while (node) {
3981 prev = node;
3982 entry = rb_entry(node, struct btrfs_inode, rb_node);
3983
3984 if (objectid < entry->vfs_inode.i_ino)
3985 node = node->rb_left;
3986 else if (objectid > entry->vfs_inode.i_ino)
3987 node = node->rb_right;
3988 else
3989 break;
3990 }
3991 if (!node) {
3992 while (prev) {
3993 entry = rb_entry(prev, struct btrfs_inode, rb_node);
3994 if (objectid <= entry->vfs_inode.i_ino) {
3995 node = prev;
3996 break;
3997 }
3998 prev = rb_next(prev);
3999 }
4000 }
4001 while (node) {
4002 entry = rb_entry(node, struct btrfs_inode, rb_node);
4003 objectid = entry->vfs_inode.i_ino + 1;
4004 inode = igrab(&entry->vfs_inode);
4005 if (inode) {
4006 spin_unlock(&root->inode_lock);
4007 if (atomic_read(&inode->i_count) > 1)
4008 d_prune_aliases(inode);
4009 /*
Al Viro45321ac2010-06-07 13:43:19 -04004010 * btrfs_drop_inode will have it removed from
Yan, Zheng76dda932009-09-21 16:00:26 -04004011 * the inode cache when its usage count
4012 * hits zero.
4013 */
4014 iput(inode);
4015 cond_resched();
4016 spin_lock(&root->inode_lock);
4017 goto again;
4018 }
4019
4020 if (cond_resched_lock(&root->inode_lock))
4021 goto again;
4022
4023 node = rb_next(node);
4024 }
4025 spin_unlock(&root->inode_lock);
4026 return 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004027}
4028
Chris Masone02119d2008-09-05 16:13:11 -04004029static int btrfs_init_locked_inode(struct inode *inode, void *p)
4030{
4031 struct btrfs_iget_args *args = p;
4032 inode->i_ino = args->ino;
Chris Masone02119d2008-09-05 16:13:11 -04004033 BTRFS_I(inode)->root = args->root;
Josef Bacik6a632092009-02-20 11:00:09 -05004034 btrfs_set_inode_space_info(args->root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004035 return 0;
4036}
4037
4038static int btrfs_find_actor(struct inode *inode, void *opaque)
4039{
4040 struct btrfs_iget_args *args = opaque;
Chris Masond3977122009-01-05 21:25:51 -05004041 return args->ino == inode->i_ino &&
4042 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004043}
4044
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004045static struct inode *btrfs_iget_locked(struct super_block *s,
4046 u64 objectid,
4047 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04004048{
4049 struct inode *inode;
4050 struct btrfs_iget_args args;
4051 args.ino = objectid;
4052 args.root = root;
4053
4054 inode = iget5_locked(s, objectid, btrfs_find_actor,
4055 btrfs_init_locked_inode,
4056 (void *)&args);
4057 return inode;
4058}
4059
Balaji Rao1a54ef82008-07-21 02:01:04 +05304060/* Get an inode object given its location and corresponding root.
4061 * Returns in *is_new if the inode was read from disk
4062 */
4063struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
Josef Bacik73f73412009-12-04 17:38:27 +00004064 struct btrfs_root *root, int *new)
Balaji Rao1a54ef82008-07-21 02:01:04 +05304065{
4066 struct inode *inode;
4067
4068 inode = btrfs_iget_locked(s, location->objectid, root);
4069 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004070 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05304071
4072 if (inode->i_state & I_NEW) {
4073 BTRFS_I(inode)->root = root;
4074 memcpy(&BTRFS_I(inode)->location, location, sizeof(*location));
4075 btrfs_read_locked_inode(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004076
4077 inode_tree_add(inode);
Balaji Rao1a54ef82008-07-21 02:01:04 +05304078 unlock_new_inode(inode);
Josef Bacik73f73412009-12-04 17:38:27 +00004079 if (new)
4080 *new = 1;
Balaji Rao1a54ef82008-07-21 02:01:04 +05304081 }
4082
4083 return inode;
4084}
4085
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004086static struct inode *new_simple_dir(struct super_block *s,
4087 struct btrfs_key *key,
4088 struct btrfs_root *root)
4089{
4090 struct inode *inode = new_inode(s);
4091
4092 if (!inode)
4093 return ERR_PTR(-ENOMEM);
4094
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004095 BTRFS_I(inode)->root = root;
4096 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
4097 BTRFS_I(inode)->dummy_inode = 1;
4098
4099 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
4100 inode->i_op = &simple_dir_inode_operations;
4101 inode->i_fop = &simple_dir_operations;
4102 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
4103 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
4104
4105 return inode;
4106}
4107
Chris Mason3de45862008-11-17 21:02:50 -05004108struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04004109{
Chris Masond3977122009-01-05 21:25:51 -05004110 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004111 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004112 struct btrfs_root *sub_root = root;
4113 struct btrfs_key location;
Yan, Zheng76dda932009-09-21 16:00:26 -04004114 int index;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004115 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004116
4117 if (dentry->d_name.len > BTRFS_NAME_LEN)
4118 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04004119
Chris Mason39279cc2007-06-12 06:35:45 -04004120 ret = btrfs_inode_by_name(dir, dentry, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04004121
Chris Mason39279cc2007-06-12 06:35:45 -04004122 if (ret < 0)
4123 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04004124
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004125 if (location.objectid == 0)
4126 return NULL;
4127
4128 if (location.type == BTRFS_INODE_ITEM_KEY) {
Josef Bacik73f73412009-12-04 17:38:27 +00004129 inode = btrfs_iget(dir->i_sb, &location, root, NULL);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004130 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004131 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004132
4133 BUG_ON(location.type != BTRFS_ROOT_ITEM_KEY);
4134
Yan, Zheng76dda932009-09-21 16:00:26 -04004135 index = srcu_read_lock(&root->fs_info->subvol_srcu);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004136 ret = fixup_tree_root_location(root, dir, dentry,
4137 &location, &sub_root);
4138 if (ret < 0) {
4139 if (ret != -ENOENT)
4140 inode = ERR_PTR(ret);
4141 else
4142 inode = new_simple_dir(dir->i_sb, &location, sub_root);
4143 } else {
Josef Bacik73f73412009-12-04 17:38:27 +00004144 inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004145 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004146 srcu_read_unlock(&root->fs_info->subvol_srcu, index);
4147
Julia Lawall34d19ba2011-01-24 19:55:19 +00004148 if (!IS_ERR(inode) && root != sub_root) {
Yan, Zhengc71bf092009-11-12 09:34:40 +00004149 down_read(&root->fs_info->cleanup_work_sem);
4150 if (!(inode->i_sb->s_flags & MS_RDONLY))
4151 btrfs_orphan_cleanup(sub_root);
4152 up_read(&root->fs_info->cleanup_work_sem);
4153 }
4154
Chris Mason3de45862008-11-17 21:02:50 -05004155 return inode;
4156}
4157
Nick Pigginfe15ce42011-01-07 17:49:23 +11004158static int btrfs_dentry_delete(const struct dentry *dentry)
Yan, Zheng76dda932009-09-21 16:00:26 -04004159{
4160 struct btrfs_root *root;
4161
Yan, Zhengefefb142009-10-09 09:25:16 -04004162 if (!dentry->d_inode && !IS_ROOT(dentry))
4163 dentry = dentry->d_parent;
Yan, Zheng76dda932009-09-21 16:00:26 -04004164
Yan, Zhengefefb142009-10-09 09:25:16 -04004165 if (dentry->d_inode) {
4166 root = BTRFS_I(dentry->d_inode)->root;
4167 if (btrfs_root_refs(&root->root_item) == 0)
4168 return 1;
4169 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004170 return 0;
4171}
4172
Chris Mason3de45862008-11-17 21:02:50 -05004173static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
4174 struct nameidata *nd)
4175{
4176 struct inode *inode;
4177
Chris Mason3de45862008-11-17 21:02:50 -05004178 inode = btrfs_lookup_dentry(dir, dentry);
4179 if (IS_ERR(inode))
4180 return ERR_CAST(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04004181
Chris Mason39279cc2007-06-12 06:35:45 -04004182 return d_splice_alias(inode, dentry);
4183}
4184
Chris Mason39279cc2007-06-12 06:35:45 -04004185static unsigned char btrfs_filetype_table[] = {
4186 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
4187};
4188
David Woodhousecbdf5a22008-08-06 19:42:33 +01004189static int btrfs_real_readdir(struct file *filp, void *dirent,
4190 filldir_t filldir)
Chris Mason39279cc2007-06-12 06:35:45 -04004191{
Chris Mason6da6aba2007-12-18 16:15:09 -05004192 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004193 struct btrfs_root *root = BTRFS_I(inode)->root;
4194 struct btrfs_item *item;
4195 struct btrfs_dir_item *di;
4196 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04004197 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04004198 struct btrfs_path *path;
4199 int ret;
4200 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04004201 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04004202 int slot;
4203 int advance;
4204 unsigned char d_type;
4205 int over = 0;
4206 u32 di_cur;
4207 u32 di_total;
4208 u32 di_len;
4209 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004210 char tmp_name[32];
4211 char *name_ptr;
4212 int name_len;
Chris Mason39279cc2007-06-12 06:35:45 -04004213
4214 /* FIXME, use a real flag for deciding about the key type */
4215 if (root->fs_info->tree_root == root)
4216 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004217
Chris Mason39544012007-12-12 14:38:19 -05004218 /* special case for "." */
4219 if (filp->f_pos == 0) {
4220 over = filldir(dirent, ".", 1,
4221 1, inode->i_ino,
4222 DT_DIR);
4223 if (over)
4224 return 0;
4225 filp->f_pos = 1;
4226 }
Chris Mason39544012007-12-12 14:38:19 -05004227 /* special case for .., just use the back ref */
4228 if (filp->f_pos == 1) {
David Woodhouse5ecc7e52008-08-17 15:14:48 +01004229 u64 pino = parent_ino(filp->f_path.dentry);
Chris Mason39544012007-12-12 14:38:19 -05004230 over = filldir(dirent, "..", 2,
David Woodhouse5ecc7e52008-08-17 15:14:48 +01004231 2, pino, DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05004232 if (over)
David Woodhouse49593bf2008-08-17 17:08:36 +01004233 return 0;
Chris Mason39544012007-12-12 14:38:19 -05004234 filp->f_pos = 2;
4235 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004236 path = btrfs_alloc_path();
4237 path->reada = 2;
4238
Chris Mason39279cc2007-06-12 06:35:45 -04004239 btrfs_set_key_type(&key, key_type);
4240 key.offset = filp->f_pos;
David Woodhouse49593bf2008-08-17 17:08:36 +01004241 key.objectid = inode->i_ino;
Chris Mason5f39d392007-10-15 16:14:19 -04004242
Chris Mason39279cc2007-06-12 06:35:45 -04004243 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4244 if (ret < 0)
4245 goto err;
4246 advance = 0;
David Woodhouse49593bf2008-08-17 17:08:36 +01004247
4248 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04004249 leaf = path->nodes[0];
4250 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04004251 slot = path->slots[0];
4252 if (advance || slot >= nritems) {
David Woodhouse49593bf2008-08-17 17:08:36 +01004253 if (slot >= nritems - 1) {
Chris Mason39279cc2007-06-12 06:35:45 -04004254 ret = btrfs_next_leaf(root, path);
4255 if (ret)
4256 break;
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 } else {
4261 slot++;
4262 path->slots[0]++;
4263 }
4264 }
Chris Mason3de45862008-11-17 21:02:50 -05004265
Chris Mason39279cc2007-06-12 06:35:45 -04004266 advance = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04004267 item = btrfs_item_nr(leaf, slot);
4268 btrfs_item_key_to_cpu(leaf, &found_key, slot);
4269
4270 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04004271 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004272 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004273 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004274 if (found_key.offset < filp->f_pos)
Chris Mason39279cc2007-06-12 06:35:45 -04004275 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04004276
4277 filp->f_pos = found_key.offset;
David Woodhouse49593bf2008-08-17 17:08:36 +01004278
Chris Mason39279cc2007-06-12 06:35:45 -04004279 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
4280 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04004281 di_total = btrfs_item_size(leaf, item);
David Woodhouse49593bf2008-08-17 17:08:36 +01004282
4283 while (di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04004284 struct btrfs_key location;
4285
4286 name_len = btrfs_dir_name_len(leaf, di);
David Woodhouse49593bf2008-08-17 17:08:36 +01004287 if (name_len <= sizeof(tmp_name)) {
Chris Mason5f39d392007-10-15 16:14:19 -04004288 name_ptr = tmp_name;
4289 } else {
4290 name_ptr = kmalloc(name_len, GFP_NOFS);
David Woodhouse49593bf2008-08-17 17:08:36 +01004291 if (!name_ptr) {
4292 ret = -ENOMEM;
4293 goto err;
4294 }
Chris Mason5f39d392007-10-15 16:14:19 -04004295 }
4296 read_extent_buffer(leaf, name_ptr,
4297 (unsigned long)(di + 1), name_len);
4298
4299 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
4300 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason3de45862008-11-17 21:02:50 -05004301
4302 /* is this a reference to our own snapshot? If so
4303 * skip it
4304 */
4305 if (location.type == BTRFS_ROOT_ITEM_KEY &&
4306 location.objectid == root->root_key.objectid) {
4307 over = 0;
4308 goto skip;
4309 }
Chris Mason5f39d392007-10-15 16:14:19 -04004310 over = filldir(dirent, name_ptr, name_len,
David Woodhouse49593bf2008-08-17 17:08:36 +01004311 found_key.offset, location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04004312 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04004313
Chris Mason3de45862008-11-17 21:02:50 -05004314skip:
Chris Mason5f39d392007-10-15 16:14:19 -04004315 if (name_ptr != tmp_name)
4316 kfree(name_ptr);
4317
Chris Mason39279cc2007-06-12 06:35:45 -04004318 if (over)
4319 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05004320 di_len = btrfs_dir_name_len(leaf, di) +
David Woodhouse49593bf2008-08-17 17:08:36 +01004321 btrfs_dir_data_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04004322 di_cur += di_len;
4323 di = (struct btrfs_dir_item *)((char *)di + di_len);
4324 }
4325 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004326
4327 /* Reached end of directory/root. Bump pos past the last item. */
Yan Zheng5e591a02008-02-19 11:41:02 -05004328 if (key_type == BTRFS_DIR_INDEX_KEY)
Jan Engelhardt406266a2009-12-09 22:00:38 +00004329 /*
4330 * 32-bit glibc will use getdents64, but then strtol -
4331 * so the last number we can serve is this.
4332 */
4333 filp->f_pos = 0x7fffffff;
Yan Zheng5e591a02008-02-19 11:41:02 -05004334 else
4335 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04004336nopos:
4337 ret = 0;
4338err:
Chris Mason39279cc2007-06-12 06:35:45 -04004339 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004340 return ret;
4341}
4342
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004343int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc)
Chris Mason39279cc2007-06-12 06:35:45 -04004344{
4345 struct btrfs_root *root = BTRFS_I(inode)->root;
4346 struct btrfs_trans_handle *trans;
4347 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04004348 bool nolock = false;
Chris Mason39279cc2007-06-12 06:35:45 -04004349
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004350 if (BTRFS_I(inode)->dummy_inode)
Chris Mason4ca8b412008-08-05 13:30:48 -04004351 return 0;
4352
Josef Bacik0af3d002010-06-21 14:48:16 -04004353 smp_mb();
4354 nolock = (root->fs_info->closing && root == root->fs_info->tree_root);
4355
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004356 if (wbc->sync_mode == WB_SYNC_ALL) {
Josef Bacik0af3d002010-06-21 14:48:16 -04004357 if (nolock)
4358 trans = btrfs_join_transaction_nolock(root, 1);
4359 else
4360 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00004361 if (IS_ERR(trans))
4362 return PTR_ERR(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04004363 btrfs_set_trans_block_group(trans, inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04004364 if (nolock)
4365 ret = btrfs_end_transaction_nolock(trans, root);
4366 else
4367 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004368 }
4369 return ret;
4370}
4371
4372/*
Chris Mason54aa1f42007-06-22 14:16:25 -04004373 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04004374 * inode changes. But, it is most likely to find the inode in cache.
4375 * FIXME, needs more benchmarking...there are no reasons other than performance
4376 * to keep or drop this code.
4377 */
4378void btrfs_dirty_inode(struct inode *inode)
4379{
4380 struct btrfs_root *root = BTRFS_I(inode)->root;
4381 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004382 int ret;
4383
4384 if (BTRFS_I(inode)->dummy_inode)
4385 return;
Chris Mason39279cc2007-06-12 06:35:45 -04004386
Chris Masonf9295742008-07-17 12:54:14 -04004387 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00004388 BUG_ON(IS_ERR(trans));
Chris Mason39279cc2007-06-12 06:35:45 -04004389 btrfs_set_trans_block_group(trans, inode);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004390
4391 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04004392 if (ret && ret == -ENOSPC) {
4393 /* whoops, lets try again with the full transaction */
4394 btrfs_end_transaction(trans, root);
4395 trans = btrfs_start_transaction(root, 1);
Chris Mason9aeead72010-05-27 10:23:00 -04004396 if (IS_ERR(trans)) {
4397 if (printk_ratelimit()) {
4398 printk(KERN_ERR "btrfs: fail to "
4399 "dirty inode %lu error %ld\n",
4400 inode->i_ino, PTR_ERR(trans));
4401 }
4402 return;
4403 }
Chris Mason94b60442010-05-26 11:02:00 -04004404 btrfs_set_trans_block_group(trans, inode);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004405
Chris Mason94b60442010-05-26 11:02:00 -04004406 ret = btrfs_update_inode(trans, root, inode);
4407 if (ret) {
Chris Mason9aeead72010-05-27 10:23:00 -04004408 if (printk_ratelimit()) {
4409 printk(KERN_ERR "btrfs: fail to "
4410 "dirty inode %lu error %d\n",
4411 inode->i_ino, ret);
4412 }
Chris Mason94b60442010-05-26 11:02:00 -04004413 }
4414 }
Chris Mason39279cc2007-06-12 06:35:45 -04004415 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004416}
4417
Chris Masond352ac62008-09-29 15:18:18 -04004418/*
4419 * find the highest existing sequence number in a directory
4420 * and then set the in-memory index_cnt variable to reflect
4421 * free sequence numbers
4422 */
Josef Bacikaec74772008-07-24 12:12:38 -04004423static int btrfs_set_inode_index_count(struct inode *inode)
4424{
4425 struct btrfs_root *root = BTRFS_I(inode)->root;
4426 struct btrfs_key key, found_key;
4427 struct btrfs_path *path;
4428 struct extent_buffer *leaf;
4429 int ret;
4430
4431 key.objectid = inode->i_ino;
4432 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
4433 key.offset = (u64)-1;
4434
4435 path = btrfs_alloc_path();
4436 if (!path)
4437 return -ENOMEM;
4438
4439 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4440 if (ret < 0)
4441 goto out;
4442 /* FIXME: we should be able to handle this */
4443 if (ret == 0)
4444 goto out;
4445 ret = 0;
4446
4447 /*
4448 * MAGIC NUMBER EXPLANATION:
4449 * since we search a directory based on f_pos we have to start at 2
4450 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
4451 * else has to start at 2
4452 */
4453 if (path->slots[0] == 0) {
4454 BTRFS_I(inode)->index_cnt = 2;
4455 goto out;
4456 }
4457
4458 path->slots[0]--;
4459
4460 leaf = path->nodes[0];
4461 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4462
4463 if (found_key.objectid != inode->i_ino ||
4464 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
4465 BTRFS_I(inode)->index_cnt = 2;
4466 goto out;
4467 }
4468
4469 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
4470out:
4471 btrfs_free_path(path);
4472 return ret;
4473}
4474
Chris Masond352ac62008-09-29 15:18:18 -04004475/*
4476 * helper to find a free sequence number in a given directory. This current
4477 * code is very simple, later versions will do smarter things in the btree
4478 */
Chris Mason3de45862008-11-17 21:02:50 -05004479int btrfs_set_inode_index(struct inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04004480{
4481 int ret = 0;
4482
4483 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
4484 ret = btrfs_set_inode_index_count(dir);
Chris Masond3977122009-01-05 21:25:51 -05004485 if (ret)
Josef Bacikaec74772008-07-24 12:12:38 -04004486 return ret;
4487 }
4488
Chris Mason00e4e6b2008-08-05 11:18:09 -04004489 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04004490 BTRFS_I(dir)->index_cnt++;
4491
4492 return ret;
4493}
4494
Chris Mason39279cc2007-06-12 06:35:45 -04004495static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
4496 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04004497 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05004498 const char *name, int name_len,
Yan Zhengd2fb3432008-12-11 16:30:39 -05004499 u64 ref_objectid, u64 objectid,
4500 u64 alloc_hint, int mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04004501{
4502 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004503 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04004504 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04004505 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05004506 struct btrfs_inode_ref *ref;
4507 struct btrfs_key key[2];
4508 u32 sizes[2];
4509 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04004510 int ret;
4511 int owner;
4512
Chris Mason5f39d392007-10-15 16:14:19 -04004513 path = btrfs_alloc_path();
4514 BUG_ON(!path);
4515
Chris Mason39279cc2007-06-12 06:35:45 -04004516 inode = new_inode(root->fs_info->sb);
4517 if (!inode)
4518 return ERR_PTR(-ENOMEM);
4519
Josef Bacikaec74772008-07-24 12:12:38 -04004520 if (dir) {
Chris Mason3de45862008-11-17 21:02:50 -05004521 ret = btrfs_set_inode_index(dir, index);
Shen Feng09771432009-04-02 16:46:06 -04004522 if (ret) {
4523 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004524 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04004525 }
Josef Bacikaec74772008-07-24 12:12:38 -04004526 }
4527 /*
4528 * index_cnt is ignored for everything but a dir,
4529 * btrfs_get_inode_index_count has an explanation for the magic
4530 * number
4531 */
4532 BTRFS_I(inode)->index_cnt = 2;
Chris Mason39279cc2007-06-12 06:35:45 -04004533 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04004534 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik76195852010-11-19 02:18:02 +00004535 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik6a632092009-02-20 11:00:09 -05004536 btrfs_set_inode_space_info(root, inode);
Chris Masonb888db22007-08-27 16:49:44 -04004537
Chris Mason39279cc2007-06-12 06:35:45 -04004538 if (mode & S_IFDIR)
4539 owner = 0;
4540 else
4541 owner = 1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05004542 BTRFS_I(inode)->block_group =
4543 btrfs_find_block_group(root, 0, alloc_hint, owner);
Chris Mason9c583092008-01-29 15:15:18 -05004544
4545 key[0].objectid = objectid;
4546 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
4547 key[0].offset = 0;
4548
4549 key[1].objectid = objectid;
4550 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
4551 key[1].offset = ref_objectid;
4552
4553 sizes[0] = sizeof(struct btrfs_inode_item);
4554 sizes[1] = name_len + sizeof(*ref);
4555
Chris Masonb9473432009-03-13 11:00:37 -04004556 path->leave_spinning = 1;
Chris Mason9c583092008-01-29 15:15:18 -05004557 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
4558 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04004559 goto fail;
4560
Dmitry Monakhovecc11fab2010-03-04 17:31:47 +03004561 inode_init_owner(inode, dir, mode);
Chris Mason39279cc2007-06-12 06:35:45 -04004562 inode->i_ino = objectid;
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004563 inode_set_bytes(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004564 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04004565 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
4566 struct btrfs_inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04004567 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05004568
4569 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
4570 struct btrfs_inode_ref);
4571 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004572 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
Chris Mason9c583092008-01-29 15:15:18 -05004573 ptr = (unsigned long)(ref + 1);
4574 write_extent_buffer(path->nodes[0], name, ptr, name_len);
4575
Chris Mason5f39d392007-10-15 16:14:19 -04004576 btrfs_mark_buffer_dirty(path->nodes[0]);
4577 btrfs_free_path(path);
4578
Chris Mason39279cc2007-06-12 06:35:45 -04004579 location = &BTRFS_I(inode)->location;
4580 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04004581 location->offset = 0;
4582 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
4583
Christoph Hellwig6cbff002009-04-17 10:37:41 +02004584 btrfs_inherit_iflags(inode, dir);
4585
Chris Mason94272162009-07-02 12:26:06 -04004586 if ((mode & S_IFREG)) {
4587 if (btrfs_test_opt(root, NODATASUM))
4588 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
4589 if (btrfs_test_opt(root, NODATACOW))
4590 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
4591 }
4592
Chris Mason39279cc2007-06-12 06:35:45 -04004593 insert_inode_hash(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004594 inode_tree_add(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004595 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004596fail:
Josef Bacikaec74772008-07-24 12:12:38 -04004597 if (dir)
4598 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04004599 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004600 iput(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004601 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004602}
4603
4604static inline u8 btrfs_inode_type(struct inode *inode)
4605{
4606 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
4607}
4608
Chris Masond352ac62008-09-29 15:18:18 -04004609/*
4610 * utility function to add 'inode' into 'parent_inode' with
4611 * a give name and a given sequence number.
4612 * if 'add_backref' is true, also insert a backref from the
4613 * inode to the parent directory.
4614 */
Chris Masone02119d2008-09-05 16:13:11 -04004615int btrfs_add_link(struct btrfs_trans_handle *trans,
4616 struct inode *parent_inode, struct inode *inode,
4617 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004618{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004619 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004620 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04004621 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Chris Mason5f39d392007-10-15 16:14:19 -04004622
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004623 if (unlikely(inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
4624 memcpy(&key, &BTRFS_I(inode)->root->root_key, sizeof(key));
4625 } else {
4626 key.objectid = inode->i_ino;
4627 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
4628 key.offset = 0;
4629 }
Chris Mason39279cc2007-06-12 06:35:45 -04004630
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004631 if (unlikely(inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
4632 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
4633 key.objectid, root->root_key.objectid,
4634 parent_inode->i_ino,
4635 index, name, name_len);
4636 } else if (add_backref) {
4637 ret = btrfs_insert_inode_ref(trans, root,
4638 name, name_len, inode->i_ino,
4639 parent_inode->i_ino, index);
4640 }
4641
Chris Mason39279cc2007-06-12 06:35:45 -04004642 if (ret == 0) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004643 ret = btrfs_insert_dir_item(trans, root, name, name_len,
4644 parent_inode->i_ino, &key,
4645 btrfs_inode_type(inode), index);
4646 BUG_ON(ret);
4647
Chris Masondbe674a2008-07-17 12:54:05 -04004648 btrfs_i_size_write(parent_inode, parent_inode->i_size +
Chris Masone02119d2008-09-05 16:13:11 -04004649 name_len * 2);
Chris Mason79c44582007-06-25 10:09:33 -04004650 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
Chris Masone02119d2008-09-05 16:13:11 -04004651 ret = btrfs_update_inode(trans, root, parent_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004652 }
4653 return ret;
4654}
4655
4656static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Josef Bacika1b075d2010-11-19 20:36:11 +00004657 struct inode *dir, struct dentry *dentry,
4658 struct inode *inode, int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004659{
Josef Bacika1b075d2010-11-19 20:36:11 +00004660 int err = btrfs_add_link(trans, dir, inode,
4661 dentry->d_name.name, dentry->d_name.len,
4662 backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004663 if (!err) {
4664 d_instantiate(dentry, inode);
4665 return 0;
4666 }
4667 if (err > 0)
4668 err = -EEXIST;
4669 return err;
4670}
4671
Josef Bacik618e21d2007-07-11 10:18:17 -04004672static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
4673 int mode, dev_t rdev)
4674{
4675 struct btrfs_trans_handle *trans;
4676 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004677 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04004678 int err;
4679 int drop_inode = 0;
4680 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05004681 unsigned long nr = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004682 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04004683
4684 if (!new_valid_dev(rdev))
4685 return -EINVAL;
4686
Yan, Zhenga22285a2010-05-16 10:48:46 -04004687 err = btrfs_find_free_objectid(NULL, root, dir->i_ino, &objectid);
4688 if (err)
4689 return err;
4690
Josef Bacik9ed74f22009-09-11 16:12:44 -04004691 /*
4692 * 2 for inode item and ref
4693 * 2 for dir items
4694 * 1 for xattr if selinux is on
4695 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004696 trans = btrfs_start_transaction(root, 5);
4697 if (IS_ERR(trans))
4698 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05004699
Josef Bacik618e21d2007-07-11 10:18:17 -04004700 btrfs_set_trans_block_group(trans, dir);
4701
Josef Bacikaec74772008-07-24 12:12:38 -04004702 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Josef Bacika1b075d2010-11-19 20:36:11 +00004703 dentry->d_name.len, dir->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004704 BTRFS_I(dir)->block_group, mode, &index);
Josef Bacik618e21d2007-07-11 10:18:17 -04004705 err = PTR_ERR(inode);
4706 if (IS_ERR(inode))
4707 goto out_unlock;
4708
Yan, Zhengf34f57a2009-11-12 09:35:27 +00004709 err = btrfs_init_inode_security(trans, inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04004710 if (err) {
4711 drop_inode = 1;
4712 goto out_unlock;
4713 }
4714
Josef Bacik618e21d2007-07-11 10:18:17 -04004715 btrfs_set_trans_block_group(trans, inode);
Josef Bacika1b075d2010-11-19 20:36:11 +00004716 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Josef Bacik618e21d2007-07-11 10:18:17 -04004717 if (err)
4718 drop_inode = 1;
4719 else {
4720 inode->i_op = &btrfs_special_inode_operations;
4721 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04004722 btrfs_update_inode(trans, root, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04004723 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004724 btrfs_update_inode_block_group(trans, inode);
4725 btrfs_update_inode_block_group(trans, dir);
4726out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004727 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04004728 btrfs_end_transaction_throttle(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004729 btrfs_btree_balance_dirty(root, nr);
Josef Bacik618e21d2007-07-11 10:18:17 -04004730 if (drop_inode) {
4731 inode_dec_link_count(inode);
4732 iput(inode);
4733 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004734 return err;
4735}
4736
Chris Mason39279cc2007-06-12 06:35:45 -04004737static int btrfs_create(struct inode *dir, struct dentry *dentry,
4738 int mode, struct nameidata *nd)
4739{
4740 struct btrfs_trans_handle *trans;
4741 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004742 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004743 int drop_inode = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004744 int err;
Chris Mason1832a6d2007-12-21 16:27:21 -05004745 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004746 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004747 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004748
Yan, Zhenga22285a2010-05-16 10:48:46 -04004749 err = btrfs_find_free_objectid(NULL, root, dir->i_ino, &objectid);
4750 if (err)
4751 return err;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004752 /*
4753 * 2 for inode item and ref
4754 * 2 for dir items
4755 * 1 for xattr if selinux is on
4756 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004757 trans = btrfs_start_transaction(root, 5);
4758 if (IS_ERR(trans))
4759 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004760
Chris Mason39279cc2007-06-12 06:35:45 -04004761 btrfs_set_trans_block_group(trans, dir);
4762
Josef Bacikaec74772008-07-24 12:12:38 -04004763 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Josef Bacika1b075d2010-11-19 20:36:11 +00004764 dentry->d_name.len, dir->i_ino, objectid,
4765 BTRFS_I(dir)->block_group, mode, &index);
Chris Mason39279cc2007-06-12 06:35:45 -04004766 err = PTR_ERR(inode);
4767 if (IS_ERR(inode))
4768 goto out_unlock;
4769
Yan, Zhengf34f57a2009-11-12 09:35:27 +00004770 err = btrfs_init_inode_security(trans, inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04004771 if (err) {
4772 drop_inode = 1;
4773 goto out_unlock;
4774 }
4775
Chris Mason39279cc2007-06-12 06:35:45 -04004776 btrfs_set_trans_block_group(trans, inode);
Josef Bacika1b075d2010-11-19 20:36:11 +00004777 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004778 if (err)
4779 drop_inode = 1;
4780 else {
4781 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04004782 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04004783 inode->i_fop = &btrfs_file_operations;
4784 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05004785 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04004786 }
Chris Mason39279cc2007-06-12 06:35:45 -04004787 btrfs_update_inode_block_group(trans, inode);
4788 btrfs_update_inode_block_group(trans, dir);
4789out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004790 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004791 btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004792 if (drop_inode) {
4793 inode_dec_link_count(inode);
4794 iput(inode);
4795 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004796 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004797 return err;
4798}
4799
4800static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
4801 struct dentry *dentry)
4802{
4803 struct btrfs_trans_handle *trans;
4804 struct btrfs_root *root = BTRFS_I(dir)->root;
4805 struct inode *inode = old_dentry->d_inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004806 u64 index;
Chris Mason1832a6d2007-12-21 16:27:21 -05004807 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004808 int err;
4809 int drop_inode = 0;
4810
4811 if (inode->i_nlink == 0)
4812 return -ENOENT;
4813
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00004814 /* do not allow sys_link's with other subvols of the same device */
4815 if (root->objectid != BTRFS_I(inode)->root->objectid)
4816 return -EPERM;
4817
Josef Bacik9ed74f22009-09-11 16:12:44 -04004818 btrfs_inc_nlink(inode);
Josef Bacikbc1cbf12010-11-23 19:50:59 +00004819 inode->i_ctime = CURRENT_TIME;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004820
Chris Mason3de45862008-11-17 21:02:50 -05004821 err = btrfs_set_inode_index(dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04004822 if (err)
4823 goto fail;
4824
Yan, Zhenga22285a2010-05-16 10:48:46 -04004825 /*
Miao Xie7e6b6462011-02-18 09:21:17 +00004826 * 2 items for inode and inode ref
Yan, Zhenga22285a2010-05-16 10:48:46 -04004827 * 2 items for dir items
Miao Xie7e6b6462011-02-18 09:21:17 +00004828 * 1 item for parent inode
Yan, Zhenga22285a2010-05-16 10:48:46 -04004829 */
Miao Xie7e6b6462011-02-18 09:21:17 +00004830 trans = btrfs_start_transaction(root, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004831 if (IS_ERR(trans)) {
4832 err = PTR_ERR(trans);
4833 goto fail;
4834 }
Chris Mason5f39d392007-10-15 16:14:19 -04004835
Chris Mason39279cc2007-06-12 06:35:45 -04004836 btrfs_set_trans_block_group(trans, dir);
Al Viro7de9c6ee2010-10-23 11:11:40 -04004837 ihold(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004838
Josef Bacika1b075d2010-11-19 20:36:11 +00004839 err = btrfs_add_nondir(trans, dir, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04004840
Yan, Zhenga5719522009-09-24 09:17:31 -04004841 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04004842 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04004843 } else {
Josef Bacik6a912212010-11-20 09:48:00 +00004844 struct dentry *parent = dget_parent(dentry);
Yan, Zhenga5719522009-09-24 09:17:31 -04004845 btrfs_update_inode_block_group(trans, dir);
4846 err = btrfs_update_inode(trans, root, inode);
4847 BUG_ON(err);
Josef Bacik6a912212010-11-20 09:48:00 +00004848 btrfs_log_new_name(trans, inode, NULL, parent);
4849 dput(parent);
Yan, Zhenga5719522009-09-24 09:17:31 -04004850 }
Chris Mason39279cc2007-06-12 06:35:45 -04004851
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004852 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004853 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004854fail:
Chris Mason39279cc2007-06-12 06:35:45 -04004855 if (drop_inode) {
4856 inode_dec_link_count(inode);
4857 iput(inode);
4858 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004859 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004860 return err;
4861}
4862
Chris Mason39279cc2007-06-12 06:35:45 -04004863static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
4864{
Chris Masonb9d86662008-05-02 16:13:49 -04004865 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004866 struct btrfs_trans_handle *trans;
4867 struct btrfs_root *root = BTRFS_I(dir)->root;
4868 int err = 0;
4869 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04004870 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004871 u64 index = 0;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004872 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04004873
Yan, Zhenga22285a2010-05-16 10:48:46 -04004874 err = btrfs_find_free_objectid(NULL, root, dir->i_ino, &objectid);
4875 if (err)
4876 return err;
4877
Josef Bacik9ed74f22009-09-11 16:12:44 -04004878 /*
4879 * 2 items for inode and ref
4880 * 2 items for dir items
4881 * 1 for xattr if selinux is on
4882 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004883 trans = btrfs_start_transaction(root, 5);
4884 if (IS_ERR(trans))
4885 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004886 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -04004887
Josef Bacikaec74772008-07-24 12:12:38 -04004888 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Josef Bacika1b075d2010-11-19 20:36:11 +00004889 dentry->d_name.len, dir->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04004890 BTRFS_I(dir)->block_group, S_IFDIR | mode,
4891 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04004892 if (IS_ERR(inode)) {
4893 err = PTR_ERR(inode);
4894 goto out_fail;
4895 }
Chris Mason5f39d392007-10-15 16:14:19 -04004896
Chris Mason39279cc2007-06-12 06:35:45 -04004897 drop_on_err = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -04004898
Yan, Zhengf34f57a2009-11-12 09:35:27 +00004899 err = btrfs_init_inode_security(trans, inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04004900 if (err)
4901 goto out_fail;
4902
Chris Mason39279cc2007-06-12 06:35:45 -04004903 inode->i_op = &btrfs_dir_inode_operations;
4904 inode->i_fop = &btrfs_dir_file_operations;
4905 btrfs_set_trans_block_group(trans, inode);
4906
Chris Masondbe674a2008-07-17 12:54:05 -04004907 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004908 err = btrfs_update_inode(trans, root, inode);
4909 if (err)
4910 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04004911
Josef Bacika1b075d2010-11-19 20:36:11 +00004912 err = btrfs_add_link(trans, dir, inode, dentry->d_name.name,
4913 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004914 if (err)
4915 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04004916
Chris Mason39279cc2007-06-12 06:35:45 -04004917 d_instantiate(dentry, inode);
4918 drop_on_err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004919 btrfs_update_inode_block_group(trans, inode);
4920 btrfs_update_inode_block_group(trans, dir);
4921
4922out_fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004923 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004924 btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004925 if (drop_on_err)
4926 iput(inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004927 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004928 return err;
4929}
4930
Chris Masond352ac62008-09-29 15:18:18 -04004931/* helper for btfs_get_extent. Given an existing extent in the tree,
4932 * and an extent that you want to insert, deal with overlap and insert
4933 * the new extent into the tree.
4934 */
Chris Mason3b951512008-04-17 11:29:12 -04004935static int merge_extent_mapping(struct extent_map_tree *em_tree,
4936 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04004937 struct extent_map *em,
4938 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04004939{
4940 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04004941
Chris Masone6dcd2d2008-07-17 12:53:50 -04004942 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
4943 start_diff = map_start - em->start;
4944 em->start = map_start;
4945 em->len = map_len;
Chris Masonc8b97812008-10-29 14:49:59 -04004946 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
4947 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04004948 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04004949 em->block_len -= start_diff;
4950 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004951 return add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04004952}
4953
Chris Masonc8b97812008-10-29 14:49:59 -04004954static noinline int uncompress_inline(struct btrfs_path *path,
4955 struct inode *inode, struct page *page,
4956 size_t pg_offset, u64 extent_offset,
4957 struct btrfs_file_extent_item *item)
4958{
4959 int ret;
4960 struct extent_buffer *leaf = path->nodes[0];
4961 char *tmp;
4962 size_t max_size;
4963 unsigned long inline_size;
4964 unsigned long ptr;
Li Zefan261507a02010-12-17 14:21:50 +08004965 int compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04004966
4967 WARN_ON(pg_offset != 0);
Li Zefan261507a02010-12-17 14:21:50 +08004968 compress_type = btrfs_file_extent_compression(leaf, item);
Chris Masonc8b97812008-10-29 14:49:59 -04004969 max_size = btrfs_file_extent_ram_bytes(leaf, item);
4970 inline_size = btrfs_file_extent_inline_item_len(leaf,
4971 btrfs_item_nr(leaf, path->slots[0]));
4972 tmp = kmalloc(inline_size, GFP_NOFS);
4973 ptr = btrfs_file_extent_inline_start(item);
4974
4975 read_extent_buffer(leaf, tmp, ptr, inline_size);
4976
Chris Mason5b050f02008-11-11 09:34:41 -05004977 max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size);
Li Zefan261507a02010-12-17 14:21:50 +08004978 ret = btrfs_decompress(compress_type, tmp, page,
4979 extent_offset, inline_size, max_size);
Chris Masonc8b97812008-10-29 14:49:59 -04004980 if (ret) {
4981 char *kaddr = kmap_atomic(page, KM_USER0);
4982 unsigned long copy_size = min_t(u64,
4983 PAGE_CACHE_SIZE - pg_offset,
4984 max_size - extent_offset);
4985 memset(kaddr + pg_offset, 0, copy_size);
4986 kunmap_atomic(kaddr, KM_USER0);
4987 }
4988 kfree(tmp);
4989 return 0;
4990}
4991
Chris Masond352ac62008-09-29 15:18:18 -04004992/*
4993 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05004994 * the ugly parts come from merging extents from the disk with the in-ram
4995 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04004996 * where the in-ram extents might be locked pending data=ordered completion.
4997 *
4998 * This also copies inline extents directly into the page.
4999 */
Chris Masond3977122009-01-05 21:25:51 -05005000
Chris Masona52d9a82007-08-27 16:49:44 -04005001struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05005002 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04005003 int create)
5004{
5005 int ret;
5006 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04005007 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04005008 u64 extent_start = 0;
5009 u64 extent_end = 0;
5010 u64 objectid = inode->i_ino;
5011 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04005012 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04005013 struct btrfs_root *root = BTRFS_I(inode)->root;
5014 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04005015 struct extent_buffer *leaf;
5016 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04005017 struct extent_map *em = NULL;
5018 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05005019 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04005020 struct btrfs_trans_handle *trans = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08005021 int compress_type;
Chris Masona52d9a82007-08-27 16:49:44 -04005022
Chris Masona52d9a82007-08-27 16:49:44 -04005023again:
Chris Mason890871b2009-09-02 16:24:52 -04005024 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05005025 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04005026 if (em)
5027 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04005028 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05005029
Chris Masona52d9a82007-08-27 16:49:44 -04005030 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04005031 if (em->start > start || em->start + em->len <= start)
5032 free_extent_map(em);
5033 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05005034 free_extent_map(em);
5035 else
5036 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005037 }
Chris Masond1310b22008-01-24 16:13:08 -05005038 em = alloc_extent_map(GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04005039 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05005040 err = -ENOMEM;
5041 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005042 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005043 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05005044 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05005045 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05005046 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04005047 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04005048
5049 if (!path) {
5050 path = btrfs_alloc_path();
5051 BUG_ON(!path);
5052 }
5053
Chris Mason179e29e2007-11-01 11:28:41 -04005054 ret = btrfs_lookup_file_extent(trans, root, path,
5055 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04005056 if (ret < 0) {
5057 err = ret;
5058 goto out;
5059 }
5060
5061 if (ret != 0) {
5062 if (path->slots[0] == 0)
5063 goto not_found;
5064 path->slots[0]--;
5065 }
5066
Chris Mason5f39d392007-10-15 16:14:19 -04005067 leaf = path->nodes[0];
5068 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04005069 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04005070 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04005071 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5072 found_type = btrfs_key_type(&found_key);
5073 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04005074 found_type != BTRFS_EXTENT_DATA_KEY) {
5075 goto not_found;
5076 }
5077
Chris Mason5f39d392007-10-15 16:14:19 -04005078 found_type = btrfs_file_extent_type(leaf, item);
5079 extent_start = found_key.offset;
Li Zefan261507a02010-12-17 14:21:50 +08005080 compress_type = btrfs_file_extent_compression(leaf, item);
Yan Zhengd899e052008-10-30 14:25:28 -04005081 if (found_type == BTRFS_FILE_EXTENT_REG ||
5082 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04005083 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04005084 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04005085 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
5086 size_t size;
5087 size = btrfs_file_extent_inline_len(leaf, item);
5088 extent_end = (extent_start + size + root->sectorsize - 1) &
5089 ~((u64)root->sectorsize - 1);
5090 }
5091
5092 if (start >= extent_end) {
5093 path->slots[0]++;
5094 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
5095 ret = btrfs_next_leaf(root, path);
5096 if (ret < 0) {
5097 err = ret;
5098 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005099 }
Yan Zheng9036c102008-10-30 14:19:41 -04005100 if (ret > 0)
5101 goto not_found;
5102 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04005103 }
Yan Zheng9036c102008-10-30 14:19:41 -04005104 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5105 if (found_key.objectid != objectid ||
5106 found_key.type != BTRFS_EXTENT_DATA_KEY)
5107 goto not_found;
5108 if (start + len <= found_key.offset)
5109 goto not_found;
5110 em->start = start;
5111 em->len = found_key.offset - start;
5112 goto not_found_em;
5113 }
5114
Yan Zhengd899e052008-10-30 14:25:28 -04005115 if (found_type == BTRFS_FILE_EXTENT_REG ||
5116 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng9036c102008-10-30 14:19:41 -04005117 em->start = extent_start;
5118 em->len = extent_end - extent_start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005119 em->orig_start = extent_start -
5120 btrfs_file_extent_offset(leaf, item);
Chris Masondb945352007-10-15 16:15:53 -04005121 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
5122 if (bytenr == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04005123 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04005124 goto insert;
5125 }
Li Zefan261507a02010-12-17 14:21:50 +08005126 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04005127 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08005128 em->compress_type = compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04005129 em->block_start = bytenr;
5130 em->block_len = btrfs_file_extent_disk_num_bytes(leaf,
5131 item);
5132 } else {
5133 bytenr += btrfs_file_extent_offset(leaf, item);
5134 em->block_start = bytenr;
5135 em->block_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04005136 if (found_type == BTRFS_FILE_EXTENT_PREALLOC)
5137 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -04005138 }
Chris Masona52d9a82007-08-27 16:49:44 -04005139 goto insert;
5140 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04005141 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04005142 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04005143 size_t size;
5144 size_t extent_offset;
5145 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04005146
Chris Masona52d9a82007-08-27 16:49:44 -04005147 em->block_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04005148 if (!page || create) {
Yan689f9342007-10-29 11:41:07 -04005149 em->start = extent_start;
Yan Zheng9036c102008-10-30 14:19:41 -04005150 em->len = extent_end - extent_start;
Yan689f9342007-10-29 11:41:07 -04005151 goto out;
5152 }
5153
Yan Zheng9036c102008-10-30 14:19:41 -04005154 size = btrfs_file_extent_inline_len(leaf, item);
5155 extent_offset = page_offset(page) + pg_offset - extent_start;
Chris Mason70dec802008-01-29 09:59:12 -05005156 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04005157 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04005158 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05005159 em->len = (copy_size + root->sectorsize - 1) &
5160 ~((u64)root->sectorsize - 1);
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005161 em->orig_start = EXTENT_MAP_INLINE;
Li Zefan261507a02010-12-17 14:21:50 +08005162 if (compress_type) {
Chris Masonc8b97812008-10-29 14:49:59 -04005163 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08005164 em->compress_type = compress_type;
5165 }
Yan689f9342007-10-29 11:41:07 -04005166 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04005167 if (create == 0 && !PageUptodate(page)) {
Li Zefan261507a02010-12-17 14:21:50 +08005168 if (btrfs_file_extent_compression(leaf, item) !=
5169 BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04005170 ret = uncompress_inline(path, inode, page,
5171 pg_offset,
5172 extent_offset, item);
5173 BUG_ON(ret);
5174 } else {
5175 map = kmap(page);
5176 read_extent_buffer(leaf, map + pg_offset, ptr,
5177 copy_size);
Chris Mason93c82d52009-09-11 12:36:29 -04005178 if (pg_offset + copy_size < PAGE_CACHE_SIZE) {
5179 memset(map + pg_offset + copy_size, 0,
5180 PAGE_CACHE_SIZE - pg_offset -
5181 copy_size);
5182 }
Chris Masonc8b97812008-10-29 14:49:59 -04005183 kunmap(page);
5184 }
Chris Mason179e29e2007-11-01 11:28:41 -04005185 flush_dcache_page(page);
5186 } else if (create && PageUptodate(page)) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005187 WARN_ON(1);
Chris Mason179e29e2007-11-01 11:28:41 -04005188 if (!trans) {
5189 kunmap(page);
5190 free_extent_map(em);
5191 em = NULL;
5192 btrfs_release_path(root, path);
Chris Masonf9295742008-07-17 12:54:14 -04005193 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005194 if (IS_ERR(trans))
5195 return ERR_CAST(trans);
Chris Mason179e29e2007-11-01 11:28:41 -04005196 goto again;
5197 }
Chris Masonc8b97812008-10-29 14:49:59 -04005198 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05005199 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04005200 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04005201 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04005202 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04005203 }
Chris Masond1310b22008-01-24 16:13:08 -05005204 set_extent_uptodate(io_tree, em->start,
5205 extent_map_end(em) - 1, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04005206 goto insert;
5207 } else {
Chris Masond3977122009-01-05 21:25:51 -05005208 printk(KERN_ERR "btrfs unknown found_type %d\n", found_type);
Chris Masona52d9a82007-08-27 16:49:44 -04005209 WARN_ON(1);
5210 }
5211not_found:
5212 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05005213 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04005214not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04005215 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04005216 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04005217insert:
5218 btrfs_release_path(root, path);
Chris Masond1310b22008-01-24 16:13:08 -05005219 if (em->start > start || extent_map_end(em) <= start) {
Chris Masond3977122009-01-05 21:25:51 -05005220 printk(KERN_ERR "Btrfs: bad extent! em: [%llu %llu] passed "
5221 "[%llu %llu]\n", (unsigned long long)em->start,
5222 (unsigned long long)em->len,
5223 (unsigned long long)start,
5224 (unsigned long long)len);
Chris Masona52d9a82007-08-27 16:49:44 -04005225 err = -EIO;
5226 goto out;
5227 }
Chris Masond1310b22008-01-24 16:13:08 -05005228
5229 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04005230 write_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005231 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04005232 /* it is possible that someone inserted the extent into the tree
5233 * while we had the lock dropped. It is also possible that
5234 * an overlapping map exists in the tree
5235 */
Chris Masona52d9a82007-08-27 16:49:44 -04005236 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04005237 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005238
5239 ret = 0;
5240
Chris Mason3b951512008-04-17 11:29:12 -04005241 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04005242 if (existing && (existing->start > start ||
5243 existing->start + existing->len <= start)) {
5244 free_extent_map(existing);
5245 existing = NULL;
5246 }
Chris Mason3b951512008-04-17 11:29:12 -04005247 if (!existing) {
5248 existing = lookup_extent_mapping(em_tree, em->start,
5249 em->len);
5250 if (existing) {
5251 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005252 em, start,
5253 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04005254 free_extent_map(existing);
5255 if (err) {
5256 free_extent_map(em);
5257 em = NULL;
5258 }
5259 } else {
5260 err = -EIO;
Chris Mason3b951512008-04-17 11:29:12 -04005261 free_extent_map(em);
5262 em = NULL;
5263 }
5264 } else {
5265 free_extent_map(em);
5266 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005267 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04005268 }
Chris Masona52d9a82007-08-27 16:49:44 -04005269 }
Chris Mason890871b2009-09-02 16:24:52 -04005270 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005271out:
Chris Masonf4219502008-07-22 11:18:09 -04005272 if (path)
5273 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04005274 if (trans) {
5275 ret = btrfs_end_transaction(trans, root);
Chris Masond3977122009-01-05 21:25:51 -05005276 if (!err)
Chris Masona52d9a82007-08-27 16:49:44 -04005277 err = ret;
5278 }
Chris Masona52d9a82007-08-27 16:49:44 -04005279 if (err) {
5280 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04005281 return ERR_PTR(err);
5282 }
5283 return em;
5284}
5285
Chris Masonec29ed52011-02-23 16:23:20 -05005286struct extent_map *btrfs_get_extent_fiemap(struct inode *inode, struct page *page,
5287 size_t pg_offset, u64 start, u64 len,
5288 int create)
5289{
5290 struct extent_map *em;
5291 struct extent_map *hole_em = NULL;
5292 u64 range_start = start;
5293 u64 end;
5294 u64 found;
5295 u64 found_end;
5296 int err = 0;
5297
5298 em = btrfs_get_extent(inode, page, pg_offset, start, len, create);
5299 if (IS_ERR(em))
5300 return em;
5301 if (em) {
5302 /*
5303 * if our em maps to a hole, there might
5304 * actually be delalloc bytes behind it
5305 */
5306 if (em->block_start != EXTENT_MAP_HOLE)
5307 return em;
5308 else
5309 hole_em = em;
5310 }
5311
5312 /* check to see if we've wrapped (len == -1 or similar) */
5313 end = start + len;
5314 if (end < start)
5315 end = (u64)-1;
5316 else
5317 end -= 1;
5318
5319 em = NULL;
5320
5321 /* ok, we didn't find anything, lets look for delalloc */
5322 found = count_range_bits(&BTRFS_I(inode)->io_tree, &range_start,
5323 end, len, EXTENT_DELALLOC, 1);
5324 found_end = range_start + found;
5325 if (found_end < range_start)
5326 found_end = (u64)-1;
5327
5328 /*
5329 * we didn't find anything useful, return
5330 * the original results from get_extent()
5331 */
5332 if (range_start > end || found_end <= start) {
5333 em = hole_em;
5334 hole_em = NULL;
5335 goto out;
5336 }
5337
5338 /* adjust the range_start to make sure it doesn't
5339 * go backwards from the start they passed in
5340 */
5341 range_start = max(start,range_start);
5342 found = found_end - range_start;
5343
5344 if (found > 0) {
5345 u64 hole_start = start;
5346 u64 hole_len = len;
5347
5348 em = alloc_extent_map(GFP_NOFS);
5349 if (!em) {
5350 err = -ENOMEM;
5351 goto out;
5352 }
5353 /*
5354 * when btrfs_get_extent can't find anything it
5355 * returns one huge hole
5356 *
5357 * make sure what it found really fits our range, and
5358 * adjust to make sure it is based on the start from
5359 * the caller
5360 */
5361 if (hole_em) {
5362 u64 calc_end = extent_map_end(hole_em);
5363
5364 if (calc_end <= start || (hole_em->start > end)) {
5365 free_extent_map(hole_em);
5366 hole_em = NULL;
5367 } else {
5368 hole_start = max(hole_em->start, start);
5369 hole_len = calc_end - hole_start;
5370 }
5371 }
5372 em->bdev = NULL;
5373 if (hole_em && range_start > hole_start) {
5374 /* our hole starts before our delalloc, so we
5375 * have to return just the parts of the hole
5376 * that go until the delalloc starts
5377 */
5378 em->len = min(hole_len,
5379 range_start - hole_start);
5380 em->start = hole_start;
5381 em->orig_start = hole_start;
5382 /*
5383 * don't adjust block start at all,
5384 * it is fixed at EXTENT_MAP_HOLE
5385 */
5386 em->block_start = hole_em->block_start;
5387 em->block_len = hole_len;
5388 } else {
5389 em->start = range_start;
5390 em->len = found;
5391 em->orig_start = range_start;
5392 em->block_start = EXTENT_MAP_DELALLOC;
5393 em->block_len = found;
5394 }
5395 } else if (hole_em) {
5396 return hole_em;
5397 }
5398out:
5399
5400 free_extent_map(hole_em);
5401 if (err) {
5402 free_extent_map(em);
5403 return ERR_PTR(err);
5404 }
5405 return em;
5406}
5407
Josef Bacik4b46fce2010-05-23 11:00:55 -04005408static struct extent_map *btrfs_new_extent_direct(struct inode *inode,
5409 u64 start, u64 len)
5410{
5411 struct btrfs_root *root = BTRFS_I(inode)->root;
5412 struct btrfs_trans_handle *trans;
5413 struct extent_map *em;
5414 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
5415 struct btrfs_key ins;
5416 u64 alloc_hint;
5417 int ret;
5418
5419 btrfs_drop_extent_cache(inode, start, start + len - 1, 0);
5420
5421 trans = btrfs_join_transaction(root, 0);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005422 if (IS_ERR(trans))
5423 return ERR_CAST(trans);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005424
5425 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
5426
5427 alloc_hint = get_extent_allocation_hint(inode, start, len);
5428 ret = btrfs_reserve_extent(trans, root, len, root->sectorsize, 0,
5429 alloc_hint, (u64)-1, &ins, 1);
5430 if (ret) {
5431 em = ERR_PTR(ret);
5432 goto out;
5433 }
5434
5435 em = alloc_extent_map(GFP_NOFS);
5436 if (!em) {
5437 em = ERR_PTR(-ENOMEM);
5438 goto out;
5439 }
5440
5441 em->start = start;
5442 em->orig_start = em->start;
5443 em->len = ins.offset;
5444
5445 em->block_start = ins.objectid;
5446 em->block_len = ins.offset;
5447 em->bdev = root->fs_info->fs_devices->latest_bdev;
5448 set_bit(EXTENT_FLAG_PINNED, &em->flags);
5449
5450 while (1) {
5451 write_lock(&em_tree->lock);
5452 ret = add_extent_mapping(em_tree, em);
5453 write_unlock(&em_tree->lock);
5454 if (ret != -EEXIST)
5455 break;
5456 btrfs_drop_extent_cache(inode, start, start + em->len - 1, 0);
5457 }
5458
5459 ret = btrfs_add_ordered_extent_dio(inode, start, ins.objectid,
5460 ins.offset, ins.offset, 0);
5461 if (ret) {
5462 btrfs_free_reserved_extent(root, ins.objectid, ins.offset);
5463 em = ERR_PTR(ret);
5464 }
5465out:
5466 btrfs_end_transaction(trans, root);
5467 return em;
5468}
5469
Chris Mason46bfbb52010-05-26 11:04:10 -04005470/*
5471 * returns 1 when the nocow is safe, < 1 on error, 0 if the
5472 * block must be cow'd
5473 */
5474static noinline int can_nocow_odirect(struct btrfs_trans_handle *trans,
5475 struct inode *inode, u64 offset, u64 len)
5476{
5477 struct btrfs_path *path;
5478 int ret;
5479 struct extent_buffer *leaf;
5480 struct btrfs_root *root = BTRFS_I(inode)->root;
5481 struct btrfs_file_extent_item *fi;
5482 struct btrfs_key key;
5483 u64 disk_bytenr;
5484 u64 backref_offset;
5485 u64 extent_end;
5486 u64 num_bytes;
5487 int slot;
5488 int found_type;
5489
5490 path = btrfs_alloc_path();
5491 if (!path)
5492 return -ENOMEM;
5493
5494 ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino,
5495 offset, 0);
5496 if (ret < 0)
5497 goto out;
5498
5499 slot = path->slots[0];
5500 if (ret == 1) {
5501 if (slot == 0) {
5502 /* can't find the item, must cow */
5503 ret = 0;
5504 goto out;
5505 }
5506 slot--;
5507 }
5508 ret = 0;
5509 leaf = path->nodes[0];
5510 btrfs_item_key_to_cpu(leaf, &key, slot);
5511 if (key.objectid != inode->i_ino ||
5512 key.type != BTRFS_EXTENT_DATA_KEY) {
5513 /* not our file or wrong item type, must cow */
5514 goto out;
5515 }
5516
5517 if (key.offset > offset) {
5518 /* Wrong offset, must cow */
5519 goto out;
5520 }
5521
5522 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
5523 found_type = btrfs_file_extent_type(leaf, fi);
5524 if (found_type != BTRFS_FILE_EXTENT_REG &&
5525 found_type != BTRFS_FILE_EXTENT_PREALLOC) {
5526 /* not a regular extent, must cow */
5527 goto out;
5528 }
5529 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
5530 backref_offset = btrfs_file_extent_offset(leaf, fi);
5531
5532 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
5533 if (extent_end < offset + len) {
5534 /* extent doesn't include our full range, must cow */
5535 goto out;
5536 }
5537
5538 if (btrfs_extent_readonly(root, disk_bytenr))
5539 goto out;
5540
5541 /*
5542 * look for other files referencing this extent, if we
5543 * find any we must cow
5544 */
5545 if (btrfs_cross_ref_exist(trans, root, inode->i_ino,
5546 key.offset - backref_offset, disk_bytenr))
5547 goto out;
5548
5549 /*
5550 * adjust disk_bytenr and num_bytes to cover just the bytes
5551 * in this extent we are about to write. If there
5552 * are any csums in that range we have to cow in order
5553 * to keep the csums correct
5554 */
5555 disk_bytenr += backref_offset;
5556 disk_bytenr += offset - key.offset;
5557 num_bytes = min(offset + len, extent_end) - offset;
5558 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
5559 goto out;
5560 /*
5561 * all of the above have passed, it is safe to overwrite this extent
5562 * without cow
5563 */
5564 ret = 1;
5565out:
5566 btrfs_free_path(path);
5567 return ret;
5568}
5569
Josef Bacik4b46fce2010-05-23 11:00:55 -04005570static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock,
5571 struct buffer_head *bh_result, int create)
5572{
5573 struct extent_map *em;
5574 struct btrfs_root *root = BTRFS_I(inode)->root;
5575 u64 start = iblock << inode->i_blkbits;
5576 u64 len = bh_result->b_size;
Chris Mason46bfbb52010-05-26 11:04:10 -04005577 struct btrfs_trans_handle *trans;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005578
5579 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
5580 if (IS_ERR(em))
5581 return PTR_ERR(em);
5582
5583 /*
5584 * Ok for INLINE and COMPRESSED extents we need to fallback on buffered
5585 * io. INLINE is special, and we could probably kludge it in here, but
5586 * it's still buffered so for safety lets just fall back to the generic
5587 * buffered path.
5588 *
5589 * For COMPRESSED we _have_ to read the entire extent in so we can
5590 * decompress it, so there will be buffering required no matter what we
5591 * do, so go ahead and fallback to buffered.
5592 *
5593 * We return -ENOTBLK because thats what makes DIO go ahead and go back
5594 * to buffered IO. Don't blame me, this is the price we pay for using
5595 * the generic code.
5596 */
5597 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) ||
5598 em->block_start == EXTENT_MAP_INLINE) {
5599 free_extent_map(em);
5600 return -ENOTBLK;
5601 }
5602
5603 /* Just a good old fashioned hole, return */
5604 if (!create && (em->block_start == EXTENT_MAP_HOLE ||
5605 test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
5606 free_extent_map(em);
5607 /* DIO will do one hole at a time, so just unlock a sector */
5608 unlock_extent(&BTRFS_I(inode)->io_tree, start,
5609 start + root->sectorsize - 1, GFP_NOFS);
5610 return 0;
5611 }
5612
5613 /*
5614 * We don't allocate a new extent in the following cases
5615 *
5616 * 1) The inode is marked as NODATACOW. In this case we'll just use the
5617 * existing extent.
5618 * 2) The extent is marked as PREALLOC. We're good to go here and can
5619 * just use the extent.
5620 *
5621 */
Chris Mason46bfbb52010-05-26 11:04:10 -04005622 if (!create) {
5623 len = em->len - (start - em->start);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005624 goto map;
Chris Mason46bfbb52010-05-26 11:04:10 -04005625 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005626
5627 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
5628 ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
5629 em->block_start != EXTENT_MAP_HOLE)) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04005630 int type;
5631 int ret;
Chris Mason46bfbb52010-05-26 11:04:10 -04005632 u64 block_start;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005633
5634 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
5635 type = BTRFS_ORDERED_PREALLOC;
5636 else
5637 type = BTRFS_ORDERED_NOCOW;
Chris Mason46bfbb52010-05-26 11:04:10 -04005638 len = min(len, em->len - (start - em->start));
Josef Bacik4b46fce2010-05-23 11:00:55 -04005639 block_start = em->block_start + (start - em->start);
Chris Mason46bfbb52010-05-26 11:04:10 -04005640
5641 /*
5642 * we're not going to log anything, but we do need
5643 * to make sure the current transaction stays open
5644 * while we look for nocow cross refs
5645 */
5646 trans = btrfs_join_transaction(root, 0);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005647 if (IS_ERR(trans))
Chris Mason46bfbb52010-05-26 11:04:10 -04005648 goto must_cow;
5649
5650 if (can_nocow_odirect(trans, inode, start, len) == 1) {
5651 ret = btrfs_add_ordered_extent_dio(inode, start,
5652 block_start, len, len, type);
5653 btrfs_end_transaction(trans, root);
5654 if (ret) {
5655 free_extent_map(em);
5656 return ret;
5657 }
5658 goto unlock;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005659 }
Chris Mason46bfbb52010-05-26 11:04:10 -04005660 btrfs_end_transaction(trans, root);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005661 }
Chris Mason46bfbb52010-05-26 11:04:10 -04005662must_cow:
5663 /*
5664 * this will cow the extent, reset the len in case we changed
5665 * it above
5666 */
5667 len = bh_result->b_size;
5668 free_extent_map(em);
5669 em = btrfs_new_extent_direct(inode, start, len);
5670 if (IS_ERR(em))
5671 return PTR_ERR(em);
5672 len = min(len, em->len - (start - em->start));
5673unlock:
Chris Mason4845e442010-05-25 20:56:50 -04005674 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, start + len - 1,
5675 EXTENT_LOCKED | EXTENT_DELALLOC | EXTENT_DIRTY, 1,
5676 0, NULL, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005677map:
5678 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
5679 inode->i_blkbits;
Chris Mason46bfbb52010-05-26 11:04:10 -04005680 bh_result->b_size = len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005681 bh_result->b_bdev = em->bdev;
5682 set_buffer_mapped(bh_result);
5683 if (create && !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
5684 set_buffer_new(bh_result);
5685
5686 free_extent_map(em);
5687
5688 return 0;
5689}
5690
5691struct btrfs_dio_private {
5692 struct inode *inode;
5693 u64 logical_offset;
5694 u64 disk_bytenr;
5695 u64 bytes;
5696 u32 *csums;
5697 void *private;
Miao Xiee65e1532010-11-22 03:04:43 +00005698
5699 /* number of bios pending for this dio */
5700 atomic_t pending_bios;
5701
5702 /* IO errors */
5703 int errors;
5704
5705 struct bio *orig_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005706};
5707
5708static void btrfs_endio_direct_read(struct bio *bio, int err)
5709{
Miao Xiee65e1532010-11-22 03:04:43 +00005710 struct btrfs_dio_private *dip = bio->bi_private;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005711 struct bio_vec *bvec_end = bio->bi_io_vec + bio->bi_vcnt - 1;
5712 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005713 struct inode *inode = dip->inode;
5714 struct btrfs_root *root = BTRFS_I(inode)->root;
5715 u64 start;
5716 u32 *private = dip->csums;
5717
5718 start = dip->logical_offset;
5719 do {
5720 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)) {
5721 struct page *page = bvec->bv_page;
5722 char *kaddr;
5723 u32 csum = ~(u32)0;
5724 unsigned long flags;
5725
5726 local_irq_save(flags);
5727 kaddr = kmap_atomic(page, KM_IRQ0);
5728 csum = btrfs_csum_data(root, kaddr + bvec->bv_offset,
5729 csum, bvec->bv_len);
5730 btrfs_csum_final(csum, (char *)&csum);
5731 kunmap_atomic(kaddr, KM_IRQ0);
5732 local_irq_restore(flags);
5733
5734 flush_dcache_page(bvec->bv_page);
5735 if (csum != *private) {
5736 printk(KERN_ERR "btrfs csum failed ino %lu off"
5737 " %llu csum %u private %u\n",
5738 inode->i_ino, (unsigned long long)start,
5739 csum, *private);
5740 err = -EIO;
5741 }
5742 }
5743
5744 start += bvec->bv_len;
5745 private++;
5746 bvec++;
5747 } while (bvec <= bvec_end);
5748
5749 unlock_extent(&BTRFS_I(inode)->io_tree, dip->logical_offset,
5750 dip->logical_offset + dip->bytes - 1, GFP_NOFS);
5751 bio->bi_private = dip->private;
5752
5753 kfree(dip->csums);
5754 kfree(dip);
5755 dio_end_io(bio, err);
5756}
5757
5758static void btrfs_endio_direct_write(struct bio *bio, int err)
5759{
5760 struct btrfs_dio_private *dip = bio->bi_private;
5761 struct inode *inode = dip->inode;
5762 struct btrfs_root *root = BTRFS_I(inode)->root;
5763 struct btrfs_trans_handle *trans;
5764 struct btrfs_ordered_extent *ordered = NULL;
5765 struct extent_state *cached_state = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05005766 u64 ordered_offset = dip->logical_offset;
5767 u64 ordered_bytes = dip->bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005768 int ret;
5769
5770 if (err)
5771 goto out_done;
Chris Mason163cf092010-11-28 19:56:33 -05005772again:
5773 ret = btrfs_dec_test_first_ordered_pending(inode, &ordered,
5774 &ordered_offset,
5775 ordered_bytes);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005776 if (!ret)
Chris Mason163cf092010-11-28 19:56:33 -05005777 goto out_test;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005778
5779 BUG_ON(!ordered);
5780
5781 trans = btrfs_join_transaction(root, 1);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005782 if (IS_ERR(trans)) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04005783 err = -ENOMEM;
5784 goto out;
5785 }
5786 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
5787
5788 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags)) {
5789 ret = btrfs_ordered_update_i_size(inode, 0, ordered);
5790 if (!ret)
5791 ret = btrfs_update_inode(trans, root, inode);
5792 err = ret;
5793 goto out;
5794 }
5795
5796 lock_extent_bits(&BTRFS_I(inode)->io_tree, ordered->file_offset,
5797 ordered->file_offset + ordered->len - 1, 0,
5798 &cached_state, GFP_NOFS);
5799
5800 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags)) {
5801 ret = btrfs_mark_extent_written(trans, inode,
5802 ordered->file_offset,
5803 ordered->file_offset +
5804 ordered->len);
5805 if (ret) {
5806 err = ret;
5807 goto out_unlock;
5808 }
5809 } else {
5810 ret = insert_reserved_file_extent(trans, inode,
5811 ordered->file_offset,
5812 ordered->start,
5813 ordered->disk_len,
5814 ordered->len,
5815 ordered->len,
5816 0, 0, 0,
5817 BTRFS_FILE_EXTENT_REG);
5818 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
5819 ordered->file_offset, ordered->len);
5820 if (ret) {
5821 err = ret;
5822 WARN_ON(1);
5823 goto out_unlock;
5824 }
5825 }
5826
5827 add_pending_csums(trans, inode, ordered->file_offset, &ordered->list);
5828 btrfs_ordered_update_i_size(inode, 0, ordered);
5829 btrfs_update_inode(trans, root, inode);
5830out_unlock:
5831 unlock_extent_cached(&BTRFS_I(inode)->io_tree, ordered->file_offset,
5832 ordered->file_offset + ordered->len - 1,
5833 &cached_state, GFP_NOFS);
5834out:
5835 btrfs_delalloc_release_metadata(inode, ordered->len);
5836 btrfs_end_transaction(trans, root);
Chris Mason163cf092010-11-28 19:56:33 -05005837 ordered_offset = ordered->file_offset + ordered->len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005838 btrfs_put_ordered_extent(ordered);
5839 btrfs_put_ordered_extent(ordered);
Chris Mason163cf092010-11-28 19:56:33 -05005840
5841out_test:
5842 /*
5843 * our bio might span multiple ordered extents. If we haven't
5844 * completed the accounting for the whole dio, go back and try again
5845 */
5846 if (ordered_offset < dip->logical_offset + dip->bytes) {
5847 ordered_bytes = dip->logical_offset + dip->bytes -
5848 ordered_offset;
5849 goto again;
5850 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005851out_done:
5852 bio->bi_private = dip->private;
5853
5854 kfree(dip->csums);
5855 kfree(dip);
5856 dio_end_io(bio, err);
5857}
5858
Chris Masoneaf25d92010-05-25 09:48:28 -04005859static int __btrfs_submit_bio_start_direct_io(struct inode *inode, int rw,
5860 struct bio *bio, int mirror_num,
5861 unsigned long bio_flags, u64 offset)
5862{
5863 int ret;
5864 struct btrfs_root *root = BTRFS_I(inode)->root;
5865 ret = btrfs_csum_one_bio(root, inode, bio, offset, 1);
5866 BUG_ON(ret);
5867 return 0;
5868}
5869
Miao Xiee65e1532010-11-22 03:04:43 +00005870static void btrfs_end_dio_bio(struct bio *bio, int err)
5871{
5872 struct btrfs_dio_private *dip = bio->bi_private;
5873
5874 if (err) {
5875 printk(KERN_ERR "btrfs direct IO failed ino %lu rw %lu "
Jan Beulich3dd14622010-12-07 14:54:09 +00005876 "sector %#Lx len %u err no %d\n",
5877 dip->inode->i_ino, bio->bi_rw,
5878 (unsigned long long)bio->bi_sector, bio->bi_size, err);
Miao Xiee65e1532010-11-22 03:04:43 +00005879 dip->errors = 1;
5880
5881 /*
5882 * before atomic variable goto zero, we must make sure
5883 * dip->errors is perceived to be set.
5884 */
5885 smp_mb__before_atomic_dec();
5886 }
5887
5888 /* if there are more bios still pending for this dio, just exit */
5889 if (!atomic_dec_and_test(&dip->pending_bios))
5890 goto out;
5891
5892 if (dip->errors)
5893 bio_io_error(dip->orig_bio);
5894 else {
5895 set_bit(BIO_UPTODATE, &dip->orig_bio->bi_flags);
5896 bio_endio(dip->orig_bio, 0);
5897 }
5898out:
5899 bio_put(bio);
5900}
5901
5902static struct bio *btrfs_dio_bio_alloc(struct block_device *bdev,
5903 u64 first_sector, gfp_t gfp_flags)
5904{
5905 int nr_vecs = bio_get_nr_vecs(bdev);
5906 return btrfs_bio_alloc(bdev, first_sector, nr_vecs, gfp_flags);
5907}
5908
5909static inline int __btrfs_submit_dio_bio(struct bio *bio, struct inode *inode,
5910 int rw, u64 file_offset, int skip_sum,
5911 u32 *csums)
5912{
5913 int write = rw & REQ_WRITE;
5914 struct btrfs_root *root = BTRFS_I(inode)->root;
5915 int ret;
5916
5917 bio_get(bio);
5918 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
5919 if (ret)
5920 goto err;
5921
5922 if (write && !skip_sum) {
5923 ret = btrfs_wq_submit_bio(root->fs_info,
5924 inode, rw, bio, 0, 0,
5925 file_offset,
5926 __btrfs_submit_bio_start_direct_io,
5927 __btrfs_submit_bio_done);
5928 goto err;
5929 } else if (!skip_sum)
5930 btrfs_lookup_bio_sums_dio(root, inode, bio,
5931 file_offset, csums);
5932
5933 ret = btrfs_map_bio(root, rw, bio, 0, 1);
5934err:
5935 bio_put(bio);
5936 return ret;
5937}
5938
5939static int btrfs_submit_direct_hook(int rw, struct btrfs_dio_private *dip,
5940 int skip_sum)
5941{
5942 struct inode *inode = dip->inode;
5943 struct btrfs_root *root = BTRFS_I(inode)->root;
5944 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
5945 struct bio *bio;
5946 struct bio *orig_bio = dip->orig_bio;
5947 struct bio_vec *bvec = orig_bio->bi_io_vec;
5948 u64 start_sector = orig_bio->bi_sector;
5949 u64 file_offset = dip->logical_offset;
5950 u64 submit_len = 0;
5951 u64 map_length;
5952 int nr_pages = 0;
5953 u32 *csums = dip->csums;
5954 int ret = 0;
5955
5956 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev, start_sector, GFP_NOFS);
5957 if (!bio)
5958 return -ENOMEM;
5959 bio->bi_private = dip;
5960 bio->bi_end_io = btrfs_end_dio_bio;
5961 atomic_inc(&dip->pending_bios);
5962
5963 map_length = orig_bio->bi_size;
5964 ret = btrfs_map_block(map_tree, READ, start_sector << 9,
5965 &map_length, NULL, 0);
5966 if (ret) {
5967 bio_put(bio);
5968 return -EIO;
5969 }
5970
5971 while (bvec <= (orig_bio->bi_io_vec + orig_bio->bi_vcnt - 1)) {
5972 if (unlikely(map_length < submit_len + bvec->bv_len ||
5973 bio_add_page(bio, bvec->bv_page, bvec->bv_len,
5974 bvec->bv_offset) < bvec->bv_len)) {
5975 /*
5976 * inc the count before we submit the bio so
5977 * we know the end IO handler won't happen before
5978 * we inc the count. Otherwise, the dip might get freed
5979 * before we're done setting it up
5980 */
5981 atomic_inc(&dip->pending_bios);
5982 ret = __btrfs_submit_dio_bio(bio, inode, rw,
5983 file_offset, skip_sum,
5984 csums);
5985 if (ret) {
5986 bio_put(bio);
5987 atomic_dec(&dip->pending_bios);
5988 goto out_err;
5989 }
5990
5991 if (!skip_sum)
5992 csums = csums + nr_pages;
5993 start_sector += submit_len >> 9;
5994 file_offset += submit_len;
5995
5996 submit_len = 0;
5997 nr_pages = 0;
5998
5999 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev,
6000 start_sector, GFP_NOFS);
6001 if (!bio)
6002 goto out_err;
6003 bio->bi_private = dip;
6004 bio->bi_end_io = btrfs_end_dio_bio;
6005
6006 map_length = orig_bio->bi_size;
6007 ret = btrfs_map_block(map_tree, READ, start_sector << 9,
6008 &map_length, NULL, 0);
6009 if (ret) {
6010 bio_put(bio);
6011 goto out_err;
6012 }
6013 } else {
6014 submit_len += bvec->bv_len;
6015 nr_pages ++;
6016 bvec++;
6017 }
6018 }
6019
6020 ret = __btrfs_submit_dio_bio(bio, inode, rw, file_offset, skip_sum,
6021 csums);
6022 if (!ret)
6023 return 0;
6024
6025 bio_put(bio);
6026out_err:
6027 dip->errors = 1;
6028 /*
6029 * before atomic variable goto zero, we must
6030 * make sure dip->errors is perceived to be set.
6031 */
6032 smp_mb__before_atomic_dec();
6033 if (atomic_dec_and_test(&dip->pending_bios))
6034 bio_io_error(dip->orig_bio);
6035
6036 /* bio_end_io() will handle error, so we needn't return it */
6037 return 0;
6038}
6039
Josef Bacik4b46fce2010-05-23 11:00:55 -04006040static void btrfs_submit_direct(int rw, struct bio *bio, struct inode *inode,
6041 loff_t file_offset)
6042{
6043 struct btrfs_root *root = BTRFS_I(inode)->root;
6044 struct btrfs_dio_private *dip;
6045 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006046 int skip_sum;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02006047 int write = rw & REQ_WRITE;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006048 int ret = 0;
6049
6050 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
6051
6052 dip = kmalloc(sizeof(*dip), GFP_NOFS);
6053 if (!dip) {
6054 ret = -ENOMEM;
6055 goto free_ordered;
6056 }
6057 dip->csums = NULL;
6058
6059 if (!skip_sum) {
6060 dip->csums = kmalloc(sizeof(u32) * bio->bi_vcnt, GFP_NOFS);
6061 if (!dip->csums) {
Daniel J Bluemanb4966b72011-03-09 16:46:42 +00006062 kfree(dip);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006063 ret = -ENOMEM;
6064 goto free_ordered;
6065 }
6066 }
6067
6068 dip->private = bio->bi_private;
6069 dip->inode = inode;
6070 dip->logical_offset = file_offset;
6071
Josef Bacik4b46fce2010-05-23 11:00:55 -04006072 dip->bytes = 0;
6073 do {
6074 dip->bytes += bvec->bv_len;
6075 bvec++;
6076 } while (bvec <= (bio->bi_io_vec + bio->bi_vcnt - 1));
6077
Chris Mason46bfbb52010-05-26 11:04:10 -04006078 dip->disk_bytenr = (u64)bio->bi_sector << 9;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006079 bio->bi_private = dip;
Miao Xiee65e1532010-11-22 03:04:43 +00006080 dip->errors = 0;
6081 dip->orig_bio = bio;
6082 atomic_set(&dip->pending_bios, 0);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006083
6084 if (write)
6085 bio->bi_end_io = btrfs_endio_direct_write;
6086 else
6087 bio->bi_end_io = btrfs_endio_direct_read;
6088
Miao Xiee65e1532010-11-22 03:04:43 +00006089 ret = btrfs_submit_direct_hook(rw, dip, skip_sum);
6090 if (!ret)
Chris Masoneaf25d92010-05-25 09:48:28 -04006091 return;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006092free_ordered:
6093 /*
6094 * If this is a write, we need to clean up the reserved space and kill
6095 * the ordered extent.
6096 */
6097 if (write) {
6098 struct btrfs_ordered_extent *ordered;
Josef Bacik955256f2010-11-19 09:41:10 -05006099 ordered = btrfs_lookup_ordered_extent(inode, file_offset);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006100 if (!test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags) &&
6101 !test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags))
6102 btrfs_free_reserved_extent(root, ordered->start,
6103 ordered->disk_len);
6104 btrfs_put_ordered_extent(ordered);
6105 btrfs_put_ordered_extent(ordered);
6106 }
6107 bio_endio(bio, ret);
6108}
6109
Chris Mason5a5f79b2010-05-26 21:33:37 -04006110static ssize_t check_direct_IO(struct btrfs_root *root, int rw, struct kiocb *iocb,
6111 const struct iovec *iov, loff_t offset,
6112 unsigned long nr_segs)
6113{
6114 int seg;
6115 size_t size;
6116 unsigned long addr;
6117 unsigned blocksize_mask = root->sectorsize - 1;
6118 ssize_t retval = -EINVAL;
6119 loff_t end = offset;
6120
6121 if (offset & blocksize_mask)
6122 goto out;
6123
6124 /* Check the memory alignment. Blocks cannot straddle pages */
6125 for (seg = 0; seg < nr_segs; seg++) {
6126 addr = (unsigned long)iov[seg].iov_base;
6127 size = iov[seg].iov_len;
6128 end += size;
6129 if ((addr & blocksize_mask) || (size & blocksize_mask))
6130 goto out;
6131 }
6132 retval = 0;
6133out:
6134 return retval;
6135}
Chris Mason16432982008-04-10 10:23:21 -04006136static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
6137 const struct iovec *iov, loff_t offset,
6138 unsigned long nr_segs)
6139{
Josef Bacik4b46fce2010-05-23 11:00:55 -04006140 struct file *file = iocb->ki_filp;
6141 struct inode *inode = file->f_mapping->host;
6142 struct btrfs_ordered_extent *ordered;
Chris Mason4845e442010-05-25 20:56:50 -04006143 struct extent_state *cached_state = NULL;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006144 u64 lockstart, lockend;
6145 ssize_t ret;
Chris Mason4845e442010-05-25 20:56:50 -04006146 int writing = rw & WRITE;
6147 int write_bits = 0;
Chris Mason3f7c5792010-05-26 10:59:53 -04006148 size_t count = iov_length(iov, nr_segs);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006149
Chris Mason5a5f79b2010-05-26 21:33:37 -04006150 if (check_direct_IO(BTRFS_I(inode)->root, rw, iocb, iov,
6151 offset, nr_segs)) {
6152 return 0;
6153 }
6154
Josef Bacik4b46fce2010-05-23 11:00:55 -04006155 lockstart = offset;
Chris Mason3f7c5792010-05-26 10:59:53 -04006156 lockend = offset + count - 1;
6157
6158 if (writing) {
6159 ret = btrfs_delalloc_reserve_space(inode, count);
6160 if (ret)
6161 goto out;
6162 }
Chris Mason4845e442010-05-25 20:56:50 -04006163
Josef Bacik4b46fce2010-05-23 11:00:55 -04006164 while (1) {
Chris Mason4845e442010-05-25 20:56:50 -04006165 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6166 0, &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006167 /*
6168 * We're concerned with the entire range that we're going to be
6169 * doing DIO to, so we need to make sure theres no ordered
6170 * extents in this range.
6171 */
6172 ordered = btrfs_lookup_ordered_range(inode, lockstart,
6173 lockend - lockstart + 1);
6174 if (!ordered)
6175 break;
Chris Mason4845e442010-05-25 20:56:50 -04006176 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6177 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006178 btrfs_start_ordered_extent(inode, ordered, 1);
6179 btrfs_put_ordered_extent(ordered);
6180 cond_resched();
6181 }
6182
Chris Mason4845e442010-05-25 20:56:50 -04006183 /*
6184 * we don't use btrfs_set_extent_delalloc because we don't want
6185 * the dirty or uptodate bits
6186 */
6187 if (writing) {
6188 write_bits = EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING;
6189 ret = set_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6190 EXTENT_DELALLOC, 0, NULL, &cached_state,
6191 GFP_NOFS);
6192 if (ret) {
6193 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
6194 lockend, EXTENT_LOCKED | write_bits,
6195 1, 0, &cached_state, GFP_NOFS);
6196 goto out;
6197 }
6198 }
6199
6200 free_extent_state(cached_state);
6201 cached_state = NULL;
6202
Chris Mason5a5f79b2010-05-26 21:33:37 -04006203 ret = __blockdev_direct_IO(rw, iocb, inode,
6204 BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev,
6205 iov, offset, nr_segs, btrfs_get_blocks_direct, NULL,
6206 btrfs_submit_direct, 0);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006207
6208 if (ret < 0 && ret != -EIOCBQUEUED) {
Chris Mason4845e442010-05-25 20:56:50 -04006209 clear_extent_bit(&BTRFS_I(inode)->io_tree, offset,
6210 offset + iov_length(iov, nr_segs) - 1,
6211 EXTENT_LOCKED | write_bits, 1, 0,
6212 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006213 } else if (ret >= 0 && ret < iov_length(iov, nr_segs)) {
6214 /*
6215 * We're falling back to buffered, unlock the section we didn't
6216 * do IO on.
6217 */
Chris Mason4845e442010-05-25 20:56:50 -04006218 clear_extent_bit(&BTRFS_I(inode)->io_tree, offset + ret,
6219 offset + iov_length(iov, nr_segs) - 1,
6220 EXTENT_LOCKED | write_bits, 1, 0,
6221 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006222 }
Chris Mason4845e442010-05-25 20:56:50 -04006223out:
6224 free_extent_state(cached_state);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006225 return ret;
Chris Mason16432982008-04-10 10:23:21 -04006226}
6227
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006228static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
6229 __u64 start, __u64 len)
6230{
Chris Masonec29ed52011-02-23 16:23:20 -05006231 return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent_fiemap);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006232}
6233
Chris Mason9ebefb182007-06-15 13:50:00 -04006234int btrfs_readpage(struct file *file, struct page *page)
6235{
Chris Masond1310b22008-01-24 16:13:08 -05006236 struct extent_io_tree *tree;
6237 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04006238 return extent_read_full_page(tree, page, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04006239}
Chris Mason1832a6d2007-12-21 16:27:21 -05006240
Chris Mason39279cc2007-06-12 06:35:45 -04006241static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
6242{
Chris Masond1310b22008-01-24 16:13:08 -05006243 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04006244
6245
6246 if (current->flags & PF_MEMALLOC) {
6247 redirty_page_for_writepage(wbc, page);
6248 unlock_page(page);
6249 return 0;
6250 }
Chris Masond1310b22008-01-24 16:13:08 -05006251 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04006252 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
6253}
Chris Mason39279cc2007-06-12 06:35:45 -04006254
Chris Masonf4219502008-07-22 11:18:09 -04006255int btrfs_writepages(struct address_space *mapping,
6256 struct writeback_control *wbc)
Chris Masonb293f022007-11-01 19:45:34 -04006257{
Chris Masond1310b22008-01-24 16:13:08 -05006258 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05006259
Chris Masond1310b22008-01-24 16:13:08 -05006260 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04006261 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
6262}
6263
Chris Mason3ab2fb52007-11-08 10:59:22 -05006264static int
6265btrfs_readpages(struct file *file, struct address_space *mapping,
6266 struct list_head *pages, unsigned nr_pages)
6267{
Chris Masond1310b22008-01-24 16:13:08 -05006268 struct extent_io_tree *tree;
6269 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05006270 return extent_readpages(tree, mapping, pages, nr_pages,
6271 btrfs_get_extent);
6272}
Chris Masone6dcd2d2008-07-17 12:53:50 -04006273static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04006274{
Chris Masond1310b22008-01-24 16:13:08 -05006275 struct extent_io_tree *tree;
6276 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04006277 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006278
Chris Masond1310b22008-01-24 16:13:08 -05006279 tree = &BTRFS_I(page->mapping->host)->io_tree;
6280 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05006281 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04006282 if (ret == 1) {
6283 ClearPagePrivate(page);
6284 set_page_private(page, 0);
6285 page_cache_release(page);
6286 }
6287 return ret;
6288}
Chris Mason39279cc2007-06-12 06:35:45 -04006289
Chris Masone6dcd2d2008-07-17 12:53:50 -04006290static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
6291{
Chris Mason98509cf2008-09-11 15:51:43 -04006292 if (PageWriteback(page) || PageDirty(page))
6293 return 0;
Yan Zhengb335b002009-02-12 10:06:04 -05006294 return __btrfs_releasepage(page, gfp_flags & GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006295}
6296
Chris Masona52d9a82007-08-27 16:49:44 -04006297static void btrfs_invalidatepage(struct page *page, unsigned long offset)
6298{
Chris Masond1310b22008-01-24 16:13:08 -05006299 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006300 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006301 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006302 u64 page_start = page_offset(page);
6303 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006304
Chris Mason8b62b722009-09-02 16:53:46 -04006305
6306 /*
6307 * we have the page locked, so new writeback can't start,
6308 * and the dirty bit won't be cleared while we are here.
6309 *
6310 * Wait for IO on this page so that we can safely clear
6311 * the PagePrivate2 bit and do ordered accounting
6312 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006313 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04006314
Chris Masond1310b22008-01-24 16:13:08 -05006315 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006316 if (offset) {
6317 btrfs_releasepage(page, GFP_NOFS);
6318 return;
6319 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00006320 lock_extent_bits(tree, page_start, page_end, 0, &cached_state,
6321 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006322 ordered = btrfs_lookup_ordered_extent(page->mapping->host,
6323 page_offset(page));
6324 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04006325 /*
6326 * IO on this page will never be started, so we need
6327 * to account for any ordered extents now
6328 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006329 clear_extent_bit(tree, page_start, page_end,
6330 EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik32c00af2009-10-08 13:34:05 -04006331 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING, 1, 0,
Josef Bacik2ac55d42010-02-03 19:33:23 +00006332 &cached_state, GFP_NOFS);
Chris Mason8b62b722009-09-02 16:53:46 -04006333 /*
6334 * whoever cleared the private bit is responsible
6335 * for the finish_ordered_io
6336 */
6337 if (TestClearPagePrivate2(page)) {
6338 btrfs_finish_ordered_io(page->mapping->host,
6339 page_start, page_end);
6340 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006341 btrfs_put_ordered_extent(ordered);
Josef Bacik2ac55d42010-02-03 19:33:23 +00006342 cached_state = NULL;
6343 lock_extent_bits(tree, page_start, page_end, 0, &cached_state,
6344 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006345 }
6346 clear_extent_bit(tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04006347 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik2ac55d42010-02-03 19:33:23 +00006348 EXTENT_DO_ACCOUNTING, 1, 1, &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006349 __btrfs_releasepage(page, GFP_NOFS);
6350
Chris Mason4a096752008-07-21 10:29:44 -04006351 ClearPageChecked(page);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04006352 if (PagePrivate(page)) {
Chris Mason9ad6b7b2008-04-18 16:11:30 -04006353 ClearPagePrivate(page);
6354 set_page_private(page, 0);
6355 page_cache_release(page);
6356 }
Chris Mason39279cc2007-06-12 06:35:45 -04006357}
6358
Chris Mason9ebefb182007-06-15 13:50:00 -04006359/*
6360 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
6361 * called from a page fault handler when a page is first dirtied. Hence we must
6362 * be careful to check for EOF conditions here. We set the page up correctly
6363 * for a written page which means we get ENOSPC checking when writing into
6364 * holes and correct delalloc and unwritten extent mapping on filesystems that
6365 * support these features.
6366 *
6367 * We are not allowed to take the i_mutex here so we have to play games to
6368 * protect against truncate races as the page could now be beyond EOF. Because
6369 * vmtruncate() writes the inode size before removing pages, once we have the
6370 * page lock we can determine safely if the page is beyond EOF. If it is not
6371 * beyond EOF, then the page is guaranteed safe against truncation until we
6372 * unlock the page.
6373 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07006374int btrfs_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04006375{
Nick Pigginc2ec1752009-03-31 15:23:21 -07006376 struct page *page = vmf->page;
Chris Mason6da6aba2007-12-18 16:15:09 -05006377 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05006378 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006379 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
6380 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006381 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006382 char *kaddr;
6383 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04006384 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05006385 int ret;
Chris Masona52d9a82007-08-27 16:49:44 -04006386 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006387 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04006388
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006389 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Nick Piggin56a76f82009-03-31 15:23:23 -07006390 if (ret) {
6391 if (ret == -ENOMEM)
6392 ret = VM_FAULT_OOM;
6393 else /* -ENOSPC, -EIO, etc */
6394 ret = VM_FAULT_SIGBUS;
Chris Mason1832a6d2007-12-21 16:27:21 -05006395 goto out;
Nick Piggin56a76f82009-03-31 15:23:23 -07006396 }
Chris Mason1832a6d2007-12-21 16:27:21 -05006397
Nick Piggin56a76f82009-03-31 15:23:23 -07006398 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006399again:
Chris Mason9ebefb182007-06-15 13:50:00 -04006400 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04006401 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006402 page_start = page_offset(page);
6403 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006404
Chris Mason9ebefb182007-06-15 13:50:00 -04006405 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04006406 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04006407 /* page got truncated out from underneath us */
6408 goto out_unlock;
6409 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006410 wait_on_page_writeback(page);
6411
Josef Bacik2ac55d42010-02-03 19:33:23 +00006412 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state,
6413 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006414 set_page_extent_mapped(page);
6415
Chris Masoneb84ae02008-07-17 13:53:27 -04006416 /*
6417 * we can't set the delalloc bits if there are pending ordered
6418 * extents. Drop our locks and wait for them to finish
6419 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006420 ordered = btrfs_lookup_ordered_extent(inode, page_start);
6421 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006422 unlock_extent_cached(io_tree, page_start, page_end,
6423 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006424 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04006425 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006426 btrfs_put_ordered_extent(ordered);
6427 goto again;
6428 }
6429
Josef Bacikfbf19082009-10-01 17:10:23 -04006430 /*
6431 * XXX - page_mkwrite gets called every time the page is dirtied, even
6432 * if it was already dirty, so for space accounting reasons we need to
6433 * clear any delalloc bits for the range we are fixing to save. There
6434 * is probably a better way to do this, but for now keep consistent with
6435 * prepare_pages in the normal write path.
6436 */
Josef Bacik2ac55d42010-02-03 19:33:23 +00006437 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04006438 EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00006439 0, 0, &cached_state, GFP_NOFS);
Josef Bacikfbf19082009-10-01 17:10:23 -04006440
Josef Bacik2ac55d42010-02-03 19:33:23 +00006441 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
6442 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006443 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006444 unlock_extent_cached(io_tree, page_start, page_end,
6445 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006446 ret = VM_FAULT_SIGBUS;
6447 goto out_unlock;
6448 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006449 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04006450
6451 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04006452 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04006453 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04006454 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04006455 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04006456
Chris Masone6dcd2d2008-07-17 12:53:50 -04006457 if (zero_start != PAGE_CACHE_SIZE) {
6458 kaddr = kmap(page);
6459 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
6460 flush_dcache_page(page);
6461 kunmap(page);
6462 }
Chris Mason247e7432008-07-17 12:53:51 -04006463 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006464 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04006465 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04006466
Chris Mason257c62e2009-10-13 13:21:08 -04006467 BTRFS_I(inode)->last_trans = root->fs_info->generation;
6468 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
6469
Josef Bacik2ac55d42010-02-03 19:33:23 +00006470 unlock_extent_cached(io_tree, page_start, page_end, &cached_state, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04006471
6472out_unlock:
Chris Mason50a9b212009-09-11 12:33:12 -04006473 if (!ret)
6474 return VM_FAULT_LOCKED;
Chris Mason9ebefb182007-06-15 13:50:00 -04006475 unlock_page(page);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006476 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason1832a6d2007-12-21 16:27:21 -05006477out:
Chris Mason9ebefb182007-06-15 13:50:00 -04006478 return ret;
6479}
6480
Chris Mason39279cc2007-06-12 06:35:45 -04006481static void btrfs_truncate(struct inode *inode)
6482{
6483 struct btrfs_root *root = BTRFS_I(inode)->root;
6484 int ret;
6485 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04006486 unsigned long nr;
Chris Masondbe674a2008-07-17 12:54:05 -04006487 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -04006488
Yan, Zheng80825102009-11-12 09:35:36 +00006489 if (!S_ISREG(inode->i_mode)) {
6490 WARN_ON(1);
Chris Mason39279cc2007-06-12 06:35:45 -04006491 return;
Yan, Zheng80825102009-11-12 09:35:36 +00006492 }
Chris Mason39279cc2007-06-12 06:35:45 -04006493
Josef Bacik5d5e1032009-10-13 16:46:49 -04006494 ret = btrfs_truncate_page(inode->i_mapping, inode->i_size);
6495 if (ret)
6496 return;
Yan, Zheng80825102009-11-12 09:35:36 +00006497
Chris Mason4a096752008-07-21 10:29:44 -04006498 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
Yan, Zheng80825102009-11-12 09:35:36 +00006499 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006500
Yan, Zhengd68fc572010-05-16 10:49:58 -04006501 trans = btrfs_start_transaction(root, 0);
6502 BUG_ON(IS_ERR(trans));
Yan, Zheng80825102009-11-12 09:35:36 +00006503 btrfs_set_trans_block_group(trans, inode);
Yan, Zhengd68fc572010-05-16 10:49:58 -04006504 trans->block_rsv = root->orphan_block_rsv;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006505
6506 /*
6507 * setattr is responsible for setting the ordered_data_close flag,
6508 * but that is only tested during the last file release. That
6509 * could happen well after the next commit, leaving a great big
6510 * window where new writes may get lost if someone chooses to write
6511 * to this file after truncating to zero
6512 *
6513 * The inode doesn't have any dirty data here, and so if we commit
6514 * this is a noop. If someone immediately starts writing to the inode
6515 * it is very likely we'll catch some of their writes in this
6516 * transaction, and the commit will find this file on the ordered
6517 * data list with good things to send down.
6518 *
6519 * This is a best effort solution, there is still a window where
6520 * using truncate to replace the contents of the file will
6521 * end up with a zero length file after a crash.
6522 */
6523 if (inode->i_size == 0 && BTRFS_I(inode)->ordered_data_close)
6524 btrfs_add_ordered_operation(trans, root, inode);
6525
Yan, Zheng80825102009-11-12 09:35:36 +00006526 while (1) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04006527 if (!trans) {
6528 trans = btrfs_start_transaction(root, 0);
6529 BUG_ON(IS_ERR(trans));
6530 btrfs_set_trans_block_group(trans, inode);
6531 trans->block_rsv = root->orphan_block_rsv;
6532 }
6533
6534 ret = btrfs_block_rsv_check(trans, root,
6535 root->orphan_block_rsv, 0, 5);
6536 if (ret) {
6537 BUG_ON(ret != -EAGAIN);
6538 ret = btrfs_commit_transaction(trans, root);
6539 BUG_ON(ret);
6540 trans = NULL;
6541 continue;
6542 }
6543
Yan, Zheng80825102009-11-12 09:35:36 +00006544 ret = btrfs_truncate_inode_items(trans, root, inode,
6545 inode->i_size,
6546 BTRFS_EXTENT_DATA_KEY);
6547 if (ret != -EAGAIN)
6548 break;
Chris Mason39279cc2007-06-12 06:35:45 -04006549
Yan, Zheng80825102009-11-12 09:35:36 +00006550 ret = btrfs_update_inode(trans, root, inode);
6551 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04006552
Yan, Zheng80825102009-11-12 09:35:36 +00006553 nr = trans->blocks_used;
6554 btrfs_end_transaction(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -04006555 trans = NULL;
Yan, Zheng80825102009-11-12 09:35:36 +00006556 btrfs_btree_balance_dirty(root, nr);
Yan, Zheng80825102009-11-12 09:35:36 +00006557 }
6558
6559 if (ret == 0 && inode->i_nlink > 0) {
6560 ret = btrfs_orphan_del(trans, inode);
6561 BUG_ON(ret);
6562 }
6563
6564 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik7b128762008-07-24 12:17:14 -04006565 BUG_ON(ret);
6566
Josef Bacik7b128762008-07-24 12:17:14 -04006567 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04006568 ret = btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04006569 BUG_ON(ret);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04006570 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04006571}
6572
Sven Wegener3b963622008-06-09 21:57:42 -04006573/*
Chris Masond352ac62008-09-29 15:18:18 -04006574 * create a new subvolume directory/inode (helper for the ioctl).
6575 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05006576int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Yan, Zheng76dda932009-09-21 16:00:26 -04006577 struct btrfs_root *new_root,
Yan Zhengd2fb3432008-12-11 16:30:39 -05006578 u64 new_dirid, u64 alloc_hint)
Chris Mason39279cc2007-06-12 06:35:45 -04006579{
Chris Mason39279cc2007-06-12 06:35:45 -04006580 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04006581 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006582 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006583
Josef Bacikaec74772008-07-24 12:12:38 -04006584 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2, new_dirid,
Yan Zhengd2fb3432008-12-11 16:30:39 -05006585 new_dirid, alloc_hint, S_IFDIR | 0700, &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04006586 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04006587 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006588 inode->i_op = &btrfs_dir_inode_operations;
6589 inode->i_fop = &btrfs_dir_file_operations;
6590
Chris Mason39279cc2007-06-12 06:35:45 -04006591 inode->i_nlink = 1;
Chris Masondbe674a2008-07-17 12:54:05 -04006592 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04006593
Yan, Zheng76dda932009-09-21 16:00:26 -04006594 err = btrfs_update_inode(trans, new_root, inode);
6595 BUG_ON(err);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04006596
Yan, Zheng76dda932009-09-21 16:00:26 -04006597 iput(inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04006598 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006599}
6600
Chris Masond352ac62008-09-29 15:18:18 -04006601/* helper function for file defrag and space balancing. This
6602 * forces readahead on a given range of bytes in an inode
6603 */
Chris Masonedbd8d42007-12-21 16:27:24 -05006604unsigned long btrfs_force_ra(struct address_space *mapping,
Chris Mason86479a02007-09-10 19:58:16 -04006605 struct file_ra_state *ra, struct file *file,
6606 pgoff_t offset, pgoff_t last_index)
6607{
Chris Mason8e7bf942008-04-28 09:02:36 -04006608 pgoff_t req_size = last_index - offset + 1;
Chris Mason86479a02007-09-10 19:58:16 -04006609
Chris Mason86479a02007-09-10 19:58:16 -04006610 page_cache_sync_readahead(mapping, ra, file, offset, req_size);
6611 return offset + req_size;
Chris Mason86479a02007-09-10 19:58:16 -04006612}
6613
Chris Mason39279cc2007-06-12 06:35:45 -04006614struct inode *btrfs_alloc_inode(struct super_block *sb)
6615{
6616 struct btrfs_inode *ei;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006617 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04006618
6619 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
6620 if (!ei)
6621 return NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006622
6623 ei->root = NULL;
6624 ei->space_info = NULL;
6625 ei->generation = 0;
6626 ei->sequence = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04006627 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04006628 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04006629 ei->logged_trans = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006630 ei->delalloc_bytes = 0;
6631 ei->reserved_bytes = 0;
6632 ei->disk_i_size = 0;
6633 ei->flags = 0;
6634 ei->index_cnt = (u64)-1;
6635 ei->last_unlink_trans = 0;
6636
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006637 atomic_set(&ei->outstanding_extents, 0);
Josef Bacik57a45ced2011-01-25 16:30:38 -05006638 atomic_set(&ei->reserved_extents, 0);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006639
6640 ei->ordered_data_close = 0;
Yan, Zhengd68fc572010-05-16 10:49:58 -04006641 ei->orphan_meta_reserved = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006642 ei->dummy_inode = 0;
Li Zefan261507a02010-12-17 14:21:50 +08006643 ei->force_compress = BTRFS_COMPRESS_NONE;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006644
6645 inode = &ei->vfs_inode;
6646 extent_map_tree_init(&ei->extent_tree, GFP_NOFS);
6647 extent_io_tree_init(&ei->io_tree, &inode->i_data, GFP_NOFS);
6648 extent_io_tree_init(&ei->io_failure_tree, &inode->i_data, GFP_NOFS);
6649 mutex_init(&ei->log_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006650 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Josef Bacik7b128762008-07-24 12:17:14 -04006651 INIT_LIST_HEAD(&ei->i_orphan);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006652 INIT_LIST_HEAD(&ei->delalloc_inodes);
Chris Mason5a3f23d2009-03-31 13:27:11 -04006653 INIT_LIST_HEAD(&ei->ordered_operations);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006654 RB_CLEAR_NODE(&ei->rb_node);
6655
6656 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04006657}
6658
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11006659static void btrfs_i_callback(struct rcu_head *head)
6660{
6661 struct inode *inode = container_of(head, struct inode, i_rcu);
6662 INIT_LIST_HEAD(&inode->i_dentry);
6663 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
6664}
6665
Chris Mason39279cc2007-06-12 06:35:45 -04006666void btrfs_destroy_inode(struct inode *inode)
6667{
Chris Masone6dcd2d2008-07-17 12:53:50 -04006668 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006669 struct btrfs_root *root = BTRFS_I(inode)->root;
6670
Chris Mason39279cc2007-06-12 06:35:45 -04006671 WARN_ON(!list_empty(&inode->i_dentry));
6672 WARN_ON(inode->i_data.nrpages);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006673 WARN_ON(atomic_read(&BTRFS_I(inode)->outstanding_extents));
Josef Bacik57a45ced2011-01-25 16:30:38 -05006674 WARN_ON(atomic_read(&BTRFS_I(inode)->reserved_extents));
Chris Mason39279cc2007-06-12 06:35:45 -04006675
Chris Mason5a3f23d2009-03-31 13:27:11 -04006676 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05006677 * This can happen where we create an inode, but somebody else also
6678 * created the same inode and we need to destroy the one we already
6679 * created.
6680 */
6681 if (!root)
6682 goto free;
6683
6684 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04006685 * Make sure we're properly removed from the ordered operation
6686 * lists.
6687 */
6688 smp_mb();
6689 if (!list_empty(&BTRFS_I(inode)->ordered_operations)) {
6690 spin_lock(&root->fs_info->ordered_extent_lock);
6691 list_del_init(&BTRFS_I(inode)->ordered_operations);
6692 spin_unlock(&root->fs_info->ordered_extent_lock);
6693 }
6694
Josef Bacik0af3d002010-06-21 14:48:16 -04006695 if (root == root->fs_info->tree_root) {
6696 struct btrfs_block_group_cache *block_group;
6697
6698 block_group = btrfs_lookup_block_group(root->fs_info,
6699 BTRFS_I(inode)->block_group);
6700 if (block_group && block_group->inode == inode) {
6701 spin_lock(&block_group->lock);
6702 block_group->inode = NULL;
6703 spin_unlock(&block_group->lock);
6704 btrfs_put_block_group(block_group);
6705 } else if (block_group) {
6706 btrfs_put_block_group(block_group);
6707 }
6708 }
6709
Yan, Zhengd68fc572010-05-16 10:49:58 -04006710 spin_lock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04006711 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
Yan, Zheng80825102009-11-12 09:35:36 +00006712 printk(KERN_INFO "BTRFS: inode %lu still on the orphan list\n",
6713 inode->i_ino);
6714 list_del_init(&BTRFS_I(inode)->i_orphan);
Josef Bacik7b128762008-07-24 12:17:14 -04006715 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04006716 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04006717
Chris Masond3977122009-01-05 21:25:51 -05006718 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04006719 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
6720 if (!ordered)
6721 break;
6722 else {
Chris Masond3977122009-01-05 21:25:51 -05006723 printk(KERN_ERR "btrfs found ordered "
6724 "extent %llu %llu on inode cleanup\n",
6725 (unsigned long long)ordered->file_offset,
6726 (unsigned long long)ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006727 btrfs_remove_ordered_extent(inode, ordered);
6728 btrfs_put_ordered_extent(ordered);
6729 btrfs_put_ordered_extent(ordered);
6730 }
6731 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006732 inode_tree_del(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04006733 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
Josef Bacika6dbd422009-11-11 15:53:34 -05006734free:
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11006735 call_rcu(&inode->i_rcu, btrfs_i_callback);
Chris Mason39279cc2007-06-12 06:35:45 -04006736}
6737
Al Viro45321ac2010-06-07 13:43:19 -04006738int btrfs_drop_inode(struct inode *inode)
Yan, Zheng76dda932009-09-21 16:00:26 -04006739{
6740 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro45321ac2010-06-07 13:43:19 -04006741
Josef Bacik0af3d002010-06-21 14:48:16 -04006742 if (btrfs_root_refs(&root->root_item) == 0 &&
6743 root != root->fs_info->tree_root)
Al Viro45321ac2010-06-07 13:43:19 -04006744 return 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04006745 else
Al Viro45321ac2010-06-07 13:43:19 -04006746 return generic_drop_inode(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04006747}
6748
Sven Wegener0ee0fda2008-07-30 16:54:26 -04006749static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04006750{
6751 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
6752
6753 inode_init_once(&ei->vfs_inode);
6754}
6755
6756void btrfs_destroy_cachep(void)
6757{
6758 if (btrfs_inode_cachep)
6759 kmem_cache_destroy(btrfs_inode_cachep);
6760 if (btrfs_trans_handle_cachep)
6761 kmem_cache_destroy(btrfs_trans_handle_cachep);
6762 if (btrfs_transaction_cachep)
6763 kmem_cache_destroy(btrfs_transaction_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04006764 if (btrfs_path_cachep)
6765 kmem_cache_destroy(btrfs_path_cachep);
Josef Bacikdc89e982011-01-28 17:05:48 -05006766 if (btrfs_free_space_cachep)
6767 kmem_cache_destroy(btrfs_free_space_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04006768}
6769
6770int btrfs_init_cachep(void)
6771{
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006772 btrfs_inode_cachep = kmem_cache_create("btrfs_inode_cache",
6773 sizeof(struct btrfs_inode), 0,
6774 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04006775 if (!btrfs_inode_cachep)
6776 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006777
6778 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle_cache",
6779 sizeof(struct btrfs_trans_handle), 0,
6780 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006781 if (!btrfs_trans_handle_cachep)
6782 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006783
6784 btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction_cache",
6785 sizeof(struct btrfs_transaction), 0,
6786 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006787 if (!btrfs_transaction_cachep)
6788 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006789
6790 btrfs_path_cachep = kmem_cache_create("btrfs_path_cache",
6791 sizeof(struct btrfs_path), 0,
6792 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006793 if (!btrfs_path_cachep)
6794 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006795
Josef Bacikdc89e982011-01-28 17:05:48 -05006796 btrfs_free_space_cachep = kmem_cache_create("btrfs_free_space_cache",
6797 sizeof(struct btrfs_free_space), 0,
6798 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
6799 if (!btrfs_free_space_cachep)
6800 goto fail;
6801
Chris Mason39279cc2007-06-12 06:35:45 -04006802 return 0;
6803fail:
6804 btrfs_destroy_cachep();
6805 return -ENOMEM;
6806}
6807
6808static int btrfs_getattr(struct vfsmount *mnt,
6809 struct dentry *dentry, struct kstat *stat)
6810{
6811 struct inode *inode = dentry->d_inode;
6812 generic_fillattr(inode, stat);
Chris Mason3394e162008-11-17 20:42:26 -05006813 stat->dev = BTRFS_I(inode)->root->anon_super.s_dev;
Chris Masond6667462008-01-03 14:51:00 -05006814 stat->blksize = PAGE_CACHE_SIZE;
Yan Zhenga76a3cd2008-10-09 11:46:29 -04006815 stat->blocks = (inode_get_bytes(inode) +
6816 BTRFS_I(inode)->delalloc_bytes) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04006817 return 0;
6818}
6819
Chris Masond3977122009-01-05 21:25:51 -05006820static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
6821 struct inode *new_dir, struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04006822{
6823 struct btrfs_trans_handle *trans;
6824 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006825 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04006826 struct inode *new_inode = new_dentry->d_inode;
6827 struct inode *old_inode = old_dentry->d_inode;
6828 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006829 u64 index = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006830 u64 root_objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04006831 int ret;
6832
Yan, Zhengf679a842009-09-24 09:17:31 -04006833 if (new_dir->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
6834 return -EPERM;
6835
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006836 /* we only allow rename subvolume link between subvolumes */
6837 if (old_inode->i_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05006838 return -EXDEV;
6839
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006840 if (old_inode->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
6841 (new_inode && new_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID))
6842 return -ENOTEMPTY;
6843
Chris Mason39279cc2007-06-12 06:35:45 -04006844 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006845 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04006846 return -ENOTEMPTY;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006847 /*
6848 * we're using rename to replace one file with another.
6849 * and the replacement file is large. Start IO on it now so
6850 * we don't add too much work to the end of the transaction
6851 */
Bartlomiej Zolnierkiewicz4baf8c92009-08-07 13:47:08 -04006852 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size &&
Chris Mason5a3f23d2009-03-31 13:27:11 -04006853 old_inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
6854 filemap_flush(old_inode->i_mapping);
6855
Yan, Zheng76dda932009-09-21 16:00:26 -04006856 /* close the racy window with snapshot create/destroy ioctl */
6857 if (old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
6858 down_read(&root->fs_info->subvol_sem);
Yan, Zhenga22285a2010-05-16 10:48:46 -04006859 /*
6860 * We want to reserve the absolute worst case amount of items. So if
6861 * both inodes are subvols and we need to unlink them then that would
6862 * require 4 item modifications, but if they are both normal inodes it
6863 * would require 5 item modifications, so we'll assume their normal
6864 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
6865 * should cover the worst case number of items we'll modify.
6866 */
6867 trans = btrfs_start_transaction(root, 20);
6868 if (IS_ERR(trans))
6869 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04006870
Yan, Zhenga5719522009-09-24 09:17:31 -04006871 btrfs_set_trans_block_group(trans, new_dir);
Chris Mason39279cc2007-06-12 06:35:45 -04006872
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006873 if (dest != root)
6874 btrfs_record_root_in_trans(trans, dest);
6875
Yan, Zhenga5719522009-09-24 09:17:31 -04006876 ret = btrfs_set_inode_index(new_dir, &index);
6877 if (ret)
6878 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006879
Yan, Zhenga5719522009-09-24 09:17:31 -04006880 if (unlikely(old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006881 /* force full log commit if subvolume involved. */
6882 root->fs_info->last_trans_log_full_commit = trans->transid;
6883 } else {
Yan, Zhenga5719522009-09-24 09:17:31 -04006884 ret = btrfs_insert_inode_ref(trans, dest,
6885 new_dentry->d_name.name,
6886 new_dentry->d_name.len,
6887 old_inode->i_ino,
6888 new_dir->i_ino, index);
6889 if (ret)
6890 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006891 /*
6892 * this is an ugly little race, but the rename is required
6893 * to make sure that if we crash, the inode is either at the
6894 * old name or the new one. pinning the log transaction lets
6895 * us make sure we don't allow a log commit to come in after
6896 * we unlink the name but before we add the new name back in.
6897 */
6898 btrfs_pin_log_trans(root);
6899 }
Chris Mason12fcfd22009-03-24 10:24:20 -04006900 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04006901 * make sure the inode gets flushed if it is replacing
6902 * something.
6903 */
6904 if (new_inode && new_inode->i_size &&
6905 old_inode && S_ISREG(old_inode->i_mode)) {
6906 btrfs_add_ordered_operation(trans, root, old_inode);
6907 }
6908
Chris Mason39279cc2007-06-12 06:35:45 -04006909 old_dir->i_ctime = old_dir->i_mtime = ctime;
6910 new_dir->i_ctime = new_dir->i_mtime = ctime;
6911 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04006912
Chris Mason12fcfd22009-03-24 10:24:20 -04006913 if (old_dentry->d_parent != new_dentry->d_parent)
6914 btrfs_record_unlink_dir(trans, old_dir, old_inode, 1);
6915
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006916 if (unlikely(old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)) {
6917 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
6918 ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid,
6919 old_dentry->d_name.name,
6920 old_dentry->d_name.len);
6921 } else {
6922 btrfs_inc_nlink(old_dentry->d_inode);
6923 ret = btrfs_unlink_inode(trans, root, old_dir,
6924 old_dentry->d_inode,
6925 old_dentry->d_name.name,
6926 old_dentry->d_name.len);
6927 }
6928 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04006929
6930 if (new_inode) {
6931 new_inode->i_ctime = CURRENT_TIME;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006932 if (unlikely(new_inode->i_ino ==
6933 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
6934 root_objectid = BTRFS_I(new_inode)->location.objectid;
6935 ret = btrfs_unlink_subvol(trans, dest, new_dir,
6936 root_objectid,
6937 new_dentry->d_name.name,
6938 new_dentry->d_name.len);
6939 BUG_ON(new_inode->i_nlink == 0);
6940 } else {
6941 ret = btrfs_unlink_inode(trans, dest, new_dir,
6942 new_dentry->d_inode,
6943 new_dentry->d_name.name,
6944 new_dentry->d_name.len);
6945 }
6946 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04006947 if (new_inode->i_nlink == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04006948 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006949 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04006950 }
Chris Mason39279cc2007-06-12 06:35:45 -04006951 }
Josef Bacikaec74772008-07-24 12:12:38 -04006952
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006953 ret = btrfs_add_link(trans, new_dir, old_inode,
6954 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04006955 new_dentry->d_name.len, 0, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006956 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04006957
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006958 if (old_inode->i_ino != BTRFS_FIRST_FREE_OBJECTID) {
Josef Bacik6a912212010-11-20 09:48:00 +00006959 struct dentry *parent = dget_parent(new_dentry);
6960 btrfs_log_new_name(trans, old_inode, old_dir, parent);
6961 dput(parent);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006962 btrfs_end_log_trans(root);
6963 }
Chris Mason39279cc2007-06-12 06:35:45 -04006964out_fail:
Chris Masonab78c842008-07-29 16:15:18 -04006965 btrfs_end_transaction_throttle(trans, root);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006966
Yan, Zheng76dda932009-09-21 16:00:26 -04006967 if (old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
6968 up_read(&root->fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006969
Chris Mason39279cc2007-06-12 06:35:45 -04006970 return ret;
6971}
6972
Chris Masond352ac62008-09-29 15:18:18 -04006973/*
6974 * some fairly slow code that needs optimization. This walks the list
6975 * of all the inodes with pending delalloc and forces them to disk.
6976 */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00006977int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput)
Chris Masonea8c2812008-08-04 23:17:27 -04006978{
6979 struct list_head *head = &root->fs_info->delalloc_inodes;
6980 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04006981 struct inode *inode;
Chris Masonea8c2812008-08-04 23:17:27 -04006982
Yan Zhengc146afa2008-11-12 14:34:12 -05006983 if (root->fs_info->sb->s_flags & MS_RDONLY)
6984 return -EROFS;
6985
Chris Mason75eff682008-12-15 15:54:40 -05006986 spin_lock(&root->fs_info->delalloc_lock);
Chris Masond3977122009-01-05 21:25:51 -05006987 while (!list_empty(head)) {
Chris Masonea8c2812008-08-04 23:17:27 -04006988 binode = list_entry(head->next, struct btrfs_inode,
6989 delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04006990 inode = igrab(&binode->vfs_inode);
6991 if (!inode)
6992 list_del_init(&binode->delalloc_inodes);
Chris Mason75eff682008-12-15 15:54:40 -05006993 spin_unlock(&root->fs_info->delalloc_lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04006994 if (inode) {
Chris Mason8c8bee12008-09-29 11:19:10 -04006995 filemap_flush(inode->i_mapping);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00006996 if (delay_iput)
6997 btrfs_add_delayed_iput(inode);
6998 else
6999 iput(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007000 }
7001 cond_resched();
Chris Mason75eff682008-12-15 15:54:40 -05007002 spin_lock(&root->fs_info->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04007003 }
Chris Mason75eff682008-12-15 15:54:40 -05007004 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -04007005
7006 /* the filemap_flush will queue IO into the worker threads, but
7007 * we have to make sure the IO is actually started and that
7008 * ordered extents get created before we return
7009 */
7010 atomic_inc(&root->fs_info->async_submit_draining);
Chris Masond3977122009-01-05 21:25:51 -05007011 while (atomic_read(&root->fs_info->nr_async_submits) ||
Chris Mason771ed682008-11-06 22:02:51 -05007012 atomic_read(&root->fs_info->async_delalloc_pages)) {
Chris Mason8c8bee12008-09-29 11:19:10 -04007013 wait_event(root->fs_info->async_submit_wait,
Chris Mason771ed682008-11-06 22:02:51 -05007014 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
7015 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee12008-09-29 11:19:10 -04007016 }
7017 atomic_dec(&root->fs_info->async_submit_draining);
Chris Masonea8c2812008-08-04 23:17:27 -04007018 return 0;
7019}
7020
Josef Bacik0019f102010-10-15 15:18:40 -04007021int btrfs_start_one_delalloc_inode(struct btrfs_root *root, int delay_iput,
7022 int sync)
Yan, Zheng5da9d012010-05-16 10:46:25 -04007023{
7024 struct btrfs_inode *binode;
7025 struct inode *inode = NULL;
7026
7027 spin_lock(&root->fs_info->delalloc_lock);
7028 while (!list_empty(&root->fs_info->delalloc_inodes)) {
7029 binode = list_entry(root->fs_info->delalloc_inodes.next,
7030 struct btrfs_inode, delalloc_inodes);
7031 inode = igrab(&binode->vfs_inode);
7032 if (inode) {
7033 list_move_tail(&binode->delalloc_inodes,
7034 &root->fs_info->delalloc_inodes);
7035 break;
7036 }
7037
7038 list_del_init(&binode->delalloc_inodes);
7039 cond_resched_lock(&root->fs_info->delalloc_lock);
7040 }
7041 spin_unlock(&root->fs_info->delalloc_lock);
7042
7043 if (inode) {
Josef Bacik0019f102010-10-15 15:18:40 -04007044 if (sync) {
7045 filemap_write_and_wait(inode->i_mapping);
7046 /*
7047 * We have to do this because compression doesn't
7048 * actually set PG_writeback until it submits the pages
7049 * for IO, which happens in an async thread, so we could
7050 * race and not actually wait for any writeback pages
7051 * because they've not been submitted yet. Technically
7052 * this could still be the case for the ordered stuff
7053 * since the async thread may not have started to do its
7054 * work yet. If this becomes the case then we need to
7055 * figure out a way to make sure that in writepage we
7056 * wait for any async pages to be submitted before
7057 * returning so that fdatawait does what its supposed to
7058 * do.
7059 */
7060 btrfs_wait_ordered_range(inode, 0, (u64)-1);
7061 } else {
7062 filemap_flush(inode->i_mapping);
7063 }
Yan, Zheng5da9d012010-05-16 10:46:25 -04007064 if (delay_iput)
7065 btrfs_add_delayed_iput(inode);
7066 else
7067 iput(inode);
7068 return 1;
7069 }
7070 return 0;
7071}
7072
Chris Mason39279cc2007-06-12 06:35:45 -04007073static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
7074 const char *symname)
7075{
7076 struct btrfs_trans_handle *trans;
7077 struct btrfs_root *root = BTRFS_I(dir)->root;
7078 struct btrfs_path *path;
7079 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05007080 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04007081 int err;
7082 int drop_inode = 0;
7083 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04007084 u64 index = 0 ;
Chris Mason39279cc2007-06-12 06:35:45 -04007085 int name_len;
7086 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04007087 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04007088 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04007089 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05007090 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007091
7092 name_len = strlen(symname) + 1;
7093 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
7094 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05007095
Yan, Zhenga22285a2010-05-16 10:48:46 -04007096 err = btrfs_find_free_objectid(NULL, root, dir->i_ino, &objectid);
7097 if (err)
7098 return err;
Josef Bacik9ed74f22009-09-11 16:12:44 -04007099 /*
7100 * 2 items for inode item and ref
7101 * 2 items for dir items
7102 * 1 item for xattr if selinux is on
7103 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04007104 trans = btrfs_start_transaction(root, 5);
7105 if (IS_ERR(trans))
7106 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05007107
Chris Mason39279cc2007-06-12 06:35:45 -04007108 btrfs_set_trans_block_group(trans, dir);
7109
Josef Bacikaec74772008-07-24 12:12:38 -04007110 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Josef Bacika1b075d2010-11-19 20:36:11 +00007111 dentry->d_name.len, dir->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04007112 BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO,
7113 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04007114 err = PTR_ERR(inode);
7115 if (IS_ERR(inode))
7116 goto out_unlock;
7117
Yan, Zhengf34f57a2009-11-12 09:35:27 +00007118 err = btrfs_init_inode_security(trans, inode, dir);
Josef Bacik33268ea2008-07-24 12:16:36 -04007119 if (err) {
7120 drop_inode = 1;
7121 goto out_unlock;
7122 }
7123
Chris Mason39279cc2007-06-12 06:35:45 -04007124 btrfs_set_trans_block_group(trans, inode);
Josef Bacika1b075d2010-11-19 20:36:11 +00007125 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04007126 if (err)
7127 drop_inode = 1;
7128 else {
7129 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04007130 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04007131 inode->i_fop = &btrfs_file_operations;
7132 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05007133 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04007134 }
Chris Mason39279cc2007-06-12 06:35:45 -04007135 btrfs_update_inode_block_group(trans, inode);
7136 btrfs_update_inode_block_group(trans, dir);
7137 if (drop_inode)
7138 goto out_unlock;
7139
7140 path = btrfs_alloc_path();
7141 BUG_ON(!path);
7142 key.objectid = inode->i_ino;
7143 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007144 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
7145 datasize = btrfs_file_extent_calc_inline_size(name_len);
7146 err = btrfs_insert_empty_item(trans, root, path, &key,
7147 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04007148 if (err) {
7149 drop_inode = 1;
7150 goto out_unlock;
7151 }
Chris Mason5f39d392007-10-15 16:14:19 -04007152 leaf = path->nodes[0];
7153 ei = btrfs_item_ptr(leaf, path->slots[0],
7154 struct btrfs_file_extent_item);
7155 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
7156 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04007157 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -04007158 btrfs_set_file_extent_encryption(leaf, ei, 0);
7159 btrfs_set_file_extent_compression(leaf, ei, 0);
7160 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
7161 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
7162
Chris Mason39279cc2007-06-12 06:35:45 -04007163 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04007164 write_extent_buffer(leaf, symname, ptr, name_len);
7165 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04007166 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04007167
Chris Mason39279cc2007-06-12 06:35:45 -04007168 inode->i_op = &btrfs_symlink_inode_operations;
7169 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04007170 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Yan Zhengd899e052008-10-30 14:25:28 -04007171 inode_set_bytes(inode, name_len);
Chris Masondbe674a2008-07-17 12:54:05 -04007172 btrfs_i_size_write(inode, name_len - 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04007173 err = btrfs_update_inode(trans, root, inode);
7174 if (err)
7175 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04007176
7177out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04007178 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04007179 btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04007180 if (drop_inode) {
7181 inode_dec_link_count(inode);
7182 iput(inode);
7183 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04007184 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04007185 return err;
7186}
Chris Mason16432982008-04-10 10:23:21 -04007187
Josef Bacik0af3d002010-06-21 14:48:16 -04007188static int __btrfs_prealloc_file_range(struct inode *inode, int mode,
7189 u64 start, u64 num_bytes, u64 min_size,
7190 loff_t actual_len, u64 *alloc_hint,
7191 struct btrfs_trans_handle *trans)
Yan Zhengd899e052008-10-30 14:25:28 -04007192{
Yan Zhengd899e052008-10-30 14:25:28 -04007193 struct btrfs_root *root = BTRFS_I(inode)->root;
7194 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -04007195 u64 cur_offset = start;
Josef Bacik55a61d12010-11-22 18:50:32 +00007196 u64 i_size;
Yan Zhengd899e052008-10-30 14:25:28 -04007197 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04007198 bool own_trans = true;
Yan Zhengd899e052008-10-30 14:25:28 -04007199
Josef Bacik0af3d002010-06-21 14:48:16 -04007200 if (trans)
7201 own_trans = false;
Yan Zhengd899e052008-10-30 14:25:28 -04007202 while (num_bytes > 0) {
Josef Bacik0af3d002010-06-21 14:48:16 -04007203 if (own_trans) {
7204 trans = btrfs_start_transaction(root, 3);
7205 if (IS_ERR(trans)) {
7206 ret = PTR_ERR(trans);
7207 break;
7208 }
Yan Zhengd899e052008-10-30 14:25:28 -04007209 }
Yan, Zheng5a303d52009-11-12 09:34:52 +00007210
Yan, Zhengefa56462010-05-16 10:49:59 -04007211 ret = btrfs_reserve_extent(trans, root, num_bytes, min_size,
7212 0, *alloc_hint, (u64)-1, &ins, 1);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007213 if (ret) {
Josef Bacik0af3d002010-06-21 14:48:16 -04007214 if (own_trans)
7215 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04007216 break;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007217 }
7218
Yan Zhengd899e052008-10-30 14:25:28 -04007219 ret = insert_reserved_file_extent(trans, inode,
7220 cur_offset, ins.objectid,
7221 ins.offset, ins.offset,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00007222 ins.offset, 0, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04007223 BTRFS_FILE_EXTENT_PREALLOC);
7224 BUG_ON(ret);
Chris Masona1ed8352009-09-11 12:27:37 -04007225 btrfs_drop_extent_cache(inode, cur_offset,
7226 cur_offset + ins.offset -1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007227
Yan Zhengd899e052008-10-30 14:25:28 -04007228 num_bytes -= ins.offset;
7229 cur_offset += ins.offset;
Yan, Zhengefa56462010-05-16 10:49:59 -04007230 *alloc_hint = ins.objectid + ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007231
Yan Zhengd899e052008-10-30 14:25:28 -04007232 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +02007233 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -04007234 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
Yan, Zhengefa56462010-05-16 10:49:59 -04007235 (actual_len > inode->i_size) &&
7236 (cur_offset > inode->i_size)) {
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00007237 if (cur_offset > actual_len)
Josef Bacik55a61d12010-11-22 18:50:32 +00007238 i_size = actual_len;
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00007239 else
Josef Bacik55a61d12010-11-22 18:50:32 +00007240 i_size = cur_offset;
7241 i_size_write(inode, i_size);
7242 btrfs_ordered_update_i_size(inode, i_size, NULL);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007243 }
7244
Yan Zhengd899e052008-10-30 14:25:28 -04007245 ret = btrfs_update_inode(trans, root, inode);
7246 BUG_ON(ret);
Yan Zhengd899e052008-10-30 14:25:28 -04007247
Josef Bacik0af3d002010-06-21 14:48:16 -04007248 if (own_trans)
7249 btrfs_end_transaction(trans, root);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007250 }
Yan Zhengd899e052008-10-30 14:25:28 -04007251 return ret;
7252}
7253
Josef Bacik0af3d002010-06-21 14:48:16 -04007254int btrfs_prealloc_file_range(struct inode *inode, int mode,
7255 u64 start, u64 num_bytes, u64 min_size,
7256 loff_t actual_len, u64 *alloc_hint)
7257{
7258 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
7259 min_size, actual_len, alloc_hint,
7260 NULL);
7261}
7262
7263int btrfs_prealloc_file_range_trans(struct inode *inode,
7264 struct btrfs_trans_handle *trans, int mode,
7265 u64 start, u64 num_bytes, u64 min_size,
7266 loff_t actual_len, u64 *alloc_hint)
7267{
7268 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
7269 min_size, actual_len, alloc_hint, trans);
7270}
7271
Chris Masone6dcd2d2008-07-17 12:53:50 -04007272static int btrfs_set_page_dirty(struct page *page)
7273{
Chris Masone6dcd2d2008-07-17 12:53:50 -04007274 return __set_page_dirty_nobuffers(page);
7275}
7276
Nick Pigginb74c79e2011-01-07 17:49:58 +11007277static int btrfs_permission(struct inode *inode, int mask, unsigned int flags)
Yanfdebe2b2008-01-14 13:26:08 -05007278{
Li Zefanb83cc962010-12-20 16:04:08 +08007279 struct btrfs_root *root = BTRFS_I(inode)->root;
7280
7281 if (btrfs_root_readonly(root) && (mask & MAY_WRITE))
7282 return -EROFS;
Christoph Hellwig6cbff002009-04-17 10:37:41 +02007283 if ((BTRFS_I(inode)->flags & BTRFS_INODE_READONLY) && (mask & MAY_WRITE))
Yanfdebe2b2008-01-14 13:26:08 -05007284 return -EACCES;
Nick Pigginb74c79e2011-01-07 17:49:58 +11007285 return generic_permission(inode, mask, flags, btrfs_check_acl);
Yanfdebe2b2008-01-14 13:26:08 -05007286}
Chris Mason39279cc2007-06-12 06:35:45 -04007287
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007288static const struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -05007289 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -04007290 .lookup = btrfs_lookup,
7291 .create = btrfs_create,
7292 .unlink = btrfs_unlink,
7293 .link = btrfs_link,
7294 .mkdir = btrfs_mkdir,
7295 .rmdir = btrfs_rmdir,
7296 .rename = btrfs_rename,
7297 .symlink = btrfs_symlink,
7298 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04007299 .mknod = btrfs_mknod,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007300 .setxattr = btrfs_setxattr,
7301 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05007302 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007303 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05007304 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04007305};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007306static const struct inode_operations btrfs_dir_ro_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007307 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05007308 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04007309};
Yan, Zheng76dda932009-09-21 16:00:26 -04007310
Alexey Dobriyan828c0952009-10-01 15:43:56 -07007311static const struct file_operations btrfs_dir_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007312 .llseek = generic_file_llseek,
7313 .read = generic_read_dir,
David Woodhousecbdf5a22008-08-06 19:42:33 +01007314 .readdir = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04007315 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04007316#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04007317 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04007318#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04007319 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -04007320 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -04007321};
7322
Chris Masond1310b22008-01-24 16:13:08 -05007323static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04007324 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05007325 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04007326 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04007327 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04007328 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04007329 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Mason1259ab72008-05-12 13:39:03 -04007330 .readpage_io_failed_hook = btrfs_io_failed_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05007331 .set_bit_hook = btrfs_set_bit_hook,
7332 .clear_bit_hook = btrfs_clear_bit_hook,
Josef Bacik9ed74f22009-09-11 16:12:44 -04007333 .merge_extent_hook = btrfs_merge_extent_hook,
7334 .split_extent_hook = btrfs_split_extent_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04007335};
7336
Chris Mason35054392009-01-21 13:11:13 -05007337/*
7338 * btrfs doesn't support the bmap operation because swapfiles
7339 * use bmap to make a mapping of extents in the file. They assume
7340 * these extents won't change over the life of the file and they
7341 * use the bmap result to do IO directly to the drive.
7342 *
7343 * the btrfs bmap call would return logical addresses that aren't
7344 * suitable for IO and they also will change frequently as COW
7345 * operations happen. So, swapfile + btrfs == corruption.
7346 *
7347 * For now we're avoiding this by dropping bmap.
7348 */
Alexey Dobriyan7f094102009-09-21 17:01:10 -07007349static const struct address_space_operations btrfs_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04007350 .readpage = btrfs_readpage,
7351 .writepage = btrfs_writepage,
Chris Masonb293f022007-11-01 19:45:34 -04007352 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05007353 .readpages = btrfs_readpages,
Chris Mason39279cc2007-06-12 06:35:45 -04007354 .sync_page = block_sync_page,
Chris Mason16432982008-04-10 10:23:21 -04007355 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04007356 .invalidatepage = btrfs_invalidatepage,
7357 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04007358 .set_page_dirty = btrfs_set_page_dirty,
Andi Kleen465fdd92009-09-16 11:50:18 +02007359 .error_remove_page = generic_error_remove_page,
Chris Mason39279cc2007-06-12 06:35:45 -04007360};
7361
Alexey Dobriyan7f094102009-09-21 17:01:10 -07007362static const struct address_space_operations btrfs_symlink_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04007363 .readpage = btrfs_readpage,
7364 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04007365 .invalidatepage = btrfs_invalidatepage,
7366 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04007367};
7368
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007369static const struct inode_operations btrfs_file_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007370 .truncate = btrfs_truncate,
7371 .getattr = btrfs_getattr,
7372 .setattr = btrfs_setattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007373 .setxattr = btrfs_setxattr,
7374 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05007375 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007376 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05007377 .permission = btrfs_permission,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05007378 .fiemap = btrfs_fiemap,
Chris Mason39279cc2007-06-12 06:35:45 -04007379};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007380static const struct inode_operations btrfs_special_inode_operations = {
Josef Bacik618e21d2007-07-11 10:18:17 -04007381 .getattr = btrfs_getattr,
7382 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05007383 .permission = btrfs_permission,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007384 .setxattr = btrfs_setxattr,
7385 .getxattr = btrfs_getxattr,
Josef Bacik33268ea2008-07-24 12:16:36 -04007386 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007387 .removexattr = btrfs_removexattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04007388};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007389static const struct inode_operations btrfs_symlink_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007390 .readlink = generic_readlink,
7391 .follow_link = page_follow_link_light,
7392 .put_link = page_put_link,
Li Zefanf2095612010-11-19 02:05:24 +00007393 .getattr = btrfs_getattr,
Yanfdebe2b2008-01-14 13:26:08 -05007394 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -05007395 .setxattr = btrfs_setxattr,
7396 .getxattr = btrfs_getxattr,
7397 .listxattr = btrfs_listxattr,
7398 .removexattr = btrfs_removexattr,
Chris Mason39279cc2007-06-12 06:35:45 -04007399};
Yan, Zheng76dda932009-09-21 16:00:26 -04007400
Alexey Dobriyan82d339d2009-10-09 09:54:36 -04007401const struct dentry_operations btrfs_dentry_operations = {
Yan, Zheng76dda932009-09-21 16:00:26 -04007402 .d_delete = btrfs_dentry_delete,
7403};