blob: eec33b9c953d8f082010bf4abb333c66bb6dc164 [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>
David Sterba7a36dde2011-05-06 15:33:15 +020040#include <linux/ratelimit.h>
Josef Bacik22c44fe2011-11-30 10:45:38 -050041#include <linux/mount.h>
Chris Mason4b4e25f2008-11-20 10:22:27 -050042#include "compat.h"
Chris Mason39279cc2007-06-12 06:35:45 -040043#include "ctree.h"
44#include "disk-io.h"
45#include "transaction.h"
46#include "btrfs_inode.h"
47#include "ioctl.h"
48#include "print-tree.h"
Chris Masone6dcd2d2008-07-17 12:53:50 -040049#include "ordered-data.h"
Christoph Hellwig95819c02008-08-28 06:21:17 -040050#include "xattr.h"
Chris Masone02119d2008-09-05 16:13:11 -040051#include "tree-log.h"
Jan Schmidt4a54c8c2011-07-22 15:41:52 +020052#include "volumes.h"
Chris Masonc8b97812008-10-29 14:49:59 -040053#include "compression.h"
Chris Masonb4ce94d2009-02-04 09:25:08 -050054#include "locking.h"
Josef Bacikdc89e982011-01-28 17:05:48 -050055#include "free-space-cache.h"
Li Zefan581bb052011-04-20 10:06:11 +080056#include "inode-map.h"
Chris Mason39279cc2007-06-12 06:35:45 -040057
58struct btrfs_iget_args {
59 u64 ino;
60 struct btrfs_root *root;
61};
62
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070063static const struct inode_operations btrfs_dir_inode_operations;
64static const struct inode_operations btrfs_symlink_inode_operations;
65static const struct inode_operations btrfs_dir_ro_inode_operations;
66static const struct inode_operations btrfs_special_inode_operations;
67static const struct inode_operations btrfs_file_inode_operations;
Alexey Dobriyan7f094102009-09-21 17:01:10 -070068static const struct address_space_operations btrfs_aops;
69static const struct address_space_operations btrfs_symlink_aops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -070070static const struct file_operations btrfs_dir_file_operations;
Chris Masond1310b22008-01-24 16:13:08 -050071static struct extent_io_ops btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -040072
73static struct kmem_cache *btrfs_inode_cachep;
74struct kmem_cache *btrfs_trans_handle_cachep;
75struct kmem_cache *btrfs_transaction_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040076struct kmem_cache *btrfs_path_cachep;
Josef Bacikdc89e982011-01-28 17:05:48 -050077struct kmem_cache *btrfs_free_space_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040078
79#define S_SHIFT 12
80static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
81 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
82 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
83 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
84 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
85 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
86 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
87 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
88};
89
Josef Bacika41ad392011-01-31 15:30:16 -050090static int btrfs_setsize(struct inode *inode, loff_t newsize);
91static int btrfs_truncate(struct inode *inode);
Chris Masonc8b97812008-10-29 14:49:59 -040092static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end);
Chris Mason771ed682008-11-06 22:02:51 -050093static noinline int cow_file_range(struct inode *inode,
94 struct page *locked_page,
95 u64 start, u64 end, int *page_started,
96 unsigned long *nr_written, int unlock);
Chris Mason21151332011-11-10 20:39:08 -050097static noinline int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans,
98 struct btrfs_root *root, struct inode *inode);
Josef Bacik7b128762008-07-24 12:17:14 -040099
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000100static int btrfs_init_inode_security(struct btrfs_trans_handle *trans,
Eric Paris2a7dba32011-02-01 11:05:39 -0500101 struct inode *inode, struct inode *dir,
102 const struct qstr *qstr)
Jim Owens0279b4c2009-02-04 09:29:13 -0500103{
104 int err;
105
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000106 err = btrfs_init_acl(trans, inode, dir);
Jim Owens0279b4c2009-02-04 09:29:13 -0500107 if (!err)
Eric Paris2a7dba32011-02-01 11:05:39 -0500108 err = btrfs_xattr_security_init(trans, inode, dir, qstr);
Jim Owens0279b4c2009-02-04 09:29:13 -0500109 return err;
110}
111
Chris Masond352ac62008-09-29 15:18:18 -0400112/*
Chris Masonc8b97812008-10-29 14:49:59 -0400113 * this does all the hard work for inserting an inline extent into
114 * the btree. The caller should have done a btrfs_drop_extents so that
115 * no overlapping inline items exist in the btree
116 */
Chris Masond3977122009-01-05 21:25:51 -0500117static noinline int insert_inline_extent(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400118 struct btrfs_root *root, struct inode *inode,
119 u64 start, size_t size, size_t compressed_size,
Li Zefanfe3f5662011-03-28 08:30:38 +0000120 int compress_type,
Chris Masonc8b97812008-10-29 14:49:59 -0400121 struct page **compressed_pages)
122{
123 struct btrfs_key key;
124 struct btrfs_path *path;
125 struct extent_buffer *leaf;
126 struct page *page = NULL;
127 char *kaddr;
128 unsigned long ptr;
129 struct btrfs_file_extent_item *ei;
130 int err = 0;
131 int ret;
132 size_t cur_size = size;
133 size_t datasize;
134 unsigned long offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400135
Li Zefanfe3f5662011-03-28 08:30:38 +0000136 if (compressed_size && compressed_pages)
Chris Masonc8b97812008-10-29 14:49:59 -0400137 cur_size = compressed_size;
Chris Masonc8b97812008-10-29 14:49:59 -0400138
Chris Masond3977122009-01-05 21:25:51 -0500139 path = btrfs_alloc_path();
140 if (!path)
Chris Masonc8b97812008-10-29 14:49:59 -0400141 return -ENOMEM;
142
Chris Masonb9473432009-03-13 11:00:37 -0400143 path->leave_spinning = 1;
Chris Masonc8b97812008-10-29 14:49:59 -0400144
Li Zefan33345d012011-04-20 10:31:50 +0800145 key.objectid = btrfs_ino(inode);
Chris Masonc8b97812008-10-29 14:49:59 -0400146 key.offset = start;
147 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
Chris Masonc8b97812008-10-29 14:49:59 -0400148 datasize = btrfs_file_extent_calc_inline_size(cur_size);
149
150 inode_add_bytes(inode, size);
151 ret = btrfs_insert_empty_item(trans, root, path, &key,
152 datasize);
153 BUG_ON(ret);
154 if (ret) {
155 err = ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400156 goto fail;
157 }
158 leaf = path->nodes[0];
159 ei = btrfs_item_ptr(leaf, path->slots[0],
160 struct btrfs_file_extent_item);
161 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
162 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
163 btrfs_set_file_extent_encryption(leaf, ei, 0);
164 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
165 btrfs_set_file_extent_ram_bytes(leaf, ei, size);
166 ptr = btrfs_file_extent_inline_start(ei);
167
Li Zefan261507a02010-12-17 14:21:50 +0800168 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -0400169 struct page *cpage;
170 int i = 0;
Chris Masond3977122009-01-05 21:25:51 -0500171 while (compressed_size > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -0400172 cpage = compressed_pages[i];
Chris Mason5b050f02008-11-11 09:34:41 -0500173 cur_size = min_t(unsigned long, compressed_size,
Chris Masonc8b97812008-10-29 14:49:59 -0400174 PAGE_CACHE_SIZE);
175
Chris Masonb9473432009-03-13 11:00:37 -0400176 kaddr = kmap_atomic(cpage, KM_USER0);
Chris Masonc8b97812008-10-29 14:49:59 -0400177 write_extent_buffer(leaf, kaddr, ptr, cur_size);
Chris Masonb9473432009-03-13 11:00:37 -0400178 kunmap_atomic(kaddr, KM_USER0);
Chris Masonc8b97812008-10-29 14:49:59 -0400179
180 i++;
181 ptr += cur_size;
182 compressed_size -= cur_size;
183 }
184 btrfs_set_file_extent_compression(leaf, ei,
Li Zefan261507a02010-12-17 14:21:50 +0800185 compress_type);
Chris Masonc8b97812008-10-29 14:49:59 -0400186 } else {
187 page = find_get_page(inode->i_mapping,
188 start >> PAGE_CACHE_SHIFT);
189 btrfs_set_file_extent_compression(leaf, ei, 0);
190 kaddr = kmap_atomic(page, KM_USER0);
191 offset = start & (PAGE_CACHE_SIZE - 1);
192 write_extent_buffer(leaf, kaddr + offset, ptr, size);
193 kunmap_atomic(kaddr, KM_USER0);
194 page_cache_release(page);
195 }
196 btrfs_mark_buffer_dirty(leaf);
197 btrfs_free_path(path);
198
Yan, Zhengc2167752009-11-12 09:34:21 +0000199 /*
200 * we're an inline extent, so nobody can
201 * extend the file past i_size without locking
202 * a page we already have locked.
203 *
204 * We must do any isize and inode updates
205 * before we unlock the pages. Otherwise we
206 * could end up racing with unlink.
207 */
Chris Masonc8b97812008-10-29 14:49:59 -0400208 BTRFS_I(inode)->disk_i_size = inode->i_size;
209 btrfs_update_inode(trans, root, inode);
Yan, Zhengc2167752009-11-12 09:34:21 +0000210
Chris Masonc8b97812008-10-29 14:49:59 -0400211 return 0;
212fail:
213 btrfs_free_path(path);
214 return err;
215}
216
217
218/*
219 * conditionally insert an inline extent into the file. This
220 * does the checks required to make sure the data is small enough
221 * to fit as an inline extent.
222 */
Chris Mason7f366cf2009-03-12 20:12:45 -0400223static noinline int cow_file_range_inline(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400224 struct btrfs_root *root,
225 struct inode *inode, u64 start, u64 end,
Li Zefanfe3f5662011-03-28 08:30:38 +0000226 size_t compressed_size, int compress_type,
Chris Masonc8b97812008-10-29 14:49:59 -0400227 struct page **compressed_pages)
228{
229 u64 isize = i_size_read(inode);
230 u64 actual_end = min(end + 1, isize);
231 u64 inline_len = actual_end - start;
232 u64 aligned_end = (end + root->sectorsize - 1) &
233 ~((u64)root->sectorsize - 1);
234 u64 hint_byte;
235 u64 data_len = inline_len;
236 int ret;
237
238 if (compressed_size)
239 data_len = compressed_size;
240
241 if (start > 0 ||
Chris Mason70b99e62008-10-31 12:46:39 -0400242 actual_end >= PAGE_CACHE_SIZE ||
Chris Masonc8b97812008-10-29 14:49:59 -0400243 data_len >= BTRFS_MAX_INLINE_DATA_SIZE(root) ||
244 (!compressed_size &&
245 (actual_end & (root->sectorsize - 1)) == 0) ||
246 end + 1 < isize ||
247 data_len > root->fs_info->max_inline) {
248 return 1;
249 }
250
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000251 ret = btrfs_drop_extents(trans, inode, start, aligned_end,
Chris Masona1ed8352009-09-11 12:27:37 -0400252 &hint_byte, 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400253 BUG_ON(ret);
254
255 if (isize > actual_end)
256 inline_len = min_t(u64, isize, actual_end);
257 ret = insert_inline_extent(trans, root, inode, start,
258 inline_len, compressed_size,
Li Zefanfe3f5662011-03-28 08:30:38 +0000259 compress_type, compressed_pages);
Chris Masonc8b97812008-10-29 14:49:59 -0400260 BUG_ON(ret);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400261 btrfs_delalloc_release_metadata(inode, end + 1 - start);
Chris Masona1ed8352009-09-11 12:27:37 -0400262 btrfs_drop_extent_cache(inode, start, aligned_end - 1, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400263 return 0;
264}
265
Chris Mason771ed682008-11-06 22:02:51 -0500266struct async_extent {
267 u64 start;
268 u64 ram_size;
269 u64 compressed_size;
270 struct page **pages;
271 unsigned long nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800272 int compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500273 struct list_head list;
274};
275
276struct async_cow {
277 struct inode *inode;
278 struct btrfs_root *root;
279 struct page *locked_page;
280 u64 start;
281 u64 end;
282 struct list_head extents;
283 struct btrfs_work work;
284};
285
286static noinline int add_async_extent(struct async_cow *cow,
287 u64 start, u64 ram_size,
288 u64 compressed_size,
289 struct page **pages,
Li Zefan261507a02010-12-17 14:21:50 +0800290 unsigned long nr_pages,
291 int compress_type)
Chris Mason771ed682008-11-06 22:02:51 -0500292{
293 struct async_extent *async_extent;
294
295 async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS);
Yoshinori Sanodac97e52011-02-15 12:01:42 +0000296 BUG_ON(!async_extent);
Chris Mason771ed682008-11-06 22:02:51 -0500297 async_extent->start = start;
298 async_extent->ram_size = ram_size;
299 async_extent->compressed_size = compressed_size;
300 async_extent->pages = pages;
301 async_extent->nr_pages = nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800302 async_extent->compress_type = compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500303 list_add_tail(&async_extent->list, &cow->extents);
304 return 0;
305}
306
Chris Masonc8b97812008-10-29 14:49:59 -0400307/*
Chris Mason771ed682008-11-06 22:02:51 -0500308 * we create compressed extents in two phases. The first
309 * phase compresses a range of pages that have already been
310 * locked (both pages and state bits are locked).
Chris Masonc8b97812008-10-29 14:49:59 -0400311 *
Chris Mason771ed682008-11-06 22:02:51 -0500312 * This is done inside an ordered work queue, and the compression
313 * is spread across many cpus. The actual IO submission is step
314 * two, and the ordered work queue takes care of making sure that
315 * happens in the same order things were put onto the queue by
316 * writepages and friends.
Chris Masonc8b97812008-10-29 14:49:59 -0400317 *
Chris Mason771ed682008-11-06 22:02:51 -0500318 * If this code finds it can't get good compression, it puts an
319 * entry onto the work queue to write the uncompressed bytes. This
320 * makes sure that both compressed inodes and uncompressed inodes
321 * are written in the same order that pdflush sent them down.
Chris Masond352ac62008-09-29 15:18:18 -0400322 */
Chris Mason771ed682008-11-06 22:02:51 -0500323static noinline int compress_file_range(struct inode *inode,
324 struct page *locked_page,
325 u64 start, u64 end,
326 struct async_cow *async_cow,
327 int *num_added)
Chris Masonb888db22007-08-27 16:49:44 -0400328{
329 struct btrfs_root *root = BTRFS_I(inode)->root;
330 struct btrfs_trans_handle *trans;
Chris Masondb945352007-10-15 16:15:53 -0400331 u64 num_bytes;
Chris Masondb945352007-10-15 16:15:53 -0400332 u64 blocksize = root->sectorsize;
Chris Masonc8b97812008-10-29 14:49:59 -0400333 u64 actual_end;
Chris Mason42dc7ba2008-12-15 11:44:56 -0500334 u64 isize = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400335 int ret = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400336 struct page **pages = NULL;
337 unsigned long nr_pages;
338 unsigned long nr_pages_ret = 0;
339 unsigned long total_compressed = 0;
340 unsigned long total_in = 0;
341 unsigned long max_compressed = 128 * 1024;
Chris Mason771ed682008-11-06 22:02:51 -0500342 unsigned long max_uncompressed = 128 * 1024;
Chris Masonc8b97812008-10-29 14:49:59 -0400343 int i;
344 int will_compress;
Li Zefan261507a02010-12-17 14:21:50 +0800345 int compress_type = root->fs_info->compress_type;
Chris Masonb888db22007-08-27 16:49:44 -0400346
Chris Mason4cb53002011-05-24 15:35:30 -0400347 /* if this is a small write inside eof, kick off a defragbot */
348 if (end <= BTRFS_I(inode)->disk_i_size && (end - start + 1) < 16 * 1024)
349 btrfs_add_inode_defrag(NULL, inode);
350
Chris Mason42dc7ba2008-12-15 11:44:56 -0500351 actual_end = min_t(u64, isize, end + 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400352again:
353 will_compress = 0;
354 nr_pages = (end >> PAGE_CACHE_SHIFT) - (start >> PAGE_CACHE_SHIFT) + 1;
355 nr_pages = min(nr_pages, (128 * 1024UL) / PAGE_CACHE_SIZE);
356
Chris Masonf03d9301f2009-02-04 09:31:06 -0500357 /*
358 * we don't want to send crud past the end of i_size through
359 * compression, that's just a waste of CPU time. So, if the
360 * end of the file is before the start of our current
361 * requested range of bytes, we bail out to the uncompressed
362 * cleanup code that can deal with all of this.
363 *
364 * It isn't really the fastest way to fix things, but this is a
365 * very uncommon corner.
366 */
367 if (actual_end <= start)
368 goto cleanup_and_bail_uncompressed;
369
Chris Masonc8b97812008-10-29 14:49:59 -0400370 total_compressed = actual_end - start;
371
372 /* we want to make sure that amount of ram required to uncompress
373 * an extent is reasonable, so we limit the total size in ram
Chris Mason771ed682008-11-06 22:02:51 -0500374 * of a compressed extent to 128k. This is a crucial number
375 * because it also controls how easily we can spread reads across
376 * cpus for decompression.
377 *
378 * We also want to make sure the amount of IO required to do
379 * a random read is reasonably small, so we limit the size of
380 * a compressed extent to 128k.
Chris Masonc8b97812008-10-29 14:49:59 -0400381 */
382 total_compressed = min(total_compressed, max_uncompressed);
Chris Masondb945352007-10-15 16:15:53 -0400383 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
Chris Masonbe20aa92007-12-17 20:14:01 -0500384 num_bytes = max(blocksize, num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -0400385 total_in = 0;
386 ret = 0;
Chris Masondb945352007-10-15 16:15:53 -0400387
Chris Mason771ed682008-11-06 22:02:51 -0500388 /*
389 * we do compression for mount -o compress and when the
390 * inode has not been flagged as nocompress. This flag can
391 * change at any time if we discover bad compression ratios.
Chris Masonc8b97812008-10-29 14:49:59 -0400392 */
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200393 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS) &&
Chris Mason1e701a32010-03-11 09:42:04 -0500394 (btrfs_test_opt(root, COMPRESS) ||
Liu Bo75e7cb72011-03-22 10:12:20 +0000395 (BTRFS_I(inode)->force_compress) ||
396 (BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS))) {
Chris Masonc8b97812008-10-29 14:49:59 -0400397 WARN_ON(pages);
Chris Masoncfbc2462008-10-30 13:22:14 -0400398 pages = kzalloc(sizeof(struct page *) * nr_pages, GFP_NOFS);
Li Zefan560f7d72011-09-08 10:22:01 +0800399 if (!pages) {
400 /* just bail out to the uncompressed code */
401 goto cont;
402 }
Chris Mason179e29e2007-11-01 11:28:41 -0400403
Li Zefan261507a02010-12-17 14:21:50 +0800404 if (BTRFS_I(inode)->force_compress)
405 compress_type = BTRFS_I(inode)->force_compress;
406
407 ret = btrfs_compress_pages(compress_type,
408 inode->i_mapping, start,
409 total_compressed, pages,
410 nr_pages, &nr_pages_ret,
411 &total_in,
412 &total_compressed,
413 max_compressed);
Chris Masonc8b97812008-10-29 14:49:59 -0400414
415 if (!ret) {
416 unsigned long offset = total_compressed &
417 (PAGE_CACHE_SIZE - 1);
418 struct page *page = pages[nr_pages_ret - 1];
419 char *kaddr;
420
421 /* zero the tail end of the last page, we might be
422 * sending it down to disk
423 */
424 if (offset) {
425 kaddr = kmap_atomic(page, KM_USER0);
426 memset(kaddr + offset, 0,
427 PAGE_CACHE_SIZE - offset);
428 kunmap_atomic(kaddr, KM_USER0);
429 }
430 will_compress = 1;
431 }
432 }
Li Zefan560f7d72011-09-08 10:22:01 +0800433cont:
Chris Masonc8b97812008-10-29 14:49:59 -0400434 if (start == 0) {
Josef Bacik7a7eaa42011-04-13 12:54:33 -0400435 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +0000436 BUG_ON(IS_ERR(trans));
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400437 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason771ed682008-11-06 22:02:51 -0500438
Chris Masonc8b97812008-10-29 14:49:59 -0400439 /* lets try to make an inline extent */
Chris Mason771ed682008-11-06 22:02:51 -0500440 if (ret || total_in < (actual_end - start)) {
Chris Masonc8b97812008-10-29 14:49:59 -0400441 /* we didn't compress the entire range, try
Chris Mason771ed682008-11-06 22:02:51 -0500442 * to make an uncompressed inline extent.
Chris Masonc8b97812008-10-29 14:49:59 -0400443 */
444 ret = cow_file_range_inline(trans, root, inode,
Li Zefanfe3f5662011-03-28 08:30:38 +0000445 start, end, 0, 0, NULL);
Chris Masonc8b97812008-10-29 14:49:59 -0400446 } else {
Chris Mason771ed682008-11-06 22:02:51 -0500447 /* try making a compressed inline extent */
Chris Masonc8b97812008-10-29 14:49:59 -0400448 ret = cow_file_range_inline(trans, root, inode,
449 start, end,
Li Zefanfe3f5662011-03-28 08:30:38 +0000450 total_compressed,
451 compress_type, pages);
Chris Masonc8b97812008-10-29 14:49:59 -0400452 }
453 if (ret == 0) {
Chris Mason771ed682008-11-06 22:02:51 -0500454 /*
455 * inline extent creation worked, we don't need
456 * to create any more async work items. Unlock
457 * and free up our temp pages.
458 */
Chris Masonc8b97812008-10-29 14:49:59 -0400459 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400460 &BTRFS_I(inode)->io_tree,
461 start, end, NULL,
462 EXTENT_CLEAR_UNLOCK_PAGE | EXTENT_CLEAR_DIRTY |
Chris Masona3429ab2009-10-08 12:30:20 -0400463 EXTENT_CLEAR_DELALLOC |
Chris Masona791e352009-10-08 11:27:10 -0400464 EXTENT_SET_WRITEBACK | EXTENT_END_WRITEBACK);
Yan, Zhengc2167752009-11-12 09:34:21 +0000465
466 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400467 goto free_pages_out;
468 }
Yan, Zhengc2167752009-11-12 09:34:21 +0000469 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400470 }
471
472 if (will_compress) {
473 /*
474 * we aren't doing an inline extent round the compressed size
475 * up to a block size boundary so the allocator does sane
476 * things
477 */
478 total_compressed = (total_compressed + blocksize - 1) &
479 ~(blocksize - 1);
480
481 /*
482 * one last check to make sure the compression is really a
483 * win, compare the page count read with the blocks on disk
484 */
485 total_in = (total_in + PAGE_CACHE_SIZE - 1) &
486 ~(PAGE_CACHE_SIZE - 1);
487 if (total_compressed >= total_in) {
488 will_compress = 0;
489 } else {
Chris Masonc8b97812008-10-29 14:49:59 -0400490 num_bytes = total_in;
491 }
492 }
493 if (!will_compress && pages) {
494 /*
495 * the compression code ran but failed to make things smaller,
496 * free any pages it allocated and our page pointer array
497 */
498 for (i = 0; i < nr_pages_ret; i++) {
Chris Mason70b99e62008-10-31 12:46:39 -0400499 WARN_ON(pages[i]->mapping);
Chris Masonc8b97812008-10-29 14:49:59 -0400500 page_cache_release(pages[i]);
501 }
502 kfree(pages);
503 pages = NULL;
504 total_compressed = 0;
505 nr_pages_ret = 0;
506
507 /* flag the file so we don't compress in the future */
Chris Mason1e701a32010-03-11 09:42:04 -0500508 if (!btrfs_test_opt(root, FORCE_COMPRESS) &&
509 !(BTRFS_I(inode)->force_compress)) {
Chris Masona555f812010-01-28 16:18:15 -0500510 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
Chris Mason1e701a32010-03-11 09:42:04 -0500511 }
Chris Masonc8b97812008-10-29 14:49:59 -0400512 }
Chris Mason771ed682008-11-06 22:02:51 -0500513 if (will_compress) {
514 *num_added += 1;
515
516 /* the async work queues will take care of doing actual
517 * allocation on disk for these compressed pages,
518 * and will submit them to the elevator.
519 */
520 add_async_extent(async_cow, start, num_bytes,
Li Zefan261507a02010-12-17 14:21:50 +0800521 total_compressed, pages, nr_pages_ret,
522 compress_type);
Chris Mason771ed682008-11-06 22:02:51 -0500523
Yan, Zheng24ae6362010-12-06 07:02:36 +0000524 if (start + num_bytes < end) {
Chris Mason771ed682008-11-06 22:02:51 -0500525 start += num_bytes;
526 pages = NULL;
527 cond_resched();
528 goto again;
529 }
530 } else {
Chris Masonf03d9301f2009-02-04 09:31:06 -0500531cleanup_and_bail_uncompressed:
Chris Mason771ed682008-11-06 22:02:51 -0500532 /*
533 * No compression, but we still need to write the pages in
534 * the file we've been given so far. redirty the locked
535 * page if it corresponds to our extent and set things up
536 * for the async work queue to run cow_file_range to do
537 * the normal delalloc dance
538 */
539 if (page_offset(locked_page) >= start &&
540 page_offset(locked_page) <= end) {
541 __set_page_dirty_nobuffers(locked_page);
542 /* unlocked later on in the async handlers */
543 }
Li Zefan261507a02010-12-17 14:21:50 +0800544 add_async_extent(async_cow, start, end - start + 1,
545 0, NULL, 0, BTRFS_COMPRESS_NONE);
Chris Mason771ed682008-11-06 22:02:51 -0500546 *num_added += 1;
547 }
548
549out:
550 return 0;
551
552free_pages_out:
553 for (i = 0; i < nr_pages_ret; i++) {
554 WARN_ON(pages[i]->mapping);
555 page_cache_release(pages[i]);
556 }
Chris Masond3977122009-01-05 21:25:51 -0500557 kfree(pages);
Chris Mason771ed682008-11-06 22:02:51 -0500558
559 goto out;
560}
561
562/*
563 * phase two of compressed writeback. This is the ordered portion
564 * of the code, which only gets called in the order the work was
565 * queued. We walk all the async extents created by compress_file_range
566 * and send them down to the disk.
567 */
568static noinline int submit_compressed_extents(struct inode *inode,
569 struct async_cow *async_cow)
570{
571 struct async_extent *async_extent;
572 u64 alloc_hint = 0;
573 struct btrfs_trans_handle *trans;
574 struct btrfs_key ins;
575 struct extent_map *em;
576 struct btrfs_root *root = BTRFS_I(inode)->root;
577 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
578 struct extent_io_tree *io_tree;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500579 int ret = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500580
581 if (list_empty(&async_cow->extents))
582 return 0;
583
Chris Mason771ed682008-11-06 22:02:51 -0500584
Chris Masond3977122009-01-05 21:25:51 -0500585 while (!list_empty(&async_cow->extents)) {
Chris Mason771ed682008-11-06 22:02:51 -0500586 async_extent = list_entry(async_cow->extents.next,
587 struct async_extent, list);
588 list_del(&async_extent->list);
589
590 io_tree = &BTRFS_I(inode)->io_tree;
591
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500592retry:
Chris Mason771ed682008-11-06 22:02:51 -0500593 /* did the compression code fall back to uncompressed IO? */
594 if (!async_extent->pages) {
595 int page_started = 0;
596 unsigned long nr_written = 0;
597
598 lock_extent(io_tree, async_extent->start,
Josef Bacik2ac55d42010-02-03 19:33:23 +0000599 async_extent->start +
600 async_extent->ram_size - 1, GFP_NOFS);
Chris Mason771ed682008-11-06 22:02:51 -0500601
602 /* allocate blocks */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500603 ret = cow_file_range(inode, async_cow->locked_page,
604 async_extent->start,
605 async_extent->start +
606 async_extent->ram_size - 1,
607 &page_started, &nr_written, 0);
Chris Mason771ed682008-11-06 22:02:51 -0500608
609 /*
610 * if page_started, cow_file_range inserted an
611 * inline extent and took care of all the unlocking
612 * and IO for us. Otherwise, we need to submit
613 * all those pages down to the drive.
614 */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500615 if (!page_started && !ret)
Chris Mason771ed682008-11-06 22:02:51 -0500616 extent_write_locked_range(io_tree,
617 inode, async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500618 async_extent->start +
Chris Mason771ed682008-11-06 22:02:51 -0500619 async_extent->ram_size - 1,
620 btrfs_get_extent,
621 WB_SYNC_ALL);
622 kfree(async_extent);
623 cond_resched();
624 continue;
625 }
626
627 lock_extent(io_tree, async_extent->start,
628 async_extent->start + async_extent->ram_size - 1,
629 GFP_NOFS);
Chris Mason771ed682008-11-06 22:02:51 -0500630
Josef Bacik7a7eaa42011-04-13 12:54:33 -0400631 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +0000632 BUG_ON(IS_ERR(trans));
Josef Bacik74b21072011-04-13 12:02:53 -0400633 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason771ed682008-11-06 22:02:51 -0500634 ret = btrfs_reserve_extent(trans, root,
635 async_extent->compressed_size,
636 async_extent->compressed_size,
637 0, alloc_hint,
638 (u64)-1, &ins, 1);
Yan, Zhengc2167752009-11-12 09:34:21 +0000639 btrfs_end_transaction(trans, root);
640
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500641 if (ret) {
642 int i;
643 for (i = 0; i < async_extent->nr_pages; i++) {
644 WARN_ON(async_extent->pages[i]->mapping);
645 page_cache_release(async_extent->pages[i]);
646 }
647 kfree(async_extent->pages);
648 async_extent->nr_pages = 0;
649 async_extent->pages = NULL;
650 unlock_extent(io_tree, async_extent->start,
651 async_extent->start +
652 async_extent->ram_size - 1, GFP_NOFS);
653 goto retry;
654 }
655
Yan, Zhengc2167752009-11-12 09:34:21 +0000656 /*
657 * here we're doing allocation and writeback of the
658 * compressed pages
659 */
660 btrfs_drop_extent_cache(inode, async_extent->start,
661 async_extent->start +
662 async_extent->ram_size - 1, 0);
663
David Sterba172ddd62011-04-21 00:48:27 +0200664 em = alloc_extent_map();
Tsutomu Itohc26a9202011-02-14 00:45:29 +0000665 BUG_ON(!em);
Chris Mason771ed682008-11-06 22:02:51 -0500666 em->start = async_extent->start;
667 em->len = async_extent->ram_size;
Chris Mason445a6942008-11-10 11:53:33 -0500668 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500669
670 em->block_start = ins.objectid;
671 em->block_len = ins.offset;
672 em->bdev = root->fs_info->fs_devices->latest_bdev;
Li Zefan261507a02010-12-17 14:21:50 +0800673 em->compress_type = async_extent->compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500674 set_bit(EXTENT_FLAG_PINNED, &em->flags);
675 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
676
Chris Masond3977122009-01-05 21:25:51 -0500677 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400678 write_lock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500679 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400680 write_unlock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500681 if (ret != -EEXIST) {
682 free_extent_map(em);
683 break;
684 }
685 btrfs_drop_extent_cache(inode, async_extent->start,
686 async_extent->start +
687 async_extent->ram_size - 1, 0);
688 }
689
Li Zefan261507a02010-12-17 14:21:50 +0800690 ret = btrfs_add_ordered_extent_compress(inode,
691 async_extent->start,
692 ins.objectid,
693 async_extent->ram_size,
694 ins.offset,
695 BTRFS_ORDERED_COMPRESSED,
696 async_extent->compress_type);
Chris Mason771ed682008-11-06 22:02:51 -0500697 BUG_ON(ret);
698
Chris Mason771ed682008-11-06 22:02:51 -0500699 /*
700 * clear dirty, set writeback and unlock the pages.
701 */
702 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400703 &BTRFS_I(inode)->io_tree,
704 async_extent->start,
705 async_extent->start +
706 async_extent->ram_size - 1,
707 NULL, EXTENT_CLEAR_UNLOCK_PAGE |
708 EXTENT_CLEAR_UNLOCK |
Chris Masona3429ab2009-10-08 12:30:20 -0400709 EXTENT_CLEAR_DELALLOC |
Chris Masona791e352009-10-08 11:27:10 -0400710 EXTENT_CLEAR_DIRTY | EXTENT_SET_WRITEBACK);
Chris Mason771ed682008-11-06 22:02:51 -0500711
712 ret = btrfs_submit_compressed_write(inode,
Chris Masond3977122009-01-05 21:25:51 -0500713 async_extent->start,
714 async_extent->ram_size,
715 ins.objectid,
716 ins.offset, async_extent->pages,
717 async_extent->nr_pages);
Chris Mason771ed682008-11-06 22:02:51 -0500718
719 BUG_ON(ret);
Chris Mason771ed682008-11-06 22:02:51 -0500720 alloc_hint = ins.objectid + ins.offset;
721 kfree(async_extent);
722 cond_resched();
723 }
724
Chris Mason771ed682008-11-06 22:02:51 -0500725 return 0;
726}
727
Josef Bacik4b46fce2010-05-23 11:00:55 -0400728static u64 get_extent_allocation_hint(struct inode *inode, u64 start,
729 u64 num_bytes)
730{
731 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
732 struct extent_map *em;
733 u64 alloc_hint = 0;
734
735 read_lock(&em_tree->lock);
736 em = search_extent_mapping(em_tree, start, num_bytes);
737 if (em) {
738 /*
739 * if block start isn't an actual block number then find the
740 * first block in this inode and use that as a hint. If that
741 * block is also bogus then just don't worry about it.
742 */
743 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
744 free_extent_map(em);
745 em = search_extent_mapping(em_tree, 0, 0);
746 if (em && em->block_start < EXTENT_MAP_LAST_BYTE)
747 alloc_hint = em->block_start;
748 if (em)
749 free_extent_map(em);
750 } else {
751 alloc_hint = em->block_start;
752 free_extent_map(em);
753 }
754 }
755 read_unlock(&em_tree->lock);
756
757 return alloc_hint;
758}
759
Chris Mason771ed682008-11-06 22:02:51 -0500760/*
761 * when extent_io.c finds a delayed allocation range in the file,
762 * the call backs end up in this code. The basic idea is to
763 * allocate extents on disk for the range, and create ordered data structs
764 * in ram to track those extents.
765 *
766 * locked_page is the page that writepage had locked already. We use
767 * it to make sure we don't do extra locks or unlocks.
768 *
769 * *page_started is set to one if we unlock locked_page and do everything
770 * required to start IO on it. It may be clean and already done with
771 * IO when we return.
772 */
773static noinline int cow_file_range(struct inode *inode,
774 struct page *locked_page,
775 u64 start, u64 end, int *page_started,
776 unsigned long *nr_written,
777 int unlock)
778{
779 struct btrfs_root *root = BTRFS_I(inode)->root;
780 struct btrfs_trans_handle *trans;
781 u64 alloc_hint = 0;
782 u64 num_bytes;
783 unsigned long ram_size;
784 u64 disk_num_bytes;
785 u64 cur_alloc_size;
786 u64 blocksize = root->sectorsize;
Chris Mason771ed682008-11-06 22:02:51 -0500787 struct btrfs_key ins;
788 struct extent_map *em;
789 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
790 int ret = 0;
791
Chris Mason2cf85722011-07-26 15:35:09 -0400792 BUG_ON(btrfs_is_free_space_inode(root, inode));
Josef Bacik7a7eaa42011-04-13 12:54:33 -0400793 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +0000794 BUG_ON(IS_ERR(trans));
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400795 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason771ed682008-11-06 22:02:51 -0500796
Chris Mason771ed682008-11-06 22:02:51 -0500797 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
798 num_bytes = max(blocksize, num_bytes);
799 disk_num_bytes = num_bytes;
800 ret = 0;
801
Chris Mason4cb53002011-05-24 15:35:30 -0400802 /* if this is a small write inside eof, kick off defrag */
803 if (end <= BTRFS_I(inode)->disk_i_size && num_bytes < 64 * 1024)
804 btrfs_add_inode_defrag(trans, inode);
805
Chris Mason771ed682008-11-06 22:02:51 -0500806 if (start == 0) {
807 /* lets try to make an inline extent */
808 ret = cow_file_range_inline(trans, root, inode,
Li Zefanfe3f5662011-03-28 08:30:38 +0000809 start, end, 0, 0, NULL);
Chris Mason771ed682008-11-06 22:02:51 -0500810 if (ret == 0) {
811 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400812 &BTRFS_I(inode)->io_tree,
813 start, end, NULL,
814 EXTENT_CLEAR_UNLOCK_PAGE |
815 EXTENT_CLEAR_UNLOCK |
816 EXTENT_CLEAR_DELALLOC |
817 EXTENT_CLEAR_DIRTY |
818 EXTENT_SET_WRITEBACK |
819 EXTENT_END_WRITEBACK);
Yan, Zhengc2167752009-11-12 09:34:21 +0000820
Chris Mason771ed682008-11-06 22:02:51 -0500821 *nr_written = *nr_written +
822 (end - start + PAGE_CACHE_SIZE) / PAGE_CACHE_SIZE;
823 *page_started = 1;
824 ret = 0;
825 goto out;
826 }
827 }
Chris Masonc8b97812008-10-29 14:49:59 -0400828
829 BUG_ON(disk_num_bytes >
David Sterba6c417612011-04-13 15:41:04 +0200830 btrfs_super_total_bytes(root->fs_info->super_copy));
Chris Masonc8b97812008-10-29 14:49:59 -0400831
Josef Bacik4b46fce2010-05-23 11:00:55 -0400832 alloc_hint = get_extent_allocation_hint(inode, start, num_bytes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400833 btrfs_drop_extent_cache(inode, start, start + num_bytes - 1, 0);
Chris Mason3b951512008-04-17 11:29:12 -0400834
Chris Masond3977122009-01-05 21:25:51 -0500835 while (disk_num_bytes > 0) {
Chris Masona791e352009-10-08 11:27:10 -0400836 unsigned long op;
837
Josef Bacik287a0ab2010-03-19 18:07:23 +0000838 cur_alloc_size = disk_num_bytes;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400839 ret = btrfs_reserve_extent(trans, root, cur_alloc_size,
Chris Mason771ed682008-11-06 22:02:51 -0500840 root->sectorsize, 0, alloc_hint,
Chris Masone6dcd2d2008-07-17 12:53:50 -0400841 (u64)-1, &ins, 1);
Chris Masond3977122009-01-05 21:25:51 -0500842 BUG_ON(ret);
843
David Sterba172ddd62011-04-21 00:48:27 +0200844 em = alloc_extent_map();
Tsutomu Itohc26a9202011-02-14 00:45:29 +0000845 BUG_ON(!em);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400846 em->start = start;
Chris Mason445a6942008-11-10 11:53:33 -0500847 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500848 ram_size = ins.offset;
849 em->len = ins.offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400850
Chris Masone6dcd2d2008-07-17 12:53:50 -0400851 em->block_start = ins.objectid;
Chris Masonc8b97812008-10-29 14:49:59 -0400852 em->block_len = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400853 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -0400854 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -0400855
Chris Masond3977122009-01-05 21:25:51 -0500856 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400857 write_lock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400858 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400859 write_unlock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400860 if (ret != -EEXIST) {
861 free_extent_map(em);
862 break;
863 }
864 btrfs_drop_extent_cache(inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -0400865 start + ram_size - 1, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400866 }
867
Chris Mason98d20f62008-04-14 09:46:10 -0400868 cur_alloc_size = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400869 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
Chris Mason771ed682008-11-06 22:02:51 -0500870 ram_size, cur_alloc_size, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400871 BUG_ON(ret);
Chris Masonc8b97812008-10-29 14:49:59 -0400872
Yan Zheng17d217f2008-12-12 10:03:38 -0500873 if (root->root_key.objectid ==
874 BTRFS_DATA_RELOC_TREE_OBJECTID) {
875 ret = btrfs_reloc_clone_csums(inode, start,
876 cur_alloc_size);
877 BUG_ON(ret);
878 }
879
Chris Masond3977122009-01-05 21:25:51 -0500880 if (disk_num_bytes < cur_alloc_size)
Chris Mason3b951512008-04-17 11:29:12 -0400881 break;
Chris Masond3977122009-01-05 21:25:51 -0500882
Chris Masonc8b97812008-10-29 14:49:59 -0400883 /* we're not doing compressed IO, don't unlock the first
884 * page (which the caller expects to stay locked), don't
885 * clear any dirty bits and don't set any writeback bits
Chris Mason8b62b722009-09-02 16:53:46 -0400886 *
887 * Do set the Private2 bit so we know this page was properly
888 * setup for writepage
Chris Masonc8b97812008-10-29 14:49:59 -0400889 */
Chris Masona791e352009-10-08 11:27:10 -0400890 op = unlock ? EXTENT_CLEAR_UNLOCK_PAGE : 0;
891 op |= EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
892 EXTENT_SET_PRIVATE2;
893
Chris Masonc8b97812008-10-29 14:49:59 -0400894 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
895 start, start + ram_size - 1,
Chris Masona791e352009-10-08 11:27:10 -0400896 locked_page, op);
Chris Masonc8b97812008-10-29 14:49:59 -0400897 disk_num_bytes -= cur_alloc_size;
Chris Masonc59f8952007-12-17 20:14:04 -0500898 num_bytes -= cur_alloc_size;
899 alloc_hint = ins.objectid + ins.offset;
900 start += cur_alloc_size;
Chris Masonb888db22007-08-27 16:49:44 -0400901 }
Chris Masonb888db22007-08-27 16:49:44 -0400902out:
Chris Mason771ed682008-11-06 22:02:51 -0500903 ret = 0;
Chris Masonb888db22007-08-27 16:49:44 -0400904 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400905
Chris Masonbe20aa92007-12-17 20:14:01 -0500906 return ret;
Chris Mason771ed682008-11-06 22:02:51 -0500907}
Chris Masonc8b97812008-10-29 14:49:59 -0400908
Chris Mason771ed682008-11-06 22:02:51 -0500909/*
910 * work queue call back to started compression on a file and pages
911 */
912static noinline void async_cow_start(struct btrfs_work *work)
913{
914 struct async_cow *async_cow;
915 int num_added = 0;
916 async_cow = container_of(work, struct async_cow, work);
917
918 compress_file_range(async_cow->inode, async_cow->locked_page,
919 async_cow->start, async_cow->end, async_cow,
920 &num_added);
921 if (num_added == 0)
922 async_cow->inode = NULL;
923}
924
925/*
926 * work queue call back to submit previously compressed pages
927 */
928static noinline void async_cow_submit(struct btrfs_work *work)
929{
930 struct async_cow *async_cow;
931 struct btrfs_root *root;
932 unsigned long nr_pages;
933
934 async_cow = container_of(work, struct async_cow, work);
935
936 root = async_cow->root;
937 nr_pages = (async_cow->end - async_cow->start + PAGE_CACHE_SIZE) >>
938 PAGE_CACHE_SHIFT;
939
940 atomic_sub(nr_pages, &root->fs_info->async_delalloc_pages);
941
942 if (atomic_read(&root->fs_info->async_delalloc_pages) <
943 5 * 1042 * 1024 &&
944 waitqueue_active(&root->fs_info->async_submit_wait))
945 wake_up(&root->fs_info->async_submit_wait);
946
Chris Masond3977122009-01-05 21:25:51 -0500947 if (async_cow->inode)
Chris Mason771ed682008-11-06 22:02:51 -0500948 submit_compressed_extents(async_cow->inode, async_cow);
Chris Mason771ed682008-11-06 22:02:51 -0500949}
Chris Masonc8b97812008-10-29 14:49:59 -0400950
Chris Mason771ed682008-11-06 22:02:51 -0500951static noinline void async_cow_free(struct btrfs_work *work)
952{
953 struct async_cow *async_cow;
954 async_cow = container_of(work, struct async_cow, work);
955 kfree(async_cow);
956}
957
958static int cow_file_range_async(struct inode *inode, struct page *locked_page,
959 u64 start, u64 end, int *page_started,
960 unsigned long *nr_written)
961{
962 struct async_cow *async_cow;
963 struct btrfs_root *root = BTRFS_I(inode)->root;
964 unsigned long nr_pages;
965 u64 cur_end;
966 int limit = 10 * 1024 * 1042;
967
Chris Masona3429ab2009-10-08 12:30:20 -0400968 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED,
969 1, 0, NULL, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -0500970 while (start < end) {
Chris Mason771ed682008-11-06 22:02:51 -0500971 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
Tsutomu Itoh8d413712011-04-25 19:43:52 -0400972 BUG_ON(!async_cow);
Chris Mason771ed682008-11-06 22:02:51 -0500973 async_cow->inode = inode;
974 async_cow->root = root;
975 async_cow->locked_page = locked_page;
976 async_cow->start = start;
977
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200978 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS)
Chris Mason771ed682008-11-06 22:02:51 -0500979 cur_end = end;
980 else
981 cur_end = min(end, start + 512 * 1024 - 1);
982
983 async_cow->end = cur_end;
984 INIT_LIST_HEAD(&async_cow->extents);
985
986 async_cow->work.func = async_cow_start;
987 async_cow->work.ordered_func = async_cow_submit;
988 async_cow->work.ordered_free = async_cow_free;
989 async_cow->work.flags = 0;
990
Chris Mason771ed682008-11-06 22:02:51 -0500991 nr_pages = (cur_end - start + PAGE_CACHE_SIZE) >>
992 PAGE_CACHE_SHIFT;
993 atomic_add(nr_pages, &root->fs_info->async_delalloc_pages);
994
995 btrfs_queue_worker(&root->fs_info->delalloc_workers,
996 &async_cow->work);
997
998 if (atomic_read(&root->fs_info->async_delalloc_pages) > limit) {
999 wait_event(root->fs_info->async_submit_wait,
1000 (atomic_read(&root->fs_info->async_delalloc_pages) <
1001 limit));
1002 }
1003
Chris Masond3977122009-01-05 21:25:51 -05001004 while (atomic_read(&root->fs_info->async_submit_draining) &&
Chris Mason771ed682008-11-06 22:02:51 -05001005 atomic_read(&root->fs_info->async_delalloc_pages)) {
1006 wait_event(root->fs_info->async_submit_wait,
1007 (atomic_read(&root->fs_info->async_delalloc_pages) ==
1008 0));
1009 }
1010
1011 *nr_written += nr_pages;
1012 start = cur_end + 1;
1013 }
1014 *page_started = 1;
1015 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001016}
1017
Chris Masond3977122009-01-05 21:25:51 -05001018static noinline int csum_exist_in_range(struct btrfs_root *root,
Yan Zheng17d217f2008-12-12 10:03:38 -05001019 u64 bytenr, u64 num_bytes)
1020{
1021 int ret;
1022 struct btrfs_ordered_sum *sums;
1023 LIST_HEAD(list);
1024
Yan Zheng07d400a2009-01-06 11:42:00 -05001025 ret = btrfs_lookup_csums_range(root->fs_info->csum_root, bytenr,
Arne Jansena2de7332011-03-08 14:14:00 +01001026 bytenr + num_bytes - 1, &list, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -05001027 if (ret == 0 && list_empty(&list))
1028 return 0;
1029
1030 while (!list_empty(&list)) {
1031 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
1032 list_del(&sums->list);
1033 kfree(sums);
1034 }
1035 return 1;
1036}
1037
Chris Masond352ac62008-09-29 15:18:18 -04001038/*
1039 * when nowcow writeback call back. This checks for snapshots or COW copies
1040 * of the extents that exist in the file, and COWs the file as required.
1041 *
1042 * If no cow copies or snapshots exist, we write directly to the existing
1043 * blocks on disk
1044 */
Chris Mason7f366cf2009-03-12 20:12:45 -04001045static noinline int run_delalloc_nocow(struct inode *inode,
1046 struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001047 u64 start, u64 end, int *page_started, int force,
1048 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001049{
Chris Masonbe20aa92007-12-17 20:14:01 -05001050 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001051 struct btrfs_trans_handle *trans;
Chris Masonbe20aa92007-12-17 20:14:01 -05001052 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -05001053 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -04001054 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -05001055 struct btrfs_key found_key;
Yan Zheng80ff3852008-10-30 14:20:02 -04001056 u64 cow_start;
1057 u64 cur_offset;
1058 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001059 u64 extent_offset;
Yan Zheng80ff3852008-10-30 14:20:02 -04001060 u64 disk_bytenr;
1061 u64 num_bytes;
1062 int extent_type;
1063 int ret;
Yan Zhengd899e052008-10-30 14:25:28 -04001064 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -04001065 int nocow;
1066 int check_prev = 1;
Li Zefan82d59022011-04-20 10:33:24 +08001067 bool nolock;
Li Zefan33345d012011-04-20 10:31:50 +08001068 u64 ino = btrfs_ino(inode);
Chris Masonbe20aa92007-12-17 20:14:01 -05001069
1070 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07001071 if (!path)
1072 return -ENOMEM;
Li Zefan82d59022011-04-20 10:33:24 +08001073
Chris Mason2cf85722011-07-26 15:35:09 -04001074 nolock = btrfs_is_free_space_inode(root, inode);
Li Zefan82d59022011-04-20 10:33:24 +08001075
1076 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001077 trans = btrfs_join_transaction_nolock(root);
Li Zefan82d59022011-04-20 10:33:24 +08001078 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001079 trans = btrfs_join_transaction(root);
Chris Masonff5714c2011-05-28 07:00:39 -04001080
Tsutomu Itoh3612b492011-01-25 02:51:38 +00001081 BUG_ON(IS_ERR(trans));
Josef Bacik74b21072011-04-13 12:02:53 -04001082 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Masonbe20aa92007-12-17 20:14:01 -05001083
Yan Zheng80ff3852008-10-30 14:20:02 -04001084 cow_start = (u64)-1;
1085 cur_offset = start;
1086 while (1) {
Li Zefan33345d012011-04-20 10:31:50 +08001087 ret = btrfs_lookup_file_extent(trans, root, path, ino,
Yan Zheng80ff3852008-10-30 14:20:02 -04001088 cur_offset, 0);
1089 BUG_ON(ret < 0);
1090 if (ret > 0 && path->slots[0] > 0 && check_prev) {
1091 leaf = path->nodes[0];
1092 btrfs_item_key_to_cpu(leaf, &found_key,
1093 path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +08001094 if (found_key.objectid == ino &&
Yan Zheng80ff3852008-10-30 14:20:02 -04001095 found_key.type == BTRFS_EXTENT_DATA_KEY)
1096 path->slots[0]--;
1097 }
1098 check_prev = 0;
1099next_slot:
1100 leaf = path->nodes[0];
1101 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1102 ret = btrfs_next_leaf(root, path);
1103 if (ret < 0)
1104 BUG_ON(1);
1105 if (ret > 0)
1106 break;
1107 leaf = path->nodes[0];
1108 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001109
Yan Zheng80ff3852008-10-30 14:20:02 -04001110 nocow = 0;
1111 disk_bytenr = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -05001112 num_bytes = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001113 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05001114
Li Zefan33345d012011-04-20 10:31:50 +08001115 if (found_key.objectid > ino ||
Yan Zheng80ff3852008-10-30 14:20:02 -04001116 found_key.type > BTRFS_EXTENT_DATA_KEY ||
1117 found_key.offset > end)
1118 break;
Chris Masonbe20aa92007-12-17 20:14:01 -05001119
Yan Zheng80ff3852008-10-30 14:20:02 -04001120 if (found_key.offset > cur_offset) {
1121 extent_end = found_key.offset;
Chris Masone9061e22009-10-09 09:57:45 -04001122 extent_type = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001123 goto out_check;
1124 }
Chris Masonc31f8832008-01-08 15:46:31 -05001125
Yan Zheng80ff3852008-10-30 14:20:02 -04001126 fi = btrfs_item_ptr(leaf, path->slots[0],
1127 struct btrfs_file_extent_item);
1128 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -05001129
Yan Zhengd899e052008-10-30 14:25:28 -04001130 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1131 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001132 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001133 extent_offset = btrfs_file_extent_offset(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001134 extent_end = found_key.offset +
1135 btrfs_file_extent_num_bytes(leaf, fi);
1136 if (extent_end <= start) {
1137 path->slots[0]++;
1138 goto next_slot;
1139 }
Yan Zheng17d217f2008-12-12 10:03:38 -05001140 if (disk_bytenr == 0)
1141 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001142 if (btrfs_file_extent_compression(leaf, fi) ||
1143 btrfs_file_extent_encryption(leaf, fi) ||
1144 btrfs_file_extent_other_encoding(leaf, fi))
1145 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001146 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1147 goto out_check;
Yan Zhengd2fb3432008-12-11 16:30:39 -05001148 if (btrfs_extent_readonly(root, disk_bytenr))
Yan Zheng80ff3852008-10-30 14:20:02 -04001149 goto out_check;
Li Zefan33345d012011-04-20 10:31:50 +08001150 if (btrfs_cross_ref_exist(trans, root, ino,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001151 found_key.offset -
1152 extent_offset, disk_bytenr))
Yan Zheng17d217f2008-12-12 10:03:38 -05001153 goto out_check;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001154 disk_bytenr += extent_offset;
Yan Zheng17d217f2008-12-12 10:03:38 -05001155 disk_bytenr += cur_offset - found_key.offset;
1156 num_bytes = min(end + 1, extent_end) - cur_offset;
1157 /*
1158 * force cow if csum exists in the range.
1159 * this ensure that csum for a given extent are
1160 * either valid or do not exist.
1161 */
1162 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
1163 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001164 nocow = 1;
1165 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1166 extent_end = found_key.offset +
1167 btrfs_file_extent_inline_len(leaf, fi);
1168 extent_end = ALIGN(extent_end, root->sectorsize);
1169 } else {
1170 BUG_ON(1);
1171 }
1172out_check:
1173 if (extent_end <= start) {
1174 path->slots[0]++;
1175 goto next_slot;
1176 }
1177 if (!nocow) {
1178 if (cow_start == (u64)-1)
1179 cow_start = cur_offset;
1180 cur_offset = extent_end;
1181 if (cur_offset > end)
1182 break;
1183 path->slots[0]++;
1184 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001185 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001186
David Sterbab3b4aa72011-04-21 01:20:15 +02001187 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001188 if (cow_start != (u64)-1) {
1189 ret = cow_file_range(inode, locked_page, cow_start,
Chris Mason771ed682008-11-06 22:02:51 -05001190 found_key.offset - 1, page_started,
1191 nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001192 BUG_ON(ret);
1193 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001194 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001195
Yan Zhengd899e052008-10-30 14:25:28 -04001196 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1197 struct extent_map *em;
1198 struct extent_map_tree *em_tree;
1199 em_tree = &BTRFS_I(inode)->extent_tree;
David Sterba172ddd62011-04-21 00:48:27 +02001200 em = alloc_extent_map();
Tsutomu Itohc26a9202011-02-14 00:45:29 +00001201 BUG_ON(!em);
Yan Zhengd899e052008-10-30 14:25:28 -04001202 em->start = cur_offset;
Chris Mason445a6942008-11-10 11:53:33 -05001203 em->orig_start = em->start;
Yan Zhengd899e052008-10-30 14:25:28 -04001204 em->len = num_bytes;
1205 em->block_len = num_bytes;
1206 em->block_start = disk_bytenr;
1207 em->bdev = root->fs_info->fs_devices->latest_bdev;
1208 set_bit(EXTENT_FLAG_PINNED, &em->flags);
1209 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04001210 write_lock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001211 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04001212 write_unlock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001213 if (ret != -EEXIST) {
1214 free_extent_map(em);
1215 break;
1216 }
1217 btrfs_drop_extent_cache(inode, em->start,
1218 em->start + em->len - 1, 0);
1219 }
1220 type = BTRFS_ORDERED_PREALLOC;
1221 } else {
1222 type = BTRFS_ORDERED_NOCOW;
1223 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001224
1225 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001226 num_bytes, num_bytes, type);
1227 BUG_ON(ret);
Chris Mason771ed682008-11-06 22:02:51 -05001228
Yan, Zhengefa56462010-05-16 10:49:59 -04001229 if (root->root_key.objectid ==
1230 BTRFS_DATA_RELOC_TREE_OBJECTID) {
1231 ret = btrfs_reloc_clone_csums(inode, cur_offset,
1232 num_bytes);
1233 BUG_ON(ret);
1234 }
1235
Yan Zhengd899e052008-10-30 14:25:28 -04001236 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
Chris Masona791e352009-10-08 11:27:10 -04001237 cur_offset, cur_offset + num_bytes - 1,
1238 locked_page, EXTENT_CLEAR_UNLOCK_PAGE |
1239 EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
1240 EXTENT_SET_PRIVATE2);
Yan Zheng80ff3852008-10-30 14:20:02 -04001241 cur_offset = extent_end;
1242 if (cur_offset > end)
1243 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001244 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001245 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001246
1247 if (cur_offset <= end && cow_start == (u64)-1)
1248 cow_start = cur_offset;
1249 if (cow_start != (u64)-1) {
1250 ret = cow_file_range(inode, locked_page, cow_start, end,
Chris Mason771ed682008-11-06 22:02:51 -05001251 page_started, nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001252 BUG_ON(ret);
1253 }
1254
Josef Bacik0cb59c92010-07-02 12:14:14 -04001255 if (nolock) {
1256 ret = btrfs_end_transaction_nolock(trans, root);
1257 BUG_ON(ret);
1258 } else {
1259 ret = btrfs_end_transaction(trans, root);
1260 BUG_ON(ret);
1261 }
Yan Zheng7ea394f2008-08-05 13:05:02 -04001262 btrfs_free_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001263 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001264}
1265
Chris Masond352ac62008-09-29 15:18:18 -04001266/*
1267 * extent_io.c call back to do delayed allocation processing
1268 */
Chris Masonc8b97812008-10-29 14:49:59 -04001269static int run_delalloc_range(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001270 u64 start, u64 end, int *page_started,
1271 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001272{
Chris Masonbe20aa92007-12-17 20:14:01 -05001273 int ret;
Chris Mason7f366cf2009-03-12 20:12:45 -04001274 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masona2135012008-06-25 16:01:30 -04001275
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001276 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW)
Chris Masonc8b97812008-10-29 14:49:59 -04001277 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001278 page_started, 1, nr_written);
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001279 else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC)
Yan Zhengd899e052008-10-30 14:25:28 -04001280 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001281 page_started, 0, nr_written);
Chris Mason1e701a32010-03-11 09:42:04 -05001282 else if (!btrfs_test_opt(root, COMPRESS) &&
Liu Bo75e7cb72011-03-22 10:12:20 +00001283 !(BTRFS_I(inode)->force_compress) &&
1284 !(BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS))
Chris Mason7f366cf2009-03-12 20:12:45 -04001285 ret = cow_file_range(inode, locked_page, start, end,
1286 page_started, nr_written, 1);
Chris Masonbe20aa92007-12-17 20:14:01 -05001287 else
Chris Mason771ed682008-11-06 22:02:51 -05001288 ret = cow_file_range_async(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001289 page_started, nr_written);
Chris Masonb888db22007-08-27 16:49:44 -04001290 return ret;
1291}
1292
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001293static void btrfs_split_extent_hook(struct inode *inode,
1294 struct extent_state *orig, u64 split)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001295{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001296 /* not delalloc, ignore it */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001297 if (!(orig->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001298 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001299
Josef Bacik9e0baf62011-07-15 15:16:44 +00001300 spin_lock(&BTRFS_I(inode)->lock);
1301 BTRFS_I(inode)->outstanding_extents++;
1302 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001303}
1304
1305/*
1306 * extent_io.c merge_extent_hook, used to track merged delayed allocation
1307 * extents so we can keep track of new extents that are just merged onto old
1308 * extents, such as when we are doing sequential writes, so we can properly
1309 * account for the metadata space we'll need.
1310 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001311static void btrfs_merge_extent_hook(struct inode *inode,
1312 struct extent_state *new,
1313 struct extent_state *other)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001314{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001315 /* not delalloc, ignore it */
1316 if (!(other->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001317 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001318
Josef Bacik9e0baf62011-07-15 15:16:44 +00001319 spin_lock(&BTRFS_I(inode)->lock);
1320 BTRFS_I(inode)->outstanding_extents--;
1321 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001322}
1323
Chris Masond352ac62008-09-29 15:18:18 -04001324/*
1325 * extent_io.c set_bit_hook, used to track delayed allocation
1326 * bytes in this file, and to maintain the list of inodes that
1327 * have pending delalloc work to be done.
1328 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001329static void btrfs_set_bit_hook(struct inode *inode,
1330 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001331{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001332
Chris Mason75eff682008-12-15 15:54:40 -05001333 /*
1334 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001335 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001336 * bit, which is only set or cleared with irqs on
1337 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001338 if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001339 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001340 u64 len = state->end + 1 - state->start;
Chris Mason2cf85722011-07-26 15:35:09 -04001341 bool do_list = !btrfs_is_free_space_inode(root, inode);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001342
Josef Bacik9e0baf62011-07-15 15:16:44 +00001343 if (*bits & EXTENT_FIRST_DELALLOC) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001344 *bits &= ~EXTENT_FIRST_DELALLOC;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001345 } else {
1346 spin_lock(&BTRFS_I(inode)->lock);
1347 BTRFS_I(inode)->outstanding_extents++;
1348 spin_unlock(&BTRFS_I(inode)->lock);
1349 }
Josef Bacik287a0ab2010-03-19 18:07:23 +00001350
Chris Mason75eff682008-12-15 15:54:40 -05001351 spin_lock(&root->fs_info->delalloc_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001352 BTRFS_I(inode)->delalloc_bytes += len;
1353 root->fs_info->delalloc_bytes += len;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001354 if (do_list && list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
Chris Masonea8c2812008-08-04 23:17:27 -04001355 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1356 &root->fs_info->delalloc_inodes);
1357 }
Chris Mason75eff682008-12-15 15:54:40 -05001358 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001359 }
Chris Mason291d6732008-01-29 15:55:23 -05001360}
1361
Chris Masond352ac62008-09-29 15:18:18 -04001362/*
1363 * extent_io.c clear_bit_hook, see set_bit_hook for why
1364 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001365static void btrfs_clear_bit_hook(struct inode *inode,
1366 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001367{
Chris Mason75eff682008-12-15 15:54:40 -05001368 /*
1369 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001370 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001371 * bit, which is only set or cleared with irqs on
1372 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001373 if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001374 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001375 u64 len = state->end + 1 - state->start;
Chris Mason2cf85722011-07-26 15:35:09 -04001376 bool do_list = !btrfs_is_free_space_inode(root, inode);
Chris Masonbcbfce82008-04-22 13:26:47 -04001377
Josef Bacik9e0baf62011-07-15 15:16:44 +00001378 if (*bits & EXTENT_FIRST_DELALLOC) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001379 *bits &= ~EXTENT_FIRST_DELALLOC;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001380 } else if (!(*bits & EXTENT_DO_ACCOUNTING)) {
1381 spin_lock(&BTRFS_I(inode)->lock);
1382 BTRFS_I(inode)->outstanding_extents--;
1383 spin_unlock(&BTRFS_I(inode)->lock);
1384 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001385
1386 if (*bits & EXTENT_DO_ACCOUNTING)
1387 btrfs_delalloc_release_metadata(inode, len);
1388
Josef Bacik0cb59c92010-07-02 12:14:14 -04001389 if (root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID
1390 && do_list)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001391 btrfs_free_reserved_data_space(inode, len);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001392
Chris Mason75eff682008-12-15 15:54:40 -05001393 spin_lock(&root->fs_info->delalloc_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001394 root->fs_info->delalloc_bytes -= len;
1395 BTRFS_I(inode)->delalloc_bytes -= len;
1396
Josef Bacik0cb59c92010-07-02 12:14:14 -04001397 if (do_list && BTRFS_I(inode)->delalloc_bytes == 0 &&
Chris Masonea8c2812008-08-04 23:17:27 -04001398 !list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1399 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
1400 }
Chris Mason75eff682008-12-15 15:54:40 -05001401 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001402 }
Chris Mason291d6732008-01-29 15:55:23 -05001403}
1404
Chris Masond352ac62008-09-29 15:18:18 -04001405/*
1406 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1407 * we don't create bios that span stripes or chunks
1408 */
Chris Mason239b14b2008-03-24 15:02:07 -04001409int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001410 size_t size, struct bio *bio,
1411 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001412{
1413 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
1414 struct btrfs_mapping_tree *map_tree;
Chris Masona62b9402008-10-03 16:31:08 -04001415 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001416 u64 length = 0;
1417 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001418 int ret;
1419
Chris Mason771ed682008-11-06 22:02:51 -05001420 if (bio_flags & EXTENT_BIO_COMPRESSED)
1421 return 0;
1422
Chris Masonf2d8d742008-04-21 10:03:05 -04001423 length = bio->bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001424 map_tree = &root->fs_info->mapping_tree;
1425 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04001426 ret = btrfs_map_block(map_tree, READ, logical,
Chris Masonf1885912008-04-09 16:28:12 -04001427 &map_length, NULL, 0);
Chris Masoncea9e442008-04-09 16:28:12 -04001428
Chris Masond3977122009-01-05 21:25:51 -05001429 if (map_length < length + size)
Chris Mason239b14b2008-03-24 15:02:07 -04001430 return 1;
Andi Kleen411fc6b2010-10-29 15:14:31 -04001431 return ret;
Chris Mason239b14b2008-03-24 15:02:07 -04001432}
1433
Chris Masond352ac62008-09-29 15:18:18 -04001434/*
1435 * in order to insert checksums into the metadata in large chunks,
1436 * we wait until bio submission time. All the pages in the bio are
1437 * checksummed and sums are attached onto the ordered extent record.
1438 *
1439 * At IO completion time the cums attached on the ordered extent record
1440 * are inserted into the btree
1441 */
Chris Masond3977122009-01-05 21:25:51 -05001442static int __btrfs_submit_bio_start(struct inode *inode, int rw,
1443 struct bio *bio, int mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001444 unsigned long bio_flags,
1445 u64 bio_offset)
Chris Mason065631f2008-02-20 12:07:25 -05001446{
Chris Mason065631f2008-02-20 12:07:25 -05001447 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason065631f2008-02-20 12:07:25 -05001448 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001449
Chris Masond20f7042008-12-08 16:58:54 -05001450 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
Chris Mason44b8bd72008-04-16 11:14:51 -04001451 BUG_ON(ret);
Chris Mason4a69a412008-11-06 22:03:00 -05001452 return 0;
1453}
Chris Masone0156402008-04-16 11:15:20 -04001454
Chris Mason4a69a412008-11-06 22:03:00 -05001455/*
1456 * in order to insert checksums into the metadata in large chunks,
1457 * we wait until bio submission time. All the pages in the bio are
1458 * checksummed and sums are attached onto the ordered extent record.
1459 *
1460 * At IO completion time the cums attached on the ordered extent record
1461 * are inserted into the btree
1462 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001463static int __btrfs_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001464 int mirror_num, unsigned long bio_flags,
1465 u64 bio_offset)
Chris Mason4a69a412008-11-06 22:03:00 -05001466{
1467 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason8b712842008-06-11 16:50:36 -04001468 return btrfs_map_bio(root, rw, bio, mirror_num, 1);
Chris Mason44b8bd72008-04-16 11:14:51 -04001469}
1470
Chris Masond352ac62008-09-29 15:18:18 -04001471/*
Chris Masoncad321a2008-12-17 14:51:42 -05001472 * extent_io.c submission hook. This does the right thing for csum calculation
1473 * on write, or reading the csums from the tree before a read
Chris Masond352ac62008-09-29 15:18:18 -04001474 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001475static int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001476 int mirror_num, unsigned long bio_flags,
1477 u64 bio_offset)
Chris Mason44b8bd72008-04-16 11:14:51 -04001478{
1479 struct btrfs_root *root = BTRFS_I(inode)->root;
1480 int ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001481 int skip_sum;
Chris Mason44b8bd72008-04-16 11:14:51 -04001482
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001483 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masoncad321a2008-12-17 14:51:42 -05001484
Chris Mason2cf85722011-07-26 15:35:09 -04001485 if (btrfs_is_free_space_inode(root, inode))
Josef Bacik0cb59c92010-07-02 12:14:14 -04001486 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 2);
1487 else
1488 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001489 BUG_ON(ret);
Chris Mason065631f2008-02-20 12:07:25 -05001490
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001491 if (!(rw & REQ_WRITE)) {
Chris Masond20f7042008-12-08 16:58:54 -05001492 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Chris Masonc8b97812008-10-29 14:49:59 -04001493 return btrfs_submit_compressed_read(inode, bio,
1494 mirror_num, bio_flags);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001495 } else if (!skip_sum) {
1496 ret = btrfs_lookup_bio_sums(root, inode, bio, NULL);
1497 if (ret)
1498 return ret;
1499 }
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001500 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001501 } else if (!skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001502 /* csum items have already been cloned */
1503 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1504 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001505 /* we're doing a write, do the async checksumming */
1506 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
Chris Mason44b8bd72008-04-16 11:14:51 -04001507 inode, rw, bio, mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001508 bio_flags, bio_offset,
1509 __btrfs_submit_bio_start,
Chris Mason4a69a412008-11-06 22:03:00 -05001510 __btrfs_submit_bio_done);
Chris Mason19b9bdb2008-10-30 14:23:13 -04001511 }
1512
Chris Mason0b86a832008-03-24 15:01:56 -04001513mapit:
Chris Mason8b712842008-06-11 16:50:36 -04001514 return btrfs_map_bio(root, rw, bio, mirror_num, 0);
Chris Mason065631f2008-02-20 12:07:25 -05001515}
Chris Mason6885f302008-02-20 16:11:05 -05001516
Chris Masond352ac62008-09-29 15:18:18 -04001517/*
1518 * given a list of ordered sums record them in the inode. This happens
1519 * at IO completion time based on sums calculated at bio submission time.
1520 */
Chris Masonba1da2f2008-07-17 12:54:15 -04001521static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -04001522 struct inode *inode, u64 file_offset,
1523 struct list_head *list)
1524{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001525 struct btrfs_ordered_sum *sum;
1526
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001527 list_for_each_entry(sum, list, list) {
Chris Masond20f7042008-12-08 16:58:54 -05001528 btrfs_csum_file_blocks(trans,
1529 BTRFS_I(inode)->root->fs_info->csum_root, sum);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001530 }
1531 return 0;
1532}
1533
Josef Bacik2ac55d42010-02-03 19:33:23 +00001534int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end,
1535 struct extent_state **cached_state)
Chris Masonea8c2812008-08-04 23:17:27 -04001536{
Chris Masond3977122009-01-05 21:25:51 -05001537 if ((end & (PAGE_CACHE_SIZE - 1)) == 0)
Chris Mason771ed682008-11-06 22:02:51 -05001538 WARN_ON(1);
Chris Masonea8c2812008-08-04 23:17:27 -04001539 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001540 cached_state, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04001541}
1542
Chris Masond352ac62008-09-29 15:18:18 -04001543/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04001544struct btrfs_writepage_fixup {
1545 struct page *page;
1546 struct btrfs_work work;
1547};
1548
Christoph Hellwigb2950862008-12-02 09:54:17 -05001549static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04001550{
1551 struct btrfs_writepage_fixup *fixup;
1552 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001553 struct extent_state *cached_state = NULL;
Chris Mason247e7432008-07-17 12:53:51 -04001554 struct page *page;
1555 struct inode *inode;
1556 u64 page_start;
1557 u64 page_end;
1558
1559 fixup = container_of(work, struct btrfs_writepage_fixup, work);
1560 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04001561again:
Chris Mason247e7432008-07-17 12:53:51 -04001562 lock_page(page);
1563 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
1564 ClearPageChecked(page);
1565 goto out_page;
1566 }
1567
1568 inode = page->mapping->host;
1569 page_start = page_offset(page);
1570 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
1571
Josef Bacik2ac55d42010-02-03 19:33:23 +00001572 lock_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end, 0,
1573 &cached_state, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001574
1575 /* already ordered? We're done */
Chris Mason8b62b722009-09-02 16:53:46 -04001576 if (PagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001577 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04001578
1579 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1580 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00001581 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start,
1582 page_end, &cached_state, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001583 unlock_page(page);
1584 btrfs_start_ordered_extent(inode, ordered, 1);
1585 goto again;
1586 }
Chris Mason247e7432008-07-17 12:53:51 -04001587
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001588 BUG();
Josef Bacik2ac55d42010-02-03 19:33:23 +00001589 btrfs_set_extent_delalloc(inode, page_start, page_end, &cached_state);
Chris Mason247e7432008-07-17 12:53:51 -04001590 ClearPageChecked(page);
1591out:
Josef Bacik2ac55d42010-02-03 19:33:23 +00001592 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, page_end,
1593 &cached_state, GFP_NOFS);
Chris Mason247e7432008-07-17 12:53:51 -04001594out_page:
1595 unlock_page(page);
1596 page_cache_release(page);
Miao Xieb897abe2011-01-26 16:19:22 +08001597 kfree(fixup);
Chris Mason247e7432008-07-17 12:53:51 -04001598}
1599
1600/*
1601 * There are a few paths in the higher layers of the kernel that directly
1602 * set the page dirty bit without asking the filesystem if it is a
1603 * good idea. This causes problems because we want to make sure COW
1604 * properly happens and the data=ordered rules are followed.
1605 *
Chris Masonc8b97812008-10-29 14:49:59 -04001606 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04001607 * hasn't been properly setup for IO. We kick off an async process
1608 * to fix it up. The async helper will wait for ordered extents, set
1609 * the delalloc bit and make it safe to write the page.
1610 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001611static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04001612{
1613 struct inode *inode = page->mapping->host;
1614 struct btrfs_writepage_fixup *fixup;
1615 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason247e7432008-07-17 12:53:51 -04001616
Chris Mason8b62b722009-09-02 16:53:46 -04001617 /* this page is properly in the ordered list */
1618 if (TestClearPagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001619 return 0;
1620
1621 if (PageChecked(page))
1622 return -EAGAIN;
1623
1624 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
1625 if (!fixup)
1626 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04001627
Chris Mason247e7432008-07-17 12:53:51 -04001628 SetPageChecked(page);
1629 page_cache_get(page);
1630 fixup->work.func = btrfs_writepage_fixup_worker;
1631 fixup->page = page;
1632 btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work);
1633 return -EAGAIN;
1634}
1635
Yan Zhengd899e052008-10-30 14:25:28 -04001636static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
1637 struct inode *inode, u64 file_pos,
1638 u64 disk_bytenr, u64 disk_num_bytes,
1639 u64 num_bytes, u64 ram_bytes,
1640 u8 compression, u8 encryption,
1641 u16 other_encoding, int extent_type)
1642{
1643 struct btrfs_root *root = BTRFS_I(inode)->root;
1644 struct btrfs_file_extent_item *fi;
1645 struct btrfs_path *path;
1646 struct extent_buffer *leaf;
1647 struct btrfs_key ins;
1648 u64 hint;
1649 int ret;
1650
1651 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07001652 if (!path)
1653 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -04001654
Chris Masonb9473432009-03-13 11:00:37 -04001655 path->leave_spinning = 1;
Chris Masona1ed8352009-09-11 12:27:37 -04001656
1657 /*
1658 * we may be replacing one extent in the tree with another.
1659 * The new extent is pinned in the extent map, and we don't want
1660 * to drop it from the cache until it is completely in the btree.
1661 *
1662 * So, tell btrfs_drop_extents to leave this extent in the cache.
1663 * the caller is expected to unpin it and allow it to be merged
1664 * with the others.
1665 */
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001666 ret = btrfs_drop_extents(trans, inode, file_pos, file_pos + num_bytes,
1667 &hint, 0);
Yan Zhengd899e052008-10-30 14:25:28 -04001668 BUG_ON(ret);
1669
Li Zefan33345d012011-04-20 10:31:50 +08001670 ins.objectid = btrfs_ino(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04001671 ins.offset = file_pos;
1672 ins.type = BTRFS_EXTENT_DATA_KEY;
1673 ret = btrfs_insert_empty_item(trans, root, path, &ins, sizeof(*fi));
1674 BUG_ON(ret);
1675 leaf = path->nodes[0];
1676 fi = btrfs_item_ptr(leaf, path->slots[0],
1677 struct btrfs_file_extent_item);
1678 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
1679 btrfs_set_file_extent_type(leaf, fi, extent_type);
1680 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
1681 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
1682 btrfs_set_file_extent_offset(leaf, fi, 0);
1683 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
1684 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
1685 btrfs_set_file_extent_compression(leaf, fi, compression);
1686 btrfs_set_file_extent_encryption(leaf, fi, encryption);
1687 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
Chris Masonb9473432009-03-13 11:00:37 -04001688
1689 btrfs_unlock_up_safe(path, 1);
1690 btrfs_set_lock_blocking(leaf);
1691
Yan Zhengd899e052008-10-30 14:25:28 -04001692 btrfs_mark_buffer_dirty(leaf);
1693
1694 inode_add_bytes(inode, num_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -04001695
1696 ins.objectid = disk_bytenr;
1697 ins.offset = disk_num_bytes;
1698 ins.type = BTRFS_EXTENT_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001699 ret = btrfs_alloc_reserved_file_extent(trans, root,
1700 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08001701 btrfs_ino(inode), file_pos, &ins);
Yan Zhengd899e052008-10-30 14:25:28 -04001702 BUG_ON(ret);
Yan Zhengd899e052008-10-30 14:25:28 -04001703 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04001704
Yan Zhengd899e052008-10-30 14:25:28 -04001705 return 0;
1706}
1707
Chris Mason5d13a982009-03-13 11:41:46 -04001708/*
1709 * helper function for btrfs_finish_ordered_io, this
1710 * just reads in some of the csum leaves to prime them into ram
1711 * before we start the transaction. It limits the amount of btree
1712 * reads required while inside the transaction.
1713 */
Chris Masond352ac62008-09-29 15:18:18 -04001714/* as ordered data IO finishes, this gets called so we can finish
1715 * an ordered extent if the range of bytes in the file it covers are
1716 * fully written.
1717 */
Chris Mason211f90e2008-07-18 11:56:15 -04001718static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001719{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001720 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001721 struct btrfs_trans_handle *trans = NULL;
Chris Mason5d13a982009-03-13 11:41:46 -04001722 struct btrfs_ordered_extent *ordered_extent = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001723 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001724 struct extent_state *cached_state = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08001725 int compress_type = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001726 int ret;
Li Zefan82d59022011-04-20 10:33:24 +08001727 bool nolock;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001728
Josef Bacik5a1a3df2010-02-02 20:51:14 +00001729 ret = btrfs_dec_test_ordered_pending(inode, &ordered_extent, start,
1730 end - start + 1);
Chris Masonba1da2f2008-07-17 12:54:15 -04001731 if (!ret)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001732 return 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001733 BUG_ON(!ordered_extent);
Josef Bacikefd049f2010-02-02 20:50:10 +00001734
Chris Mason2cf85722011-07-26 15:35:09 -04001735 nolock = btrfs_is_free_space_inode(root, inode);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001736
Yan, Zhengc2167752009-11-12 09:34:21 +00001737 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
1738 BUG_ON(!list_empty(&ordered_extent->list));
1739 ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent);
1740 if (!ret) {
Josef Bacik0cb59c92010-07-02 12:14:14 -04001741 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001742 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001743 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001744 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00001745 BUG_ON(IS_ERR(trans));
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001746 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason21151332011-11-10 20:39:08 -05001747 ret = btrfs_update_inode_fallback(trans, root, inode);
Yan, Zhengc2167752009-11-12 09:34:21 +00001748 BUG_ON(ret);
Yan, Zhengc2167752009-11-12 09:34:21 +00001749 }
1750 goto out;
1751 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001752
Josef Bacik2ac55d42010-02-03 19:33:23 +00001753 lock_extent_bits(io_tree, ordered_extent->file_offset,
1754 ordered_extent->file_offset + ordered_extent->len - 1,
1755 0, &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001756
Josef Bacik0cb59c92010-07-02 12:14:14 -04001757 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001758 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001759 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001760 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00001761 BUG_ON(IS_ERR(trans));
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001762 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Yan, Zhengc2167752009-11-12 09:34:21 +00001763
Chris Masonc8b97812008-10-29 14:49:59 -04001764 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Li Zefan261507a02010-12-17 14:21:50 +08001765 compress_type = ordered_extent->compress_type;
Yan Zhengd899e052008-10-30 14:25:28 -04001766 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Li Zefan261507a02010-12-17 14:21:50 +08001767 BUG_ON(compress_type);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001768 ret = btrfs_mark_extent_written(trans, inode,
Yan Zhengd899e052008-10-30 14:25:28 -04001769 ordered_extent->file_offset,
1770 ordered_extent->file_offset +
1771 ordered_extent->len);
1772 BUG_ON(ret);
1773 } else {
Josef Bacik0af3d002010-06-21 14:48:16 -04001774 BUG_ON(root == root->fs_info->tree_root);
Yan Zhengd899e052008-10-30 14:25:28 -04001775 ret = insert_reserved_file_extent(trans, inode,
1776 ordered_extent->file_offset,
1777 ordered_extent->start,
1778 ordered_extent->disk_len,
1779 ordered_extent->len,
1780 ordered_extent->len,
Li Zefan261507a02010-12-17 14:21:50 +08001781 compress_type, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04001782 BTRFS_FILE_EXTENT_REG);
Chris Masona1ed8352009-09-11 12:27:37 -04001783 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
1784 ordered_extent->file_offset,
1785 ordered_extent->len);
Yan Zhengd899e052008-10-30 14:25:28 -04001786 BUG_ON(ret);
1787 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00001788 unlock_extent_cached(io_tree, ordered_extent->file_offset,
1789 ordered_extent->file_offset +
1790 ordered_extent->len - 1, &cached_state, GFP_NOFS);
1791
Chris Masone6dcd2d2008-07-17 12:53:50 -04001792 add_pending_csums(trans, inode, ordered_extent->file_offset,
1793 &ordered_extent->list);
1794
Josef Bacik1ef30be2011-04-05 19:25:36 -04001795 ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent);
Miao Xiea39f7522011-09-11 10:52:25 -04001796 if (!ret || !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Chris Mason21151332011-11-10 20:39:08 -05001797 ret = btrfs_update_inode_fallback(trans, root, inode);
Josef Bacik1ef30be2011-04-05 19:25:36 -04001798 BUG_ON(ret);
1799 }
1800 ret = 0;
Yan, Zhengc2167752009-11-12 09:34:21 +00001801out:
Josef Bacik5b0e95b2011-10-06 08:58:24 -04001802 if (root != root->fs_info->tree_root)
1803 btrfs_delalloc_release_metadata(inode, ordered_extent->len);
1804 if (trans) {
1805 if (nolock)
Josef Bacik0cb59c92010-07-02 12:14:14 -04001806 btrfs_end_transaction_nolock(trans, root);
Josef Bacik5b0e95b2011-10-06 08:58:24 -04001807 else
Josef Bacik0cb59c92010-07-02 12:14:14 -04001808 btrfs_end_transaction(trans, root);
1809 }
1810
Chris Masone6dcd2d2008-07-17 12:53:50 -04001811 /* once for us */
1812 btrfs_put_ordered_extent(ordered_extent);
1813 /* once for the tree */
1814 btrfs_put_ordered_extent(ordered_extent);
1815
Chris Masone6dcd2d2008-07-17 12:53:50 -04001816 return 0;
1817}
1818
Christoph Hellwigb2950862008-12-02 09:54:17 -05001819static int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04001820 struct extent_state *state, int uptodate)
1821{
liubo1abe9b82011-03-24 11:18:59 +00001822 trace_btrfs_writepage_end_io_hook(page, start, end, uptodate);
1823
Chris Mason8b62b722009-09-02 16:53:46 -04001824 ClearPagePrivate2(page);
Chris Mason211f90e2008-07-18 11:56:15 -04001825 return btrfs_finish_ordered_io(page->mapping->host, start, end);
1826}
1827
Chris Masond352ac62008-09-29 15:18:18 -04001828/*
Chris Masond352ac62008-09-29 15:18:18 -04001829 * when reads are done, we need to check csums to verify the data is correct
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001830 * if there's a match, we allow the bio to finish. If not, the code in
1831 * extent_io.c will try to find good copies for us.
Chris Masond352ac62008-09-29 15:18:18 -04001832 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001833static int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason70dec802008-01-29 09:59:12 -05001834 struct extent_state *state)
Chris Mason07157aa2007-08-30 08:50:51 -04001835{
Chris Mason35ebb932007-10-30 16:56:53 -04001836 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -04001837 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05001838 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -04001839 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -05001840 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -04001841 int ret;
Chris Masonff79f812007-10-15 16:22:25 -04001842 struct btrfs_root *root = BTRFS_I(inode)->root;
1843 u32 csum = ~(u32)0;
Chris Masond1310b22008-01-24 16:13:08 -05001844
Chris Masond20f7042008-12-08 16:58:54 -05001845 if (PageChecked(page)) {
1846 ClearPageChecked(page);
1847 goto good;
1848 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001849
1850 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Jan Schmidt08d2f342011-05-04 16:18:50 +02001851 goto good;
Chris Masond20f7042008-12-08 16:58:54 -05001852
Yan Zheng17d217f2008-12-12 10:03:38 -05001853 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04001854 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001855 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM,
1856 GFP_NOFS);
1857 return 0;
1858 }
1859
Yanc2e639f2008-02-04 08:57:25 -05001860 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -05001861 private = state->private;
1862 ret = 0;
1863 } else {
1864 ret = get_state_private(io_tree, start, &private);
1865 }
Chris Mason9ab86c82009-01-07 09:48:51 -05001866 kaddr = kmap_atomic(page, KM_USER0);
Chris Masond3977122009-01-05 21:25:51 -05001867 if (ret)
Chris Mason07157aa2007-08-30 08:50:51 -04001868 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05001869
Chris Masonff79f812007-10-15 16:22:25 -04001870 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
1871 btrfs_csum_final(csum, (char *)&csum);
Chris Masond3977122009-01-05 21:25:51 -05001872 if (csum != private)
Chris Mason07157aa2007-08-30 08:50:51 -04001873 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05001874
Chris Mason9ab86c82009-01-07 09:48:51 -05001875 kunmap_atomic(kaddr, KM_USER0);
Chris Masond20f7042008-12-08 16:58:54 -05001876good:
Chris Mason07157aa2007-08-30 08:50:51 -04001877 return 0;
1878
1879zeroit:
Chris Mason945d8962011-05-22 12:33:42 -04001880 printk_ratelimited(KERN_INFO "btrfs csum failed ino %llu off %llu csum %u "
Li Zefan33345d012011-04-20 10:31:50 +08001881 "private %llu\n",
1882 (unsigned long long)btrfs_ino(page->mapping->host),
Chris Mason193f2842009-04-27 07:29:05 -04001883 (unsigned long long)start, csum,
1884 (unsigned long long)private);
Chris Masondb945352007-10-15 16:15:53 -04001885 memset(kaddr + offset, 1, end - start + 1);
1886 flush_dcache_page(page);
Chris Mason9ab86c82009-01-07 09:48:51 -05001887 kunmap_atomic(kaddr, KM_USER0);
Chris Mason3b951512008-04-17 11:29:12 -04001888 if (private == 0)
1889 return 0;
Chris Mason7e383262008-04-09 16:28:12 -04001890 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -04001891}
Chris Masonb888db22007-08-27 16:49:44 -04001892
Yan, Zheng24bbcf02009-11-12 09:36:34 +00001893struct delayed_iput {
1894 struct list_head list;
1895 struct inode *inode;
1896};
1897
1898void btrfs_add_delayed_iput(struct inode *inode)
1899{
1900 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
1901 struct delayed_iput *delayed;
1902
1903 if (atomic_add_unless(&inode->i_count, -1, 1))
1904 return;
1905
1906 delayed = kmalloc(sizeof(*delayed), GFP_NOFS | __GFP_NOFAIL);
1907 delayed->inode = inode;
1908
1909 spin_lock(&fs_info->delayed_iput_lock);
1910 list_add_tail(&delayed->list, &fs_info->delayed_iputs);
1911 spin_unlock(&fs_info->delayed_iput_lock);
1912}
1913
1914void btrfs_run_delayed_iputs(struct btrfs_root *root)
1915{
1916 LIST_HEAD(list);
1917 struct btrfs_fs_info *fs_info = root->fs_info;
1918 struct delayed_iput *delayed;
1919 int empty;
1920
1921 spin_lock(&fs_info->delayed_iput_lock);
1922 empty = list_empty(&fs_info->delayed_iputs);
1923 spin_unlock(&fs_info->delayed_iput_lock);
1924 if (empty)
1925 return;
1926
1927 down_read(&root->fs_info->cleanup_work_sem);
1928 spin_lock(&fs_info->delayed_iput_lock);
1929 list_splice_init(&fs_info->delayed_iputs, &list);
1930 spin_unlock(&fs_info->delayed_iput_lock);
1931
1932 while (!list_empty(&list)) {
1933 delayed = list_entry(list.next, struct delayed_iput, list);
1934 list_del(&delayed->list);
1935 iput(delayed->inode);
1936 kfree(delayed);
1937 }
1938 up_read(&root->fs_info->cleanup_work_sem);
1939}
1940
Yan, Zhengd68fc572010-05-16 10:49:58 -04001941enum btrfs_orphan_cleanup_state {
1942 ORPHAN_CLEANUP_STARTED = 1,
1943 ORPHAN_CLEANUP_DONE = 2,
1944};
1945
1946/*
1947 * This is called in transaction commmit time. If there are no orphan
1948 * files in the subvolume, it removes orphan item and frees block_rsv
1949 * structure.
1950 */
1951void btrfs_orphan_commit_root(struct btrfs_trans_handle *trans,
1952 struct btrfs_root *root)
1953{
1954 int ret;
1955
1956 if (!list_empty(&root->orphan_list) ||
1957 root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE)
1958 return;
1959
1960 if (root->orphan_item_inserted &&
1961 btrfs_root_refs(&root->root_item) > 0) {
1962 ret = btrfs_del_orphan_item(trans, root->fs_info->tree_root,
1963 root->root_key.objectid);
1964 BUG_ON(ret);
1965 root->orphan_item_inserted = 0;
1966 }
1967
1968 if (root->orphan_block_rsv) {
1969 WARN_ON(root->orphan_block_rsv->size > 0);
1970 btrfs_free_block_rsv(root, root->orphan_block_rsv);
1971 root->orphan_block_rsv = NULL;
1972 }
1973}
1974
1975/*
Josef Bacik7b128762008-07-24 12:17:14 -04001976 * This creates an orphan entry for the given inode in case something goes
1977 * wrong in the middle of an unlink/truncate.
Yan, Zhengd68fc572010-05-16 10:49:58 -04001978 *
1979 * NOTE: caller of this function should reserve 5 units of metadata for
1980 * this function.
Josef Bacik7b128762008-07-24 12:17:14 -04001981 */
1982int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
1983{
1984 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04001985 struct btrfs_block_rsv *block_rsv = NULL;
1986 int reserve = 0;
1987 int insert = 0;
1988 int ret;
Josef Bacik7b128762008-07-24 12:17:14 -04001989
Yan, Zhengd68fc572010-05-16 10:49:58 -04001990 if (!root->orphan_block_rsv) {
1991 block_rsv = btrfs_alloc_block_rsv(root);
Tsutomu Itohb5324022011-07-19 07:27:20 +00001992 if (!block_rsv)
1993 return -ENOMEM;
Josef Bacik7b128762008-07-24 12:17:14 -04001994 }
1995
Yan, Zhengd68fc572010-05-16 10:49:58 -04001996 spin_lock(&root->orphan_lock);
1997 if (!root->orphan_block_rsv) {
1998 root->orphan_block_rsv = block_rsv;
1999 } else if (block_rsv) {
2000 btrfs_free_block_rsv(root, block_rsv);
2001 block_rsv = NULL;
2002 }
Josef Bacik7b128762008-07-24 12:17:14 -04002003
Yan, Zhengd68fc572010-05-16 10:49:58 -04002004 if (list_empty(&BTRFS_I(inode)->i_orphan)) {
2005 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
2006#if 0
2007 /*
2008 * For proper ENOSPC handling, we should do orphan
2009 * cleanup when mounting. But this introduces backward
2010 * compatibility issue.
2011 */
2012 if (!xchg(&root->orphan_item_inserted, 1))
2013 insert = 2;
2014 else
2015 insert = 1;
2016#endif
2017 insert = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002018 }
Josef Bacik7b128762008-07-24 12:17:14 -04002019
Yan, Zhengd68fc572010-05-16 10:49:58 -04002020 if (!BTRFS_I(inode)->orphan_meta_reserved) {
2021 BTRFS_I(inode)->orphan_meta_reserved = 1;
2022 reserve = 1;
2023 }
2024 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002025
Yan, Zhengd68fc572010-05-16 10:49:58 -04002026 /* grab metadata reservation from transaction handle */
2027 if (reserve) {
2028 ret = btrfs_orphan_reserve_metadata(trans, inode);
2029 BUG_ON(ret);
2030 }
2031
2032 /* insert an orphan item to track this unlinked/truncated file */
2033 if (insert >= 1) {
Li Zefan33345d012011-04-20 10:31:50 +08002034 ret = btrfs_insert_orphan_item(trans, root, btrfs_ino(inode));
Yan, Zhengd68fc572010-05-16 10:49:58 -04002035 BUG_ON(ret);
2036 }
2037
2038 /* insert an orphan item to track subvolume contains orphan files */
2039 if (insert >= 2) {
2040 ret = btrfs_insert_orphan_item(trans, root->fs_info->tree_root,
2041 root->root_key.objectid);
2042 BUG_ON(ret);
2043 }
2044 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002045}
2046
2047/*
2048 * We have done the truncate/delete so we can go ahead and remove the orphan
2049 * item for this particular inode.
2050 */
2051int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode)
2052{
2053 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002054 int delete_item = 0;
2055 int release_rsv = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002056 int ret = 0;
2057
Yan, Zhengd68fc572010-05-16 10:49:58 -04002058 spin_lock(&root->orphan_lock);
2059 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
2060 list_del_init(&BTRFS_I(inode)->i_orphan);
2061 delete_item = 1;
Josef Bacik7b128762008-07-24 12:17:14 -04002062 }
2063
Yan, Zhengd68fc572010-05-16 10:49:58 -04002064 if (BTRFS_I(inode)->orphan_meta_reserved) {
2065 BTRFS_I(inode)->orphan_meta_reserved = 0;
2066 release_rsv = 1;
2067 }
2068 spin_unlock(&root->orphan_lock);
2069
2070 if (trans && delete_item) {
Li Zefan33345d012011-04-20 10:31:50 +08002071 ret = btrfs_del_orphan_item(trans, root, btrfs_ino(inode));
Yan, Zhengd68fc572010-05-16 10:49:58 -04002072 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04002073 }
2074
Yan, Zhengd68fc572010-05-16 10:49:58 -04002075 if (release_rsv)
2076 btrfs_orphan_release_metadata(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04002077
Yan, Zhengd68fc572010-05-16 10:49:58 -04002078 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002079}
2080
2081/*
2082 * this cleans up any orphans that may be left on the list from the last use
2083 * of this root.
2084 */
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002085int btrfs_orphan_cleanup(struct btrfs_root *root)
Josef Bacik7b128762008-07-24 12:17:14 -04002086{
2087 struct btrfs_path *path;
2088 struct extent_buffer *leaf;
Josef Bacik7b128762008-07-24 12:17:14 -04002089 struct btrfs_key key, found_key;
2090 struct btrfs_trans_handle *trans;
2091 struct inode *inode;
Josef Bacik8f6d7f42011-09-26 15:55:20 -04002092 u64 last_objectid = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002093 int ret = 0, nr_unlink = 0, nr_truncate = 0;
2094
Yan, Zhengd68fc572010-05-16 10:49:58 -04002095 if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002096 return 0;
Yan, Zhengc71bf092009-11-12 09:34:40 +00002097
2098 path = btrfs_alloc_path();
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002099 if (!path) {
2100 ret = -ENOMEM;
2101 goto out;
2102 }
Josef Bacik7b128762008-07-24 12:17:14 -04002103 path->reada = -1;
2104
2105 key.objectid = BTRFS_ORPHAN_OBJECTID;
2106 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
2107 key.offset = (u64)-1;
2108
Josef Bacik7b128762008-07-24 12:17:14 -04002109 while (1) {
2110 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002111 if (ret < 0)
2112 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04002113
2114 /*
2115 * if ret == 0 means we found what we were searching for, which
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002116 * is weird, but possible, so only screw with path if we didn't
Josef Bacik7b128762008-07-24 12:17:14 -04002117 * find the key and see if we have stuff that matches
2118 */
2119 if (ret > 0) {
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002120 ret = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002121 if (path->slots[0] == 0)
2122 break;
2123 path->slots[0]--;
2124 }
2125
2126 /* pull out the item */
2127 leaf = path->nodes[0];
Josef Bacik7b128762008-07-24 12:17:14 -04002128 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2129
2130 /* make sure the item matches what we want */
2131 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
2132 break;
2133 if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY)
2134 break;
2135
2136 /* release the path since we're done with it */
David Sterbab3b4aa72011-04-21 01:20:15 +02002137 btrfs_release_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04002138
2139 /*
2140 * this is where we are basically btrfs_lookup, without the
2141 * crossing root thing. we store the inode number in the
2142 * offset of the orphan item.
2143 */
Josef Bacik8f6d7f42011-09-26 15:55:20 -04002144
2145 if (found_key.offset == last_objectid) {
2146 printk(KERN_ERR "btrfs: Error removing orphan entry, "
2147 "stopping orphan cleanup\n");
2148 ret = -EINVAL;
2149 goto out;
2150 }
2151
2152 last_objectid = found_key.offset;
2153
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002154 found_key.objectid = found_key.offset;
2155 found_key.type = BTRFS_INODE_ITEM_KEY;
2156 found_key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +00002157 inode = btrfs_iget(root->fs_info->sb, &found_key, root, NULL);
Josef Bacika8c9e572011-09-21 16:55:59 -04002158 ret = PTR_RET(inode);
2159 if (ret && ret != -ESTALE)
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002160 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04002161
2162 /*
2163 * Inode is already gone but the orphan item is still there,
2164 * kill the orphan item.
2165 */
2166 if (ret == -ESTALE) {
2167 trans = btrfs_start_transaction(root, 1);
2168 if (IS_ERR(trans)) {
2169 ret = PTR_ERR(trans);
2170 goto out;
2171 }
2172 ret = btrfs_del_orphan_item(trans, root,
2173 found_key.objectid);
2174 BUG_ON(ret);
2175 btrfs_end_transaction(trans, root);
2176 continue;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002177 }
Josef Bacik7b128762008-07-24 12:17:14 -04002178
Josef Bacik7b128762008-07-24 12:17:14 -04002179 /*
2180 * add this inode to the orphan list so btrfs_orphan_del does
2181 * the proper thing when we hit it
2182 */
Yan, Zhengd68fc572010-05-16 10:49:58 -04002183 spin_lock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002184 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002185 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002186
Josef Bacik7b128762008-07-24 12:17:14 -04002187 /* if we have links, this was a truncate, lets do that */
2188 if (inode->i_nlink) {
Josef Bacika41ad392011-01-31 15:30:16 -05002189 if (!S_ISREG(inode->i_mode)) {
2190 WARN_ON(1);
2191 iput(inode);
2192 continue;
2193 }
Josef Bacik7b128762008-07-24 12:17:14 -04002194 nr_truncate++;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002195 ret = btrfs_truncate(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04002196 } else {
2197 nr_unlink++;
2198 }
2199
2200 /* this will do delete_inode and everything for us */
2201 iput(inode);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002202 if (ret)
2203 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04002204 }
Miao Xie3254c872011-11-10 20:45:05 -05002205 /* release the path since we're done with it */
2206 btrfs_release_path(path);
2207
Yan, Zhengd68fc572010-05-16 10:49:58 -04002208 root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE;
2209
2210 if (root->orphan_block_rsv)
2211 btrfs_block_rsv_release(root, root->orphan_block_rsv,
2212 (u64)-1);
2213
2214 if (root->orphan_block_rsv || root->orphan_item_inserted) {
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002215 trans = btrfs_join_transaction(root);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002216 if (!IS_ERR(trans))
2217 btrfs_end_transaction(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002218 }
Josef Bacik7b128762008-07-24 12:17:14 -04002219
2220 if (nr_unlink)
2221 printk(KERN_INFO "btrfs: unlinked %d orphans\n", nr_unlink);
2222 if (nr_truncate)
2223 printk(KERN_INFO "btrfs: truncated %d orphans\n", nr_truncate);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002224
2225out:
2226 if (ret)
2227 printk(KERN_CRIT "btrfs: could not do orphan cleanup %d\n", ret);
2228 btrfs_free_path(path);
2229 return ret;
Josef Bacik7b128762008-07-24 12:17:14 -04002230}
2231
Chris Masond352ac62008-09-29 15:18:18 -04002232/*
Chris Mason46a53cc2009-04-27 11:47:50 -04002233 * very simple check to peek ahead in the leaf looking for xattrs. If we
2234 * don't find any xattrs, we know there can't be any acls.
2235 *
2236 * slot is the slot the inode is in, objectid is the objectid of the inode
2237 */
2238static noinline int acls_after_inode_item(struct extent_buffer *leaf,
2239 int slot, u64 objectid)
2240{
2241 u32 nritems = btrfs_header_nritems(leaf);
2242 struct btrfs_key found_key;
2243 int scanned = 0;
2244
2245 slot++;
2246 while (slot < nritems) {
2247 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2248
2249 /* we found a different objectid, there must not be acls */
2250 if (found_key.objectid != objectid)
2251 return 0;
2252
2253 /* we found an xattr, assume we've got an acl */
2254 if (found_key.type == BTRFS_XATTR_ITEM_KEY)
2255 return 1;
2256
2257 /*
2258 * we found a key greater than an xattr key, there can't
2259 * be any acls later on
2260 */
2261 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
2262 return 0;
2263
2264 slot++;
2265 scanned++;
2266
2267 /*
2268 * it goes inode, inode backrefs, xattrs, extents,
2269 * so if there are a ton of hard links to an inode there can
2270 * be a lot of backrefs. Don't waste time searching too hard,
2271 * this is just an optimization
2272 */
2273 if (scanned >= 8)
2274 break;
2275 }
2276 /* we hit the end of the leaf before we found an xattr or
2277 * something larger than an xattr. We have to assume the inode
2278 * has acls
2279 */
2280 return 1;
2281}
2282
2283/*
Chris Masond352ac62008-09-29 15:18:18 -04002284 * read an inode from the btree into the in-memory inode
2285 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002286static void btrfs_read_locked_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002287{
2288 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002289 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002290 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -04002291 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -04002292 struct btrfs_root *root = BTRFS_I(inode)->root;
2293 struct btrfs_key location;
Chris Mason46a53cc2009-04-27 11:47:50 -04002294 int maybe_acls;
Josef Bacik618e21d2007-07-11 10:18:17 -04002295 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04002296 int ret;
Miao Xie2f7e33d2011-06-23 07:27:13 +00002297 bool filled = false;
2298
2299 ret = btrfs_fill_inode(inode, &rdev);
2300 if (!ret)
2301 filled = true;
Chris Mason39279cc2007-06-12 06:35:45 -04002302
2303 path = btrfs_alloc_path();
Mark Fasheh1748f842011-07-12 11:25:31 -07002304 if (!path)
2305 goto make_bad;
2306
Josef Bacikd90c7322011-05-17 09:50:54 -04002307 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002308 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05002309
Chris Mason39279cc2007-06-12 06:35:45 -04002310 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002311 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04002312 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -04002313
Chris Mason5f39d392007-10-15 16:14:19 -04002314 leaf = path->nodes[0];
Miao Xie2f7e33d2011-06-23 07:27:13 +00002315
2316 if (filled)
2317 goto cache_acl;
2318
Chris Mason5f39d392007-10-15 16:14:19 -04002319 inode_item = btrfs_item_ptr(leaf, path->slots[0],
2320 struct btrfs_inode_item);
Chris Mason5f39d392007-10-15 16:14:19 -04002321 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
2322 inode->i_nlink = btrfs_inode_nlink(leaf, inode_item);
2323 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
2324 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
Chris Masondbe674a2008-07-17 12:54:05 -04002325 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002326
2327 tspec = btrfs_inode_atime(inode_item);
2328 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2329 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2330
2331 tspec = btrfs_inode_mtime(inode_item);
2332 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2333 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2334
2335 tspec = btrfs_inode_ctime(inode_item);
2336 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2337 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2338
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002339 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04002340 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Chris Masonc3027eb2008-12-08 16:40:21 -05002341 BTRFS_I(inode)->sequence = btrfs_inode_sequence(leaf, inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04002342 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04002343 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002344 rdev = btrfs_inode_rdev(leaf, inode_item);
2345
Josef Bacikaec74772008-07-24 12:12:38 -04002346 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05002347 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Miao Xie2f7e33d2011-06-23 07:27:13 +00002348cache_acl:
Chris Mason46a53cc2009-04-27 11:47:50 -04002349 /*
2350 * try to precache a NULL acl entry for files that don't have
2351 * any xattrs or acls
2352 */
Li Zefan33345d012011-04-20 10:31:50 +08002353 maybe_acls = acls_after_inode_item(leaf, path->slots[0],
2354 btrfs_ino(inode));
Al Viro72c04902009-06-24 16:58:48 -04002355 if (!maybe_acls)
2356 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04002357
Chris Mason39279cc2007-06-12 06:35:45 -04002358 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002359
Chris Mason39279cc2007-06-12 06:35:45 -04002360 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04002361 case S_IFREG:
2362 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04002363 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05002364 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04002365 inode->i_fop = &btrfs_file_operations;
2366 inode->i_op = &btrfs_file_inode_operations;
2367 break;
2368 case S_IFDIR:
2369 inode->i_fop = &btrfs_dir_file_operations;
2370 if (root == root->fs_info->tree_root)
2371 inode->i_op = &btrfs_dir_ro_inode_operations;
2372 else
2373 inode->i_op = &btrfs_dir_inode_operations;
2374 break;
2375 case S_IFLNK:
2376 inode->i_op = &btrfs_symlink_inode_operations;
2377 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04002378 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04002379 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04002380 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05002381 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04002382 init_special_inode(inode, inode->i_mode, rdev);
2383 break;
Chris Mason39279cc2007-06-12 06:35:45 -04002384 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002385
2386 btrfs_update_iflags(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002387 return;
2388
2389make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04002390 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002391 make_bad_inode(inode);
2392}
2393
Chris Masond352ac62008-09-29 15:18:18 -04002394/*
2395 * given a leaf and an inode, copy the inode fields into the leaf
2396 */
Chris Masone02119d2008-09-05 16:13:11 -04002397static void fill_inode_item(struct btrfs_trans_handle *trans,
2398 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04002399 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04002400 struct inode *inode)
2401{
Chris Mason5f39d392007-10-15 16:14:19 -04002402 btrfs_set_inode_uid(leaf, item, inode->i_uid);
2403 btrfs_set_inode_gid(leaf, item, inode->i_gid);
Chris Masondbe674a2008-07-17 12:54:05 -04002404 btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size);
Chris Mason5f39d392007-10-15 16:14:19 -04002405 btrfs_set_inode_mode(leaf, item, inode->i_mode);
2406 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
2407
2408 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
2409 inode->i_atime.tv_sec);
2410 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
2411 inode->i_atime.tv_nsec);
2412
2413 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
2414 inode->i_mtime.tv_sec);
2415 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
2416 inode->i_mtime.tv_nsec);
2417
2418 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
2419 inode->i_ctime.tv_sec);
2420 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
2421 inode->i_ctime.tv_nsec);
2422
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002423 btrfs_set_inode_nbytes(leaf, item, inode_get_bytes(inode));
Chris Masone02119d2008-09-05 16:13:11 -04002424 btrfs_set_inode_generation(leaf, item, BTRFS_I(inode)->generation);
Chris Masonc3027eb2008-12-08 16:40:21 -05002425 btrfs_set_inode_sequence(leaf, item, BTRFS_I(inode)->sequence);
Chris Masone02119d2008-09-05 16:13:11 -04002426 btrfs_set_inode_transid(leaf, item, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002427 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -05002428 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04002429 btrfs_set_inode_block_group(leaf, item, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002430}
2431
Chris Masond352ac62008-09-29 15:18:18 -04002432/*
2433 * copy everything in the in-memory inode into the btree.
2434 */
Chris Mason21151332011-11-10 20:39:08 -05002435static noinline int btrfs_update_inode_item(struct btrfs_trans_handle *trans,
Chris Masond3977122009-01-05 21:25:51 -05002436 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002437{
2438 struct btrfs_inode_item *inode_item;
2439 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002440 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002441 int ret;
2442
2443 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08002444 if (!path)
2445 return -ENOMEM;
2446
Chris Masonb9473432009-03-13 11:00:37 -04002447 path->leave_spinning = 1;
Miao Xie16cdcec2011-04-22 18:12:22 +08002448 ret = btrfs_lookup_inode(trans, root, path, &BTRFS_I(inode)->location,
2449 1);
Chris Mason39279cc2007-06-12 06:35:45 -04002450 if (ret) {
2451 if (ret > 0)
2452 ret = -ENOENT;
2453 goto failed;
2454 }
2455
Chris Masonb4ce94d2009-02-04 09:25:08 -05002456 btrfs_unlock_up_safe(path, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002457 leaf = path->nodes[0];
2458 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Miao Xie16cdcec2011-04-22 18:12:22 +08002459 struct btrfs_inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -04002460
Chris Masone02119d2008-09-05 16:13:11 -04002461 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002462 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002463 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002464 ret = 0;
2465failed:
Chris Mason39279cc2007-06-12 06:35:45 -04002466 btrfs_free_path(path);
2467 return ret;
2468}
2469
Chris Masond352ac62008-09-29 15:18:18 -04002470/*
Chris Mason21151332011-11-10 20:39:08 -05002471 * copy everything in the in-memory inode into the btree.
2472 */
2473noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
2474 struct btrfs_root *root, struct inode *inode)
2475{
2476 int ret;
2477
2478 /*
2479 * If the inode is a free space inode, we can deadlock during commit
2480 * if we put it into the delayed code.
2481 *
2482 * The data relocation inode should also be directly updated
2483 * without delay
2484 */
2485 if (!btrfs_is_free_space_inode(root, inode)
2486 && root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID) {
2487 ret = btrfs_delayed_update_inode(trans, root, inode);
2488 if (!ret)
2489 btrfs_set_inode_last_trans(trans, inode);
2490 return ret;
2491 }
2492
2493 return btrfs_update_inode_item(trans, root, inode);
2494}
2495
2496static noinline int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans,
2497 struct btrfs_root *root, struct inode *inode)
2498{
2499 int ret;
2500
2501 ret = btrfs_update_inode(trans, root, inode);
2502 if (ret == -ENOSPC)
2503 return btrfs_update_inode_item(trans, root, inode);
2504 return ret;
2505}
2506
2507/*
Chris Masond352ac62008-09-29 15:18:18 -04002508 * unlink helper that gets used here in inode.c and in the tree logging
2509 * recovery code. It remove a link in a directory with a given name, and
2510 * also drops the back refs in the inode to the directory
2511 */
Al Viro92986792011-03-04 17:14:37 +00002512static int __btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2513 struct btrfs_root *root,
2514 struct inode *dir, struct inode *inode,
2515 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04002516{
2517 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04002518 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002519 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002520 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04002521 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04002522 u64 index;
Li Zefan33345d012011-04-20 10:31:50 +08002523 u64 ino = btrfs_ino(inode);
2524 u64 dir_ino = btrfs_ino(dir);
Chris Mason39279cc2007-06-12 06:35:45 -04002525
2526 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002527 if (!path) {
2528 ret = -ENOMEM;
Tsutomu Itoh554233a2011-02-03 03:16:25 +00002529 goto out;
Chris Mason54aa1f42007-06-22 14:16:25 -04002530 }
2531
Chris Masonb9473432009-03-13 11:00:37 -04002532 path->leave_spinning = 1;
Li Zefan33345d012011-04-20 10:31:50 +08002533 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Chris Mason39279cc2007-06-12 06:35:45 -04002534 name, name_len, -1);
2535 if (IS_ERR(di)) {
2536 ret = PTR_ERR(di);
2537 goto err;
2538 }
2539 if (!di) {
2540 ret = -ENOENT;
2541 goto err;
2542 }
Chris Mason5f39d392007-10-15 16:14:19 -04002543 leaf = path->nodes[0];
2544 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04002545 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04002546 if (ret)
2547 goto err;
David Sterbab3b4aa72011-04-21 01:20:15 +02002548 btrfs_release_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002549
Li Zefan33345d012011-04-20 10:31:50 +08002550 ret = btrfs_del_inode_ref(trans, root, name, name_len, ino,
2551 dir_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04002552 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05002553 printk(KERN_INFO "btrfs failed to delete reference to %.*s, "
Li Zefan33345d012011-04-20 10:31:50 +08002554 "inode %llu parent %llu\n", name_len, name,
2555 (unsigned long long)ino, (unsigned long long)dir_ino);
Josef Bacikaec74772008-07-24 12:12:38 -04002556 goto err;
2557 }
2558
Miao Xie16cdcec2011-04-22 18:12:22 +08002559 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
2560 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04002561 goto err;
Chris Mason39279cc2007-06-12 06:35:45 -04002562
Chris Masone02119d2008-09-05 16:13:11 -04002563 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
Li Zefan33345d012011-04-20 10:31:50 +08002564 inode, dir_ino);
Chris Mason49eb7e42008-09-11 15:53:12 -04002565 BUG_ON(ret != 0 && ret != -ENOENT);
Chris Masone02119d2008-09-05 16:13:11 -04002566
2567 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
2568 dir, index);
Chris Mason6418c962010-10-30 07:34:24 -04002569 if (ret == -ENOENT)
2570 ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002571err:
2572 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002573 if (ret)
2574 goto out;
2575
2576 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
2577 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
2578 btrfs_update_inode(trans, root, dir);
Chris Masone02119d2008-09-05 16:13:11 -04002579out:
Chris Mason39279cc2007-06-12 06:35:45 -04002580 return ret;
2581}
2582
Al Viro92986792011-03-04 17:14:37 +00002583int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2584 struct btrfs_root *root,
2585 struct inode *dir, struct inode *inode,
2586 const char *name, int name_len)
2587{
2588 int ret;
2589 ret = __btrfs_unlink_inode(trans, root, dir, inode, name, name_len);
2590 if (!ret) {
2591 btrfs_drop_nlink(inode);
2592 ret = btrfs_update_inode(trans, root, inode);
2593 }
2594 return ret;
2595}
2596
2597
Yan, Zhenga22285a2010-05-16 10:48:46 -04002598/* helper to check if there is any shared block in the path */
2599static int check_path_shared(struct btrfs_root *root,
2600 struct btrfs_path *path)
2601{
2602 struct extent_buffer *eb;
2603 int level;
Dan Carpenter0e4dcbef2010-06-01 08:23:11 +00002604 u64 refs = 1;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002605
2606 for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
Josef Bacikdedefd72011-01-24 21:43:18 +00002607 int ret;
2608
Yan, Zhenga22285a2010-05-16 10:48:46 -04002609 if (!path->nodes[level])
2610 break;
2611 eb = path->nodes[level];
2612 if (!btrfs_block_can_be_shared(root, eb))
2613 continue;
2614 ret = btrfs_lookup_extent_info(NULL, root, eb->start, eb->len,
2615 &refs, NULL);
2616 if (refs > 1)
2617 return 1;
2618 }
Josef Bacikdedefd72011-01-24 21:43:18 +00002619 return 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002620}
2621
2622/*
2623 * helper to start transaction for unlink and rmdir.
2624 *
2625 * unlink and rmdir are special in btrfs, they do not always free space.
2626 * so in enospc case, we should make sure they will free space before
2627 * allowing them to use the global metadata reservation.
2628 */
2629static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir,
2630 struct dentry *dentry)
2631{
2632 struct btrfs_trans_handle *trans;
2633 struct btrfs_root *root = BTRFS_I(dir)->root;
2634 struct btrfs_path *path;
2635 struct btrfs_inode_ref *ref;
2636 struct btrfs_dir_item *di;
2637 struct inode *inode = dentry->d_inode;
2638 u64 index;
2639 int check_link = 1;
2640 int err = -ENOSPC;
2641 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08002642 u64 ino = btrfs_ino(inode);
2643 u64 dir_ino = btrfs_ino(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002644
Josef Bacike70bea52011-10-11 14:18:24 -04002645 /*
2646 * 1 for the possible orphan item
2647 * 1 for the dir item
2648 * 1 for the dir index
2649 * 1 for the inode ref
2650 * 1 for the inode ref in the tree log
2651 * 2 for the dir entries in the log
2652 * 1 for the inode
2653 */
2654 trans = btrfs_start_transaction(root, 8);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002655 if (!IS_ERR(trans) || PTR_ERR(trans) != -ENOSPC)
2656 return trans;
2657
Li Zefan33345d012011-04-20 10:31:50 +08002658 if (ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhenga22285a2010-05-16 10:48:46 -04002659 return ERR_PTR(-ENOSPC);
2660
2661 /* check if there is someone else holds reference */
2662 if (S_ISDIR(inode->i_mode) && atomic_read(&inode->i_count) > 1)
2663 return ERR_PTR(-ENOSPC);
2664
2665 if (atomic_read(&inode->i_count) > 2)
2666 return ERR_PTR(-ENOSPC);
2667
2668 if (xchg(&root->fs_info->enospc_unlink, 1))
2669 return ERR_PTR(-ENOSPC);
2670
2671 path = btrfs_alloc_path();
2672 if (!path) {
2673 root->fs_info->enospc_unlink = 0;
2674 return ERR_PTR(-ENOMEM);
2675 }
2676
Josef Bacik3880a1b2011-10-14 14:46:51 -04002677 /* 1 for the orphan item */
2678 trans = btrfs_start_transaction(root, 1);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002679 if (IS_ERR(trans)) {
2680 btrfs_free_path(path);
2681 root->fs_info->enospc_unlink = 0;
2682 return trans;
2683 }
2684
2685 path->skip_locking = 1;
2686 path->search_commit_root = 1;
2687
2688 ret = btrfs_lookup_inode(trans, root, path,
2689 &BTRFS_I(dir)->location, 0);
2690 if (ret < 0) {
2691 err = ret;
2692 goto out;
2693 }
2694 if (ret == 0) {
2695 if (check_path_shared(root, path))
2696 goto out;
2697 } else {
2698 check_link = 0;
2699 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002700 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002701
2702 ret = btrfs_lookup_inode(trans, root, path,
2703 &BTRFS_I(inode)->location, 0);
2704 if (ret < 0) {
2705 err = ret;
2706 goto out;
2707 }
2708 if (ret == 0) {
2709 if (check_path_shared(root, path))
2710 goto out;
2711 } else {
2712 check_link = 0;
2713 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002714 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002715
2716 if (ret == 0 && S_ISREG(inode->i_mode)) {
2717 ret = btrfs_lookup_file_extent(trans, root, path,
Li Zefan33345d012011-04-20 10:31:50 +08002718 ino, (u64)-1, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002719 if (ret < 0) {
2720 err = ret;
2721 goto out;
2722 }
2723 BUG_ON(ret == 0);
2724 if (check_path_shared(root, path))
2725 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +02002726 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002727 }
2728
2729 if (!check_link) {
2730 err = 0;
2731 goto out;
2732 }
2733
Li Zefan33345d012011-04-20 10:31:50 +08002734 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zhenga22285a2010-05-16 10:48:46 -04002735 dentry->d_name.name, dentry->d_name.len, 0);
2736 if (IS_ERR(di)) {
2737 err = PTR_ERR(di);
2738 goto out;
2739 }
2740 if (di) {
2741 if (check_path_shared(root, path))
2742 goto out;
2743 } else {
2744 err = 0;
2745 goto out;
2746 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002747 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002748
2749 ref = btrfs_lookup_inode_ref(trans, root, path,
2750 dentry->d_name.name, dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08002751 ino, dir_ino, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002752 if (IS_ERR(ref)) {
2753 err = PTR_ERR(ref);
2754 goto out;
2755 }
2756 BUG_ON(!ref);
2757 if (check_path_shared(root, path))
2758 goto out;
2759 index = btrfs_inode_ref_index(path->nodes[0], ref);
David Sterbab3b4aa72011-04-21 01:20:15 +02002760 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002761
Miao Xie16cdcec2011-04-22 18:12:22 +08002762 /*
2763 * This is a commit root search, if we can lookup inode item and other
2764 * relative items in the commit root, it means the transaction of
2765 * dir/file creation has been committed, and the dir index item that we
2766 * delay to insert has also been inserted into the commit root. So
2767 * we needn't worry about the delayed insertion of the dir index item
2768 * here.
2769 */
Li Zefan33345d012011-04-20 10:31:50 +08002770 di = btrfs_lookup_dir_index_item(trans, root, path, dir_ino, index,
Yan, Zhenga22285a2010-05-16 10:48:46 -04002771 dentry->d_name.name, dentry->d_name.len, 0);
2772 if (IS_ERR(di)) {
2773 err = PTR_ERR(di);
2774 goto out;
2775 }
2776 BUG_ON(ret == -ENOENT);
2777 if (check_path_shared(root, path))
2778 goto out;
2779
2780 err = 0;
2781out:
2782 btrfs_free_path(path);
Josef Bacik3880a1b2011-10-14 14:46:51 -04002783 /* Migrate the orphan reservation over */
2784 if (!err)
2785 err = btrfs_block_rsv_migrate(trans->block_rsv,
2786 &root->fs_info->global_block_rsv,
Josef Bacik5a77d762011-11-01 14:32:23 -04002787 trans->bytes_reserved);
Josef Bacik3880a1b2011-10-14 14:46:51 -04002788
Yan, Zhenga22285a2010-05-16 10:48:46 -04002789 if (err) {
2790 btrfs_end_transaction(trans, root);
2791 root->fs_info->enospc_unlink = 0;
2792 return ERR_PTR(err);
2793 }
2794
2795 trans->block_rsv = &root->fs_info->global_block_rsv;
2796 return trans;
2797}
2798
2799static void __unlink_end_trans(struct btrfs_trans_handle *trans,
2800 struct btrfs_root *root)
2801{
2802 if (trans->block_rsv == &root->fs_info->global_block_rsv) {
Josef Bacik5a77d762011-11-01 14:32:23 -04002803 btrfs_block_rsv_release(root, trans->block_rsv,
2804 trans->bytes_reserved);
2805 trans->block_rsv = &root->fs_info->trans_block_rsv;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002806 BUG_ON(!root->fs_info->enospc_unlink);
2807 root->fs_info->enospc_unlink = 0;
2808 }
2809 btrfs_end_transaction_throttle(trans, root);
2810}
2811
Chris Mason39279cc2007-06-12 06:35:45 -04002812static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
2813{
Yan, Zhenga22285a2010-05-16 10:48:46 -04002814 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002815 struct btrfs_trans_handle *trans;
Josef Bacik7b128762008-07-24 12:17:14 -04002816 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002817 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05002818 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002819
Yan, Zhenga22285a2010-05-16 10:48:46 -04002820 trans = __unlink_start_trans(dir, dentry);
2821 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002822 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04002823
Chris Mason12fcfd22009-03-24 10:24:20 -04002824 btrfs_record_unlink_dir(trans, dir, dentry->d_inode, 0);
2825
Chris Masone02119d2008-09-05 16:13:11 -04002826 ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
2827 dentry->d_name.name, dentry->d_name.len);
Tsutomu Itohb5324022011-07-19 07:27:20 +00002828 if (ret)
2829 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04002830
Yan, Zhenga22285a2010-05-16 10:48:46 -04002831 if (inode->i_nlink == 0) {
Josef Bacik7b128762008-07-24 12:17:14 -04002832 ret = btrfs_orphan_add(trans, inode);
Tsutomu Itohb5324022011-07-19 07:27:20 +00002833 if (ret)
2834 goto out;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002835 }
Josef Bacik7b128762008-07-24 12:17:14 -04002836
Tsutomu Itohb5324022011-07-19 07:27:20 +00002837out:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002838 nr = trans->blocks_used;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002839 __unlink_end_trans(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002840 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002841 return ret;
2842}
2843
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002844int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
2845 struct btrfs_root *root,
2846 struct inode *dir, u64 objectid,
2847 const char *name, int name_len)
2848{
2849 struct btrfs_path *path;
2850 struct extent_buffer *leaf;
2851 struct btrfs_dir_item *di;
2852 struct btrfs_key key;
2853 u64 index;
2854 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08002855 u64 dir_ino = btrfs_ino(dir);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002856
2857 path = btrfs_alloc_path();
2858 if (!path)
2859 return -ENOMEM;
2860
Li Zefan33345d012011-04-20 10:31:50 +08002861 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002862 name, name_len, -1);
David Sterbac7040052011-04-19 18:00:01 +02002863 BUG_ON(IS_ERR_OR_NULL(di));
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002864
2865 leaf = path->nodes[0];
2866 btrfs_dir_item_key_to_cpu(leaf, di, &key);
2867 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
2868 ret = btrfs_delete_one_dir_name(trans, root, path, di);
2869 BUG_ON(ret);
David Sterbab3b4aa72011-04-21 01:20:15 +02002870 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002871
2872 ret = btrfs_del_root_ref(trans, root->fs_info->tree_root,
2873 objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08002874 dir_ino, &index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002875 if (ret < 0) {
2876 BUG_ON(ret != -ENOENT);
Li Zefan33345d012011-04-20 10:31:50 +08002877 di = btrfs_search_dir_index_item(root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002878 name, name_len);
David Sterbac7040052011-04-19 18:00:01 +02002879 BUG_ON(IS_ERR_OR_NULL(di));
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002880
2881 leaf = path->nodes[0];
2882 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02002883 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002884 index = key.offset;
2885 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002886 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002887
Miao Xie16cdcec2011-04-22 18:12:22 +08002888 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
2889 BUG_ON(ret);
2890
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002891 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
2892 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
2893 ret = btrfs_update_inode(trans, root, dir);
2894 BUG_ON(ret);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002895
Josef Bacik71d7aed2011-06-14 14:24:32 -04002896 btrfs_free_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002897 return 0;
2898}
2899
Chris Mason39279cc2007-06-12 06:35:45 -04002900static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
2901{
2902 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002903 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002904 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002905 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -05002906 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002907
Chris Mason3394e162008-11-17 20:42:26 -05002908 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE ||
Li Zefan33345d012011-04-20 10:31:50 +08002909 btrfs_ino(inode) == BTRFS_FIRST_FREE_OBJECTID)
Yan134d4512007-10-25 15:49:25 -04002910 return -ENOTEMPTY;
2911
Yan, Zhenga22285a2010-05-16 10:48:46 -04002912 trans = __unlink_start_trans(dir, dentry);
2913 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002914 return PTR_ERR(trans);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002915
Li Zefan33345d012011-04-20 10:31:50 +08002916 if (unlikely(btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002917 err = btrfs_unlink_subvol(trans, root, dir,
2918 BTRFS_I(inode)->location.objectid,
2919 dentry->d_name.name,
2920 dentry->d_name.len);
2921 goto out;
2922 }
2923
Josef Bacik7b128762008-07-24 12:17:14 -04002924 err = btrfs_orphan_add(trans, inode);
2925 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002926 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04002927
Chris Mason39279cc2007-06-12 06:35:45 -04002928 /* now the directory is empty */
Chris Masone02119d2008-09-05 16:13:11 -04002929 err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
2930 dentry->d_name.name, dentry->d_name.len);
Chris Masond3977122009-01-05 21:25:51 -05002931 if (!err)
Chris Masondbe674a2008-07-17 12:54:05 -04002932 btrfs_i_size_write(inode, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002933out:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002934 nr = trans->blocks_used;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002935 __unlink_end_trans(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002936 btrfs_btree_balance_dirty(root, nr);
Chris Mason39544012007-12-12 14:38:19 -05002937
Chris Mason39279cc2007-06-12 06:35:45 -04002938 return err;
2939}
2940
Chris Mason323ac952008-10-01 19:05:46 -04002941/*
Chris Mason39279cc2007-06-12 06:35:45 -04002942 * this can truncate away extent items, csum items and directory items.
2943 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04002944 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04002945 *
2946 * csum items that cross the new i_size are truncated to the new size
2947 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04002948 *
2949 * min_type is the minimum key type to truncate down to. If set to 0, this
2950 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04002951 */
Yan, Zheng80825102009-11-12 09:35:36 +00002952int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
2953 struct btrfs_root *root,
2954 struct inode *inode,
2955 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04002956{
Chris Mason39279cc2007-06-12 06:35:45 -04002957 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002958 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002959 struct btrfs_file_extent_item *fi;
Yan, Zheng80825102009-11-12 09:35:36 +00002960 struct btrfs_key key;
2961 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04002962 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04002963 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002964 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002965 u64 item_end = 0;
Yan, Zheng80825102009-11-12 09:35:36 +00002966 u64 mask = root->sectorsize - 1;
2967 u32 found_type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -04002968 int found_extent;
2969 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05002970 int pending_del_nr = 0;
2971 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04002972 int extent_type = -1;
Chris Mason771ed682008-11-06 22:02:51 -05002973 int encoding;
Yan, Zheng80825102009-11-12 09:35:36 +00002974 int ret;
2975 int err = 0;
Li Zefan33345d012011-04-20 10:31:50 +08002976 u64 ino = btrfs_ino(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00002977
2978 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04002979
Mark Fasheh0eb0e192011-07-12 16:44:10 -07002980 path = btrfs_alloc_path();
2981 if (!path)
2982 return -ENOMEM;
2983 path->reada = -1;
2984
Josef Bacik0af3d002010-06-21 14:48:16 -04002985 if (root->ref_cows || root == root->fs_info->tree_root)
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002986 btrfs_drop_extent_cache(inode, new_size & (~mask), (u64)-1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00002987
Miao Xie16cdcec2011-04-22 18:12:22 +08002988 /*
2989 * This function is also used to drop the items in the log tree before
2990 * we relog the inode, so if root != BTRFS_I(inode)->root, it means
2991 * it is used to drop the loged items. So we shouldn't kill the delayed
2992 * items.
2993 */
2994 if (min_type == 0 && root == BTRFS_I(inode)->root)
2995 btrfs_kill_delayed_inode_items(inode);
2996
Li Zefan33345d012011-04-20 10:31:50 +08002997 key.objectid = ino;
Chris Mason39279cc2007-06-12 06:35:45 -04002998 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04002999 key.type = (u8)-1;
3000
Chris Mason85e21ba2008-01-29 15:11:36 -05003001search_again:
Chris Masonb9473432009-03-13 11:00:37 -04003002 path->leave_spinning = 1;
Chris Mason85e21ba2008-01-29 15:11:36 -05003003 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Yan, Zheng80825102009-11-12 09:35:36 +00003004 if (ret < 0) {
3005 err = ret;
3006 goto out;
3007 }
Chris Masond3977122009-01-05 21:25:51 -05003008
Chris Mason85e21ba2008-01-29 15:11:36 -05003009 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003010 /* there are no items in the tree for us to truncate, we're
3011 * done
3012 */
Yan, Zheng80825102009-11-12 09:35:36 +00003013 if (path->slots[0] == 0)
3014 goto out;
Chris Mason85e21ba2008-01-29 15:11:36 -05003015 path->slots[0]--;
3016 }
3017
Chris Masond3977122009-01-05 21:25:51 -05003018 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04003019 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04003020 leaf = path->nodes[0];
3021 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3022 found_type = btrfs_key_type(&found_key);
Chris Mason771ed682008-11-06 22:02:51 -05003023 encoding = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003024
Li Zefan33345d012011-04-20 10:31:50 +08003025 if (found_key.objectid != ino)
Chris Mason39279cc2007-06-12 06:35:45 -04003026 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003027
Chris Mason85e21ba2008-01-29 15:11:36 -05003028 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003029 break;
3030
Chris Mason5f39d392007-10-15 16:14:19 -04003031 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04003032 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04003033 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04003034 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04003035 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05003036 encoding = btrfs_file_extent_compression(leaf, fi);
3037 encoding |= btrfs_file_extent_encryption(leaf, fi);
3038 encoding |= btrfs_file_extent_other_encoding(leaf, fi);
3039
Chris Mason179e29e2007-11-01 11:28:41 -04003040 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04003041 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04003042 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04003043 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04003044 item_end += btrfs_file_extent_inline_len(leaf,
Chris Masonc8b97812008-10-29 14:49:59 -04003045 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003046 }
Yan008630c2007-11-07 13:31:09 -05003047 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04003048 }
Yan, Zheng80825102009-11-12 09:35:36 +00003049 if (found_type > min_type) {
Chris Mason39279cc2007-06-12 06:35:45 -04003050 del_item = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00003051 } else {
3052 if (item_end < new_size)
3053 break;
3054 if (found_key.offset >= new_size)
3055 del_item = 1;
3056 else
3057 del_item = 0;
3058 }
Chris Mason39279cc2007-06-12 06:35:45 -04003059 found_extent = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003060 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04003061 if (found_type != BTRFS_EXTENT_DATA_KEY)
3062 goto delete;
3063
3064 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04003065 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04003066 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05003067 if (!del_item && !encoding) {
Chris Masondb945352007-10-15 16:15:53 -04003068 u64 orig_num_bytes =
3069 btrfs_file_extent_num_bytes(leaf, fi);
Chris Masone02119d2008-09-05 16:13:11 -04003070 extent_num_bytes = new_size -
Chris Mason5f39d392007-10-15 16:14:19 -04003071 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -05003072 extent_num_bytes = extent_num_bytes &
3073 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04003074 btrfs_set_file_extent_num_bytes(leaf, fi,
3075 extent_num_bytes);
3076 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05003077 extent_num_bytes);
Chris Masone02119d2008-09-05 16:13:11 -04003078 if (root->ref_cows && extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003079 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04003080 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003081 } else {
Chris Masondb945352007-10-15 16:15:53 -04003082 extent_num_bytes =
3083 btrfs_file_extent_disk_num_bytes(leaf,
3084 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003085 extent_offset = found_key.offset -
3086 btrfs_file_extent_offset(leaf, fi);
3087
Chris Mason39279cc2007-06-12 06:35:45 -04003088 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05003089 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003090 if (extent_start != 0) {
3091 found_extent = 1;
Chris Masone02119d2008-09-05 16:13:11 -04003092 if (root->ref_cows)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003093 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04003094 }
3095 }
Chris Mason90692182008-02-08 13:49:28 -05003096 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003097 /*
3098 * we can't truncate inline items that have had
3099 * special encodings
3100 */
3101 if (!del_item &&
3102 btrfs_file_extent_compression(leaf, fi) == 0 &&
3103 btrfs_file_extent_encryption(leaf, fi) == 0 &&
3104 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003105 u32 size = new_size - found_key.offset;
3106
3107 if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003108 inode_sub_bytes(inode, item_end + 1 -
3109 new_size);
Chris Masone02119d2008-09-05 16:13:11 -04003110 }
3111 size =
3112 btrfs_file_extent_calc_inline_size(size);
Chris Mason90692182008-02-08 13:49:28 -05003113 ret = btrfs_truncate_item(trans, root, path,
Chris Masone02119d2008-09-05 16:13:11 -04003114 size, 1);
Chris Masone02119d2008-09-05 16:13:11 -04003115 } else if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003116 inode_sub_bytes(inode, item_end + 1 -
3117 found_key.offset);
Chris Mason90692182008-02-08 13:49:28 -05003118 }
Chris Mason39279cc2007-06-12 06:35:45 -04003119 }
Chris Mason179e29e2007-11-01 11:28:41 -04003120delete:
Chris Mason39279cc2007-06-12 06:35:45 -04003121 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05003122 if (!pending_del_nr) {
3123 /* no pending yet, add ourselves */
3124 pending_del_slot = path->slots[0];
3125 pending_del_nr = 1;
3126 } else if (pending_del_nr &&
3127 path->slots[0] + 1 == pending_del_slot) {
3128 /* hop on the pending chunk */
3129 pending_del_nr++;
3130 pending_del_slot = path->slots[0];
3131 } else {
Chris Masond3977122009-01-05 21:25:51 -05003132 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05003133 }
Chris Mason39279cc2007-06-12 06:35:45 -04003134 } else {
3135 break;
3136 }
Josef Bacik0af3d002010-06-21 14:48:16 -04003137 if (found_extent && (root->ref_cows ||
3138 root == root->fs_info->tree_root)) {
Chris Masonb9473432009-03-13 11:00:37 -04003139 btrfs_set_path_blocking(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003140 ret = btrfs_free_extent(trans, root, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003141 extent_num_bytes, 0,
3142 btrfs_header_owner(leaf),
Li Zefan33345d012011-04-20 10:31:50 +08003143 ino, extent_offset);
Chris Mason39279cc2007-06-12 06:35:45 -04003144 BUG_ON(ret);
3145 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003146
Yan, Zheng80825102009-11-12 09:35:36 +00003147 if (found_type == BTRFS_INODE_ITEM_KEY)
3148 break;
3149
3150 if (path->slots[0] == 0 ||
3151 path->slots[0] != pending_del_slot) {
Li Zefan82d59022011-04-20 10:33:24 +08003152 if (root->ref_cows &&
3153 BTRFS_I(inode)->location.objectid !=
3154 BTRFS_FREE_INO_OBJECTID) {
Yan, Zheng80825102009-11-12 09:35:36 +00003155 err = -EAGAIN;
3156 goto out;
3157 }
3158 if (pending_del_nr) {
3159 ret = btrfs_del_items(trans, root, path,
3160 pending_del_slot,
3161 pending_del_nr);
3162 BUG_ON(ret);
3163 pending_del_nr = 0;
3164 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003165 btrfs_release_path(path);
Chris Mason85e21ba2008-01-29 15:11:36 -05003166 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00003167 } else {
3168 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05003169 }
Chris Mason39279cc2007-06-12 06:35:45 -04003170 }
Yan, Zheng80825102009-11-12 09:35:36 +00003171out:
Chris Mason85e21ba2008-01-29 15:11:36 -05003172 if (pending_del_nr) {
3173 ret = btrfs_del_items(trans, root, path, pending_del_slot,
3174 pending_del_nr);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003175 BUG_ON(ret);
Chris Mason85e21ba2008-01-29 15:11:36 -05003176 }
Chris Mason39279cc2007-06-12 06:35:45 -04003177 btrfs_free_path(path);
Yan, Zheng80825102009-11-12 09:35:36 +00003178 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003179}
3180
Chris Masona52d9a82007-08-27 16:49:44 -04003181/*
3182 * taken from block_truncate_page, but does cow as it zeros out
3183 * any bytes left in the last page in the file.
3184 */
3185static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
3186{
3187 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -04003188 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003189 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
3190 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003191 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003192 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04003193 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04003194 pgoff_t index = from >> PAGE_CACHE_SHIFT;
3195 unsigned offset = from & (PAGE_CACHE_SIZE-1);
3196 struct page *page;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04003197 gfp_t mask = btrfs_alloc_write_mask(mapping);
Chris Masona52d9a82007-08-27 16:49:44 -04003198 int ret = 0;
3199 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003200 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04003201
3202 if ((offset & (blocksize - 1)) == 0)
3203 goto out;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003204 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003205 if (ret)
3206 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003207
3208 ret = -ENOMEM;
Chris Mason211c17f2008-05-15 09:13:45 -04003209again:
Josef Bacik3b16a4e2011-09-21 15:05:58 -04003210 page = find_or_create_page(mapping, index, mask);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003211 if (!page) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003212 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Masona52d9a82007-08-27 16:49:44 -04003213 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04003214 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003215
3216 page_start = page_offset(page);
3217 page_end = page_start + PAGE_CACHE_SIZE - 1;
3218
Chris Masona52d9a82007-08-27 16:49:44 -04003219 if (!PageUptodate(page)) {
3220 ret = btrfs_readpage(NULL, page);
3221 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04003222 if (page->mapping != mapping) {
3223 unlock_page(page);
3224 page_cache_release(page);
3225 goto again;
3226 }
Chris Masona52d9a82007-08-27 16:49:44 -04003227 if (!PageUptodate(page)) {
3228 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04003229 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04003230 }
3231 }
Chris Mason211c17f2008-05-15 09:13:45 -04003232 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003233
Josef Bacik2ac55d42010-02-03 19:33:23 +00003234 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state,
3235 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003236 set_page_extent_mapped(page);
3237
3238 ordered = btrfs_lookup_ordered_extent(inode, page_start);
3239 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003240 unlock_extent_cached(io_tree, page_start, page_end,
3241 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003242 unlock_page(page);
3243 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04003244 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003245 btrfs_put_ordered_extent(ordered);
3246 goto again;
3247 }
3248
Josef Bacik2ac55d42010-02-03 19:33:23 +00003249 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Josef Bacik5d5e1032009-10-13 16:46:49 -04003250 EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003251 0, 0, &cached_state, GFP_NOFS);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003252
Josef Bacik2ac55d42010-02-03 19:33:23 +00003253 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
3254 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003255 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003256 unlock_extent_cached(io_tree, page_start, page_end,
3257 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003258 goto out_unlock;
3259 }
3260
Chris Masone6dcd2d2008-07-17 12:53:50 -04003261 ret = 0;
3262 if (offset != PAGE_CACHE_SIZE) {
3263 kaddr = kmap(page);
3264 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
3265 flush_dcache_page(page);
3266 kunmap(page);
3267 }
Chris Mason247e7432008-07-17 12:53:51 -04003268 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003269 set_page_dirty(page);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003270 unlock_extent_cached(io_tree, page_start, page_end, &cached_state,
3271 GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04003272
Chris Mason89642222008-07-24 09:41:53 -04003273out_unlock:
Josef Bacik5d5e1032009-10-13 16:46:49 -04003274 if (ret)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003275 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason39279cc2007-06-12 06:35:45 -04003276 unlock_page(page);
3277 page_cache_release(page);
3278out:
3279 return ret;
3280}
3281
Josef Bacik695a0d02011-03-04 15:46:53 -05003282/*
3283 * This function puts in dummy file extents for the area we're creating a hole
3284 * for. So if we are truncating this file to a larger size we need to insert
3285 * these file extents so that btrfs_get_extent will return a EXTENT_MAP_HOLE for
3286 * the range between oldsize and size
3287 */
Josef Bacika41ad392011-01-31 15:30:16 -05003288int btrfs_cont_expand(struct inode *inode, loff_t oldsize, loff_t size)
Yan Zheng9036c102008-10-30 14:19:41 -04003289{
3290 struct btrfs_trans_handle *trans;
3291 struct btrfs_root *root = BTRFS_I(inode)->root;
3292 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003293 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003294 struct extent_state *cached_state = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04003295 u64 mask = root->sectorsize - 1;
Josef Bacika41ad392011-01-31 15:30:16 -05003296 u64 hole_start = (oldsize + mask) & ~mask;
Yan Zheng9036c102008-10-30 14:19:41 -04003297 u64 block_end = (size + mask) & ~mask;
3298 u64 last_byte;
3299 u64 cur_offset;
3300 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003301 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003302
3303 if (size <= hole_start)
3304 return 0;
3305
Yan Zheng9036c102008-10-30 14:19:41 -04003306 while (1) {
3307 struct btrfs_ordered_extent *ordered;
3308 btrfs_wait_ordered_range(inode, hole_start,
3309 block_end - hole_start);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003310 lock_extent_bits(io_tree, hole_start, block_end - 1, 0,
3311 &cached_state, GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003312 ordered = btrfs_lookup_ordered_extent(inode, hole_start);
3313 if (!ordered)
3314 break;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003315 unlock_extent_cached(io_tree, hole_start, block_end - 1,
3316 &cached_state, GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003317 btrfs_put_ordered_extent(ordered);
3318 }
3319
Yan Zheng9036c102008-10-30 14:19:41 -04003320 cur_offset = hole_start;
3321 while (1) {
3322 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
3323 block_end - cur_offset, 0);
David Sterbac7040052011-04-19 18:00:01 +02003324 BUG_ON(IS_ERR_OR_NULL(em));
Yan Zheng9036c102008-10-30 14:19:41 -04003325 last_byte = min(extent_map_end(em), block_end);
3326 last_byte = (last_byte + mask) & ~mask;
Yan, Zheng80825102009-11-12 09:35:36 +00003327 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Chris Mason771ed682008-11-06 22:02:51 -05003328 u64 hint_byte = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003329 hole_size = last_byte - cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00003330
Yan, Zhenga22285a2010-05-16 10:48:46 -04003331 trans = btrfs_start_transaction(root, 2);
3332 if (IS_ERR(trans)) {
3333 err = PTR_ERR(trans);
Chris Mason771ed682008-11-06 22:02:51 -05003334 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003335 }
Yan, Zheng80825102009-11-12 09:35:36 +00003336
3337 err = btrfs_drop_extents(trans, inode, cur_offset,
3338 cur_offset + hole_size,
3339 &hint_byte, 1);
Miao Xie5b397372011-09-11 10:52:24 -04003340 if (err) {
3341 btrfs_end_transaction(trans, root);
Josef Bacik3893e332011-01-31 16:03:11 -05003342 break;
Miao Xie5b397372011-09-11 10:52:24 -04003343 }
Josef Bacik9ed74f22009-09-11 16:12:44 -04003344
Yan Zheng9036c102008-10-30 14:19:41 -04003345 err = btrfs_insert_file_extent(trans, root,
Li Zefan33345d012011-04-20 10:31:50 +08003346 btrfs_ino(inode), cur_offset, 0,
Yan Zheng9036c102008-10-30 14:19:41 -04003347 0, hole_size, 0, hole_size,
3348 0, 0, 0);
Miao Xie5b397372011-09-11 10:52:24 -04003349 if (err) {
3350 btrfs_end_transaction(trans, root);
Josef Bacik3893e332011-01-31 16:03:11 -05003351 break;
Miao Xie5b397372011-09-11 10:52:24 -04003352 }
Yan, Zheng80825102009-11-12 09:35:36 +00003353
Yan Zheng9036c102008-10-30 14:19:41 -04003354 btrfs_drop_extent_cache(inode, hole_start,
3355 last_byte - 1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003356
3357 btrfs_end_transaction(trans, root);
Yan Zheng9036c102008-10-30 14:19:41 -04003358 }
3359 free_extent_map(em);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003360 em = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04003361 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00003362 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04003363 break;
3364 }
3365
Yan, Zhenga22285a2010-05-16 10:48:46 -04003366 free_extent_map(em);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003367 unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state,
3368 GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003369 return err;
3370}
3371
Josef Bacika41ad392011-01-31 15:30:16 -05003372static int btrfs_setsize(struct inode *inode, loff_t newsize)
Yan, Zheng80825102009-11-12 09:35:36 +00003373{
Josef Bacika41ad392011-01-31 15:30:16 -05003374 loff_t oldsize = i_size_read(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003375 int ret;
3376
Josef Bacika41ad392011-01-31 15:30:16 -05003377 if (newsize == oldsize)
Yan, Zheng80825102009-11-12 09:35:36 +00003378 return 0;
3379
Josef Bacika41ad392011-01-31 15:30:16 -05003380 if (newsize > oldsize) {
3381 i_size_write(inode, newsize);
3382 btrfs_ordered_update_i_size(inode, i_size_read(inode), NULL);
3383 truncate_pagecache(inode, oldsize, newsize);
3384 ret = btrfs_cont_expand(inode, oldsize, newsize);
Yan, Zheng80825102009-11-12 09:35:36 +00003385 if (ret) {
Josef Bacika41ad392011-01-31 15:30:16 -05003386 btrfs_setsize(inode, oldsize);
Yan, Zheng80825102009-11-12 09:35:36 +00003387 return ret;
3388 }
3389
Josef Bacik22c44fe2011-11-30 10:45:38 -05003390 ret = btrfs_dirty_inode(inode);
Josef Bacika41ad392011-01-31 15:30:16 -05003391 } else {
Yan, Zheng80825102009-11-12 09:35:36 +00003392
Josef Bacika41ad392011-01-31 15:30:16 -05003393 /*
3394 * We're truncating a file that used to have good data down to
3395 * zero. Make sure it gets into the ordered flush list so that
3396 * any new writes get down to disk quickly.
3397 */
3398 if (newsize == 0)
3399 BTRFS_I(inode)->ordered_data_close = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00003400
Josef Bacika41ad392011-01-31 15:30:16 -05003401 /* we don't support swapfiles, so vmtruncate shouldn't fail */
3402 truncate_setsize(inode, newsize);
3403 ret = btrfs_truncate(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003404 }
3405
Josef Bacika41ad392011-01-31 15:30:16 -05003406 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00003407}
3408
Chris Mason39279cc2007-06-12 06:35:45 -04003409static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
3410{
3411 struct inode *inode = dentry->d_inode;
Li Zefanb83cc962010-12-20 16:04:08 +08003412 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003413 int err;
3414
Li Zefanb83cc962010-12-20 16:04:08 +08003415 if (btrfs_root_readonly(root))
3416 return -EROFS;
3417
Chris Mason39279cc2007-06-12 06:35:45 -04003418 err = inode_change_ok(inode, attr);
3419 if (err)
3420 return err;
3421
Chris Mason5a3f23d2009-03-31 13:27:11 -04003422 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Josef Bacika41ad392011-01-31 15:30:16 -05003423 err = btrfs_setsize(inode, attr->ia_size);
Yan, Zheng80825102009-11-12 09:35:36 +00003424 if (err)
3425 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003426 }
Yan Zheng9036c102008-10-30 14:19:41 -04003427
Christoph Hellwig10257742010-06-04 11:30:02 +02003428 if (attr->ia_valid) {
3429 setattr_copy(inode, attr);
Josef Bacik22c44fe2011-11-30 10:45:38 -05003430 err = btrfs_dirty_inode(inode);
Josef Bacik33268ea2008-07-24 12:16:36 -04003431
Josef Bacik22c44fe2011-11-30 10:45:38 -05003432 if (!err && attr->ia_valid & ATTR_MODE)
Christoph Hellwig10257742010-06-04 11:30:02 +02003433 err = btrfs_acl_chmod(inode);
3434 }
3435
Chris Mason39279cc2007-06-12 06:35:45 -04003436 return err;
3437}
Chris Mason61295eb2008-01-14 16:24:38 -05003438
Al Virobd555972010-06-07 11:35:40 -04003439void btrfs_evict_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003440{
3441 struct btrfs_trans_handle *trans;
3442 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik726c35f2011-09-26 15:46:06 -04003443 struct btrfs_block_rsv *rsv, *global_rsv;
Josef Bacik07127182011-08-19 10:29:59 -04003444 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003445 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04003446 int ret;
3447
liubo1abe9b82011-03-24 11:18:59 +00003448 trace_btrfs_inode_evict(inode);
3449
Chris Mason39279cc2007-06-12 06:35:45 -04003450 truncate_inode_pages(&inode->i_data, 0);
Josef Bacik0af3d002010-06-21 14:48:16 -04003451 if (inode->i_nlink && (btrfs_root_refs(&root->root_item) != 0 ||
Chris Mason2cf85722011-07-26 15:35:09 -04003452 btrfs_is_free_space_inode(root, inode)))
Al Virobd555972010-06-07 11:35:40 -04003453 goto no_delete;
3454
Chris Mason39279cc2007-06-12 06:35:45 -04003455 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04003456 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003457 goto no_delete;
3458 }
Al Virobd555972010-06-07 11:35:40 -04003459 /* do we really want it for ->i_nlink > 0 and zero btrfs_root_refs? */
Chris Mason4a096752008-07-21 10:29:44 -04003460 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04003461
Yan, Zhengc71bf092009-11-12 09:34:40 +00003462 if (root->fs_info->log_root_recovering) {
3463 BUG_ON(!list_empty(&BTRFS_I(inode)->i_orphan));
3464 goto no_delete;
3465 }
3466
Yan, Zheng76dda932009-09-21 16:00:26 -04003467 if (inode->i_nlink > 0) {
3468 BUG_ON(btrfs_root_refs(&root->root_item) != 0);
3469 goto no_delete;
3470 }
3471
Josef Bacik4289a662011-08-05 13:22:24 -04003472 rsv = btrfs_alloc_block_rsv(root);
3473 if (!rsv) {
3474 btrfs_orphan_del(NULL, inode);
3475 goto no_delete;
3476 }
Josef Bacik4a338542011-08-29 11:01:31 -04003477 rsv->size = min_size;
Josef Bacik726c35f2011-09-26 15:46:06 -04003478 global_rsv = &root->fs_info->global_block_rsv;
Josef Bacik4289a662011-08-05 13:22:24 -04003479
Chris Masondbe674a2008-07-17 12:54:05 -04003480 btrfs_i_size_write(inode, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003481
Josef Bacik4289a662011-08-05 13:22:24 -04003482 /*
3483 * This is a bit simpler than btrfs_truncate since
3484 *
3485 * 1) We've already reserved our space for our orphan item in the
3486 * unlink.
3487 * 2) We're going to delete the inode item, so we don't need to update
3488 * it at all.
3489 *
3490 * So we just need to reserve some slack space in case we add bytes when
3491 * doing the truncate.
3492 */
Yan, Zheng80825102009-11-12 09:35:36 +00003493 while (1) {
Miao Xieaa38a712011-11-18 17:43:00 +08003494 ret = btrfs_block_rsv_refill_noflush(root, rsv, min_size);
Josef Bacik726c35f2011-09-26 15:46:06 -04003495
3496 /*
3497 * Try and steal from the global reserve since we will
3498 * likely not use this space anyway, we want to try as
3499 * hard as possible to get this to work.
3500 */
3501 if (ret)
3502 ret = btrfs_block_rsv_migrate(global_rsv, rsv, min_size);
3503
Yan, Zhengd68fc572010-05-16 10:49:58 -04003504 if (ret) {
Josef Bacik4289a662011-08-05 13:22:24 -04003505 printk(KERN_WARNING "Could not get space for a "
Josef Bacik482e6dc2011-08-19 10:31:56 -04003506 "delete, will truncate on mount %d\n", ret);
Josef Bacik4289a662011-08-05 13:22:24 -04003507 btrfs_orphan_del(NULL, inode);
3508 btrfs_free_block_rsv(root, rsv);
3509 goto no_delete;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003510 }
3511
Josef Bacik4289a662011-08-05 13:22:24 -04003512 trans = btrfs_start_transaction(root, 0);
3513 if (IS_ERR(trans)) {
3514 btrfs_orphan_del(NULL, inode);
3515 btrfs_free_block_rsv(root, rsv);
3516 goto no_delete;
3517 }
3518
3519 trans->block_rsv = rsv;
3520
Yan, Zhengd68fc572010-05-16 10:49:58 -04003521 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003522 if (ret != -EAGAIN)
3523 break;
3524
3525 nr = trans->blocks_used;
3526 btrfs_end_transaction(trans, root);
3527 trans = NULL;
3528 btrfs_btree_balance_dirty(root, nr);
Josef Bacik7b128762008-07-24 12:17:14 -04003529 }
3530
Josef Bacik4289a662011-08-05 13:22:24 -04003531 btrfs_free_block_rsv(root, rsv);
3532
Yan, Zheng80825102009-11-12 09:35:36 +00003533 if (ret == 0) {
Josef Bacik4289a662011-08-05 13:22:24 -04003534 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00003535 ret = btrfs_orphan_del(trans, inode);
3536 BUG_ON(ret);
3537 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003538
Josef Bacik4289a662011-08-05 13:22:24 -04003539 trans->block_rsv = &root->fs_info->trans_block_rsv;
Li Zefan581bb052011-04-20 10:06:11 +08003540 if (!(root == root->fs_info->tree_root ||
3541 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID))
Li Zefan33345d012011-04-20 10:31:50 +08003542 btrfs_return_ino(root, btrfs_ino(inode));
Li Zefan581bb052011-04-20 10:06:11 +08003543
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003544 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04003545 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003546 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003547no_delete:
Al Virobd555972010-06-07 11:35:40 -04003548 end_writeback(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003549 return;
Chris Mason39279cc2007-06-12 06:35:45 -04003550}
3551
3552/*
3553 * this returns the key found in the dir entry in the location pointer.
3554 * If no dir entries were found, location->objectid is 0.
3555 */
3556static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
3557 struct btrfs_key *location)
3558{
3559 const char *name = dentry->d_name.name;
3560 int namelen = dentry->d_name.len;
3561 struct btrfs_dir_item *di;
3562 struct btrfs_path *path;
3563 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04003564 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003565
3566 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07003567 if (!path)
3568 return -ENOMEM;
Chris Mason39544012007-12-12 14:38:19 -05003569
Li Zefan33345d012011-04-20 10:31:50 +08003570 di = btrfs_lookup_dir_item(NULL, root, path, btrfs_ino(dir), name,
Chris Mason39279cc2007-06-12 06:35:45 -04003571 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04003572 if (IS_ERR(di))
3573 ret = PTR_ERR(di);
Chris Masond3977122009-01-05 21:25:51 -05003574
David Sterbac7040052011-04-19 18:00:01 +02003575 if (IS_ERR_OR_NULL(di))
Chris Mason39544012007-12-12 14:38:19 -05003576 goto out_err;
Chris Masond3977122009-01-05 21:25:51 -05003577
Chris Mason5f39d392007-10-15 16:14:19 -04003578 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04003579out:
Chris Mason39279cc2007-06-12 06:35:45 -04003580 btrfs_free_path(path);
3581 return ret;
Chris Mason39544012007-12-12 14:38:19 -05003582out_err:
3583 location->objectid = 0;
3584 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04003585}
3586
3587/*
3588 * when we hit a tree root in a directory, the btrfs part of the inode
3589 * needs to be changed to reflect the root directory of the tree root. This
3590 * is kind of like crossing a mount point.
3591 */
3592static int fixup_tree_root_location(struct btrfs_root *root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003593 struct inode *dir,
3594 struct dentry *dentry,
3595 struct btrfs_key *location,
3596 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04003597{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003598 struct btrfs_path *path;
3599 struct btrfs_root *new_root;
3600 struct btrfs_root_ref *ref;
3601 struct extent_buffer *leaf;
3602 int ret;
3603 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003604
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003605 path = btrfs_alloc_path();
3606 if (!path) {
3607 err = -ENOMEM;
3608 goto out;
3609 }
Chris Mason39279cc2007-06-12 06:35:45 -04003610
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003611 err = -ENOENT;
3612 ret = btrfs_find_root_ref(root->fs_info->tree_root, path,
3613 BTRFS_I(dir)->root->root_key.objectid,
3614 location->objectid);
3615 if (ret) {
3616 if (ret < 0)
3617 err = ret;
3618 goto out;
3619 }
Chris Mason39279cc2007-06-12 06:35:45 -04003620
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003621 leaf = path->nodes[0];
3622 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
Li Zefan33345d012011-04-20 10:31:50 +08003623 if (btrfs_root_ref_dirid(leaf, ref) != btrfs_ino(dir) ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003624 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
3625 goto out;
3626
3627 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
3628 (unsigned long)(ref + 1),
3629 dentry->d_name.len);
3630 if (ret)
3631 goto out;
3632
David Sterbab3b4aa72011-04-21 01:20:15 +02003633 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003634
3635 new_root = btrfs_read_fs_root_no_name(root->fs_info, location);
3636 if (IS_ERR(new_root)) {
3637 err = PTR_ERR(new_root);
3638 goto out;
3639 }
3640
3641 if (btrfs_root_refs(&new_root->root_item) == 0) {
3642 err = -ENOENT;
3643 goto out;
3644 }
3645
3646 *sub_root = new_root;
3647 location->objectid = btrfs_root_dirid(&new_root->root_item);
3648 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04003649 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003650 err = 0;
3651out:
3652 btrfs_free_path(path);
3653 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003654}
3655
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003656static void inode_tree_add(struct inode *inode)
3657{
3658 struct btrfs_root *root = BTRFS_I(inode)->root;
3659 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003660 struct rb_node **p;
3661 struct rb_node *parent;
Li Zefan33345d012011-04-20 10:31:50 +08003662 u64 ino = btrfs_ino(inode);
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003663again:
3664 p = &root->inode_tree.rb_node;
3665 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003666
Al Viro1d3382cb2010-10-23 15:19:20 -04003667 if (inode_unhashed(inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04003668 return;
3669
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003670 spin_lock(&root->inode_lock);
3671 while (*p) {
3672 parent = *p;
3673 entry = rb_entry(parent, struct btrfs_inode, rb_node);
3674
Li Zefan33345d012011-04-20 10:31:50 +08003675 if (ino < btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003676 p = &parent->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08003677 else if (ino > btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003678 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003679 else {
3680 WARN_ON(!(entry->vfs_inode.i_state &
Al Viroa4ffdde2010-06-02 17:38:30 -04003681 (I_WILL_FREE | I_FREEING)));
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003682 rb_erase(parent, &root->inode_tree);
3683 RB_CLEAR_NODE(parent);
3684 spin_unlock(&root->inode_lock);
3685 goto again;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003686 }
3687 }
3688 rb_link_node(&BTRFS_I(inode)->rb_node, parent, p);
3689 rb_insert_color(&BTRFS_I(inode)->rb_node, &root->inode_tree);
3690 spin_unlock(&root->inode_lock);
3691}
3692
3693static void inode_tree_del(struct inode *inode)
3694{
3695 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04003696 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003697
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003698 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003699 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003700 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003701 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04003702 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003703 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003704 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04003705
Josef Bacik0af3d002010-06-21 14:48:16 -04003706 /*
3707 * Free space cache has inodes in the tree root, but the tree root has a
3708 * root_refs of 0, so this could end up dropping the tree root as a
3709 * snapshot, so we need the extra !root->fs_info->tree_root check to
3710 * make sure we don't drop it.
3711 */
3712 if (empty && btrfs_root_refs(&root->root_item) == 0 &&
3713 root != root->fs_info->tree_root) {
Yan, Zheng76dda932009-09-21 16:00:26 -04003714 synchronize_srcu(&root->fs_info->subvol_srcu);
3715 spin_lock(&root->inode_lock);
3716 empty = RB_EMPTY_ROOT(&root->inode_tree);
3717 spin_unlock(&root->inode_lock);
3718 if (empty)
3719 btrfs_add_dead_root(root);
3720 }
3721}
3722
3723int btrfs_invalidate_inodes(struct btrfs_root *root)
3724{
3725 struct rb_node *node;
3726 struct rb_node *prev;
3727 struct btrfs_inode *entry;
3728 struct inode *inode;
3729 u64 objectid = 0;
3730
3731 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
3732
3733 spin_lock(&root->inode_lock);
3734again:
3735 node = root->inode_tree.rb_node;
3736 prev = NULL;
3737 while (node) {
3738 prev = node;
3739 entry = rb_entry(node, struct btrfs_inode, rb_node);
3740
Li Zefan33345d012011-04-20 10:31:50 +08003741 if (objectid < btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04003742 node = node->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08003743 else if (objectid > btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04003744 node = node->rb_right;
3745 else
3746 break;
3747 }
3748 if (!node) {
3749 while (prev) {
3750 entry = rb_entry(prev, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08003751 if (objectid <= btrfs_ino(&entry->vfs_inode)) {
Yan, Zheng76dda932009-09-21 16:00:26 -04003752 node = prev;
3753 break;
3754 }
3755 prev = rb_next(prev);
3756 }
3757 }
3758 while (node) {
3759 entry = rb_entry(node, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08003760 objectid = btrfs_ino(&entry->vfs_inode) + 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04003761 inode = igrab(&entry->vfs_inode);
3762 if (inode) {
3763 spin_unlock(&root->inode_lock);
3764 if (atomic_read(&inode->i_count) > 1)
3765 d_prune_aliases(inode);
3766 /*
Al Viro45321ac2010-06-07 13:43:19 -04003767 * btrfs_drop_inode will have it removed from
Yan, Zheng76dda932009-09-21 16:00:26 -04003768 * the inode cache when its usage count
3769 * hits zero.
3770 */
3771 iput(inode);
3772 cond_resched();
3773 spin_lock(&root->inode_lock);
3774 goto again;
3775 }
3776
3777 if (cond_resched_lock(&root->inode_lock))
3778 goto again;
3779
3780 node = rb_next(node);
3781 }
3782 spin_unlock(&root->inode_lock);
3783 return 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003784}
3785
Chris Masone02119d2008-09-05 16:13:11 -04003786static int btrfs_init_locked_inode(struct inode *inode, void *p)
3787{
3788 struct btrfs_iget_args *args = p;
3789 inode->i_ino = args->ino;
Chris Masone02119d2008-09-05 16:13:11 -04003790 BTRFS_I(inode)->root = args->root;
Josef Bacik6a632092009-02-20 11:00:09 -05003791 btrfs_set_inode_space_info(args->root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003792 return 0;
3793}
3794
3795static int btrfs_find_actor(struct inode *inode, void *opaque)
3796{
3797 struct btrfs_iget_args *args = opaque;
Li Zefan33345d012011-04-20 10:31:50 +08003798 return args->ino == btrfs_ino(inode) &&
Chris Masond3977122009-01-05 21:25:51 -05003799 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003800}
3801
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003802static struct inode *btrfs_iget_locked(struct super_block *s,
3803 u64 objectid,
3804 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04003805{
3806 struct inode *inode;
3807 struct btrfs_iget_args args;
3808 args.ino = objectid;
3809 args.root = root;
3810
3811 inode = iget5_locked(s, objectid, btrfs_find_actor,
3812 btrfs_init_locked_inode,
3813 (void *)&args);
3814 return inode;
3815}
3816
Balaji Rao1a54ef82008-07-21 02:01:04 +05303817/* Get an inode object given its location and corresponding root.
3818 * Returns in *is_new if the inode was read from disk
3819 */
3820struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
Josef Bacik73f73412009-12-04 17:38:27 +00003821 struct btrfs_root *root, int *new)
Balaji Rao1a54ef82008-07-21 02:01:04 +05303822{
3823 struct inode *inode;
3824
3825 inode = btrfs_iget_locked(s, location->objectid, root);
3826 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003827 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05303828
3829 if (inode->i_state & I_NEW) {
3830 BTRFS_I(inode)->root = root;
3831 memcpy(&BTRFS_I(inode)->location, location, sizeof(*location));
3832 btrfs_read_locked_inode(inode);
Mark Fasheh1748f842011-07-12 11:25:31 -07003833 if (!is_bad_inode(inode)) {
3834 inode_tree_add(inode);
3835 unlock_new_inode(inode);
3836 if (new)
3837 *new = 1;
3838 } else {
Sergei Trofimoviche0b6d652011-09-11 10:52:24 -04003839 unlock_new_inode(inode);
3840 iput(inode);
3841 inode = ERR_PTR(-ESTALE);
Mark Fasheh1748f842011-07-12 11:25:31 -07003842 }
3843 }
3844
Balaji Rao1a54ef82008-07-21 02:01:04 +05303845 return inode;
3846}
3847
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003848static struct inode *new_simple_dir(struct super_block *s,
3849 struct btrfs_key *key,
3850 struct btrfs_root *root)
3851{
3852 struct inode *inode = new_inode(s);
3853
3854 if (!inode)
3855 return ERR_PTR(-ENOMEM);
3856
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003857 BTRFS_I(inode)->root = root;
3858 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
3859 BTRFS_I(inode)->dummy_inode = 1;
3860
3861 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
3862 inode->i_op = &simple_dir_inode_operations;
3863 inode->i_fop = &simple_dir_operations;
3864 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
3865 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
3866
3867 return inode;
3868}
3869
Chris Mason3de45862008-11-17 21:02:50 -05003870struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04003871{
Chris Masond3977122009-01-05 21:25:51 -05003872 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003873 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003874 struct btrfs_root *sub_root = root;
3875 struct btrfs_key location;
Yan, Zheng76dda932009-09-21 16:00:26 -04003876 int index;
Josef Bacikb4aff1f2011-06-28 16:18:59 -04003877 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003878
3879 if (dentry->d_name.len > BTRFS_NAME_LEN)
3880 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04003881
Josef Bacikb4aff1f2011-06-28 16:18:59 -04003882 if (unlikely(d_need_lookup(dentry))) {
3883 memcpy(&location, dentry->d_fsdata, sizeof(struct btrfs_key));
3884 kfree(dentry->d_fsdata);
3885 dentry->d_fsdata = NULL;
Josef Bacika66e7cc2011-09-18 10:34:03 -04003886 /* This thing is hashed, drop it for now */
3887 d_drop(dentry);
Josef Bacikb4aff1f2011-06-28 16:18:59 -04003888 } else {
3889 ret = btrfs_inode_by_name(dir, dentry, &location);
3890 }
Chris Mason5f39d392007-10-15 16:14:19 -04003891
Chris Mason39279cc2007-06-12 06:35:45 -04003892 if (ret < 0)
3893 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04003894
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003895 if (location.objectid == 0)
3896 return NULL;
3897
3898 if (location.type == BTRFS_INODE_ITEM_KEY) {
Josef Bacik73f73412009-12-04 17:38:27 +00003899 inode = btrfs_iget(dir->i_sb, &location, root, NULL);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003900 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04003901 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003902
3903 BUG_ON(location.type != BTRFS_ROOT_ITEM_KEY);
3904
Yan, Zheng76dda932009-09-21 16:00:26 -04003905 index = srcu_read_lock(&root->fs_info->subvol_srcu);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003906 ret = fixup_tree_root_location(root, dir, dentry,
3907 &location, &sub_root);
3908 if (ret < 0) {
3909 if (ret != -ENOENT)
3910 inode = ERR_PTR(ret);
3911 else
3912 inode = new_simple_dir(dir->i_sb, &location, sub_root);
3913 } else {
Josef Bacik73f73412009-12-04 17:38:27 +00003914 inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003915 }
Yan, Zheng76dda932009-09-21 16:00:26 -04003916 srcu_read_unlock(&root->fs_info->subvol_srcu, index);
3917
Julia Lawall34d19ba2011-01-24 19:55:19 +00003918 if (!IS_ERR(inode) && root != sub_root) {
Yan, Zhengc71bf092009-11-12 09:34:40 +00003919 down_read(&root->fs_info->cleanup_work_sem);
3920 if (!(inode->i_sb->s_flags & MS_RDONLY))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003921 ret = btrfs_orphan_cleanup(sub_root);
Yan, Zhengc71bf092009-11-12 09:34:40 +00003922 up_read(&root->fs_info->cleanup_work_sem);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003923 if (ret)
3924 inode = ERR_PTR(ret);
Yan, Zhengc71bf092009-11-12 09:34:40 +00003925 }
3926
Chris Mason3de45862008-11-17 21:02:50 -05003927 return inode;
3928}
3929
Nick Pigginfe15ce42011-01-07 17:49:23 +11003930static int btrfs_dentry_delete(const struct dentry *dentry)
Yan, Zheng76dda932009-09-21 16:00:26 -04003931{
3932 struct btrfs_root *root;
3933
Yan, Zhengefefb142009-10-09 09:25:16 -04003934 if (!dentry->d_inode && !IS_ROOT(dentry))
3935 dentry = dentry->d_parent;
Yan, Zheng76dda932009-09-21 16:00:26 -04003936
Yan, Zhengefefb142009-10-09 09:25:16 -04003937 if (dentry->d_inode) {
3938 root = BTRFS_I(dentry->d_inode)->root;
3939 if (btrfs_root_refs(&root->root_item) == 0)
3940 return 1;
3941 }
Yan, Zheng76dda932009-09-21 16:00:26 -04003942 return 0;
3943}
3944
Josef Bacikb4aff1f2011-06-28 16:18:59 -04003945static void btrfs_dentry_release(struct dentry *dentry)
3946{
3947 if (dentry->d_fsdata)
3948 kfree(dentry->d_fsdata);
3949}
3950
Chris Mason3de45862008-11-17 21:02:50 -05003951static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
3952 struct nameidata *nd)
3953{
Josef Bacika66e7cc2011-09-18 10:34:03 -04003954 struct dentry *ret;
3955
3956 ret = d_splice_alias(btrfs_lookup_dentry(dir, dentry), dentry);
3957 if (unlikely(d_need_lookup(dentry))) {
3958 spin_lock(&dentry->d_lock);
3959 dentry->d_flags &= ~DCACHE_NEED_LOOKUP;
3960 spin_unlock(&dentry->d_lock);
3961 }
3962 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04003963}
3964
Miao Xie16cdcec2011-04-22 18:12:22 +08003965unsigned char btrfs_filetype_table[] = {
Chris Mason39279cc2007-06-12 06:35:45 -04003966 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
3967};
3968
David Woodhousecbdf5a22008-08-06 19:42:33 +01003969static int btrfs_real_readdir(struct file *filp, void *dirent,
3970 filldir_t filldir)
Chris Mason39279cc2007-06-12 06:35:45 -04003971{
Chris Mason6da6aba2007-12-18 16:15:09 -05003972 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04003973 struct btrfs_root *root = BTRFS_I(inode)->root;
3974 struct btrfs_item *item;
3975 struct btrfs_dir_item *di;
3976 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04003977 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04003978 struct btrfs_path *path;
Miao Xie16cdcec2011-04-22 18:12:22 +08003979 struct list_head ins_list;
3980 struct list_head del_list;
Josef Bacikb4aff1f2011-06-28 16:18:59 -04003981 struct qstr q;
Chris Mason39279cc2007-06-12 06:35:45 -04003982 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04003983 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003984 int slot;
Chris Mason39279cc2007-06-12 06:35:45 -04003985 unsigned char d_type;
3986 int over = 0;
3987 u32 di_cur;
3988 u32 di_total;
3989 u32 di_len;
3990 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04003991 char tmp_name[32];
3992 char *name_ptr;
3993 int name_len;
Miao Xie16cdcec2011-04-22 18:12:22 +08003994 int is_curr = 0; /* filp->f_pos points to the current index? */
Chris Mason39279cc2007-06-12 06:35:45 -04003995
3996 /* FIXME, use a real flag for deciding about the key type */
3997 if (root->fs_info->tree_root == root)
3998 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04003999
Chris Mason39544012007-12-12 14:38:19 -05004000 /* special case for "." */
4001 if (filp->f_pos == 0) {
Hidetoshi Seto3765fef2011-09-18 10:20:46 -04004002 over = filldir(dirent, ".", 1,
4003 filp->f_pos, btrfs_ino(inode), DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05004004 if (over)
4005 return 0;
4006 filp->f_pos = 1;
4007 }
Chris Mason39544012007-12-12 14:38:19 -05004008 /* special case for .., just use the back ref */
4009 if (filp->f_pos == 1) {
David Woodhouse5ecc7e52008-08-17 15:14:48 +01004010 u64 pino = parent_ino(filp->f_path.dentry);
Chris Mason39544012007-12-12 14:38:19 -05004011 over = filldir(dirent, "..", 2,
Hidetoshi Seto3765fef2011-09-18 10:20:46 -04004012 filp->f_pos, pino, DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05004013 if (over)
David Woodhouse49593bf2008-08-17 17:08:36 +01004014 return 0;
Chris Mason39544012007-12-12 14:38:19 -05004015 filp->f_pos = 2;
4016 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004017 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08004018 if (!path)
4019 return -ENOMEM;
Chris Masonff5714c2011-05-28 07:00:39 -04004020
Josef Bacik026fd312011-05-13 10:32:11 -04004021 path->reada = 1;
David Woodhouse49593bf2008-08-17 17:08:36 +01004022
Miao Xie16cdcec2011-04-22 18:12:22 +08004023 if (key_type == BTRFS_DIR_INDEX_KEY) {
4024 INIT_LIST_HEAD(&ins_list);
4025 INIT_LIST_HEAD(&del_list);
4026 btrfs_get_delayed_items(inode, &ins_list, &del_list);
4027 }
4028
Chris Mason39279cc2007-06-12 06:35:45 -04004029 btrfs_set_key_type(&key, key_type);
4030 key.offset = filp->f_pos;
Li Zefan33345d012011-04-20 10:31:50 +08004031 key.objectid = btrfs_ino(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004032
Chris Mason39279cc2007-06-12 06:35:45 -04004033 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4034 if (ret < 0)
4035 goto err;
David Woodhouse49593bf2008-08-17 17:08:36 +01004036
4037 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04004038 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -04004039 slot = path->slots[0];
Li Zefanb9e03af2011-03-23 10:43:58 +08004040 if (slot >= btrfs_header_nritems(leaf)) {
4041 ret = btrfs_next_leaf(root, path);
4042 if (ret < 0)
4043 goto err;
4044 else if (ret > 0)
4045 break;
4046 continue;
Chris Mason39279cc2007-06-12 06:35:45 -04004047 }
Chris Mason3de45862008-11-17 21:02:50 -05004048
Chris Mason5f39d392007-10-15 16:14:19 -04004049 item = btrfs_item_nr(leaf, slot);
4050 btrfs_item_key_to_cpu(leaf, &found_key, slot);
4051
4052 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04004053 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004054 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004055 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004056 if (found_key.offset < filp->f_pos)
Li Zefanb9e03af2011-03-23 10:43:58 +08004057 goto next;
Miao Xie16cdcec2011-04-22 18:12:22 +08004058 if (key_type == BTRFS_DIR_INDEX_KEY &&
4059 btrfs_should_delete_dir_index(&del_list,
4060 found_key.offset))
4061 goto next;
Chris Mason5f39d392007-10-15 16:14:19 -04004062
4063 filp->f_pos = found_key.offset;
Miao Xie16cdcec2011-04-22 18:12:22 +08004064 is_curr = 1;
David Woodhouse49593bf2008-08-17 17:08:36 +01004065
Chris Mason39279cc2007-06-12 06:35:45 -04004066 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
4067 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04004068 di_total = btrfs_item_size(leaf, item);
David Woodhouse49593bf2008-08-17 17:08:36 +01004069
4070 while (di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04004071 struct btrfs_key location;
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004072 struct dentry *tmp;
Chris Mason5f39d392007-10-15 16:14:19 -04004073
Josef Bacik22a94d42011-03-16 16:47:17 -04004074 if (verify_dir_item(root, leaf, di))
4075 break;
4076
Chris Mason5f39d392007-10-15 16:14:19 -04004077 name_len = btrfs_dir_name_len(leaf, di);
David Woodhouse49593bf2008-08-17 17:08:36 +01004078 if (name_len <= sizeof(tmp_name)) {
Chris Mason5f39d392007-10-15 16:14:19 -04004079 name_ptr = tmp_name;
4080 } else {
4081 name_ptr = kmalloc(name_len, GFP_NOFS);
David Woodhouse49593bf2008-08-17 17:08:36 +01004082 if (!name_ptr) {
4083 ret = -ENOMEM;
4084 goto err;
4085 }
Chris Mason5f39d392007-10-15 16:14:19 -04004086 }
4087 read_extent_buffer(leaf, name_ptr,
4088 (unsigned long)(di + 1), name_len);
4089
4090 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
4091 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason3de45862008-11-17 21:02:50 -05004092
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004093 q.name = name_ptr;
4094 q.len = name_len;
4095 q.hash = full_name_hash(q.name, q.len);
4096 tmp = d_lookup(filp->f_dentry, &q);
4097 if (!tmp) {
4098 struct btrfs_key *newkey;
4099
4100 newkey = kzalloc(sizeof(struct btrfs_key),
4101 GFP_NOFS);
4102 if (!newkey)
4103 goto no_dentry;
4104 tmp = d_alloc(filp->f_dentry, &q);
4105 if (!tmp) {
4106 kfree(newkey);
4107 dput(tmp);
4108 goto no_dentry;
4109 }
4110 memcpy(newkey, &location,
4111 sizeof(struct btrfs_key));
4112 tmp->d_fsdata = newkey;
4113 tmp->d_flags |= DCACHE_NEED_LOOKUP;
4114 d_rehash(tmp);
4115 dput(tmp);
4116 } else {
4117 dput(tmp);
4118 }
4119no_dentry:
Chris Mason3de45862008-11-17 21:02:50 -05004120 /* is this a reference to our own snapshot? If so
4121 * skip it
4122 */
4123 if (location.type == BTRFS_ROOT_ITEM_KEY &&
4124 location.objectid == root->root_key.objectid) {
4125 over = 0;
4126 goto skip;
4127 }
Chris Mason5f39d392007-10-15 16:14:19 -04004128 over = filldir(dirent, name_ptr, name_len,
David Woodhouse49593bf2008-08-17 17:08:36 +01004129 found_key.offset, location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04004130 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04004131
Chris Mason3de45862008-11-17 21:02:50 -05004132skip:
Chris Mason5f39d392007-10-15 16:14:19 -04004133 if (name_ptr != tmp_name)
4134 kfree(name_ptr);
4135
Chris Mason39279cc2007-06-12 06:35:45 -04004136 if (over)
4137 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05004138 di_len = btrfs_dir_name_len(leaf, di) +
David Woodhouse49593bf2008-08-17 17:08:36 +01004139 btrfs_dir_data_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04004140 di_cur += di_len;
4141 di = (struct btrfs_dir_item *)((char *)di + di_len);
4142 }
Li Zefanb9e03af2011-03-23 10:43:58 +08004143next:
4144 path->slots[0]++;
Chris Mason39279cc2007-06-12 06:35:45 -04004145 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004146
Miao Xie16cdcec2011-04-22 18:12:22 +08004147 if (key_type == BTRFS_DIR_INDEX_KEY) {
4148 if (is_curr)
4149 filp->f_pos++;
4150 ret = btrfs_readdir_delayed_dir_index(filp, dirent, filldir,
4151 &ins_list);
4152 if (ret)
4153 goto nopos;
4154 }
4155
David Woodhouse49593bf2008-08-17 17:08:36 +01004156 /* Reached end of directory/root. Bump pos past the last item. */
Yan Zheng5e591a02008-02-19 11:41:02 -05004157 if (key_type == BTRFS_DIR_INDEX_KEY)
Jan Engelhardt406266a2009-12-09 22:00:38 +00004158 /*
4159 * 32-bit glibc will use getdents64, but then strtol -
4160 * so the last number we can serve is this.
4161 */
4162 filp->f_pos = 0x7fffffff;
Yan Zheng5e591a02008-02-19 11:41:02 -05004163 else
4164 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04004165nopos:
4166 ret = 0;
4167err:
Miao Xie16cdcec2011-04-22 18:12:22 +08004168 if (key_type == BTRFS_DIR_INDEX_KEY)
4169 btrfs_put_delayed_items(&ins_list, &del_list);
Chris Mason39279cc2007-06-12 06:35:45 -04004170 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004171 return ret;
4172}
4173
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004174int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc)
Chris Mason39279cc2007-06-12 06:35:45 -04004175{
4176 struct btrfs_root *root = BTRFS_I(inode)->root;
4177 struct btrfs_trans_handle *trans;
4178 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04004179 bool nolock = false;
Chris Mason39279cc2007-06-12 06:35:45 -04004180
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004181 if (BTRFS_I(inode)->dummy_inode)
Chris Mason4ca8b412008-08-05 13:30:48 -04004182 return 0;
4183
Chris Mason2cf85722011-07-26 15:35:09 -04004184 if (btrfs_fs_closing(root->fs_info) && btrfs_is_free_space_inode(root, inode))
Li Zefan82d59022011-04-20 10:33:24 +08004185 nolock = true;
Josef Bacik0af3d002010-06-21 14:48:16 -04004186
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004187 if (wbc->sync_mode == WB_SYNC_ALL) {
Josef Bacik0af3d002010-06-21 14:48:16 -04004188 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004189 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0af3d002010-06-21 14:48:16 -04004190 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004191 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00004192 if (IS_ERR(trans))
4193 return PTR_ERR(trans);
Josef Bacik0af3d002010-06-21 14:48:16 -04004194 if (nolock)
4195 ret = btrfs_end_transaction_nolock(trans, root);
4196 else
4197 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004198 }
4199 return ret;
4200}
4201
4202/*
Chris Mason54aa1f42007-06-22 14:16:25 -04004203 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04004204 * inode changes. But, it is most likely to find the inode in cache.
4205 * FIXME, needs more benchmarking...there are no reasons other than performance
4206 * to keep or drop this code.
4207 */
Josef Bacik22c44fe2011-11-30 10:45:38 -05004208int btrfs_dirty_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04004209{
4210 struct btrfs_root *root = BTRFS_I(inode)->root;
4211 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004212 int ret;
4213
4214 if (BTRFS_I(inode)->dummy_inode)
Josef Bacik22c44fe2011-11-30 10:45:38 -05004215 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004216
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004217 trans = btrfs_join_transaction(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004218 if (IS_ERR(trans))
4219 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004220
4221 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04004222 if (ret && ret == -ENOSPC) {
4223 /* whoops, lets try again with the full transaction */
4224 btrfs_end_transaction(trans, root);
4225 trans = btrfs_start_transaction(root, 1);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004226 if (IS_ERR(trans))
4227 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004228
Chris Mason94b60442010-05-26 11:02:00 -04004229 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04004230 }
Chris Mason39279cc2007-06-12 06:35:45 -04004231 btrfs_end_transaction(trans, root);
Miao Xie16cdcec2011-04-22 18:12:22 +08004232 if (BTRFS_I(inode)->delayed_node)
4233 btrfs_balance_delayed_items(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004234
4235 return ret;
4236}
4237
4238/*
4239 * This is a copy of file_update_time. We need this so we can return error on
4240 * ENOSPC for updating the inode in the case of file write and mmap writes.
4241 */
4242int btrfs_update_time(struct file *file)
4243{
4244 struct inode *inode = file->f_path.dentry->d_inode;
4245 struct timespec now;
4246 int ret;
4247 enum { S_MTIME = 1, S_CTIME = 2, S_VERSION = 4 } sync_it = 0;
4248
4249 /* First try to exhaust all avenues to not sync */
4250 if (IS_NOCMTIME(inode))
4251 return 0;
4252
4253 now = current_fs_time(inode->i_sb);
4254 if (!timespec_equal(&inode->i_mtime, &now))
4255 sync_it = S_MTIME;
4256
4257 if (!timespec_equal(&inode->i_ctime, &now))
4258 sync_it |= S_CTIME;
4259
4260 if (IS_I_VERSION(inode))
4261 sync_it |= S_VERSION;
4262
4263 if (!sync_it)
4264 return 0;
4265
4266 /* Finally allowed to write? Takes lock. */
4267 if (mnt_want_write_file(file))
4268 return 0;
4269
4270 /* Only change inode inside the lock region */
4271 if (sync_it & S_VERSION)
4272 inode_inc_iversion(inode);
4273 if (sync_it & S_CTIME)
4274 inode->i_ctime = now;
4275 if (sync_it & S_MTIME)
4276 inode->i_mtime = now;
4277 ret = btrfs_dirty_inode(inode);
4278 if (!ret)
4279 mark_inode_dirty_sync(inode);
4280 mnt_drop_write(file->f_path.mnt);
4281 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004282}
4283
Chris Masond352ac62008-09-29 15:18:18 -04004284/*
4285 * find the highest existing sequence number in a directory
4286 * and then set the in-memory index_cnt variable to reflect
4287 * free sequence numbers
4288 */
Josef Bacikaec74772008-07-24 12:12:38 -04004289static int btrfs_set_inode_index_count(struct inode *inode)
4290{
4291 struct btrfs_root *root = BTRFS_I(inode)->root;
4292 struct btrfs_key key, found_key;
4293 struct btrfs_path *path;
4294 struct extent_buffer *leaf;
4295 int ret;
4296
Li Zefan33345d012011-04-20 10:31:50 +08004297 key.objectid = btrfs_ino(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004298 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
4299 key.offset = (u64)-1;
4300
4301 path = btrfs_alloc_path();
4302 if (!path)
4303 return -ENOMEM;
4304
4305 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4306 if (ret < 0)
4307 goto out;
4308 /* FIXME: we should be able to handle this */
4309 if (ret == 0)
4310 goto out;
4311 ret = 0;
4312
4313 /*
4314 * MAGIC NUMBER EXPLANATION:
4315 * since we search a directory based on f_pos we have to start at 2
4316 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
4317 * else has to start at 2
4318 */
4319 if (path->slots[0] == 0) {
4320 BTRFS_I(inode)->index_cnt = 2;
4321 goto out;
4322 }
4323
4324 path->slots[0]--;
4325
4326 leaf = path->nodes[0];
4327 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4328
Li Zefan33345d012011-04-20 10:31:50 +08004329 if (found_key.objectid != btrfs_ino(inode) ||
Josef Bacikaec74772008-07-24 12:12:38 -04004330 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
4331 BTRFS_I(inode)->index_cnt = 2;
4332 goto out;
4333 }
4334
4335 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
4336out:
4337 btrfs_free_path(path);
4338 return ret;
4339}
4340
Chris Masond352ac62008-09-29 15:18:18 -04004341/*
4342 * helper to find a free sequence number in a given directory. This current
4343 * code is very simple, later versions will do smarter things in the btree
4344 */
Chris Mason3de45862008-11-17 21:02:50 -05004345int btrfs_set_inode_index(struct inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04004346{
4347 int ret = 0;
4348
4349 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
Miao Xie16cdcec2011-04-22 18:12:22 +08004350 ret = btrfs_inode_delayed_dir_index_count(dir);
4351 if (ret) {
4352 ret = btrfs_set_inode_index_count(dir);
4353 if (ret)
4354 return ret;
4355 }
Josef Bacikaec74772008-07-24 12:12:38 -04004356 }
4357
Chris Mason00e4e6b2008-08-05 11:18:09 -04004358 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04004359 BTRFS_I(dir)->index_cnt++;
4360
4361 return ret;
4362}
4363
Chris Mason39279cc2007-06-12 06:35:45 -04004364static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
4365 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04004366 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05004367 const char *name, int name_len,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04004368 u64 ref_objectid, u64 objectid, int mode,
4369 u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04004370{
4371 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004372 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04004373 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04004374 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05004375 struct btrfs_inode_ref *ref;
4376 struct btrfs_key key[2];
4377 u32 sizes[2];
4378 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04004379 int ret;
4380 int owner;
4381
Chris Mason5f39d392007-10-15 16:14:19 -04004382 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07004383 if (!path)
4384 return ERR_PTR(-ENOMEM);
Chris Mason5f39d392007-10-15 16:14:19 -04004385
Chris Mason39279cc2007-06-12 06:35:45 -04004386 inode = new_inode(root->fs_info->sb);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004387 if (!inode) {
4388 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004389 return ERR_PTR(-ENOMEM);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004390 }
Chris Mason39279cc2007-06-12 06:35:45 -04004391
Li Zefan581bb052011-04-20 10:06:11 +08004392 /*
4393 * we have to initialize this early, so we can reclaim the inode
4394 * number if we fail afterwards in this function.
4395 */
4396 inode->i_ino = objectid;
4397
Josef Bacikaec74772008-07-24 12:12:38 -04004398 if (dir) {
liubo1abe9b82011-03-24 11:18:59 +00004399 trace_btrfs_inode_request(dir);
4400
Chris Mason3de45862008-11-17 21:02:50 -05004401 ret = btrfs_set_inode_index(dir, index);
Shen Feng09771432009-04-02 16:46:06 -04004402 if (ret) {
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004403 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004404 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004405 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04004406 }
Josef Bacikaec74772008-07-24 12:12:38 -04004407 }
4408 /*
4409 * index_cnt is ignored for everything but a dir,
4410 * btrfs_get_inode_index_count has an explanation for the magic
4411 * number
4412 */
4413 BTRFS_I(inode)->index_cnt = 2;
Chris Mason39279cc2007-06-12 06:35:45 -04004414 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04004415 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik76195852010-11-19 02:18:02 +00004416 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik6a632092009-02-20 11:00:09 -05004417 btrfs_set_inode_space_info(root, inode);
Chris Masonb888db22007-08-27 16:49:44 -04004418
Al Viro569254b2011-07-24 17:08:40 -04004419 if (S_ISDIR(mode))
Chris Mason39279cc2007-06-12 06:35:45 -04004420 owner = 0;
4421 else
4422 owner = 1;
Chris Mason9c583092008-01-29 15:15:18 -05004423
4424 key[0].objectid = objectid;
4425 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
4426 key[0].offset = 0;
4427
4428 key[1].objectid = objectid;
4429 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
4430 key[1].offset = ref_objectid;
4431
4432 sizes[0] = sizeof(struct btrfs_inode_item);
4433 sizes[1] = name_len + sizeof(*ref);
4434
Chris Masonb9473432009-03-13 11:00:37 -04004435 path->leave_spinning = 1;
Chris Mason9c583092008-01-29 15:15:18 -05004436 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
4437 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04004438 goto fail;
4439
Dmitry Monakhovecc11fab2010-03-04 17:31:47 +03004440 inode_init_owner(inode, dir, mode);
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004441 inode_set_bytes(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004442 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04004443 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
4444 struct btrfs_inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04004445 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05004446
4447 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
4448 struct btrfs_inode_ref);
4449 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004450 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
Chris Mason9c583092008-01-29 15:15:18 -05004451 ptr = (unsigned long)(ref + 1);
4452 write_extent_buffer(path->nodes[0], name, ptr, name_len);
4453
Chris Mason5f39d392007-10-15 16:14:19 -04004454 btrfs_mark_buffer_dirty(path->nodes[0]);
4455 btrfs_free_path(path);
4456
Chris Mason39279cc2007-06-12 06:35:45 -04004457 location = &BTRFS_I(inode)->location;
4458 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04004459 location->offset = 0;
4460 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
4461
Christoph Hellwig6cbff002009-04-17 10:37:41 +02004462 btrfs_inherit_iflags(inode, dir);
4463
Al Viro569254b2011-07-24 17:08:40 -04004464 if (S_ISREG(mode)) {
Chris Mason94272162009-07-02 12:26:06 -04004465 if (btrfs_test_opt(root, NODATASUM))
4466 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
Liu Bo75e7cb72011-03-22 10:12:20 +00004467 if (btrfs_test_opt(root, NODATACOW) ||
4468 (BTRFS_I(dir)->flags & BTRFS_INODE_NODATACOW))
Chris Mason94272162009-07-02 12:26:06 -04004469 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
4470 }
4471
Chris Mason39279cc2007-06-12 06:35:45 -04004472 insert_inode_hash(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004473 inode_tree_add(inode);
liubo1abe9b82011-03-24 11:18:59 +00004474
4475 trace_btrfs_inode_new(inode);
Chris Mason1973f0f2011-06-24 13:13:29 -04004476 btrfs_set_inode_last_trans(trans, inode);
liubo1abe9b82011-03-24 11:18:59 +00004477
Chris Mason39279cc2007-06-12 06:35:45 -04004478 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004479fail:
Josef Bacikaec74772008-07-24 12:12:38 -04004480 if (dir)
4481 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04004482 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004483 iput(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004484 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004485}
4486
4487static inline u8 btrfs_inode_type(struct inode *inode)
4488{
4489 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
4490}
4491
Chris Masond352ac62008-09-29 15:18:18 -04004492/*
4493 * utility function to add 'inode' into 'parent_inode' with
4494 * a give name and a given sequence number.
4495 * if 'add_backref' is true, also insert a backref from the
4496 * inode to the parent directory.
4497 */
Chris Masone02119d2008-09-05 16:13:11 -04004498int btrfs_add_link(struct btrfs_trans_handle *trans,
4499 struct inode *parent_inode, struct inode *inode,
4500 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004501{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004502 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004503 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04004504 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Li Zefan33345d012011-04-20 10:31:50 +08004505 u64 ino = btrfs_ino(inode);
4506 u64 parent_ino = btrfs_ino(parent_inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004507
Li Zefan33345d012011-04-20 10:31:50 +08004508 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004509 memcpy(&key, &BTRFS_I(inode)->root->root_key, sizeof(key));
4510 } else {
Li Zefan33345d012011-04-20 10:31:50 +08004511 key.objectid = ino;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004512 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
4513 key.offset = 0;
4514 }
Chris Mason39279cc2007-06-12 06:35:45 -04004515
Li Zefan33345d012011-04-20 10:31:50 +08004516 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004517 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
4518 key.objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08004519 parent_ino, index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004520 } else if (add_backref) {
Li Zefan33345d012011-04-20 10:31:50 +08004521 ret = btrfs_insert_inode_ref(trans, root, name, name_len, ino,
4522 parent_ino, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004523 }
4524
Chris Mason39279cc2007-06-12 06:35:45 -04004525 if (ret == 0) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004526 ret = btrfs_insert_dir_item(trans, root, name, name_len,
Miao Xie16cdcec2011-04-22 18:12:22 +08004527 parent_inode, &key,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004528 btrfs_inode_type(inode), index);
4529 BUG_ON(ret);
4530
Chris Masondbe674a2008-07-17 12:54:05 -04004531 btrfs_i_size_write(parent_inode, parent_inode->i_size +
Chris Masone02119d2008-09-05 16:13:11 -04004532 name_len * 2);
Chris Mason79c44582007-06-25 10:09:33 -04004533 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
Chris Masone02119d2008-09-05 16:13:11 -04004534 ret = btrfs_update_inode(trans, root, parent_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004535 }
4536 return ret;
4537}
4538
4539static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Josef Bacika1b075d2010-11-19 20:36:11 +00004540 struct inode *dir, struct dentry *dentry,
4541 struct inode *inode, int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004542{
Josef Bacika1b075d2010-11-19 20:36:11 +00004543 int err = btrfs_add_link(trans, dir, inode,
4544 dentry->d_name.name, dentry->d_name.len,
4545 backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004546 if (!err) {
4547 d_instantiate(dentry, inode);
4548 return 0;
4549 }
4550 if (err > 0)
4551 err = -EEXIST;
4552 return err;
4553}
4554
Josef Bacik618e21d2007-07-11 10:18:17 -04004555static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
4556 int mode, dev_t rdev)
4557{
4558 struct btrfs_trans_handle *trans;
4559 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004560 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04004561 int err;
4562 int drop_inode = 0;
4563 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05004564 unsigned long nr = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004565 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04004566
4567 if (!new_valid_dev(rdev))
4568 return -EINVAL;
4569
Josef Bacik9ed74f22009-09-11 16:12:44 -04004570 /*
4571 * 2 for inode item and ref
4572 * 2 for dir items
4573 * 1 for xattr if selinux is on
4574 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004575 trans = btrfs_start_transaction(root, 5);
4576 if (IS_ERR(trans))
4577 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05004578
Li Zefan581bb052011-04-20 10:06:11 +08004579 err = btrfs_find_free_ino(root, &objectid);
4580 if (err)
4581 goto out_unlock;
4582
Josef Bacikaec74772008-07-24 12:12:38 -04004583 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08004584 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04004585 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004586 if (IS_ERR(inode)) {
4587 err = PTR_ERR(inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04004588 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004589 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004590
Eric Paris2a7dba32011-02-01 11:05:39 -05004591 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04004592 if (err) {
4593 drop_inode = 1;
4594 goto out_unlock;
4595 }
4596
Josef Bacika1b075d2010-11-19 20:36:11 +00004597 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Josef Bacik618e21d2007-07-11 10:18:17 -04004598 if (err)
4599 drop_inode = 1;
4600 else {
4601 inode->i_op = &btrfs_special_inode_operations;
4602 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04004603 btrfs_update_inode(trans, root, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04004604 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004605out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004606 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04004607 btrfs_end_transaction_throttle(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004608 btrfs_btree_balance_dirty(root, nr);
Josef Bacik618e21d2007-07-11 10:18:17 -04004609 if (drop_inode) {
4610 inode_dec_link_count(inode);
4611 iput(inode);
4612 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004613 return err;
4614}
4615
Chris Mason39279cc2007-06-12 06:35:45 -04004616static int btrfs_create(struct inode *dir, struct dentry *dentry,
4617 int mode, struct nameidata *nd)
4618{
4619 struct btrfs_trans_handle *trans;
4620 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004621 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004622 int drop_inode = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004623 int err;
Chris Mason1832a6d2007-12-21 16:27:21 -05004624 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004625 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004626 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004627
Josef Bacik9ed74f22009-09-11 16:12:44 -04004628 /*
4629 * 2 for inode item and ref
4630 * 2 for dir items
4631 * 1 for xattr if selinux is on
4632 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004633 trans = btrfs_start_transaction(root, 5);
4634 if (IS_ERR(trans))
4635 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004636
Li Zefan581bb052011-04-20 10:06:11 +08004637 err = btrfs_find_free_ino(root, &objectid);
4638 if (err)
4639 goto out_unlock;
4640
Josef Bacikaec74772008-07-24 12:12:38 -04004641 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08004642 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04004643 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004644 if (IS_ERR(inode)) {
4645 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004646 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004647 }
Chris Mason39279cc2007-06-12 06:35:45 -04004648
Eric Paris2a7dba32011-02-01 11:05:39 -05004649 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04004650 if (err) {
4651 drop_inode = 1;
4652 goto out_unlock;
4653 }
4654
Josef Bacika1b075d2010-11-19 20:36:11 +00004655 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004656 if (err)
4657 drop_inode = 1;
4658 else {
4659 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04004660 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04004661 inode->i_fop = &btrfs_file_operations;
4662 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05004663 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04004664 }
Chris Mason39279cc2007-06-12 06:35:45 -04004665out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004666 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004667 btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004668 if (drop_inode) {
4669 inode_dec_link_count(inode);
4670 iput(inode);
4671 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004672 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004673 return err;
4674}
4675
4676static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
4677 struct dentry *dentry)
4678{
4679 struct btrfs_trans_handle *trans;
4680 struct btrfs_root *root = BTRFS_I(dir)->root;
4681 struct inode *inode = old_dentry->d_inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004682 u64 index;
Chris Mason1832a6d2007-12-21 16:27:21 -05004683 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004684 int err;
4685 int drop_inode = 0;
4686
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00004687 /* do not allow sys_link's with other subvols of the same device */
4688 if (root->objectid != BTRFS_I(inode)->root->objectid)
Mark Fasheh3ab35642011-03-22 17:20:26 +00004689 return -EXDEV;
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00004690
Al Viroc055e992011-03-04 17:15:18 +00004691 if (inode->i_nlink == ~0U)
4692 return -EMLINK;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004693
Chris Mason3de45862008-11-17 21:02:50 -05004694 err = btrfs_set_inode_index(dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04004695 if (err)
4696 goto fail;
4697
Yan, Zhenga22285a2010-05-16 10:48:46 -04004698 /*
Miao Xie7e6b6462011-02-18 09:21:17 +00004699 * 2 items for inode and inode ref
Yan, Zhenga22285a2010-05-16 10:48:46 -04004700 * 2 items for dir items
Miao Xie7e6b6462011-02-18 09:21:17 +00004701 * 1 item for parent inode
Yan, Zhenga22285a2010-05-16 10:48:46 -04004702 */
Miao Xie7e6b6462011-02-18 09:21:17 +00004703 trans = btrfs_start_transaction(root, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004704 if (IS_ERR(trans)) {
4705 err = PTR_ERR(trans);
4706 goto fail;
4707 }
Chris Mason5f39d392007-10-15 16:14:19 -04004708
Miao Xie31534952011-04-13 13:19:21 +08004709 btrfs_inc_nlink(inode);
4710 inode->i_ctime = CURRENT_TIME;
Al Viro7de9c6ee2010-10-23 11:11:40 -04004711 ihold(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004712
Josef Bacika1b075d2010-11-19 20:36:11 +00004713 err = btrfs_add_nondir(trans, dir, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04004714
Yan, Zhenga5719522009-09-24 09:17:31 -04004715 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04004716 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04004717 } else {
Al Viro10d9f302011-07-16 23:09:10 -04004718 struct dentry *parent = dentry->d_parent;
Yan, Zhenga5719522009-09-24 09:17:31 -04004719 err = btrfs_update_inode(trans, root, inode);
4720 BUG_ON(err);
Josef Bacik6a912212010-11-20 09:48:00 +00004721 btrfs_log_new_name(trans, inode, NULL, parent);
Yan, Zhenga5719522009-09-24 09:17:31 -04004722 }
Chris Mason39279cc2007-06-12 06:35:45 -04004723
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004724 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004725 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004726fail:
Chris Mason39279cc2007-06-12 06:35:45 -04004727 if (drop_inode) {
4728 inode_dec_link_count(inode);
4729 iput(inode);
4730 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004731 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004732 return err;
4733}
4734
Chris Mason39279cc2007-06-12 06:35:45 -04004735static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
4736{
Chris Masonb9d86662008-05-02 16:13:49 -04004737 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004738 struct btrfs_trans_handle *trans;
4739 struct btrfs_root *root = BTRFS_I(dir)->root;
4740 int err = 0;
4741 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04004742 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004743 u64 index = 0;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004744 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04004745
Josef Bacik9ed74f22009-09-11 16:12:44 -04004746 /*
4747 * 2 items for inode and ref
4748 * 2 items for dir items
4749 * 1 for xattr if selinux is on
4750 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004751 trans = btrfs_start_transaction(root, 5);
4752 if (IS_ERR(trans))
4753 return PTR_ERR(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04004754
Li Zefan581bb052011-04-20 10:06:11 +08004755 err = btrfs_find_free_ino(root, &objectid);
4756 if (err)
4757 goto out_fail;
4758
Josef Bacikaec74772008-07-24 12:12:38 -04004759 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08004760 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04004761 S_IFDIR | mode, &index);
Chris Mason39279cc2007-06-12 06:35:45 -04004762 if (IS_ERR(inode)) {
4763 err = PTR_ERR(inode);
4764 goto out_fail;
4765 }
Chris Mason5f39d392007-10-15 16:14:19 -04004766
Chris Mason39279cc2007-06-12 06:35:45 -04004767 drop_on_err = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -04004768
Eric Paris2a7dba32011-02-01 11:05:39 -05004769 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04004770 if (err)
4771 goto out_fail;
4772
Chris Mason39279cc2007-06-12 06:35:45 -04004773 inode->i_op = &btrfs_dir_inode_operations;
4774 inode->i_fop = &btrfs_dir_file_operations;
Chris Mason39279cc2007-06-12 06:35:45 -04004775
Chris Masondbe674a2008-07-17 12:54:05 -04004776 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004777 err = btrfs_update_inode(trans, root, inode);
4778 if (err)
4779 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04004780
Josef Bacika1b075d2010-11-19 20:36:11 +00004781 err = btrfs_add_link(trans, dir, inode, dentry->d_name.name,
4782 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004783 if (err)
4784 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04004785
Chris Mason39279cc2007-06-12 06:35:45 -04004786 d_instantiate(dentry, inode);
4787 drop_on_err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004788
4789out_fail:
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_on_err)
4793 iput(inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004794 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004795 return err;
4796}
4797
Chris Masond352ac62008-09-29 15:18:18 -04004798/* helper for btfs_get_extent. Given an existing extent in the tree,
4799 * and an extent that you want to insert, deal with overlap and insert
4800 * the new extent into the tree.
4801 */
Chris Mason3b951512008-04-17 11:29:12 -04004802static int merge_extent_mapping(struct extent_map_tree *em_tree,
4803 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04004804 struct extent_map *em,
4805 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04004806{
4807 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04004808
Chris Masone6dcd2d2008-07-17 12:53:50 -04004809 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
4810 start_diff = map_start - em->start;
4811 em->start = map_start;
4812 em->len = map_len;
Chris Masonc8b97812008-10-29 14:49:59 -04004813 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
4814 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04004815 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04004816 em->block_len -= start_diff;
4817 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004818 return add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04004819}
4820
Chris Masonc8b97812008-10-29 14:49:59 -04004821static noinline int uncompress_inline(struct btrfs_path *path,
4822 struct inode *inode, struct page *page,
4823 size_t pg_offset, u64 extent_offset,
4824 struct btrfs_file_extent_item *item)
4825{
4826 int ret;
4827 struct extent_buffer *leaf = path->nodes[0];
4828 char *tmp;
4829 size_t max_size;
4830 unsigned long inline_size;
4831 unsigned long ptr;
Li Zefan261507a02010-12-17 14:21:50 +08004832 int compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04004833
4834 WARN_ON(pg_offset != 0);
Li Zefan261507a02010-12-17 14:21:50 +08004835 compress_type = btrfs_file_extent_compression(leaf, item);
Chris Masonc8b97812008-10-29 14:49:59 -04004836 max_size = btrfs_file_extent_ram_bytes(leaf, item);
4837 inline_size = btrfs_file_extent_inline_item_len(leaf,
4838 btrfs_item_nr(leaf, path->slots[0]));
4839 tmp = kmalloc(inline_size, GFP_NOFS);
Tsutomu Itoh8d413712011-04-25 19:43:52 -04004840 if (!tmp)
4841 return -ENOMEM;
Chris Masonc8b97812008-10-29 14:49:59 -04004842 ptr = btrfs_file_extent_inline_start(item);
4843
4844 read_extent_buffer(leaf, tmp, ptr, inline_size);
4845
Chris Mason5b050f02008-11-11 09:34:41 -05004846 max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size);
Li Zefan261507a02010-12-17 14:21:50 +08004847 ret = btrfs_decompress(compress_type, tmp, page,
4848 extent_offset, inline_size, max_size);
Chris Masonc8b97812008-10-29 14:49:59 -04004849 if (ret) {
4850 char *kaddr = kmap_atomic(page, KM_USER0);
4851 unsigned long copy_size = min_t(u64,
4852 PAGE_CACHE_SIZE - pg_offset,
4853 max_size - extent_offset);
4854 memset(kaddr + pg_offset, 0, copy_size);
4855 kunmap_atomic(kaddr, KM_USER0);
4856 }
4857 kfree(tmp);
4858 return 0;
4859}
4860
Chris Masond352ac62008-09-29 15:18:18 -04004861/*
4862 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05004863 * the ugly parts come from merging extents from the disk with the in-ram
4864 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04004865 * where the in-ram extents might be locked pending data=ordered completion.
4866 *
4867 * This also copies inline extents directly into the page.
4868 */
Chris Masond3977122009-01-05 21:25:51 -05004869
Chris Masona52d9a82007-08-27 16:49:44 -04004870struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05004871 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04004872 int create)
4873{
4874 int ret;
4875 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04004876 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04004877 u64 extent_start = 0;
4878 u64 extent_end = 0;
Li Zefan33345d012011-04-20 10:31:50 +08004879 u64 objectid = btrfs_ino(inode);
Chris Masona52d9a82007-08-27 16:49:44 -04004880 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04004881 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04004882 struct btrfs_root *root = BTRFS_I(inode)->root;
4883 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04004884 struct extent_buffer *leaf;
4885 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04004886 struct extent_map *em = NULL;
4887 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05004888 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04004889 struct btrfs_trans_handle *trans = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08004890 int compress_type;
Chris Masona52d9a82007-08-27 16:49:44 -04004891
Chris Masona52d9a82007-08-27 16:49:44 -04004892again:
Chris Mason890871b2009-09-02 16:24:52 -04004893 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05004894 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04004895 if (em)
4896 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04004897 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05004898
Chris Masona52d9a82007-08-27 16:49:44 -04004899 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04004900 if (em->start > start || em->start + em->len <= start)
4901 free_extent_map(em);
4902 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05004903 free_extent_map(em);
4904 else
4905 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004906 }
David Sterba172ddd62011-04-21 00:48:27 +02004907 em = alloc_extent_map();
Chris Masona52d9a82007-08-27 16:49:44 -04004908 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05004909 err = -ENOMEM;
4910 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004911 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004912 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05004913 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05004914 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05004915 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04004916 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04004917
4918 if (!path) {
4919 path = btrfs_alloc_path();
Josef Bacik026fd312011-05-13 10:32:11 -04004920 if (!path) {
4921 err = -ENOMEM;
4922 goto out;
4923 }
4924 /*
4925 * Chances are we'll be called again, so go ahead and do
4926 * readahead
4927 */
4928 path->reada = 1;
Chris Masonf4219502008-07-22 11:18:09 -04004929 }
4930
Chris Mason179e29e2007-11-01 11:28:41 -04004931 ret = btrfs_lookup_file_extent(trans, root, path,
4932 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04004933 if (ret < 0) {
4934 err = ret;
4935 goto out;
4936 }
4937
4938 if (ret != 0) {
4939 if (path->slots[0] == 0)
4940 goto not_found;
4941 path->slots[0]--;
4942 }
4943
Chris Mason5f39d392007-10-15 16:14:19 -04004944 leaf = path->nodes[0];
4945 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04004946 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04004947 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04004948 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4949 found_type = btrfs_key_type(&found_key);
4950 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04004951 found_type != BTRFS_EXTENT_DATA_KEY) {
4952 goto not_found;
4953 }
4954
Chris Mason5f39d392007-10-15 16:14:19 -04004955 found_type = btrfs_file_extent_type(leaf, item);
4956 extent_start = found_key.offset;
Li Zefan261507a02010-12-17 14:21:50 +08004957 compress_type = btrfs_file_extent_compression(leaf, item);
Yan Zhengd899e052008-10-30 14:25:28 -04004958 if (found_type == BTRFS_FILE_EXTENT_REG ||
4959 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04004960 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04004961 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04004962 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
4963 size_t size;
4964 size = btrfs_file_extent_inline_len(leaf, item);
4965 extent_end = (extent_start + size + root->sectorsize - 1) &
4966 ~((u64)root->sectorsize - 1);
4967 }
4968
4969 if (start >= extent_end) {
4970 path->slots[0]++;
4971 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
4972 ret = btrfs_next_leaf(root, path);
4973 if (ret < 0) {
4974 err = ret;
4975 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004976 }
Yan Zheng9036c102008-10-30 14:19:41 -04004977 if (ret > 0)
4978 goto not_found;
4979 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04004980 }
Yan Zheng9036c102008-10-30 14:19:41 -04004981 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4982 if (found_key.objectid != objectid ||
4983 found_key.type != BTRFS_EXTENT_DATA_KEY)
4984 goto not_found;
4985 if (start + len <= found_key.offset)
4986 goto not_found;
4987 em->start = start;
4988 em->len = found_key.offset - start;
4989 goto not_found_em;
4990 }
4991
Yan Zhengd899e052008-10-30 14:25:28 -04004992 if (found_type == BTRFS_FILE_EXTENT_REG ||
4993 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng9036c102008-10-30 14:19:41 -04004994 em->start = extent_start;
4995 em->len = extent_end - extent_start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -05004996 em->orig_start = extent_start -
4997 btrfs_file_extent_offset(leaf, item);
Chris Masondb945352007-10-15 16:15:53 -04004998 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
4999 if (bytenr == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04005000 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04005001 goto insert;
5002 }
Li Zefan261507a02010-12-17 14:21:50 +08005003 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04005004 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08005005 em->compress_type = compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04005006 em->block_start = bytenr;
5007 em->block_len = btrfs_file_extent_disk_num_bytes(leaf,
5008 item);
5009 } else {
5010 bytenr += btrfs_file_extent_offset(leaf, item);
5011 em->block_start = bytenr;
5012 em->block_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04005013 if (found_type == BTRFS_FILE_EXTENT_PREALLOC)
5014 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -04005015 }
Chris Masona52d9a82007-08-27 16:49:44 -04005016 goto insert;
5017 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04005018 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04005019 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04005020 size_t size;
5021 size_t extent_offset;
5022 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04005023
Chris Masona52d9a82007-08-27 16:49:44 -04005024 em->block_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04005025 if (!page || create) {
Yan689f9342007-10-29 11:41:07 -04005026 em->start = extent_start;
Yan Zheng9036c102008-10-30 14:19:41 -04005027 em->len = extent_end - extent_start;
Yan689f9342007-10-29 11:41:07 -04005028 goto out;
5029 }
5030
Yan Zheng9036c102008-10-30 14:19:41 -04005031 size = btrfs_file_extent_inline_len(leaf, item);
5032 extent_offset = page_offset(page) + pg_offset - extent_start;
Chris Mason70dec802008-01-29 09:59:12 -05005033 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04005034 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04005035 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05005036 em->len = (copy_size + root->sectorsize - 1) &
5037 ~((u64)root->sectorsize - 1);
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005038 em->orig_start = EXTENT_MAP_INLINE;
Li Zefan261507a02010-12-17 14:21:50 +08005039 if (compress_type) {
Chris Masonc8b97812008-10-29 14:49:59 -04005040 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08005041 em->compress_type = compress_type;
5042 }
Yan689f9342007-10-29 11:41:07 -04005043 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04005044 if (create == 0 && !PageUptodate(page)) {
Li Zefan261507a02010-12-17 14:21:50 +08005045 if (btrfs_file_extent_compression(leaf, item) !=
5046 BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04005047 ret = uncompress_inline(path, inode, page,
5048 pg_offset,
5049 extent_offset, item);
5050 BUG_ON(ret);
5051 } else {
5052 map = kmap(page);
5053 read_extent_buffer(leaf, map + pg_offset, ptr,
5054 copy_size);
Chris Mason93c82d52009-09-11 12:36:29 -04005055 if (pg_offset + copy_size < PAGE_CACHE_SIZE) {
5056 memset(map + pg_offset + copy_size, 0,
5057 PAGE_CACHE_SIZE - pg_offset -
5058 copy_size);
5059 }
Chris Masonc8b97812008-10-29 14:49:59 -04005060 kunmap(page);
5061 }
Chris Mason179e29e2007-11-01 11:28:41 -04005062 flush_dcache_page(page);
5063 } else if (create && PageUptodate(page)) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005064 WARN_ON(1);
Chris Mason179e29e2007-11-01 11:28:41 -04005065 if (!trans) {
5066 kunmap(page);
5067 free_extent_map(em);
5068 em = NULL;
Chris Masonff5714c2011-05-28 07:00:39 -04005069
David Sterbab3b4aa72011-04-21 01:20:15 +02005070 btrfs_release_path(path);
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005071 trans = btrfs_join_transaction(root);
Chris Masonff5714c2011-05-28 07:00:39 -04005072
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005073 if (IS_ERR(trans))
5074 return ERR_CAST(trans);
Chris Mason179e29e2007-11-01 11:28:41 -04005075 goto again;
5076 }
Chris Masonc8b97812008-10-29 14:49:59 -04005077 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05005078 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04005079 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04005080 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04005081 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04005082 }
Chris Masond1310b22008-01-24 16:13:08 -05005083 set_extent_uptodate(io_tree, em->start,
Arne Jansen507903b2011-04-06 10:02:20 +00005084 extent_map_end(em) - 1, NULL, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04005085 goto insert;
5086 } else {
Chris Masond3977122009-01-05 21:25:51 -05005087 printk(KERN_ERR "btrfs unknown found_type %d\n", found_type);
Chris Masona52d9a82007-08-27 16:49:44 -04005088 WARN_ON(1);
5089 }
5090not_found:
5091 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05005092 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04005093not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04005094 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04005095 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04005096insert:
David Sterbab3b4aa72011-04-21 01:20:15 +02005097 btrfs_release_path(path);
Chris Masond1310b22008-01-24 16:13:08 -05005098 if (em->start > start || extent_map_end(em) <= start) {
Chris Masond3977122009-01-05 21:25:51 -05005099 printk(KERN_ERR "Btrfs: bad extent! em: [%llu %llu] passed "
5100 "[%llu %llu]\n", (unsigned long long)em->start,
5101 (unsigned long long)em->len,
5102 (unsigned long long)start,
5103 (unsigned long long)len);
Chris Masona52d9a82007-08-27 16:49:44 -04005104 err = -EIO;
5105 goto out;
5106 }
Chris Masond1310b22008-01-24 16:13:08 -05005107
5108 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04005109 write_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005110 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04005111 /* it is possible that someone inserted the extent into the tree
5112 * while we had the lock dropped. It is also possible that
5113 * an overlapping map exists in the tree
5114 */
Chris Masona52d9a82007-08-27 16:49:44 -04005115 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04005116 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005117
5118 ret = 0;
5119
Chris Mason3b951512008-04-17 11:29:12 -04005120 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04005121 if (existing && (existing->start > start ||
5122 existing->start + existing->len <= start)) {
5123 free_extent_map(existing);
5124 existing = NULL;
5125 }
Chris Mason3b951512008-04-17 11:29:12 -04005126 if (!existing) {
5127 existing = lookup_extent_mapping(em_tree, em->start,
5128 em->len);
5129 if (existing) {
5130 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005131 em, start,
5132 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04005133 free_extent_map(existing);
5134 if (err) {
5135 free_extent_map(em);
5136 em = NULL;
5137 }
5138 } else {
5139 err = -EIO;
Chris Mason3b951512008-04-17 11:29:12 -04005140 free_extent_map(em);
5141 em = NULL;
5142 }
5143 } else {
5144 free_extent_map(em);
5145 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005146 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04005147 }
Chris Masona52d9a82007-08-27 16:49:44 -04005148 }
Chris Mason890871b2009-09-02 16:24:52 -04005149 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005150out:
liubo1abe9b82011-03-24 11:18:59 +00005151
5152 trace_btrfs_get_extent(root, em);
5153
Chris Masonf4219502008-07-22 11:18:09 -04005154 if (path)
5155 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04005156 if (trans) {
5157 ret = btrfs_end_transaction(trans, root);
Chris Masond3977122009-01-05 21:25:51 -05005158 if (!err)
Chris Masona52d9a82007-08-27 16:49:44 -04005159 err = ret;
5160 }
Chris Masona52d9a82007-08-27 16:49:44 -04005161 if (err) {
5162 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04005163 return ERR_PTR(err);
5164 }
5165 return em;
5166}
5167
Chris Masonec29ed52011-02-23 16:23:20 -05005168struct extent_map *btrfs_get_extent_fiemap(struct inode *inode, struct page *page,
5169 size_t pg_offset, u64 start, u64 len,
5170 int create)
5171{
5172 struct extent_map *em;
5173 struct extent_map *hole_em = NULL;
5174 u64 range_start = start;
5175 u64 end;
5176 u64 found;
5177 u64 found_end;
5178 int err = 0;
5179
5180 em = btrfs_get_extent(inode, page, pg_offset, start, len, create);
5181 if (IS_ERR(em))
5182 return em;
5183 if (em) {
5184 /*
5185 * if our em maps to a hole, there might
5186 * actually be delalloc bytes behind it
5187 */
5188 if (em->block_start != EXTENT_MAP_HOLE)
5189 return em;
5190 else
5191 hole_em = em;
5192 }
5193
5194 /* check to see if we've wrapped (len == -1 or similar) */
5195 end = start + len;
5196 if (end < start)
5197 end = (u64)-1;
5198 else
5199 end -= 1;
5200
5201 em = NULL;
5202
5203 /* ok, we didn't find anything, lets look for delalloc */
5204 found = count_range_bits(&BTRFS_I(inode)->io_tree, &range_start,
5205 end, len, EXTENT_DELALLOC, 1);
5206 found_end = range_start + found;
5207 if (found_end < range_start)
5208 found_end = (u64)-1;
5209
5210 /*
5211 * we didn't find anything useful, return
5212 * the original results from get_extent()
5213 */
5214 if (range_start > end || found_end <= start) {
5215 em = hole_em;
5216 hole_em = NULL;
5217 goto out;
5218 }
5219
5220 /* adjust the range_start to make sure it doesn't
5221 * go backwards from the start they passed in
5222 */
5223 range_start = max(start,range_start);
5224 found = found_end - range_start;
5225
5226 if (found > 0) {
5227 u64 hole_start = start;
5228 u64 hole_len = len;
5229
David Sterba172ddd62011-04-21 00:48:27 +02005230 em = alloc_extent_map();
Chris Masonec29ed52011-02-23 16:23:20 -05005231 if (!em) {
5232 err = -ENOMEM;
5233 goto out;
5234 }
5235 /*
5236 * when btrfs_get_extent can't find anything it
5237 * returns one huge hole
5238 *
5239 * make sure what it found really fits our range, and
5240 * adjust to make sure it is based on the start from
5241 * the caller
5242 */
5243 if (hole_em) {
5244 u64 calc_end = extent_map_end(hole_em);
5245
5246 if (calc_end <= start || (hole_em->start > end)) {
5247 free_extent_map(hole_em);
5248 hole_em = NULL;
5249 } else {
5250 hole_start = max(hole_em->start, start);
5251 hole_len = calc_end - hole_start;
5252 }
5253 }
5254 em->bdev = NULL;
5255 if (hole_em && range_start > hole_start) {
5256 /* our hole starts before our delalloc, so we
5257 * have to return just the parts of the hole
5258 * that go until the delalloc starts
5259 */
5260 em->len = min(hole_len,
5261 range_start - hole_start);
5262 em->start = hole_start;
5263 em->orig_start = hole_start;
5264 /*
5265 * don't adjust block start at all,
5266 * it is fixed at EXTENT_MAP_HOLE
5267 */
5268 em->block_start = hole_em->block_start;
5269 em->block_len = hole_len;
5270 } else {
5271 em->start = range_start;
5272 em->len = found;
5273 em->orig_start = range_start;
5274 em->block_start = EXTENT_MAP_DELALLOC;
5275 em->block_len = found;
5276 }
5277 } else if (hole_em) {
5278 return hole_em;
5279 }
5280out:
5281
5282 free_extent_map(hole_em);
5283 if (err) {
5284 free_extent_map(em);
5285 return ERR_PTR(err);
5286 }
5287 return em;
5288}
5289
Josef Bacik4b46fce2010-05-23 11:00:55 -04005290static struct extent_map *btrfs_new_extent_direct(struct inode *inode,
Josef Bacik16d299a2011-04-06 14:53:07 -04005291 struct extent_map *em,
Josef Bacik4b46fce2010-05-23 11:00:55 -04005292 u64 start, u64 len)
5293{
5294 struct btrfs_root *root = BTRFS_I(inode)->root;
5295 struct btrfs_trans_handle *trans;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005296 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
5297 struct btrfs_key ins;
5298 u64 alloc_hint;
5299 int ret;
Josef Bacik16d299a2011-04-06 14:53:07 -04005300 bool insert = false;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005301
Josef Bacik16d299a2011-04-06 14:53:07 -04005302 /*
5303 * Ok if the extent map we looked up is a hole and is for the exact
5304 * range we want, there is no reason to allocate a new one, however if
5305 * it is not right then we need to free this one and drop the cache for
5306 * our range.
5307 */
5308 if (em->block_start != EXTENT_MAP_HOLE || em->start != start ||
5309 em->len != len) {
5310 free_extent_map(em);
5311 em = NULL;
5312 insert = true;
5313 btrfs_drop_extent_cache(inode, start, start + len - 1, 0);
5314 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005315
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005316 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005317 if (IS_ERR(trans))
5318 return ERR_CAST(trans);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005319
Chris Mason4cb53002011-05-24 15:35:30 -04005320 if (start <= BTRFS_I(inode)->disk_i_size && len < 64 * 1024)
5321 btrfs_add_inode_defrag(trans, inode);
5322
Josef Bacik4b46fce2010-05-23 11:00:55 -04005323 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
5324
5325 alloc_hint = get_extent_allocation_hint(inode, start, len);
5326 ret = btrfs_reserve_extent(trans, root, len, root->sectorsize, 0,
5327 alloc_hint, (u64)-1, &ins, 1);
5328 if (ret) {
5329 em = ERR_PTR(ret);
5330 goto out;
5331 }
5332
Josef Bacik4b46fce2010-05-23 11:00:55 -04005333 if (!em) {
David Sterba172ddd62011-04-21 00:48:27 +02005334 em = alloc_extent_map();
Josef Bacik16d299a2011-04-06 14:53:07 -04005335 if (!em) {
5336 em = ERR_PTR(-ENOMEM);
5337 goto out;
5338 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005339 }
5340
5341 em->start = start;
5342 em->orig_start = em->start;
5343 em->len = ins.offset;
5344
5345 em->block_start = ins.objectid;
5346 em->block_len = ins.offset;
5347 em->bdev = root->fs_info->fs_devices->latest_bdev;
Josef Bacik16d299a2011-04-06 14:53:07 -04005348
5349 /*
5350 * We need to do this because if we're using the original em we searched
5351 * for, we could have EXTENT_FLAG_VACANCY set, and we don't want that.
5352 */
5353 em->flags = 0;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005354 set_bit(EXTENT_FLAG_PINNED, &em->flags);
5355
Josef Bacik16d299a2011-04-06 14:53:07 -04005356 while (insert) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04005357 write_lock(&em_tree->lock);
5358 ret = add_extent_mapping(em_tree, em);
5359 write_unlock(&em_tree->lock);
5360 if (ret != -EEXIST)
5361 break;
5362 btrfs_drop_extent_cache(inode, start, start + em->len - 1, 0);
5363 }
5364
5365 ret = btrfs_add_ordered_extent_dio(inode, start, ins.objectid,
5366 ins.offset, ins.offset, 0);
5367 if (ret) {
5368 btrfs_free_reserved_extent(root, ins.objectid, ins.offset);
5369 em = ERR_PTR(ret);
5370 }
5371out:
5372 btrfs_end_transaction(trans, root);
5373 return em;
5374}
5375
Chris Mason46bfbb52010-05-26 11:04:10 -04005376/*
5377 * returns 1 when the nocow is safe, < 1 on error, 0 if the
5378 * block must be cow'd
5379 */
5380static noinline int can_nocow_odirect(struct btrfs_trans_handle *trans,
5381 struct inode *inode, u64 offset, u64 len)
5382{
5383 struct btrfs_path *path;
5384 int ret;
5385 struct extent_buffer *leaf;
5386 struct btrfs_root *root = BTRFS_I(inode)->root;
5387 struct btrfs_file_extent_item *fi;
5388 struct btrfs_key key;
5389 u64 disk_bytenr;
5390 u64 backref_offset;
5391 u64 extent_end;
5392 u64 num_bytes;
5393 int slot;
5394 int found_type;
5395
5396 path = btrfs_alloc_path();
5397 if (!path)
5398 return -ENOMEM;
5399
Li Zefan33345d012011-04-20 10:31:50 +08005400 ret = btrfs_lookup_file_extent(trans, root, path, btrfs_ino(inode),
Chris Mason46bfbb52010-05-26 11:04:10 -04005401 offset, 0);
5402 if (ret < 0)
5403 goto out;
5404
5405 slot = path->slots[0];
5406 if (ret == 1) {
5407 if (slot == 0) {
5408 /* can't find the item, must cow */
5409 ret = 0;
5410 goto out;
5411 }
5412 slot--;
5413 }
5414 ret = 0;
5415 leaf = path->nodes[0];
5416 btrfs_item_key_to_cpu(leaf, &key, slot);
Li Zefan33345d012011-04-20 10:31:50 +08005417 if (key.objectid != btrfs_ino(inode) ||
Chris Mason46bfbb52010-05-26 11:04:10 -04005418 key.type != BTRFS_EXTENT_DATA_KEY) {
5419 /* not our file or wrong item type, must cow */
5420 goto out;
5421 }
5422
5423 if (key.offset > offset) {
5424 /* Wrong offset, must cow */
5425 goto out;
5426 }
5427
5428 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
5429 found_type = btrfs_file_extent_type(leaf, fi);
5430 if (found_type != BTRFS_FILE_EXTENT_REG &&
5431 found_type != BTRFS_FILE_EXTENT_PREALLOC) {
5432 /* not a regular extent, must cow */
5433 goto out;
5434 }
5435 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
5436 backref_offset = btrfs_file_extent_offset(leaf, fi);
5437
5438 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
5439 if (extent_end < offset + len) {
5440 /* extent doesn't include our full range, must cow */
5441 goto out;
5442 }
5443
5444 if (btrfs_extent_readonly(root, disk_bytenr))
5445 goto out;
5446
5447 /*
5448 * look for other files referencing this extent, if we
5449 * find any we must cow
5450 */
Li Zefan33345d012011-04-20 10:31:50 +08005451 if (btrfs_cross_ref_exist(trans, root, btrfs_ino(inode),
Chris Mason46bfbb52010-05-26 11:04:10 -04005452 key.offset - backref_offset, disk_bytenr))
5453 goto out;
5454
5455 /*
5456 * adjust disk_bytenr and num_bytes to cover just the bytes
5457 * in this extent we are about to write. If there
5458 * are any csums in that range we have to cow in order
5459 * to keep the csums correct
5460 */
5461 disk_bytenr += backref_offset;
5462 disk_bytenr += offset - key.offset;
5463 num_bytes = min(offset + len, extent_end) - offset;
5464 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
5465 goto out;
5466 /*
5467 * all of the above have passed, it is safe to overwrite this extent
5468 * without cow
5469 */
5470 ret = 1;
5471out:
5472 btrfs_free_path(path);
5473 return ret;
5474}
5475
Josef Bacik4b46fce2010-05-23 11:00:55 -04005476static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock,
5477 struct buffer_head *bh_result, int create)
5478{
5479 struct extent_map *em;
5480 struct btrfs_root *root = BTRFS_I(inode)->root;
5481 u64 start = iblock << inode->i_blkbits;
5482 u64 len = bh_result->b_size;
Chris Mason46bfbb52010-05-26 11:04:10 -04005483 struct btrfs_trans_handle *trans;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005484
5485 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
5486 if (IS_ERR(em))
5487 return PTR_ERR(em);
5488
5489 /*
5490 * Ok for INLINE and COMPRESSED extents we need to fallback on buffered
5491 * io. INLINE is special, and we could probably kludge it in here, but
5492 * it's still buffered so for safety lets just fall back to the generic
5493 * buffered path.
5494 *
5495 * For COMPRESSED we _have_ to read the entire extent in so we can
5496 * decompress it, so there will be buffering required no matter what we
5497 * do, so go ahead and fallback to buffered.
5498 *
5499 * We return -ENOTBLK because thats what makes DIO go ahead and go back
5500 * to buffered IO. Don't blame me, this is the price we pay for using
5501 * the generic code.
5502 */
5503 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) ||
5504 em->block_start == EXTENT_MAP_INLINE) {
5505 free_extent_map(em);
5506 return -ENOTBLK;
5507 }
5508
5509 /* Just a good old fashioned hole, return */
5510 if (!create && (em->block_start == EXTENT_MAP_HOLE ||
5511 test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
5512 free_extent_map(em);
5513 /* DIO will do one hole at a time, so just unlock a sector */
5514 unlock_extent(&BTRFS_I(inode)->io_tree, start,
5515 start + root->sectorsize - 1, GFP_NOFS);
5516 return 0;
5517 }
5518
5519 /*
5520 * We don't allocate a new extent in the following cases
5521 *
5522 * 1) The inode is marked as NODATACOW. In this case we'll just use the
5523 * existing extent.
5524 * 2) The extent is marked as PREALLOC. We're good to go here and can
5525 * just use the extent.
5526 *
5527 */
Chris Mason46bfbb52010-05-26 11:04:10 -04005528 if (!create) {
5529 len = em->len - (start - em->start);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005530 goto map;
Chris Mason46bfbb52010-05-26 11:04:10 -04005531 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005532
5533 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
5534 ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
5535 em->block_start != EXTENT_MAP_HOLE)) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04005536 int type;
5537 int ret;
Chris Mason46bfbb52010-05-26 11:04:10 -04005538 u64 block_start;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005539
5540 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
5541 type = BTRFS_ORDERED_PREALLOC;
5542 else
5543 type = BTRFS_ORDERED_NOCOW;
Chris Mason46bfbb52010-05-26 11:04:10 -04005544 len = min(len, em->len - (start - em->start));
Josef Bacik4b46fce2010-05-23 11:00:55 -04005545 block_start = em->block_start + (start - em->start);
Chris Mason46bfbb52010-05-26 11:04:10 -04005546
5547 /*
5548 * we're not going to log anything, but we do need
5549 * to make sure the current transaction stays open
5550 * while we look for nocow cross refs
5551 */
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005552 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005553 if (IS_ERR(trans))
Chris Mason46bfbb52010-05-26 11:04:10 -04005554 goto must_cow;
5555
5556 if (can_nocow_odirect(trans, inode, start, len) == 1) {
5557 ret = btrfs_add_ordered_extent_dio(inode, start,
5558 block_start, len, len, type);
5559 btrfs_end_transaction(trans, root);
5560 if (ret) {
5561 free_extent_map(em);
5562 return ret;
5563 }
5564 goto unlock;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005565 }
Chris Mason46bfbb52010-05-26 11:04:10 -04005566 btrfs_end_transaction(trans, root);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005567 }
Chris Mason46bfbb52010-05-26 11:04:10 -04005568must_cow:
5569 /*
5570 * this will cow the extent, reset the len in case we changed
5571 * it above
5572 */
5573 len = bh_result->b_size;
Josef Bacik16d299a2011-04-06 14:53:07 -04005574 em = btrfs_new_extent_direct(inode, em, start, len);
Chris Mason46bfbb52010-05-26 11:04:10 -04005575 if (IS_ERR(em))
5576 return PTR_ERR(em);
5577 len = min(len, em->len - (start - em->start));
5578unlock:
Chris Mason4845e442010-05-25 20:56:50 -04005579 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, start + len - 1,
5580 EXTENT_LOCKED | EXTENT_DELALLOC | EXTENT_DIRTY, 1,
5581 0, NULL, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005582map:
5583 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
5584 inode->i_blkbits;
Chris Mason46bfbb52010-05-26 11:04:10 -04005585 bh_result->b_size = len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005586 bh_result->b_bdev = em->bdev;
5587 set_buffer_mapped(bh_result);
5588 if (create && !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
5589 set_buffer_new(bh_result);
5590
5591 free_extent_map(em);
5592
5593 return 0;
5594}
5595
5596struct btrfs_dio_private {
5597 struct inode *inode;
5598 u64 logical_offset;
5599 u64 disk_bytenr;
5600 u64 bytes;
5601 u32 *csums;
5602 void *private;
Miao Xiee65e1532010-11-22 03:04:43 +00005603
5604 /* number of bios pending for this dio */
5605 atomic_t pending_bios;
5606
5607 /* IO errors */
5608 int errors;
5609
5610 struct bio *orig_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005611};
5612
5613static void btrfs_endio_direct_read(struct bio *bio, int err)
5614{
Miao Xiee65e1532010-11-22 03:04:43 +00005615 struct btrfs_dio_private *dip = bio->bi_private;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005616 struct bio_vec *bvec_end = bio->bi_io_vec + bio->bi_vcnt - 1;
5617 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005618 struct inode *inode = dip->inode;
5619 struct btrfs_root *root = BTRFS_I(inode)->root;
5620 u64 start;
5621 u32 *private = dip->csums;
5622
5623 start = dip->logical_offset;
5624 do {
5625 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)) {
5626 struct page *page = bvec->bv_page;
5627 char *kaddr;
5628 u32 csum = ~(u32)0;
5629 unsigned long flags;
5630
5631 local_irq_save(flags);
5632 kaddr = kmap_atomic(page, KM_IRQ0);
5633 csum = btrfs_csum_data(root, kaddr + bvec->bv_offset,
5634 csum, bvec->bv_len);
5635 btrfs_csum_final(csum, (char *)&csum);
5636 kunmap_atomic(kaddr, KM_IRQ0);
5637 local_irq_restore(flags);
5638
5639 flush_dcache_page(bvec->bv_page);
5640 if (csum != *private) {
Li Zefan33345d012011-04-20 10:31:50 +08005641 printk(KERN_ERR "btrfs csum failed ino %llu off"
Josef Bacik4b46fce2010-05-23 11:00:55 -04005642 " %llu csum %u private %u\n",
Li Zefan33345d012011-04-20 10:31:50 +08005643 (unsigned long long)btrfs_ino(inode),
5644 (unsigned long long)start,
Josef Bacik4b46fce2010-05-23 11:00:55 -04005645 csum, *private);
5646 err = -EIO;
5647 }
5648 }
5649
5650 start += bvec->bv_len;
5651 private++;
5652 bvec++;
5653 } while (bvec <= bvec_end);
5654
5655 unlock_extent(&BTRFS_I(inode)->io_tree, dip->logical_offset,
5656 dip->logical_offset + dip->bytes - 1, GFP_NOFS);
5657 bio->bi_private = dip->private;
5658
5659 kfree(dip->csums);
5660 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04005661
5662 /* If we had a csum failure make sure to clear the uptodate flag */
5663 if (err)
5664 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005665 dio_end_io(bio, err);
5666}
5667
5668static void btrfs_endio_direct_write(struct bio *bio, int err)
5669{
5670 struct btrfs_dio_private *dip = bio->bi_private;
5671 struct inode *inode = dip->inode;
5672 struct btrfs_root *root = BTRFS_I(inode)->root;
5673 struct btrfs_trans_handle *trans;
5674 struct btrfs_ordered_extent *ordered = NULL;
5675 struct extent_state *cached_state = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05005676 u64 ordered_offset = dip->logical_offset;
5677 u64 ordered_bytes = dip->bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005678 int ret;
5679
5680 if (err)
5681 goto out_done;
Chris Mason163cf092010-11-28 19:56:33 -05005682again:
5683 ret = btrfs_dec_test_first_ordered_pending(inode, &ordered,
5684 &ordered_offset,
5685 ordered_bytes);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005686 if (!ret)
Chris Mason163cf092010-11-28 19:56:33 -05005687 goto out_test;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005688
5689 BUG_ON(!ordered);
5690
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005691 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005692 if (IS_ERR(trans)) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04005693 err = -ENOMEM;
5694 goto out;
5695 }
5696 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
5697
5698 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags)) {
5699 ret = btrfs_ordered_update_i_size(inode, 0, ordered);
5700 if (!ret)
Chris Mason21151332011-11-10 20:39:08 -05005701 err = btrfs_update_inode_fallback(trans, root, inode);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005702 goto out;
5703 }
5704
5705 lock_extent_bits(&BTRFS_I(inode)->io_tree, ordered->file_offset,
5706 ordered->file_offset + ordered->len - 1, 0,
5707 &cached_state, GFP_NOFS);
5708
5709 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags)) {
5710 ret = btrfs_mark_extent_written(trans, inode,
5711 ordered->file_offset,
5712 ordered->file_offset +
5713 ordered->len);
5714 if (ret) {
5715 err = ret;
5716 goto out_unlock;
5717 }
5718 } else {
5719 ret = insert_reserved_file_extent(trans, inode,
5720 ordered->file_offset,
5721 ordered->start,
5722 ordered->disk_len,
5723 ordered->len,
5724 ordered->len,
5725 0, 0, 0,
5726 BTRFS_FILE_EXTENT_REG);
5727 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
5728 ordered->file_offset, ordered->len);
5729 if (ret) {
5730 err = ret;
5731 WARN_ON(1);
5732 goto out_unlock;
5733 }
5734 }
5735
5736 add_pending_csums(trans, inode, ordered->file_offset, &ordered->list);
Josef Bacik1ef30be2011-04-05 19:25:36 -04005737 ret = btrfs_ordered_update_i_size(inode, 0, ordered);
Miao Xiea39f7522011-09-11 10:52:25 -04005738 if (!ret || !test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags))
Chris Mason21151332011-11-10 20:39:08 -05005739 btrfs_update_inode_fallback(trans, root, inode);
Josef Bacik1ef30be2011-04-05 19:25:36 -04005740 ret = 0;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005741out_unlock:
5742 unlock_extent_cached(&BTRFS_I(inode)->io_tree, ordered->file_offset,
5743 ordered->file_offset + ordered->len - 1,
5744 &cached_state, GFP_NOFS);
5745out:
5746 btrfs_delalloc_release_metadata(inode, ordered->len);
5747 btrfs_end_transaction(trans, root);
Chris Mason163cf092010-11-28 19:56:33 -05005748 ordered_offset = ordered->file_offset + ordered->len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005749 btrfs_put_ordered_extent(ordered);
5750 btrfs_put_ordered_extent(ordered);
Chris Mason163cf092010-11-28 19:56:33 -05005751
5752out_test:
5753 /*
5754 * our bio might span multiple ordered extents. If we haven't
5755 * completed the accounting for the whole dio, go back and try again
5756 */
5757 if (ordered_offset < dip->logical_offset + dip->bytes) {
5758 ordered_bytes = dip->logical_offset + dip->bytes -
5759 ordered_offset;
5760 goto again;
5761 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005762out_done:
5763 bio->bi_private = dip->private;
5764
5765 kfree(dip->csums);
5766 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04005767
5768 /* If we had an error make sure to clear the uptodate flag */
5769 if (err)
5770 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005771 dio_end_io(bio, err);
5772}
5773
Chris Masoneaf25d92010-05-25 09:48:28 -04005774static int __btrfs_submit_bio_start_direct_io(struct inode *inode, int rw,
5775 struct bio *bio, int mirror_num,
5776 unsigned long bio_flags, u64 offset)
5777{
5778 int ret;
5779 struct btrfs_root *root = BTRFS_I(inode)->root;
5780 ret = btrfs_csum_one_bio(root, inode, bio, offset, 1);
5781 BUG_ON(ret);
5782 return 0;
5783}
5784
Miao Xiee65e1532010-11-22 03:04:43 +00005785static void btrfs_end_dio_bio(struct bio *bio, int err)
5786{
5787 struct btrfs_dio_private *dip = bio->bi_private;
5788
5789 if (err) {
Li Zefan33345d012011-04-20 10:31:50 +08005790 printk(KERN_ERR "btrfs direct IO failed ino %llu rw %lu "
Jan Beulich3dd14622010-12-07 14:54:09 +00005791 "sector %#Lx len %u err no %d\n",
Li Zefan33345d012011-04-20 10:31:50 +08005792 (unsigned long long)btrfs_ino(dip->inode), bio->bi_rw,
Jan Beulich3dd14622010-12-07 14:54:09 +00005793 (unsigned long long)bio->bi_sector, bio->bi_size, err);
Miao Xiee65e1532010-11-22 03:04:43 +00005794 dip->errors = 1;
5795
5796 /*
5797 * before atomic variable goto zero, we must make sure
5798 * dip->errors is perceived to be set.
5799 */
5800 smp_mb__before_atomic_dec();
5801 }
5802
5803 /* if there are more bios still pending for this dio, just exit */
5804 if (!atomic_dec_and_test(&dip->pending_bios))
5805 goto out;
5806
5807 if (dip->errors)
5808 bio_io_error(dip->orig_bio);
5809 else {
5810 set_bit(BIO_UPTODATE, &dip->orig_bio->bi_flags);
5811 bio_endio(dip->orig_bio, 0);
5812 }
5813out:
5814 bio_put(bio);
5815}
5816
5817static struct bio *btrfs_dio_bio_alloc(struct block_device *bdev,
5818 u64 first_sector, gfp_t gfp_flags)
5819{
5820 int nr_vecs = bio_get_nr_vecs(bdev);
5821 return btrfs_bio_alloc(bdev, first_sector, nr_vecs, gfp_flags);
5822}
5823
5824static inline int __btrfs_submit_dio_bio(struct bio *bio, struct inode *inode,
5825 int rw, u64 file_offset, int skip_sum,
Josef Bacik1ae39932011-04-06 14:41:34 -04005826 u32 *csums, int async_submit)
Miao Xiee65e1532010-11-22 03:04:43 +00005827{
5828 int write = rw & REQ_WRITE;
5829 struct btrfs_root *root = BTRFS_I(inode)->root;
5830 int ret;
5831
5832 bio_get(bio);
5833 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
5834 if (ret)
5835 goto err;
5836
Josef Bacik1ae39932011-04-06 14:41:34 -04005837 if (skip_sum)
5838 goto map;
5839
5840 if (write && async_submit) {
Miao Xiee65e1532010-11-22 03:04:43 +00005841 ret = btrfs_wq_submit_bio(root->fs_info,
5842 inode, rw, bio, 0, 0,
5843 file_offset,
5844 __btrfs_submit_bio_start_direct_io,
5845 __btrfs_submit_bio_done);
5846 goto err;
Josef Bacik1ae39932011-04-06 14:41:34 -04005847 } else if (write) {
5848 /*
5849 * If we aren't doing async submit, calculate the csum of the
5850 * bio now.
5851 */
5852 ret = btrfs_csum_one_bio(root, inode, bio, file_offset, 1);
5853 if (ret)
5854 goto err;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00005855 } else if (!skip_sum) {
5856 ret = btrfs_lookup_bio_sums_dio(root, inode, bio,
Miao Xiee65e1532010-11-22 03:04:43 +00005857 file_offset, csums);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00005858 if (ret)
5859 goto err;
5860 }
Miao Xiee65e1532010-11-22 03:04:43 +00005861
Josef Bacik1ae39932011-04-06 14:41:34 -04005862map:
5863 ret = btrfs_map_bio(root, rw, bio, 0, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00005864err:
5865 bio_put(bio);
5866 return ret;
5867}
5868
5869static int btrfs_submit_direct_hook(int rw, struct btrfs_dio_private *dip,
5870 int skip_sum)
5871{
5872 struct inode *inode = dip->inode;
5873 struct btrfs_root *root = BTRFS_I(inode)->root;
5874 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
5875 struct bio *bio;
5876 struct bio *orig_bio = dip->orig_bio;
5877 struct bio_vec *bvec = orig_bio->bi_io_vec;
5878 u64 start_sector = orig_bio->bi_sector;
5879 u64 file_offset = dip->logical_offset;
5880 u64 submit_len = 0;
5881 u64 map_length;
5882 int nr_pages = 0;
5883 u32 *csums = dip->csums;
5884 int ret = 0;
Josef Bacik1ae39932011-04-06 14:41:34 -04005885 int async_submit = 0;
Josef Bacik98bc3142011-03-22 11:00:46 -04005886 int write = rw & REQ_WRITE;
Miao Xiee65e1532010-11-22 03:04:43 +00005887
Miao Xiee65e1532010-11-22 03:04:43 +00005888 map_length = orig_bio->bi_size;
5889 ret = btrfs_map_block(map_tree, READ, start_sector << 9,
5890 &map_length, NULL, 0);
5891 if (ret) {
Josef Bacik64728bb2011-04-25 19:43:52 -04005892 bio_put(orig_bio);
Miao Xiee65e1532010-11-22 03:04:43 +00005893 return -EIO;
5894 }
5895
Josef Bacik02f57c72011-04-06 14:25:44 -04005896 if (map_length >= orig_bio->bi_size) {
5897 bio = orig_bio;
5898 goto submit;
5899 }
5900
Josef Bacik1ae39932011-04-06 14:41:34 -04005901 async_submit = 1;
Josef Bacik02f57c72011-04-06 14:25:44 -04005902 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev, start_sector, GFP_NOFS);
5903 if (!bio)
5904 return -ENOMEM;
5905 bio->bi_private = dip;
5906 bio->bi_end_io = btrfs_end_dio_bio;
5907 atomic_inc(&dip->pending_bios);
5908
Miao Xiee65e1532010-11-22 03:04:43 +00005909 while (bvec <= (orig_bio->bi_io_vec + orig_bio->bi_vcnt - 1)) {
5910 if (unlikely(map_length < submit_len + bvec->bv_len ||
5911 bio_add_page(bio, bvec->bv_page, bvec->bv_len,
5912 bvec->bv_offset) < bvec->bv_len)) {
5913 /*
5914 * inc the count before we submit the bio so
5915 * we know the end IO handler won't happen before
5916 * we inc the count. Otherwise, the dip might get freed
5917 * before we're done setting it up
5918 */
5919 atomic_inc(&dip->pending_bios);
5920 ret = __btrfs_submit_dio_bio(bio, inode, rw,
5921 file_offset, skip_sum,
Josef Bacik1ae39932011-04-06 14:41:34 -04005922 csums, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00005923 if (ret) {
5924 bio_put(bio);
5925 atomic_dec(&dip->pending_bios);
5926 goto out_err;
5927 }
5928
Josef Bacik98bc3142011-03-22 11:00:46 -04005929 /* Write's use the ordered csums */
5930 if (!write && !skip_sum)
Miao Xiee65e1532010-11-22 03:04:43 +00005931 csums = csums + nr_pages;
5932 start_sector += submit_len >> 9;
5933 file_offset += submit_len;
5934
5935 submit_len = 0;
5936 nr_pages = 0;
5937
5938 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev,
5939 start_sector, GFP_NOFS);
5940 if (!bio)
5941 goto out_err;
5942 bio->bi_private = dip;
5943 bio->bi_end_io = btrfs_end_dio_bio;
5944
5945 map_length = orig_bio->bi_size;
5946 ret = btrfs_map_block(map_tree, READ, start_sector << 9,
5947 &map_length, NULL, 0);
5948 if (ret) {
5949 bio_put(bio);
5950 goto out_err;
5951 }
5952 } else {
5953 submit_len += bvec->bv_len;
5954 nr_pages ++;
5955 bvec++;
5956 }
5957 }
5958
Josef Bacik02f57c72011-04-06 14:25:44 -04005959submit:
Miao Xiee65e1532010-11-22 03:04:43 +00005960 ret = __btrfs_submit_dio_bio(bio, inode, rw, file_offset, skip_sum,
Josef Bacik1ae39932011-04-06 14:41:34 -04005961 csums, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00005962 if (!ret)
5963 return 0;
5964
5965 bio_put(bio);
5966out_err:
5967 dip->errors = 1;
5968 /*
5969 * before atomic variable goto zero, we must
5970 * make sure dip->errors is perceived to be set.
5971 */
5972 smp_mb__before_atomic_dec();
5973 if (atomic_dec_and_test(&dip->pending_bios))
5974 bio_io_error(dip->orig_bio);
5975
5976 /* bio_end_io() will handle error, so we needn't return it */
5977 return 0;
5978}
5979
Josef Bacik4b46fce2010-05-23 11:00:55 -04005980static void btrfs_submit_direct(int rw, struct bio *bio, struct inode *inode,
5981 loff_t file_offset)
5982{
5983 struct btrfs_root *root = BTRFS_I(inode)->root;
5984 struct btrfs_dio_private *dip;
5985 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005986 int skip_sum;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02005987 int write = rw & REQ_WRITE;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005988 int ret = 0;
5989
5990 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
5991
5992 dip = kmalloc(sizeof(*dip), GFP_NOFS);
5993 if (!dip) {
5994 ret = -ENOMEM;
5995 goto free_ordered;
5996 }
5997 dip->csums = NULL;
5998
Josef Bacik98bc3142011-03-22 11:00:46 -04005999 /* Write's use the ordered csum stuff, so we don't need dip->csums */
6000 if (!write && !skip_sum) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04006001 dip->csums = kmalloc(sizeof(u32) * bio->bi_vcnt, GFP_NOFS);
6002 if (!dip->csums) {
Daniel J Bluemanb4966b72011-03-09 16:46:42 +00006003 kfree(dip);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006004 ret = -ENOMEM;
6005 goto free_ordered;
6006 }
6007 }
6008
6009 dip->private = bio->bi_private;
6010 dip->inode = inode;
6011 dip->logical_offset = file_offset;
6012
Josef Bacik4b46fce2010-05-23 11:00:55 -04006013 dip->bytes = 0;
6014 do {
6015 dip->bytes += bvec->bv_len;
6016 bvec++;
6017 } while (bvec <= (bio->bi_io_vec + bio->bi_vcnt - 1));
6018
Chris Mason46bfbb52010-05-26 11:04:10 -04006019 dip->disk_bytenr = (u64)bio->bi_sector << 9;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006020 bio->bi_private = dip;
Miao Xiee65e1532010-11-22 03:04:43 +00006021 dip->errors = 0;
6022 dip->orig_bio = bio;
6023 atomic_set(&dip->pending_bios, 0);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006024
6025 if (write)
6026 bio->bi_end_io = btrfs_endio_direct_write;
6027 else
6028 bio->bi_end_io = btrfs_endio_direct_read;
6029
Miao Xiee65e1532010-11-22 03:04:43 +00006030 ret = btrfs_submit_direct_hook(rw, dip, skip_sum);
6031 if (!ret)
Chris Masoneaf25d92010-05-25 09:48:28 -04006032 return;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006033free_ordered:
6034 /*
6035 * If this is a write, we need to clean up the reserved space and kill
6036 * the ordered extent.
6037 */
6038 if (write) {
6039 struct btrfs_ordered_extent *ordered;
Josef Bacik955256f2010-11-19 09:41:10 -05006040 ordered = btrfs_lookup_ordered_extent(inode, file_offset);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006041 if (!test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags) &&
6042 !test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags))
6043 btrfs_free_reserved_extent(root, ordered->start,
6044 ordered->disk_len);
6045 btrfs_put_ordered_extent(ordered);
6046 btrfs_put_ordered_extent(ordered);
6047 }
6048 bio_endio(bio, ret);
6049}
6050
Chris Mason5a5f79b2010-05-26 21:33:37 -04006051static ssize_t check_direct_IO(struct btrfs_root *root, int rw, struct kiocb *iocb,
6052 const struct iovec *iov, loff_t offset,
6053 unsigned long nr_segs)
6054{
6055 int seg;
Josef Bacika1b75f72011-04-08 15:51:18 +00006056 int i;
Chris Mason5a5f79b2010-05-26 21:33:37 -04006057 size_t size;
6058 unsigned long addr;
6059 unsigned blocksize_mask = root->sectorsize - 1;
6060 ssize_t retval = -EINVAL;
6061 loff_t end = offset;
6062
6063 if (offset & blocksize_mask)
6064 goto out;
6065
6066 /* Check the memory alignment. Blocks cannot straddle pages */
6067 for (seg = 0; seg < nr_segs; seg++) {
6068 addr = (unsigned long)iov[seg].iov_base;
6069 size = iov[seg].iov_len;
6070 end += size;
Josef Bacika1b75f72011-04-08 15:51:18 +00006071 if ((addr & blocksize_mask) || (size & blocksize_mask))
Chris Mason5a5f79b2010-05-26 21:33:37 -04006072 goto out;
Josef Bacika1b75f72011-04-08 15:51:18 +00006073
6074 /* If this is a write we don't need to check anymore */
6075 if (rw & WRITE)
6076 continue;
6077
6078 /*
6079 * Check to make sure we don't have duplicate iov_base's in this
6080 * iovec, if so return EINVAL, otherwise we'll get csum errors
6081 * when reading back.
6082 */
6083 for (i = seg + 1; i < nr_segs; i++) {
6084 if (iov[seg].iov_base == iov[i].iov_base)
6085 goto out;
6086 }
Chris Mason5a5f79b2010-05-26 21:33:37 -04006087 }
6088 retval = 0;
6089out:
6090 return retval;
6091}
Chris Mason16432982008-04-10 10:23:21 -04006092static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
6093 const struct iovec *iov, loff_t offset,
6094 unsigned long nr_segs)
6095{
Josef Bacik4b46fce2010-05-23 11:00:55 -04006096 struct file *file = iocb->ki_filp;
6097 struct inode *inode = file->f_mapping->host;
6098 struct btrfs_ordered_extent *ordered;
Chris Mason4845e442010-05-25 20:56:50 -04006099 struct extent_state *cached_state = NULL;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006100 u64 lockstart, lockend;
6101 ssize_t ret;
Chris Mason4845e442010-05-25 20:56:50 -04006102 int writing = rw & WRITE;
6103 int write_bits = 0;
Chris Mason3f7c5792010-05-26 10:59:53 -04006104 size_t count = iov_length(iov, nr_segs);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006105
Chris Mason5a5f79b2010-05-26 21:33:37 -04006106 if (check_direct_IO(BTRFS_I(inode)->root, rw, iocb, iov,
6107 offset, nr_segs)) {
6108 return 0;
6109 }
6110
Josef Bacik4b46fce2010-05-23 11:00:55 -04006111 lockstart = offset;
Chris Mason3f7c5792010-05-26 10:59:53 -04006112 lockend = offset + count - 1;
6113
6114 if (writing) {
6115 ret = btrfs_delalloc_reserve_space(inode, count);
6116 if (ret)
6117 goto out;
6118 }
Chris Mason4845e442010-05-25 20:56:50 -04006119
Josef Bacik4b46fce2010-05-23 11:00:55 -04006120 while (1) {
Chris Mason4845e442010-05-25 20:56:50 -04006121 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6122 0, &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006123 /*
6124 * We're concerned with the entire range that we're going to be
6125 * doing DIO to, so we need to make sure theres no ordered
6126 * extents in this range.
6127 */
6128 ordered = btrfs_lookup_ordered_range(inode, lockstart,
6129 lockend - lockstart + 1);
6130 if (!ordered)
6131 break;
Chris Mason4845e442010-05-25 20:56:50 -04006132 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6133 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006134 btrfs_start_ordered_extent(inode, ordered, 1);
6135 btrfs_put_ordered_extent(ordered);
6136 cond_resched();
6137 }
6138
Chris Mason4845e442010-05-25 20:56:50 -04006139 /*
6140 * we don't use btrfs_set_extent_delalloc because we don't want
6141 * the dirty or uptodate bits
6142 */
6143 if (writing) {
6144 write_bits = EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING;
6145 ret = set_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6146 EXTENT_DELALLOC, 0, NULL, &cached_state,
6147 GFP_NOFS);
6148 if (ret) {
6149 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
6150 lockend, EXTENT_LOCKED | write_bits,
6151 1, 0, &cached_state, GFP_NOFS);
6152 goto out;
6153 }
6154 }
6155
6156 free_extent_state(cached_state);
6157 cached_state = NULL;
6158
Chris Mason5a5f79b2010-05-26 21:33:37 -04006159 ret = __blockdev_direct_IO(rw, iocb, inode,
6160 BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev,
6161 iov, offset, nr_segs, btrfs_get_blocks_direct, NULL,
6162 btrfs_submit_direct, 0);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006163
6164 if (ret < 0 && ret != -EIOCBQUEUED) {
Chris Mason4845e442010-05-25 20:56:50 -04006165 clear_extent_bit(&BTRFS_I(inode)->io_tree, offset,
6166 offset + iov_length(iov, nr_segs) - 1,
6167 EXTENT_LOCKED | write_bits, 1, 0,
6168 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006169 } else if (ret >= 0 && ret < iov_length(iov, nr_segs)) {
6170 /*
6171 * We're falling back to buffered, unlock the section we didn't
6172 * do IO on.
6173 */
Chris Mason4845e442010-05-25 20:56:50 -04006174 clear_extent_bit(&BTRFS_I(inode)->io_tree, offset + ret,
6175 offset + iov_length(iov, nr_segs) - 1,
6176 EXTENT_LOCKED | write_bits, 1, 0,
6177 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006178 }
Chris Mason4845e442010-05-25 20:56:50 -04006179out:
6180 free_extent_state(cached_state);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006181 return ret;
Chris Mason16432982008-04-10 10:23:21 -04006182}
6183
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006184static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
6185 __u64 start, __u64 len)
6186{
Chris Masonec29ed52011-02-23 16:23:20 -05006187 return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent_fiemap);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006188}
6189
Chris Mason9ebefb182007-06-15 13:50:00 -04006190int btrfs_readpage(struct file *file, struct page *page)
6191{
Chris Masond1310b22008-01-24 16:13:08 -05006192 struct extent_io_tree *tree;
6193 tree = &BTRFS_I(page->mapping->host)->io_tree;
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02006194 return extent_read_full_page(tree, page, btrfs_get_extent, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04006195}
Chris Mason1832a6d2007-12-21 16:27:21 -05006196
Chris Mason39279cc2007-06-12 06:35:45 -04006197static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
6198{
Chris Masond1310b22008-01-24 16:13:08 -05006199 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04006200
6201
6202 if (current->flags & PF_MEMALLOC) {
6203 redirty_page_for_writepage(wbc, page);
6204 unlock_page(page);
6205 return 0;
6206 }
Chris Masond1310b22008-01-24 16:13:08 -05006207 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04006208 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
6209}
Chris Mason39279cc2007-06-12 06:35:45 -04006210
Chris Masonf4219502008-07-22 11:18:09 -04006211int btrfs_writepages(struct address_space *mapping,
6212 struct writeback_control *wbc)
Chris Masonb293f022007-11-01 19:45:34 -04006213{
Chris Masond1310b22008-01-24 16:13:08 -05006214 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05006215
Chris Masond1310b22008-01-24 16:13:08 -05006216 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04006217 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
6218}
6219
Chris Mason3ab2fb52007-11-08 10:59:22 -05006220static int
6221btrfs_readpages(struct file *file, struct address_space *mapping,
6222 struct list_head *pages, unsigned nr_pages)
6223{
Chris Masond1310b22008-01-24 16:13:08 -05006224 struct extent_io_tree *tree;
6225 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05006226 return extent_readpages(tree, mapping, pages, nr_pages,
6227 btrfs_get_extent);
6228}
Chris Masone6dcd2d2008-07-17 12:53:50 -04006229static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04006230{
Chris Masond1310b22008-01-24 16:13:08 -05006231 struct extent_io_tree *tree;
6232 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04006233 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006234
Chris Masond1310b22008-01-24 16:13:08 -05006235 tree = &BTRFS_I(page->mapping->host)->io_tree;
6236 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05006237 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04006238 if (ret == 1) {
6239 ClearPagePrivate(page);
6240 set_page_private(page, 0);
6241 page_cache_release(page);
6242 }
6243 return ret;
6244}
Chris Mason39279cc2007-06-12 06:35:45 -04006245
Chris Masone6dcd2d2008-07-17 12:53:50 -04006246static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
6247{
Chris Mason98509cf2008-09-11 15:51:43 -04006248 if (PageWriteback(page) || PageDirty(page))
6249 return 0;
Yan Zhengb335b002009-02-12 10:06:04 -05006250 return __btrfs_releasepage(page, gfp_flags & GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006251}
6252
Chris Masona52d9a82007-08-27 16:49:44 -04006253static void btrfs_invalidatepage(struct page *page, unsigned long offset)
6254{
Chris Masond1310b22008-01-24 16:13:08 -05006255 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006256 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006257 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006258 u64 page_start = page_offset(page);
6259 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006260
Chris Mason8b62b722009-09-02 16:53:46 -04006261
6262 /*
6263 * we have the page locked, so new writeback can't start,
6264 * and the dirty bit won't be cleared while we are here.
6265 *
6266 * Wait for IO on this page so that we can safely clear
6267 * the PagePrivate2 bit and do ordered accounting
6268 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006269 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04006270
Chris Masond1310b22008-01-24 16:13:08 -05006271 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006272 if (offset) {
6273 btrfs_releasepage(page, GFP_NOFS);
6274 return;
6275 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00006276 lock_extent_bits(tree, page_start, page_end, 0, &cached_state,
6277 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006278 ordered = btrfs_lookup_ordered_extent(page->mapping->host,
6279 page_offset(page));
6280 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04006281 /*
6282 * IO on this page will never be started, so we need
6283 * to account for any ordered extents now
6284 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006285 clear_extent_bit(tree, page_start, page_end,
6286 EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik32c00af2009-10-08 13:34:05 -04006287 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING, 1, 0,
Josef Bacik2ac55d42010-02-03 19:33:23 +00006288 &cached_state, GFP_NOFS);
Chris Mason8b62b722009-09-02 16:53:46 -04006289 /*
6290 * whoever cleared the private bit is responsible
6291 * for the finish_ordered_io
6292 */
6293 if (TestClearPagePrivate2(page)) {
6294 btrfs_finish_ordered_io(page->mapping->host,
6295 page_start, page_end);
6296 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006297 btrfs_put_ordered_extent(ordered);
Josef Bacik2ac55d42010-02-03 19:33:23 +00006298 cached_state = NULL;
6299 lock_extent_bits(tree, page_start, page_end, 0, &cached_state,
6300 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006301 }
6302 clear_extent_bit(tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04006303 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik2ac55d42010-02-03 19:33:23 +00006304 EXTENT_DO_ACCOUNTING, 1, 1, &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006305 __btrfs_releasepage(page, GFP_NOFS);
6306
Chris Mason4a096752008-07-21 10:29:44 -04006307 ClearPageChecked(page);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04006308 if (PagePrivate(page)) {
Chris Mason9ad6b7b2008-04-18 16:11:30 -04006309 ClearPagePrivate(page);
6310 set_page_private(page, 0);
6311 page_cache_release(page);
6312 }
Chris Mason39279cc2007-06-12 06:35:45 -04006313}
6314
Chris Mason9ebefb182007-06-15 13:50:00 -04006315/*
6316 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
6317 * called from a page fault handler when a page is first dirtied. Hence we must
6318 * be careful to check for EOF conditions here. We set the page up correctly
6319 * for a written page which means we get ENOSPC checking when writing into
6320 * holes and correct delalloc and unwritten extent mapping on filesystems that
6321 * support these features.
6322 *
6323 * We are not allowed to take the i_mutex here so we have to play games to
6324 * protect against truncate races as the page could now be beyond EOF. Because
6325 * vmtruncate() writes the inode size before removing pages, once we have the
6326 * page lock we can determine safely if the page is beyond EOF. If it is not
6327 * beyond EOF, then the page is guaranteed safe against truncation until we
6328 * unlock the page.
6329 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07006330int btrfs_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04006331{
Nick Pigginc2ec1752009-03-31 15:23:21 -07006332 struct page *page = vmf->page;
Chris Mason6da6aba2007-12-18 16:15:09 -05006333 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05006334 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006335 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
6336 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006337 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006338 char *kaddr;
6339 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04006340 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05006341 int ret;
Chris Masona52d9a82007-08-27 16:49:44 -04006342 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006343 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04006344
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006345 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Josef Bacik22c44fe2011-11-30 10:45:38 -05006346 if (!ret)
6347 ret = btrfs_update_time(vma->vm_file);
Nick Piggin56a76f82009-03-31 15:23:23 -07006348 if (ret) {
6349 if (ret == -ENOMEM)
6350 ret = VM_FAULT_OOM;
6351 else /* -ENOSPC, -EIO, etc */
6352 ret = VM_FAULT_SIGBUS;
Chris Mason1832a6d2007-12-21 16:27:21 -05006353 goto out;
Nick Piggin56a76f82009-03-31 15:23:23 -07006354 }
Chris Mason1832a6d2007-12-21 16:27:21 -05006355
Nick Piggin56a76f82009-03-31 15:23:23 -07006356 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006357again:
Chris Mason9ebefb182007-06-15 13:50:00 -04006358 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04006359 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006360 page_start = page_offset(page);
6361 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006362
Chris Mason9ebefb182007-06-15 13:50:00 -04006363 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04006364 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04006365 /* page got truncated out from underneath us */
6366 goto out_unlock;
6367 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006368 wait_on_page_writeback(page);
6369
Josef Bacik2ac55d42010-02-03 19:33:23 +00006370 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state,
6371 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006372 set_page_extent_mapped(page);
6373
Chris Masoneb84ae02008-07-17 13:53:27 -04006374 /*
6375 * we can't set the delalloc bits if there are pending ordered
6376 * extents. Drop our locks and wait for them to finish
6377 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006378 ordered = btrfs_lookup_ordered_extent(inode, page_start);
6379 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006380 unlock_extent_cached(io_tree, page_start, page_end,
6381 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006382 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04006383 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006384 btrfs_put_ordered_extent(ordered);
6385 goto again;
6386 }
6387
Josef Bacikfbf19082009-10-01 17:10:23 -04006388 /*
6389 * XXX - page_mkwrite gets called every time the page is dirtied, even
6390 * if it was already dirty, so for space accounting reasons we need to
6391 * clear any delalloc bits for the range we are fixing to save. There
6392 * is probably a better way to do this, but for now keep consistent with
6393 * prepare_pages in the normal write path.
6394 */
Josef Bacik2ac55d42010-02-03 19:33:23 +00006395 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04006396 EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00006397 0, 0, &cached_state, GFP_NOFS);
Josef Bacikfbf19082009-10-01 17:10:23 -04006398
Josef Bacik2ac55d42010-02-03 19:33:23 +00006399 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
6400 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006401 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006402 unlock_extent_cached(io_tree, page_start, page_end,
6403 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006404 ret = VM_FAULT_SIGBUS;
6405 goto out_unlock;
6406 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006407 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04006408
6409 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04006410 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04006411 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04006412 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04006413 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04006414
Chris Masone6dcd2d2008-07-17 12:53:50 -04006415 if (zero_start != PAGE_CACHE_SIZE) {
6416 kaddr = kmap(page);
6417 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
6418 flush_dcache_page(page);
6419 kunmap(page);
6420 }
Chris Mason247e7432008-07-17 12:53:51 -04006421 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006422 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04006423 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04006424
Chris Mason257c62e2009-10-13 13:21:08 -04006425 BTRFS_I(inode)->last_trans = root->fs_info->generation;
6426 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
6427
Josef Bacik2ac55d42010-02-03 19:33:23 +00006428 unlock_extent_cached(io_tree, page_start, page_end, &cached_state, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04006429
6430out_unlock:
Chris Mason50a9b212009-09-11 12:33:12 -04006431 if (!ret)
6432 return VM_FAULT_LOCKED;
Chris Mason9ebefb182007-06-15 13:50:00 -04006433 unlock_page(page);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006434 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason1832a6d2007-12-21 16:27:21 -05006435out:
Chris Mason9ebefb182007-06-15 13:50:00 -04006436 return ret;
6437}
6438
Josef Bacika41ad392011-01-31 15:30:16 -05006439static int btrfs_truncate(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04006440{
6441 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikfcb80c22011-05-03 10:40:22 -04006442 struct btrfs_block_rsv *rsv;
Chris Mason39279cc2007-06-12 06:35:45 -04006443 int ret;
Josef Bacik3893e332011-01-31 16:03:11 -05006444 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006445 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04006446 unsigned long nr;
Chris Masondbe674a2008-07-17 12:54:05 -04006447 u64 mask = root->sectorsize - 1;
Josef Bacik07127182011-08-19 10:29:59 -04006448 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04006449
Josef Bacik5d5e1032009-10-13 16:46:49 -04006450 ret = btrfs_truncate_page(inode->i_mapping, inode->i_size);
6451 if (ret)
Josef Bacika41ad392011-01-31 15:30:16 -05006452 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00006453
Chris Mason4a096752008-07-21 10:29:44 -04006454 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
Yan, Zheng80825102009-11-12 09:35:36 +00006455 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006456
Josef Bacikfcb80c22011-05-03 10:40:22 -04006457 /*
6458 * Yes ladies and gentelment, this is indeed ugly. The fact is we have
6459 * 3 things going on here
6460 *
6461 * 1) We need to reserve space for our orphan item and the space to
6462 * delete our orphan item. Lord knows we don't want to have a dangling
6463 * orphan item because we didn't reserve space to remove it.
6464 *
6465 * 2) We need to reserve space to update our inode.
6466 *
6467 * 3) We need to have something to cache all the space that is going to
6468 * be free'd up by the truncate operation, but also have some slack
6469 * space reserved in case it uses space during the truncate (thank you
6470 * very much snapshotting).
6471 *
6472 * And we need these to all be seperate. The fact is we can use alot of
6473 * space doing the truncate, and we have no earthly idea how much space
6474 * we will use, so we need the truncate reservation to be seperate so it
6475 * doesn't end up using space reserved for updating the inode or
6476 * removing the orphan item. We also need to be able to stop the
6477 * transaction and start a new one, which means we need to be able to
6478 * update the inode several times, and we have no idea of knowing how
6479 * many times that will be, so we can't just reserve 1 item for the
6480 * entirety of the opration, so that has to be done seperately as well.
6481 * Then there is the orphan item, which does indeed need to be held on
6482 * to for the whole operation, and we need nobody to touch this reserved
6483 * space except the orphan code.
6484 *
6485 * So that leaves us with
6486 *
6487 * 1) root->orphan_block_rsv - for the orphan deletion.
6488 * 2) rsv - for the truncate reservation, which we will steal from the
6489 * transaction reservation.
6490 * 3) fs_info->trans_block_rsv - this will have 1 items worth left for
6491 * updating the inode.
6492 */
6493 rsv = btrfs_alloc_block_rsv(root);
6494 if (!rsv)
6495 return -ENOMEM;
Josef Bacik4a338542011-08-29 11:01:31 -04006496 rsv->size = min_size;
Josef Bacikf0cd8462011-03-04 14:37:08 -05006497
Josef Bacik907cbce2011-08-08 13:46:15 -04006498 /*
Josef Bacik07127182011-08-19 10:29:59 -04006499 * 1 for the truncate slack space
Josef Bacik907cbce2011-08-08 13:46:15 -04006500 * 1 for the orphan item we're going to add
6501 * 1 for the orphan item deletion
6502 * 1 for updating the inode.
6503 */
Josef Bacik07127182011-08-19 10:29:59 -04006504 trans = btrfs_start_transaction(root, 4);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006505 if (IS_ERR(trans)) {
6506 err = PTR_ERR(trans);
6507 goto out;
6508 }
Josef Bacikf0cd8462011-03-04 14:37:08 -05006509
Josef Bacik907cbce2011-08-08 13:46:15 -04006510 /* Migrate the slack space for the truncate to our reserve */
6511 ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv, rsv,
6512 min_size);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006513 BUG_ON(ret);
Josef Bacikf0cd8462011-03-04 14:37:08 -05006514
6515 ret = btrfs_orphan_add(trans, inode);
6516 if (ret) {
6517 btrfs_end_transaction(trans, root);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006518 goto out;
Josef Bacikf0cd8462011-03-04 14:37:08 -05006519 }
6520
Chris Mason5a3f23d2009-03-31 13:27:11 -04006521 /*
6522 * setattr is responsible for setting the ordered_data_close flag,
6523 * but that is only tested during the last file release. That
6524 * could happen well after the next commit, leaving a great big
6525 * window where new writes may get lost if someone chooses to write
6526 * to this file after truncating to zero
6527 *
6528 * The inode doesn't have any dirty data here, and so if we commit
6529 * this is a noop. If someone immediately starts writing to the inode
6530 * it is very likely we'll catch some of their writes in this
6531 * transaction, and the commit will find this file on the ordered
6532 * data list with good things to send down.
6533 *
6534 * This is a best effort solution, there is still a window where
6535 * using truncate to replace the contents of the file will
6536 * end up with a zero length file after a crash.
6537 */
6538 if (inode->i_size == 0 && BTRFS_I(inode)->ordered_data_close)
6539 btrfs_add_ordered_operation(trans, root, inode);
6540
Yan, Zheng80825102009-11-12 09:35:36 +00006541 while (1) {
Josef Bacik36ba0222011-10-18 12:15:48 -04006542 ret = btrfs_block_rsv_refill(root, rsv, min_size);
Josef Bacik907cbce2011-08-08 13:46:15 -04006543 if (ret) {
6544 /*
6545 * This can only happen with the original transaction we
6546 * started above, every other time we shouldn't have a
6547 * transaction started yet.
6548 */
6549 if (ret == -EAGAIN)
6550 goto end_trans;
6551 err = ret;
6552 break;
6553 }
6554
Yan, Zhengd68fc572010-05-16 10:49:58 -04006555 if (!trans) {
Josef Bacik907cbce2011-08-08 13:46:15 -04006556 /* Just need the 1 for updating the inode */
6557 trans = btrfs_start_transaction(root, 1);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006558 if (IS_ERR(trans)) {
6559 err = PTR_ERR(trans);
6560 goto out;
6561 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04006562 }
6563
Josef Bacik907cbce2011-08-08 13:46:15 -04006564 trans->block_rsv = rsv;
6565
Yan, Zheng80825102009-11-12 09:35:36 +00006566 ret = btrfs_truncate_inode_items(trans, root, inode,
6567 inode->i_size,
6568 BTRFS_EXTENT_DATA_KEY);
Josef Bacik3893e332011-01-31 16:03:11 -05006569 if (ret != -EAGAIN) {
6570 err = ret;
Yan, Zheng80825102009-11-12 09:35:36 +00006571 break;
Josef Bacik3893e332011-01-31 16:03:11 -05006572 }
Chris Mason39279cc2007-06-12 06:35:45 -04006573
Josef Bacikfcb80c22011-05-03 10:40:22 -04006574 trans->block_rsv = &root->fs_info->trans_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00006575 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05006576 if (ret) {
6577 err = ret;
6578 break;
6579 }
Josef Bacik907cbce2011-08-08 13:46:15 -04006580end_trans:
Yan, Zheng80825102009-11-12 09:35:36 +00006581 nr = trans->blocks_used;
6582 btrfs_end_transaction(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -04006583 trans = NULL;
Yan, Zheng80825102009-11-12 09:35:36 +00006584 btrfs_btree_balance_dirty(root, nr);
Yan, Zheng80825102009-11-12 09:35:36 +00006585 }
6586
6587 if (ret == 0 && inode->i_nlink > 0) {
Josef Bacikfcb80c22011-05-03 10:40:22 -04006588 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00006589 ret = btrfs_orphan_del(trans, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05006590 if (ret)
6591 err = ret;
Josef Bacikded5db92011-03-04 14:09:46 -05006592 } else if (ret && inode->i_nlink > 0) {
6593 /*
6594 * Failed to do the truncate, remove us from the in memory
6595 * orphan list.
6596 */
6597 ret = btrfs_orphan_del(NULL, inode);
Yan, Zheng80825102009-11-12 09:35:36 +00006598 }
6599
Chris Mason917c16b2011-11-08 14:49:59 -05006600 if (trans) {
6601 trans->block_rsv = &root->fs_info->trans_block_rsv;
6602 ret = btrfs_update_inode(trans, root, inode);
6603 if (ret && !err)
6604 err = ret;
Josef Bacik7b128762008-07-24 12:17:14 -04006605
Chris Mason917c16b2011-11-08 14:49:59 -05006606 nr = trans->blocks_used;
6607 ret = btrfs_end_transaction_throttle(trans, root);
6608 btrfs_btree_balance_dirty(root, nr);
6609 }
Josef Bacikfcb80c22011-05-03 10:40:22 -04006610
6611out:
6612 btrfs_free_block_rsv(root, rsv);
6613
Josef Bacik3893e332011-01-31 16:03:11 -05006614 if (ret && !err)
6615 err = ret;
Josef Bacika41ad392011-01-31 15:30:16 -05006616
Josef Bacik3893e332011-01-31 16:03:11 -05006617 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04006618}
6619
Sven Wegener3b963622008-06-09 21:57:42 -04006620/*
Chris Masond352ac62008-09-29 15:18:18 -04006621 * create a new subvolume directory/inode (helper for the ioctl).
6622 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05006623int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04006624 struct btrfs_root *new_root, u64 new_dirid)
Chris Mason39279cc2007-06-12 06:35:45 -04006625{
Chris Mason39279cc2007-06-12 06:35:45 -04006626 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04006627 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006628 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006629
Josef Bacikaec74772008-07-24 12:12:38 -04006630 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2, new_dirid,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04006631 new_dirid, S_IFDIR | 0700, &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04006632 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04006633 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006634 inode->i_op = &btrfs_dir_inode_operations;
6635 inode->i_fop = &btrfs_dir_file_operations;
6636
Chris Mason39279cc2007-06-12 06:35:45 -04006637 inode->i_nlink = 1;
Chris Masondbe674a2008-07-17 12:54:05 -04006638 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04006639
Yan, Zheng76dda932009-09-21 16:00:26 -04006640 err = btrfs_update_inode(trans, new_root, inode);
6641 BUG_ON(err);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04006642
Yan, Zheng76dda932009-09-21 16:00:26 -04006643 iput(inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04006644 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006645}
6646
Chris Mason39279cc2007-06-12 06:35:45 -04006647struct inode *btrfs_alloc_inode(struct super_block *sb)
6648{
6649 struct btrfs_inode *ei;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006650 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04006651
6652 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
6653 if (!ei)
6654 return NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006655
6656 ei->root = NULL;
6657 ei->space_info = NULL;
6658 ei->generation = 0;
6659 ei->sequence = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04006660 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04006661 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04006662 ei->logged_trans = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006663 ei->delalloc_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006664 ei->disk_i_size = 0;
6665 ei->flags = 0;
Josef Bacik7709cde2011-08-04 10:25:02 -04006666 ei->csum_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006667 ei->index_cnt = (u64)-1;
6668 ei->last_unlink_trans = 0;
6669
Josef Bacik9e0baf62011-07-15 15:16:44 +00006670 spin_lock_init(&ei->lock);
6671 ei->outstanding_extents = 0;
6672 ei->reserved_extents = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006673
6674 ei->ordered_data_close = 0;
Yan, Zhengd68fc572010-05-16 10:49:58 -04006675 ei->orphan_meta_reserved = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006676 ei->dummy_inode = 0;
Chris Mason4cb53002011-05-24 15:35:30 -04006677 ei->in_defrag = 0;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05006678 ei->delalloc_meta_reserved = 0;
Li Zefan261507a02010-12-17 14:21:50 +08006679 ei->force_compress = BTRFS_COMPRESS_NONE;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006680
Miao Xie16cdcec2011-04-22 18:12:22 +08006681 ei->delayed_node = NULL;
6682
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006683 inode = &ei->vfs_inode;
David Sterbaa8067e02011-04-21 00:34:43 +02006684 extent_map_tree_init(&ei->extent_tree);
David Sterbaf993c882011-04-20 23:35:57 +02006685 extent_io_tree_init(&ei->io_tree, &inode->i_data);
6686 extent_io_tree_init(&ei->io_failure_tree, &inode->i_data);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006687 mutex_init(&ei->log_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006688 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Josef Bacik7b128762008-07-24 12:17:14 -04006689 INIT_LIST_HEAD(&ei->i_orphan);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006690 INIT_LIST_HEAD(&ei->delalloc_inodes);
Chris Mason5a3f23d2009-03-31 13:27:11 -04006691 INIT_LIST_HEAD(&ei->ordered_operations);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006692 RB_CLEAR_NODE(&ei->rb_node);
6693
6694 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04006695}
6696
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11006697static void btrfs_i_callback(struct rcu_head *head)
6698{
6699 struct inode *inode = container_of(head, struct inode, i_rcu);
6700 INIT_LIST_HEAD(&inode->i_dentry);
6701 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
6702}
6703
Chris Mason39279cc2007-06-12 06:35:45 -04006704void btrfs_destroy_inode(struct inode *inode)
6705{
Chris Masone6dcd2d2008-07-17 12:53:50 -04006706 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006707 struct btrfs_root *root = BTRFS_I(inode)->root;
6708
Chris Mason39279cc2007-06-12 06:35:45 -04006709 WARN_ON(!list_empty(&inode->i_dentry));
6710 WARN_ON(inode->i_data.nrpages);
Josef Bacik9e0baf62011-07-15 15:16:44 +00006711 WARN_ON(BTRFS_I(inode)->outstanding_extents);
6712 WARN_ON(BTRFS_I(inode)->reserved_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04006713 WARN_ON(BTRFS_I(inode)->delalloc_bytes);
6714 WARN_ON(BTRFS_I(inode)->csum_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -04006715
Chris Mason5a3f23d2009-03-31 13:27:11 -04006716 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05006717 * This can happen where we create an inode, but somebody else also
6718 * created the same inode and we need to destroy the one we already
6719 * created.
6720 */
6721 if (!root)
6722 goto free;
6723
6724 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04006725 * Make sure we're properly removed from the ordered operation
6726 * lists.
6727 */
6728 smp_mb();
6729 if (!list_empty(&BTRFS_I(inode)->ordered_operations)) {
6730 spin_lock(&root->fs_info->ordered_extent_lock);
6731 list_del_init(&BTRFS_I(inode)->ordered_operations);
6732 spin_unlock(&root->fs_info->ordered_extent_lock);
6733 }
6734
Yan, Zhengd68fc572010-05-16 10:49:58 -04006735 spin_lock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04006736 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
Li Zefan33345d012011-04-20 10:31:50 +08006737 printk(KERN_INFO "BTRFS: inode %llu still on the orphan list\n",
6738 (unsigned long long)btrfs_ino(inode));
Yan, Zheng80825102009-11-12 09:35:36 +00006739 list_del_init(&BTRFS_I(inode)->i_orphan);
Josef Bacik7b128762008-07-24 12:17:14 -04006740 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04006741 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04006742
Chris Masond3977122009-01-05 21:25:51 -05006743 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04006744 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
6745 if (!ordered)
6746 break;
6747 else {
Chris Masond3977122009-01-05 21:25:51 -05006748 printk(KERN_ERR "btrfs found ordered "
6749 "extent %llu %llu on inode cleanup\n",
6750 (unsigned long long)ordered->file_offset,
6751 (unsigned long long)ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006752 btrfs_remove_ordered_extent(inode, ordered);
6753 btrfs_put_ordered_extent(ordered);
6754 btrfs_put_ordered_extent(ordered);
6755 }
6756 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006757 inode_tree_del(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04006758 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
Josef Bacika6dbd422009-11-11 15:53:34 -05006759free:
Miao Xie16cdcec2011-04-22 18:12:22 +08006760 btrfs_remove_delayed_node(inode);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11006761 call_rcu(&inode->i_rcu, btrfs_i_callback);
Chris Mason39279cc2007-06-12 06:35:45 -04006762}
6763
Al Viro45321ac2010-06-07 13:43:19 -04006764int btrfs_drop_inode(struct inode *inode)
Yan, Zheng76dda932009-09-21 16:00:26 -04006765{
6766 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro45321ac2010-06-07 13:43:19 -04006767
Josef Bacik0af3d002010-06-21 14:48:16 -04006768 if (btrfs_root_refs(&root->root_item) == 0 &&
Chris Mason2cf85722011-07-26 15:35:09 -04006769 !btrfs_is_free_space_inode(root, inode))
Al Viro45321ac2010-06-07 13:43:19 -04006770 return 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04006771 else
Al Viro45321ac2010-06-07 13:43:19 -04006772 return generic_drop_inode(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04006773}
6774
Sven Wegener0ee0fda2008-07-30 16:54:26 -04006775static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04006776{
6777 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
6778
6779 inode_init_once(&ei->vfs_inode);
6780}
6781
6782void btrfs_destroy_cachep(void)
6783{
6784 if (btrfs_inode_cachep)
6785 kmem_cache_destroy(btrfs_inode_cachep);
6786 if (btrfs_trans_handle_cachep)
6787 kmem_cache_destroy(btrfs_trans_handle_cachep);
6788 if (btrfs_transaction_cachep)
6789 kmem_cache_destroy(btrfs_transaction_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04006790 if (btrfs_path_cachep)
6791 kmem_cache_destroy(btrfs_path_cachep);
Josef Bacikdc89e982011-01-28 17:05:48 -05006792 if (btrfs_free_space_cachep)
6793 kmem_cache_destroy(btrfs_free_space_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04006794}
6795
6796int btrfs_init_cachep(void)
6797{
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006798 btrfs_inode_cachep = kmem_cache_create("btrfs_inode_cache",
6799 sizeof(struct btrfs_inode), 0,
6800 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04006801 if (!btrfs_inode_cachep)
6802 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006803
6804 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle_cache",
6805 sizeof(struct btrfs_trans_handle), 0,
6806 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006807 if (!btrfs_trans_handle_cachep)
6808 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006809
6810 btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction_cache",
6811 sizeof(struct btrfs_transaction), 0,
6812 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006813 if (!btrfs_transaction_cachep)
6814 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006815
6816 btrfs_path_cachep = kmem_cache_create("btrfs_path_cache",
6817 sizeof(struct btrfs_path), 0,
6818 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006819 if (!btrfs_path_cachep)
6820 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006821
Josef Bacikdc89e982011-01-28 17:05:48 -05006822 btrfs_free_space_cachep = kmem_cache_create("btrfs_free_space_cache",
6823 sizeof(struct btrfs_free_space), 0,
6824 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
6825 if (!btrfs_free_space_cachep)
6826 goto fail;
6827
Chris Mason39279cc2007-06-12 06:35:45 -04006828 return 0;
6829fail:
6830 btrfs_destroy_cachep();
6831 return -ENOMEM;
6832}
6833
6834static int btrfs_getattr(struct vfsmount *mnt,
6835 struct dentry *dentry, struct kstat *stat)
6836{
6837 struct inode *inode = dentry->d_inode;
David Sterbafadc0d82011-11-20 07:33:38 -05006838 u32 blocksize = inode->i_sb->s_blocksize;
6839
Chris Mason39279cc2007-06-12 06:35:45 -04006840 generic_fillattr(inode, stat);
Al Viro0ee5dc62011-07-07 15:44:25 -04006841 stat->dev = BTRFS_I(inode)->root->anon_dev;
Chris Masond6667462008-01-03 14:51:00 -05006842 stat->blksize = PAGE_CACHE_SIZE;
David Sterbafadc0d82011-11-20 07:33:38 -05006843 stat->blocks = (ALIGN(inode_get_bytes(inode), blocksize) +
6844 ALIGN(BTRFS_I(inode)->delalloc_bytes, blocksize)) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04006845 return 0;
6846}
6847
Liu Bo75e7cb72011-03-22 10:12:20 +00006848/*
6849 * If a file is moved, it will inherit the cow and compression flags of the new
6850 * directory.
6851 */
6852static void fixup_inode_flags(struct inode *dir, struct inode *inode)
6853{
6854 struct btrfs_inode *b_dir = BTRFS_I(dir);
6855 struct btrfs_inode *b_inode = BTRFS_I(inode);
6856
6857 if (b_dir->flags & BTRFS_INODE_NODATACOW)
6858 b_inode->flags |= BTRFS_INODE_NODATACOW;
6859 else
6860 b_inode->flags &= ~BTRFS_INODE_NODATACOW;
6861
6862 if (b_dir->flags & BTRFS_INODE_COMPRESS)
6863 b_inode->flags |= BTRFS_INODE_COMPRESS;
6864 else
6865 b_inode->flags &= ~BTRFS_INODE_COMPRESS;
6866}
6867
Chris Masond3977122009-01-05 21:25:51 -05006868static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
6869 struct inode *new_dir, struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04006870{
6871 struct btrfs_trans_handle *trans;
6872 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006873 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04006874 struct inode *new_inode = new_dentry->d_inode;
6875 struct inode *old_inode = old_dentry->d_inode;
6876 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006877 u64 index = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006878 u64 root_objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04006879 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08006880 u64 old_ino = btrfs_ino(old_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006881
Li Zefan33345d012011-04-20 10:31:50 +08006882 if (btrfs_ino(new_dir) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhengf679a842009-09-24 09:17:31 -04006883 return -EPERM;
6884
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006885 /* we only allow rename subvolume link between subvolumes */
Li Zefan33345d012011-04-20 10:31:50 +08006886 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05006887 return -EXDEV;
6888
Li Zefan33345d012011-04-20 10:31:50 +08006889 if (old_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
6890 (new_inode && btrfs_ino(new_inode) == BTRFS_FIRST_FREE_OBJECTID))
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006891 return -ENOTEMPTY;
6892
Chris Mason39279cc2007-06-12 06:35:45 -04006893 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006894 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04006895 return -ENOTEMPTY;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006896 /*
6897 * we're using rename to replace one file with another.
6898 * and the replacement file is large. Start IO on it now so
6899 * we don't add too much work to the end of the transaction
6900 */
Bartlomiej Zolnierkiewicz4baf8c92009-08-07 13:47:08 -04006901 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size &&
Chris Mason5a3f23d2009-03-31 13:27:11 -04006902 old_inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
6903 filemap_flush(old_inode->i_mapping);
6904
Yan, Zheng76dda932009-09-21 16:00:26 -04006905 /* close the racy window with snapshot create/destroy ioctl */
Li Zefan33345d012011-04-20 10:31:50 +08006906 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04006907 down_read(&root->fs_info->subvol_sem);
Yan, Zhenga22285a2010-05-16 10:48:46 -04006908 /*
6909 * We want to reserve the absolute worst case amount of items. So if
6910 * both inodes are subvols and we need to unlink them then that would
6911 * require 4 item modifications, but if they are both normal inodes it
6912 * would require 5 item modifications, so we'll assume their normal
6913 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
6914 * should cover the worst case number of items we'll modify.
6915 */
6916 trans = btrfs_start_transaction(root, 20);
Johann Lombardib44c59a2011-03-31 13:23:47 +00006917 if (IS_ERR(trans)) {
6918 ret = PTR_ERR(trans);
6919 goto out_notrans;
6920 }
Chris Mason5f39d392007-10-15 16:14:19 -04006921
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006922 if (dest != root)
6923 btrfs_record_root_in_trans(trans, dest);
6924
Yan, Zhenga5719522009-09-24 09:17:31 -04006925 ret = btrfs_set_inode_index(new_dir, &index);
6926 if (ret)
6927 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006928
Li Zefan33345d012011-04-20 10:31:50 +08006929 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006930 /* force full log commit if subvolume involved. */
6931 root->fs_info->last_trans_log_full_commit = trans->transid;
6932 } else {
Yan, Zhenga5719522009-09-24 09:17:31 -04006933 ret = btrfs_insert_inode_ref(trans, dest,
6934 new_dentry->d_name.name,
6935 new_dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08006936 old_ino,
6937 btrfs_ino(new_dir), index);
Yan, Zhenga5719522009-09-24 09:17:31 -04006938 if (ret)
6939 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006940 /*
6941 * this is an ugly little race, but the rename is required
6942 * to make sure that if we crash, the inode is either at the
6943 * old name or the new one. pinning the log transaction lets
6944 * us make sure we don't allow a log commit to come in after
6945 * we unlink the name but before we add the new name back in.
6946 */
6947 btrfs_pin_log_trans(root);
6948 }
Chris Mason12fcfd22009-03-24 10:24:20 -04006949 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04006950 * make sure the inode gets flushed if it is replacing
6951 * something.
6952 */
Li Zefan33345d012011-04-20 10:31:50 +08006953 if (new_inode && new_inode->i_size && S_ISREG(old_inode->i_mode))
Chris Mason5a3f23d2009-03-31 13:27:11 -04006954 btrfs_add_ordered_operation(trans, root, old_inode);
Chris Mason5a3f23d2009-03-31 13:27:11 -04006955
Chris Mason39279cc2007-06-12 06:35:45 -04006956 old_dir->i_ctime = old_dir->i_mtime = ctime;
6957 new_dir->i_ctime = new_dir->i_mtime = ctime;
6958 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04006959
Chris Mason12fcfd22009-03-24 10:24:20 -04006960 if (old_dentry->d_parent != new_dentry->d_parent)
6961 btrfs_record_unlink_dir(trans, old_dir, old_inode, 1);
6962
Li Zefan33345d012011-04-20 10:31:50 +08006963 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006964 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
6965 ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid,
6966 old_dentry->d_name.name,
6967 old_dentry->d_name.len);
6968 } else {
Al Viro92986792011-03-04 17:14:37 +00006969 ret = __btrfs_unlink_inode(trans, root, old_dir,
6970 old_dentry->d_inode,
6971 old_dentry->d_name.name,
6972 old_dentry->d_name.len);
6973 if (!ret)
6974 ret = btrfs_update_inode(trans, root, old_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006975 }
6976 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04006977
6978 if (new_inode) {
6979 new_inode->i_ctime = CURRENT_TIME;
Li Zefan33345d012011-04-20 10:31:50 +08006980 if (unlikely(btrfs_ino(new_inode) ==
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006981 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
6982 root_objectid = BTRFS_I(new_inode)->location.objectid;
6983 ret = btrfs_unlink_subvol(trans, dest, new_dir,
6984 root_objectid,
6985 new_dentry->d_name.name,
6986 new_dentry->d_name.len);
6987 BUG_ON(new_inode->i_nlink == 0);
6988 } else {
6989 ret = btrfs_unlink_inode(trans, dest, new_dir,
6990 new_dentry->d_inode,
6991 new_dentry->d_name.name,
6992 new_dentry->d_name.len);
6993 }
6994 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04006995 if (new_inode->i_nlink == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04006996 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006997 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04006998 }
Chris Mason39279cc2007-06-12 06:35:45 -04006999 }
Josef Bacikaec74772008-07-24 12:12:38 -04007000
Liu Bo75e7cb72011-03-22 10:12:20 +00007001 fixup_inode_flags(new_dir, old_inode);
7002
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007003 ret = btrfs_add_link(trans, new_dir, old_inode,
7004 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04007005 new_dentry->d_name.len, 0, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007006 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04007007
Li Zefan33345d012011-04-20 10:31:50 +08007008 if (old_ino != BTRFS_FIRST_FREE_OBJECTID) {
Al Viro10d9f302011-07-16 23:09:10 -04007009 struct dentry *parent = new_dentry->d_parent;
Josef Bacik6a912212010-11-20 09:48:00 +00007010 btrfs_log_new_name(trans, old_inode, old_dir, parent);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007011 btrfs_end_log_trans(root);
7012 }
Chris Mason39279cc2007-06-12 06:35:45 -04007013out_fail:
Chris Masonab78c842008-07-29 16:15:18 -04007014 btrfs_end_transaction_throttle(trans, root);
Johann Lombardib44c59a2011-03-31 13:23:47 +00007015out_notrans:
Li Zefan33345d012011-04-20 10:31:50 +08007016 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04007017 up_read(&root->fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04007018
Chris Mason39279cc2007-06-12 06:35:45 -04007019 return ret;
7020}
7021
Chris Masond352ac62008-09-29 15:18:18 -04007022/*
7023 * some fairly slow code that needs optimization. This walks the list
7024 * of all the inodes with pending delalloc and forces them to disk.
7025 */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00007026int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput)
Chris Masonea8c2812008-08-04 23:17:27 -04007027{
7028 struct list_head *head = &root->fs_info->delalloc_inodes;
7029 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007030 struct inode *inode;
Chris Masonea8c2812008-08-04 23:17:27 -04007031
Yan Zhengc146afa2008-11-12 14:34:12 -05007032 if (root->fs_info->sb->s_flags & MS_RDONLY)
7033 return -EROFS;
7034
Chris Mason75eff682008-12-15 15:54:40 -05007035 spin_lock(&root->fs_info->delalloc_lock);
Chris Masond3977122009-01-05 21:25:51 -05007036 while (!list_empty(head)) {
Chris Masonea8c2812008-08-04 23:17:27 -04007037 binode = list_entry(head->next, struct btrfs_inode,
7038 delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007039 inode = igrab(&binode->vfs_inode);
7040 if (!inode)
7041 list_del_init(&binode->delalloc_inodes);
Chris Mason75eff682008-12-15 15:54:40 -05007042 spin_unlock(&root->fs_info->delalloc_lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007043 if (inode) {
Chris Mason8c8bee12008-09-29 11:19:10 -04007044 filemap_flush(inode->i_mapping);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00007045 if (delay_iput)
7046 btrfs_add_delayed_iput(inode);
7047 else
7048 iput(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007049 }
7050 cond_resched();
Chris Mason75eff682008-12-15 15:54:40 -05007051 spin_lock(&root->fs_info->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04007052 }
Chris Mason75eff682008-12-15 15:54:40 -05007053 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -04007054
7055 /* the filemap_flush will queue IO into the worker threads, but
7056 * we have to make sure the IO is actually started and that
7057 * ordered extents get created before we return
7058 */
7059 atomic_inc(&root->fs_info->async_submit_draining);
Chris Masond3977122009-01-05 21:25:51 -05007060 while (atomic_read(&root->fs_info->nr_async_submits) ||
Chris Mason771ed682008-11-06 22:02:51 -05007061 atomic_read(&root->fs_info->async_delalloc_pages)) {
Chris Mason8c8bee12008-09-29 11:19:10 -04007062 wait_event(root->fs_info->async_submit_wait,
Chris Mason771ed682008-11-06 22:02:51 -05007063 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
7064 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee12008-09-29 11:19:10 -04007065 }
7066 atomic_dec(&root->fs_info->async_submit_draining);
Chris Masonea8c2812008-08-04 23:17:27 -04007067 return 0;
7068}
7069
Chris Mason39279cc2007-06-12 06:35:45 -04007070static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
7071 const char *symname)
7072{
7073 struct btrfs_trans_handle *trans;
7074 struct btrfs_root *root = BTRFS_I(dir)->root;
7075 struct btrfs_path *path;
7076 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05007077 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04007078 int err;
7079 int drop_inode = 0;
7080 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04007081 u64 index = 0 ;
Chris Mason39279cc2007-06-12 06:35:45 -04007082 int name_len;
7083 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04007084 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04007085 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04007086 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05007087 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007088
7089 name_len = strlen(symname) + 1;
7090 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
7091 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05007092
Josef Bacik9ed74f22009-09-11 16:12:44 -04007093 /*
7094 * 2 items for inode item and ref
7095 * 2 items for dir items
7096 * 1 item for xattr if selinux is on
7097 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04007098 trans = btrfs_start_transaction(root, 5);
7099 if (IS_ERR(trans))
7100 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05007101
Li Zefan581bb052011-04-20 10:06:11 +08007102 err = btrfs_find_free_ino(root, &objectid);
7103 if (err)
7104 goto out_unlock;
7105
Josef Bacikaec74772008-07-24 12:12:38 -04007106 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08007107 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04007108 S_IFLNK|S_IRWXUGO, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04007109 if (IS_ERR(inode)) {
7110 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007111 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04007112 }
Chris Mason39279cc2007-06-12 06:35:45 -04007113
Eric Paris2a7dba32011-02-01 11:05:39 -05007114 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04007115 if (err) {
7116 drop_inode = 1;
7117 goto out_unlock;
7118 }
7119
Josef Bacika1b075d2010-11-19 20:36:11 +00007120 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04007121 if (err)
7122 drop_inode = 1;
7123 else {
7124 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04007125 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04007126 inode->i_fop = &btrfs_file_operations;
7127 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05007128 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04007129 }
Chris Mason39279cc2007-06-12 06:35:45 -04007130 if (drop_inode)
7131 goto out_unlock;
7132
7133 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07007134 if (!path) {
7135 err = -ENOMEM;
7136 drop_inode = 1;
7137 goto out_unlock;
7138 }
Li Zefan33345d012011-04-20 10:31:50 +08007139 key.objectid = btrfs_ino(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007140 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007141 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
7142 datasize = btrfs_file_extent_calc_inline_size(name_len);
7143 err = btrfs_insert_empty_item(trans, root, path, &key,
7144 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04007145 if (err) {
7146 drop_inode = 1;
Julia Lawallb0839162011-05-14 07:10:51 +00007147 btrfs_free_path(path);
Chris Mason54aa1f42007-06-22 14:16:25 -04007148 goto out_unlock;
7149 }
Chris Mason5f39d392007-10-15 16:14:19 -04007150 leaf = path->nodes[0];
7151 ei = btrfs_item_ptr(leaf, path->slots[0],
7152 struct btrfs_file_extent_item);
7153 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
7154 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04007155 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -04007156 btrfs_set_file_extent_encryption(leaf, ei, 0);
7157 btrfs_set_file_extent_compression(leaf, ei, 0);
7158 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
7159 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
7160
Chris Mason39279cc2007-06-12 06:35:45 -04007161 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04007162 write_extent_buffer(leaf, symname, ptr, name_len);
7163 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04007164 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04007165
Chris Mason39279cc2007-06-12 06:35:45 -04007166 inode->i_op = &btrfs_symlink_inode_operations;
7167 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04007168 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Yan Zhengd899e052008-10-30 14:25:28 -04007169 inode_set_bytes(inode, name_len);
Chris Masondbe674a2008-07-17 12:54:05 -04007170 btrfs_i_size_write(inode, name_len - 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04007171 err = btrfs_update_inode(trans, root, inode);
7172 if (err)
7173 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04007174
7175out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04007176 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04007177 btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04007178 if (drop_inode) {
7179 inode_dec_link_count(inode);
7180 iput(inode);
7181 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04007182 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04007183 return err;
7184}
Chris Mason16432982008-04-10 10:23:21 -04007185
Josef Bacik0af3d002010-06-21 14:48:16 -04007186static int __btrfs_prealloc_file_range(struct inode *inode, int mode,
7187 u64 start, u64 num_bytes, u64 min_size,
7188 loff_t actual_len, u64 *alloc_hint,
7189 struct btrfs_trans_handle *trans)
Yan Zhengd899e052008-10-30 14:25:28 -04007190{
Yan Zhengd899e052008-10-30 14:25:28 -04007191 struct btrfs_root *root = BTRFS_I(inode)->root;
7192 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -04007193 u64 cur_offset = start;
Josef Bacik55a61d12010-11-22 18:50:32 +00007194 u64 i_size;
Yan Zhengd899e052008-10-30 14:25:28 -04007195 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04007196 bool own_trans = true;
Yan Zhengd899e052008-10-30 14:25:28 -04007197
Josef Bacik0af3d002010-06-21 14:48:16 -04007198 if (trans)
7199 own_trans = false;
Yan Zhengd899e052008-10-30 14:25:28 -04007200 while (num_bytes > 0) {
Josef Bacik0af3d002010-06-21 14:48:16 -04007201 if (own_trans) {
7202 trans = btrfs_start_transaction(root, 3);
7203 if (IS_ERR(trans)) {
7204 ret = PTR_ERR(trans);
7205 break;
7206 }
Yan Zhengd899e052008-10-30 14:25:28 -04007207 }
Yan, Zheng5a303d52009-11-12 09:34:52 +00007208
Yan, Zhengefa56462010-05-16 10:49:59 -04007209 ret = btrfs_reserve_extent(trans, root, num_bytes, min_size,
7210 0, *alloc_hint, (u64)-1, &ins, 1);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007211 if (ret) {
Josef Bacik0af3d002010-06-21 14:48:16 -04007212 if (own_trans)
7213 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04007214 break;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007215 }
7216
Yan Zhengd899e052008-10-30 14:25:28 -04007217 ret = insert_reserved_file_extent(trans, inode,
7218 cur_offset, ins.objectid,
7219 ins.offset, ins.offset,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00007220 ins.offset, 0, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04007221 BTRFS_FILE_EXTENT_PREALLOC);
7222 BUG_ON(ret);
Chris Masona1ed8352009-09-11 12:27:37 -04007223 btrfs_drop_extent_cache(inode, cur_offset,
7224 cur_offset + ins.offset -1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007225
Yan Zhengd899e052008-10-30 14:25:28 -04007226 num_bytes -= ins.offset;
7227 cur_offset += ins.offset;
Yan, Zhengefa56462010-05-16 10:49:59 -04007228 *alloc_hint = ins.objectid + ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007229
Yan Zhengd899e052008-10-30 14:25:28 -04007230 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +02007231 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -04007232 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
Yan, Zhengefa56462010-05-16 10:49:59 -04007233 (actual_len > inode->i_size) &&
7234 (cur_offset > inode->i_size)) {
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00007235 if (cur_offset > actual_len)
Josef Bacik55a61d12010-11-22 18:50:32 +00007236 i_size = actual_len;
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00007237 else
Josef Bacik55a61d12010-11-22 18:50:32 +00007238 i_size = cur_offset;
7239 i_size_write(inode, i_size);
7240 btrfs_ordered_update_i_size(inode, i_size, NULL);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007241 }
7242
Yan Zhengd899e052008-10-30 14:25:28 -04007243 ret = btrfs_update_inode(trans, root, inode);
7244 BUG_ON(ret);
Yan Zhengd899e052008-10-30 14:25:28 -04007245
Josef Bacik0af3d002010-06-21 14:48:16 -04007246 if (own_trans)
7247 btrfs_end_transaction(trans, root);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007248 }
Yan Zhengd899e052008-10-30 14:25:28 -04007249 return ret;
7250}
7251
Josef Bacik0af3d002010-06-21 14:48:16 -04007252int btrfs_prealloc_file_range(struct inode *inode, int mode,
7253 u64 start, u64 num_bytes, u64 min_size,
7254 loff_t actual_len, u64 *alloc_hint)
7255{
7256 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
7257 min_size, actual_len, alloc_hint,
7258 NULL);
7259}
7260
7261int btrfs_prealloc_file_range_trans(struct inode *inode,
7262 struct btrfs_trans_handle *trans, int mode,
7263 u64 start, u64 num_bytes, u64 min_size,
7264 loff_t actual_len, u64 *alloc_hint)
7265{
7266 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
7267 min_size, actual_len, alloc_hint, trans);
7268}
7269
Chris Masone6dcd2d2008-07-17 12:53:50 -04007270static int btrfs_set_page_dirty(struct page *page)
7271{
Chris Masone6dcd2d2008-07-17 12:53:50 -04007272 return __set_page_dirty_nobuffers(page);
7273}
7274
Al Viro10556cb2011-06-20 19:28:19 -04007275static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -05007276{
Li Zefanb83cc962010-12-20 16:04:08 +08007277 struct btrfs_root *root = BTRFS_I(inode)->root;
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +00007278 umode_t mode = inode->i_mode;
Li Zefanb83cc962010-12-20 16:04:08 +08007279
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +00007280 if (mask & MAY_WRITE &&
7281 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) {
7282 if (btrfs_root_readonly(root))
7283 return -EROFS;
7284 if (BTRFS_I(inode)->flags & BTRFS_INODE_READONLY)
7285 return -EACCES;
7286 }
Al Viro2830ba72011-06-20 19:16:29 -04007287 return generic_permission(inode, mask);
Yanfdebe2b2008-01-14 13:26:08 -05007288}
Chris Mason39279cc2007-06-12 06:35:45 -04007289
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007290static const struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -05007291 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -04007292 .lookup = btrfs_lookup,
7293 .create = btrfs_create,
7294 .unlink = btrfs_unlink,
7295 .link = btrfs_link,
7296 .mkdir = btrfs_mkdir,
7297 .rmdir = btrfs_rmdir,
7298 .rename = btrfs_rename,
7299 .symlink = btrfs_symlink,
7300 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04007301 .mknod = btrfs_mknod,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007302 .setxattr = btrfs_setxattr,
7303 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05007304 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007305 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05007306 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007307 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04007308};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007309static const struct inode_operations btrfs_dir_ro_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007310 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05007311 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007312 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04007313};
Yan, Zheng76dda932009-09-21 16:00:26 -04007314
Alexey Dobriyan828c0952009-10-01 15:43:56 -07007315static const struct file_operations btrfs_dir_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007316 .llseek = generic_file_llseek,
7317 .read = generic_read_dir,
David Woodhousecbdf5a22008-08-06 19:42:33 +01007318 .readdir = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04007319 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04007320#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04007321 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04007322#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04007323 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -04007324 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -04007325};
7326
Chris Masond1310b22008-01-24 16:13:08 -05007327static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04007328 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05007329 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04007330 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04007331 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04007332 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04007333 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05007334 .set_bit_hook = btrfs_set_bit_hook,
7335 .clear_bit_hook = btrfs_clear_bit_hook,
Josef Bacik9ed74f22009-09-11 16:12:44 -04007336 .merge_extent_hook = btrfs_merge_extent_hook,
7337 .split_extent_hook = btrfs_split_extent_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04007338};
7339
Chris Mason35054392009-01-21 13:11:13 -05007340/*
7341 * btrfs doesn't support the bmap operation because swapfiles
7342 * use bmap to make a mapping of extents in the file. They assume
7343 * these extents won't change over the life of the file and they
7344 * use the bmap result to do IO directly to the drive.
7345 *
7346 * the btrfs bmap call would return logical addresses that aren't
7347 * suitable for IO and they also will change frequently as COW
7348 * operations happen. So, swapfile + btrfs == corruption.
7349 *
7350 * For now we're avoiding this by dropping bmap.
7351 */
Alexey Dobriyan7f094102009-09-21 17:01:10 -07007352static const struct address_space_operations btrfs_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04007353 .readpage = btrfs_readpage,
7354 .writepage = btrfs_writepage,
Chris Masonb293f022007-11-01 19:45:34 -04007355 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05007356 .readpages = btrfs_readpages,
Chris Mason16432982008-04-10 10:23:21 -04007357 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04007358 .invalidatepage = btrfs_invalidatepage,
7359 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04007360 .set_page_dirty = btrfs_set_page_dirty,
Andi Kleen465fdd92009-09-16 11:50:18 +02007361 .error_remove_page = generic_error_remove_page,
Chris Mason39279cc2007-06-12 06:35:45 -04007362};
7363
Alexey Dobriyan7f094102009-09-21 17:01:10 -07007364static const struct address_space_operations btrfs_symlink_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04007365 .readpage = btrfs_readpage,
7366 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04007367 .invalidatepage = btrfs_invalidatepage,
7368 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04007369};
7370
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007371static const struct inode_operations btrfs_file_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007372 .getattr = btrfs_getattr,
7373 .setattr = btrfs_setattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007374 .setxattr = btrfs_setxattr,
7375 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05007376 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007377 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05007378 .permission = btrfs_permission,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05007379 .fiemap = btrfs_fiemap,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007380 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04007381};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007382static const struct inode_operations btrfs_special_inode_operations = {
Josef Bacik618e21d2007-07-11 10:18:17 -04007383 .getattr = btrfs_getattr,
7384 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05007385 .permission = btrfs_permission,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007386 .setxattr = btrfs_setxattr,
7387 .getxattr = btrfs_getxattr,
Josef Bacik33268ea2008-07-24 12:16:36 -04007388 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007389 .removexattr = btrfs_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007390 .get_acl = btrfs_get_acl,
Josef Bacik618e21d2007-07-11 10:18:17 -04007391};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007392static const struct inode_operations btrfs_symlink_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007393 .readlink = generic_readlink,
7394 .follow_link = page_follow_link_light,
7395 .put_link = page_put_link,
Li Zefanf2095612010-11-19 02:05:24 +00007396 .getattr = btrfs_getattr,
Josef Bacik22c44fe2011-11-30 10:45:38 -05007397 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05007398 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -05007399 .setxattr = btrfs_setxattr,
7400 .getxattr = btrfs_getxattr,
7401 .listxattr = btrfs_listxattr,
7402 .removexattr = btrfs_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007403 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04007404};
Yan, Zheng76dda932009-09-21 16:00:26 -04007405
Alexey Dobriyan82d339d2009-10-09 09:54:36 -04007406const struct dentry_operations btrfs_dentry_operations = {
Yan, Zheng76dda932009-09-21 16:00:26 -04007407 .d_delete = btrfs_dentry_delete,
Josef Bacikb4aff1f2011-06-28 16:18:59 -04007408 .d_release = btrfs_dentry_release,
Yan, Zheng76dda932009-09-21 16:00:26 -04007409};