blob: 06075043da5dce7968f35bba88842985868a418f [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);
Josef Bacik5fd02042012-05-02 14:00:54 -040092static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent);
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);
Chris Masonc8b97812008-10-29 14:49:59 -0400153 if (ret) {
154 err = ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400155 goto fail;
156 }
157 leaf = path->nodes[0];
158 ei = btrfs_item_ptr(leaf, path->slots[0],
159 struct btrfs_file_extent_item);
160 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
161 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
162 btrfs_set_file_extent_encryption(leaf, ei, 0);
163 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
164 btrfs_set_file_extent_ram_bytes(leaf, ei, size);
165 ptr = btrfs_file_extent_inline_start(ei);
166
Li Zefan261507a02010-12-17 14:21:50 +0800167 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -0400168 struct page *cpage;
169 int i = 0;
Chris Masond3977122009-01-05 21:25:51 -0500170 while (compressed_size > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -0400171 cpage = compressed_pages[i];
Chris Mason5b050f02008-11-11 09:34:41 -0500172 cur_size = min_t(unsigned long, compressed_size,
Chris Masonc8b97812008-10-29 14:49:59 -0400173 PAGE_CACHE_SIZE);
174
Cong Wang7ac687d2011-11-25 23:14:28 +0800175 kaddr = kmap_atomic(cpage);
Chris Masonc8b97812008-10-29 14:49:59 -0400176 write_extent_buffer(leaf, kaddr, ptr, cur_size);
Cong Wang7ac687d2011-11-25 23:14:28 +0800177 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400178
179 i++;
180 ptr += cur_size;
181 compressed_size -= cur_size;
182 }
183 btrfs_set_file_extent_compression(leaf, ei,
Li Zefan261507a02010-12-17 14:21:50 +0800184 compress_type);
Chris Masonc8b97812008-10-29 14:49:59 -0400185 } else {
186 page = find_get_page(inode->i_mapping,
187 start >> PAGE_CACHE_SHIFT);
188 btrfs_set_file_extent_compression(leaf, ei, 0);
Cong Wang7ac687d2011-11-25 23:14:28 +0800189 kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -0400190 offset = start & (PAGE_CACHE_SIZE - 1);
191 write_extent_buffer(leaf, kaddr + offset, ptr, size);
Cong Wang7ac687d2011-11-25 23:14:28 +0800192 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400193 page_cache_release(page);
194 }
195 btrfs_mark_buffer_dirty(leaf);
196 btrfs_free_path(path);
197
Yan, Zhengc21677542009-11-12 09:34:21 +0000198 /*
199 * we're an inline extent, so nobody can
200 * extend the file past i_size without locking
201 * a page we already have locked.
202 *
203 * We must do any isize and inode updates
204 * before we unlock the pages. Otherwise we
205 * could end up racing with unlink.
206 */
Chris Masonc8b97812008-10-29 14:49:59 -0400207 BTRFS_I(inode)->disk_i_size = inode->i_size;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100208 ret = btrfs_update_inode(trans, root, inode);
Yan, Zhengc21677542009-11-12 09:34:21 +0000209
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100210 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400211fail:
212 btrfs_free_path(path);
213 return err;
214}
215
216
217/*
218 * conditionally insert an inline extent into the file. This
219 * does the checks required to make sure the data is small enough
220 * to fit as an inline extent.
221 */
Chris Mason7f366cf2009-03-12 20:12:45 -0400222static noinline int cow_file_range_inline(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400223 struct btrfs_root *root,
224 struct inode *inode, u64 start, u64 end,
Li Zefanfe3f5662011-03-28 08:30:38 +0000225 size_t compressed_size, int compress_type,
Chris Masonc8b97812008-10-29 14:49:59 -0400226 struct page **compressed_pages)
227{
228 u64 isize = i_size_read(inode);
229 u64 actual_end = min(end + 1, isize);
230 u64 inline_len = actual_end - start;
231 u64 aligned_end = (end + root->sectorsize - 1) &
232 ~((u64)root->sectorsize - 1);
233 u64 hint_byte;
234 u64 data_len = inline_len;
235 int ret;
236
237 if (compressed_size)
238 data_len = compressed_size;
239
240 if (start > 0 ||
Chris Mason70b99e62008-10-31 12:46:39 -0400241 actual_end >= PAGE_CACHE_SIZE ||
Chris Masonc8b97812008-10-29 14:49:59 -0400242 data_len >= BTRFS_MAX_INLINE_DATA_SIZE(root) ||
243 (!compressed_size &&
244 (actual_end & (root->sectorsize - 1)) == 0) ||
245 end + 1 < isize ||
246 data_len > root->fs_info->max_inline) {
247 return 1;
248 }
249
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000250 ret = btrfs_drop_extents(trans, inode, start, aligned_end,
Chris Masona1ed8352009-09-11 12:27:37 -0400251 &hint_byte, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100252 if (ret)
253 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400254
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);
Josef Bacik2adcac12012-05-23 16:10:14 -0400260 if (ret && ret != -ENOSPC) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100261 btrfs_abort_transaction(trans, root, ret);
262 return ret;
Josef Bacik2adcac12012-05-23 16:10:14 -0400263 } else if (ret == -ENOSPC) {
264 return 1;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100265 }
Josef Bacik2adcac12012-05-23 16:10:14 -0400266
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400267 btrfs_delalloc_release_metadata(inode, end + 1 - start);
Chris Masona1ed8352009-09-11 12:27:37 -0400268 btrfs_drop_extent_cache(inode, start, aligned_end - 1, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400269 return 0;
270}
271
Chris Mason771ed682008-11-06 22:02:51 -0500272struct async_extent {
273 u64 start;
274 u64 ram_size;
275 u64 compressed_size;
276 struct page **pages;
277 unsigned long nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800278 int compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500279 struct list_head list;
280};
281
282struct async_cow {
283 struct inode *inode;
284 struct btrfs_root *root;
285 struct page *locked_page;
286 u64 start;
287 u64 end;
288 struct list_head extents;
289 struct btrfs_work work;
290};
291
292static noinline int add_async_extent(struct async_cow *cow,
293 u64 start, u64 ram_size,
294 u64 compressed_size,
295 struct page **pages,
Li Zefan261507a02010-12-17 14:21:50 +0800296 unsigned long nr_pages,
297 int compress_type)
Chris Mason771ed682008-11-06 22:02:51 -0500298{
299 struct async_extent *async_extent;
300
301 async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100302 BUG_ON(!async_extent); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -0500303 async_extent->start = start;
304 async_extent->ram_size = ram_size;
305 async_extent->compressed_size = compressed_size;
306 async_extent->pages = pages;
307 async_extent->nr_pages = nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800308 async_extent->compress_type = compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500309 list_add_tail(&async_extent->list, &cow->extents);
310 return 0;
311}
312
Chris Masonc8b97812008-10-29 14:49:59 -0400313/*
Chris Mason771ed682008-11-06 22:02:51 -0500314 * we create compressed extents in two phases. The first
315 * phase compresses a range of pages that have already been
316 * locked (both pages and state bits are locked).
Chris Masonc8b97812008-10-29 14:49:59 -0400317 *
Chris Mason771ed682008-11-06 22:02:51 -0500318 * This is done inside an ordered work queue, and the compression
319 * is spread across many cpus. The actual IO submission is step
320 * two, and the ordered work queue takes care of making sure that
321 * happens in the same order things were put onto the queue by
322 * writepages and friends.
Chris Masonc8b97812008-10-29 14:49:59 -0400323 *
Chris Mason771ed682008-11-06 22:02:51 -0500324 * If this code finds it can't get good compression, it puts an
325 * entry onto the work queue to write the uncompressed bytes. This
326 * makes sure that both compressed inodes and uncompressed inodes
327 * are written in the same order that pdflush sent them down.
Chris Masond352ac62008-09-29 15:18:18 -0400328 */
Chris Mason771ed682008-11-06 22:02:51 -0500329static noinline int compress_file_range(struct inode *inode,
330 struct page *locked_page,
331 u64 start, u64 end,
332 struct async_cow *async_cow,
333 int *num_added)
Chris Masonb888db22007-08-27 16:49:44 -0400334{
335 struct btrfs_root *root = BTRFS_I(inode)->root;
336 struct btrfs_trans_handle *trans;
Chris Masondb945352007-10-15 16:15:53 -0400337 u64 num_bytes;
Chris Masondb945352007-10-15 16:15:53 -0400338 u64 blocksize = root->sectorsize;
Chris Masonc8b97812008-10-29 14:49:59 -0400339 u64 actual_end;
Chris Mason42dc7ba2008-12-15 11:44:56 -0500340 u64 isize = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400341 int ret = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400342 struct page **pages = NULL;
343 unsigned long nr_pages;
344 unsigned long nr_pages_ret = 0;
345 unsigned long total_compressed = 0;
346 unsigned long total_in = 0;
347 unsigned long max_compressed = 128 * 1024;
Chris Mason771ed682008-11-06 22:02:51 -0500348 unsigned long max_uncompressed = 128 * 1024;
Chris Masonc8b97812008-10-29 14:49:59 -0400349 int i;
350 int will_compress;
Li Zefan261507a02010-12-17 14:21:50 +0800351 int compress_type = root->fs_info->compress_type;
Chris Masonb888db22007-08-27 16:49:44 -0400352
Liu Bo4cb13e52012-03-29 09:57:45 -0400353 /* if this is a small write inside eof, kick off a defrag */
354 if ((end - start + 1) < 16 * 1024 &&
355 (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size))
Chris Mason4cb53002011-05-24 15:35:30 -0400356 btrfs_add_inode_defrag(NULL, inode);
357
Chris Mason42dc7ba2008-12-15 11:44:56 -0500358 actual_end = min_t(u64, isize, end + 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400359again:
360 will_compress = 0;
361 nr_pages = (end >> PAGE_CACHE_SHIFT) - (start >> PAGE_CACHE_SHIFT) + 1;
362 nr_pages = min(nr_pages, (128 * 1024UL) / PAGE_CACHE_SIZE);
363
Chris Masonf03d9302009-02-04 09:31:06 -0500364 /*
365 * we don't want to send crud past the end of i_size through
366 * compression, that's just a waste of CPU time. So, if the
367 * end of the file is before the start of our current
368 * requested range of bytes, we bail out to the uncompressed
369 * cleanup code that can deal with all of this.
370 *
371 * It isn't really the fastest way to fix things, but this is a
372 * very uncommon corner.
373 */
374 if (actual_end <= start)
375 goto cleanup_and_bail_uncompressed;
376
Chris Masonc8b97812008-10-29 14:49:59 -0400377 total_compressed = actual_end - start;
378
379 /* we want to make sure that amount of ram required to uncompress
380 * an extent is reasonable, so we limit the total size in ram
Chris Mason771ed682008-11-06 22:02:51 -0500381 * of a compressed extent to 128k. This is a crucial number
382 * because it also controls how easily we can spread reads across
383 * cpus for decompression.
384 *
385 * We also want to make sure the amount of IO required to do
386 * a random read is reasonably small, so we limit the size of
387 * a compressed extent to 128k.
Chris Masonc8b97812008-10-29 14:49:59 -0400388 */
389 total_compressed = min(total_compressed, max_uncompressed);
Chris Masondb945352007-10-15 16:15:53 -0400390 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
Chris Masonbe20aa92007-12-17 20:14:01 -0500391 num_bytes = max(blocksize, num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -0400392 total_in = 0;
393 ret = 0;
Chris Masondb945352007-10-15 16:15:53 -0400394
Chris Mason771ed682008-11-06 22:02:51 -0500395 /*
396 * we do compression for mount -o compress and when the
397 * inode has not been flagged as nocompress. This flag can
398 * change at any time if we discover bad compression ratios.
Chris Masonc8b97812008-10-29 14:49:59 -0400399 */
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200400 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS) &&
Chris Mason1e701a32010-03-11 09:42:04 -0500401 (btrfs_test_opt(root, COMPRESS) ||
Liu Bo75e7cb72011-03-22 10:12:20 +0000402 (BTRFS_I(inode)->force_compress) ||
403 (BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS))) {
Chris Masonc8b97812008-10-29 14:49:59 -0400404 WARN_ON(pages);
Chris Masoncfbc2462008-10-30 13:22:14 -0400405 pages = kzalloc(sizeof(struct page *) * nr_pages, GFP_NOFS);
Li Zefan560f7d72011-09-08 10:22:01 +0800406 if (!pages) {
407 /* just bail out to the uncompressed code */
408 goto cont;
409 }
Chris Mason179e29e2007-11-01 11:28:41 -0400410
Li Zefan261507a02010-12-17 14:21:50 +0800411 if (BTRFS_I(inode)->force_compress)
412 compress_type = BTRFS_I(inode)->force_compress;
413
414 ret = btrfs_compress_pages(compress_type,
415 inode->i_mapping, start,
416 total_compressed, pages,
417 nr_pages, &nr_pages_ret,
418 &total_in,
419 &total_compressed,
420 max_compressed);
Chris Masonc8b97812008-10-29 14:49:59 -0400421
422 if (!ret) {
423 unsigned long offset = total_compressed &
424 (PAGE_CACHE_SIZE - 1);
425 struct page *page = pages[nr_pages_ret - 1];
426 char *kaddr;
427
428 /* zero the tail end of the last page, we might be
429 * sending it down to disk
430 */
431 if (offset) {
Cong Wang7ac687d2011-11-25 23:14:28 +0800432 kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -0400433 memset(kaddr + offset, 0,
434 PAGE_CACHE_SIZE - offset);
Cong Wang7ac687d2011-11-25 23:14:28 +0800435 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400436 }
437 will_compress = 1;
438 }
439 }
Li Zefan560f7d72011-09-08 10:22:01 +0800440cont:
Chris Masonc8b97812008-10-29 14:49:59 -0400441 if (start == 0) {
Josef Bacik7a7eaa402011-04-13 12:54:33 -0400442 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100443 if (IS_ERR(trans)) {
444 ret = PTR_ERR(trans);
445 trans = NULL;
446 goto cleanup_and_out;
447 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400448 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason771ed682008-11-06 22:02:51 -0500449
Chris Masonc8b97812008-10-29 14:49:59 -0400450 /* lets try to make an inline extent */
Chris Mason771ed682008-11-06 22:02:51 -0500451 if (ret || total_in < (actual_end - start)) {
Chris Masonc8b97812008-10-29 14:49:59 -0400452 /* we didn't compress the entire range, try
Chris Mason771ed682008-11-06 22:02:51 -0500453 * to make an uncompressed inline extent.
Chris Masonc8b97812008-10-29 14:49:59 -0400454 */
455 ret = cow_file_range_inline(trans, root, inode,
Li Zefanfe3f5662011-03-28 08:30:38 +0000456 start, end, 0, 0, NULL);
Chris Masonc8b97812008-10-29 14:49:59 -0400457 } else {
Chris Mason771ed682008-11-06 22:02:51 -0500458 /* try making a compressed inline extent */
Chris Masonc8b97812008-10-29 14:49:59 -0400459 ret = cow_file_range_inline(trans, root, inode,
460 start, end,
Li Zefanfe3f5662011-03-28 08:30:38 +0000461 total_compressed,
462 compress_type, pages);
Chris Masonc8b97812008-10-29 14:49:59 -0400463 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100464 if (ret <= 0) {
Chris Mason771ed682008-11-06 22:02:51 -0500465 /*
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100466 * inline extent creation worked or returned error,
467 * we don't need to create any more async work items.
468 * Unlock and free up our temp pages.
Chris Mason771ed682008-11-06 22:02:51 -0500469 */
Chris Masonc8b97812008-10-29 14:49:59 -0400470 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400471 &BTRFS_I(inode)->io_tree,
472 start, end, NULL,
473 EXTENT_CLEAR_UNLOCK_PAGE | EXTENT_CLEAR_DIRTY |
Chris Masona3429ab2009-10-08 12:30:20 -0400474 EXTENT_CLEAR_DELALLOC |
Chris Masona791e352009-10-08 11:27:10 -0400475 EXTENT_SET_WRITEBACK | EXTENT_END_WRITEBACK);
Yan, Zhengc21677542009-11-12 09:34:21 +0000476
477 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400478 goto free_pages_out;
479 }
Yan, Zhengc21677542009-11-12 09:34:21 +0000480 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400481 }
482
483 if (will_compress) {
484 /*
485 * we aren't doing an inline extent round the compressed size
486 * up to a block size boundary so the allocator does sane
487 * things
488 */
489 total_compressed = (total_compressed + blocksize - 1) &
490 ~(blocksize - 1);
491
492 /*
493 * one last check to make sure the compression is really a
494 * win, compare the page count read with the blocks on disk
495 */
496 total_in = (total_in + PAGE_CACHE_SIZE - 1) &
497 ~(PAGE_CACHE_SIZE - 1);
498 if (total_compressed >= total_in) {
499 will_compress = 0;
500 } else {
Chris Masonc8b97812008-10-29 14:49:59 -0400501 num_bytes = total_in;
502 }
503 }
504 if (!will_compress && pages) {
505 /*
506 * the compression code ran but failed to make things smaller,
507 * free any pages it allocated and our page pointer array
508 */
509 for (i = 0; i < nr_pages_ret; i++) {
Chris Mason70b99e62008-10-31 12:46:39 -0400510 WARN_ON(pages[i]->mapping);
Chris Masonc8b97812008-10-29 14:49:59 -0400511 page_cache_release(pages[i]);
512 }
513 kfree(pages);
514 pages = NULL;
515 total_compressed = 0;
516 nr_pages_ret = 0;
517
518 /* flag the file so we don't compress in the future */
Chris Mason1e701a32010-03-11 09:42:04 -0500519 if (!btrfs_test_opt(root, FORCE_COMPRESS) &&
520 !(BTRFS_I(inode)->force_compress)) {
Chris Masona555f812010-01-28 16:18:15 -0500521 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
Chris Mason1e701a32010-03-11 09:42:04 -0500522 }
Chris Masonc8b97812008-10-29 14:49:59 -0400523 }
Chris Mason771ed682008-11-06 22:02:51 -0500524 if (will_compress) {
525 *num_added += 1;
526
527 /* the async work queues will take care of doing actual
528 * allocation on disk for these compressed pages,
529 * and will submit them to the elevator.
530 */
531 add_async_extent(async_cow, start, num_bytes,
Li Zefan261507a02010-12-17 14:21:50 +0800532 total_compressed, pages, nr_pages_ret,
533 compress_type);
Chris Mason771ed682008-11-06 22:02:51 -0500534
Yan, Zheng24ae6362010-12-06 07:02:36 +0000535 if (start + num_bytes < end) {
Chris Mason771ed682008-11-06 22:02:51 -0500536 start += num_bytes;
537 pages = NULL;
538 cond_resched();
539 goto again;
540 }
541 } else {
Chris Masonf03d9302009-02-04 09:31:06 -0500542cleanup_and_bail_uncompressed:
Chris Mason771ed682008-11-06 22:02:51 -0500543 /*
544 * No compression, but we still need to write the pages in
545 * the file we've been given so far. redirty the locked
546 * page if it corresponds to our extent and set things up
547 * for the async work queue to run cow_file_range to do
548 * the normal delalloc dance
549 */
550 if (page_offset(locked_page) >= start &&
551 page_offset(locked_page) <= end) {
552 __set_page_dirty_nobuffers(locked_page);
553 /* unlocked later on in the async handlers */
554 }
Li Zefan261507a02010-12-17 14:21:50 +0800555 add_async_extent(async_cow, start, end - start + 1,
556 0, NULL, 0, BTRFS_COMPRESS_NONE);
Chris Mason771ed682008-11-06 22:02:51 -0500557 *num_added += 1;
558 }
559
560out:
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100561 return ret;
Chris Mason771ed682008-11-06 22:02:51 -0500562
563free_pages_out:
564 for (i = 0; i < nr_pages_ret; i++) {
565 WARN_ON(pages[i]->mapping);
566 page_cache_release(pages[i]);
567 }
Chris Masond3977122009-01-05 21:25:51 -0500568 kfree(pages);
Chris Mason771ed682008-11-06 22:02:51 -0500569
570 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100571
572cleanup_and_out:
573 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
574 start, end, NULL,
575 EXTENT_CLEAR_UNLOCK_PAGE |
576 EXTENT_CLEAR_DIRTY |
577 EXTENT_CLEAR_DELALLOC |
578 EXTENT_SET_WRITEBACK |
579 EXTENT_END_WRITEBACK);
580 if (!trans || IS_ERR(trans))
581 btrfs_error(root->fs_info, ret, "Failed to join transaction");
582 else
583 btrfs_abort_transaction(trans, root, ret);
584 goto free_pages_out;
Chris Mason771ed682008-11-06 22:02:51 -0500585}
586
587/*
588 * phase two of compressed writeback. This is the ordered portion
589 * of the code, which only gets called in the order the work was
590 * queued. We walk all the async extents created by compress_file_range
591 * and send them down to the disk.
592 */
593static noinline int submit_compressed_extents(struct inode *inode,
594 struct async_cow *async_cow)
595{
596 struct async_extent *async_extent;
597 u64 alloc_hint = 0;
598 struct btrfs_trans_handle *trans;
599 struct btrfs_key ins;
600 struct extent_map *em;
601 struct btrfs_root *root = BTRFS_I(inode)->root;
602 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
603 struct extent_io_tree *io_tree;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500604 int ret = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500605
606 if (list_empty(&async_cow->extents))
607 return 0;
608
Chris Mason771ed682008-11-06 22:02:51 -0500609
Chris Masond3977122009-01-05 21:25:51 -0500610 while (!list_empty(&async_cow->extents)) {
Chris Mason771ed682008-11-06 22:02:51 -0500611 async_extent = list_entry(async_cow->extents.next,
612 struct async_extent, list);
613 list_del(&async_extent->list);
614
615 io_tree = &BTRFS_I(inode)->io_tree;
616
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500617retry:
Chris Mason771ed682008-11-06 22:02:51 -0500618 /* did the compression code fall back to uncompressed IO? */
619 if (!async_extent->pages) {
620 int page_started = 0;
621 unsigned long nr_written = 0;
622
623 lock_extent(io_tree, async_extent->start,
Josef Bacik2ac55d42010-02-03 19:33:23 +0000624 async_extent->start +
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100625 async_extent->ram_size - 1);
Chris Mason771ed682008-11-06 22:02:51 -0500626
627 /* allocate blocks */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500628 ret = cow_file_range(inode, async_cow->locked_page,
629 async_extent->start,
630 async_extent->start +
631 async_extent->ram_size - 1,
632 &page_started, &nr_written, 0);
Chris Mason771ed682008-11-06 22:02:51 -0500633
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100634 /* JDM XXX */
635
Chris Mason771ed682008-11-06 22:02:51 -0500636 /*
637 * if page_started, cow_file_range inserted an
638 * inline extent and took care of all the unlocking
639 * and IO for us. Otherwise, we need to submit
640 * all those pages down to the drive.
641 */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500642 if (!page_started && !ret)
Chris Mason771ed682008-11-06 22:02:51 -0500643 extent_write_locked_range(io_tree,
644 inode, async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500645 async_extent->start +
Chris Mason771ed682008-11-06 22:02:51 -0500646 async_extent->ram_size - 1,
647 btrfs_get_extent,
648 WB_SYNC_ALL);
649 kfree(async_extent);
650 cond_resched();
651 continue;
652 }
653
654 lock_extent(io_tree, async_extent->start,
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100655 async_extent->start + async_extent->ram_size - 1);
Chris Mason771ed682008-11-06 22:02:51 -0500656
Josef Bacik7a7eaa402011-04-13 12:54:33 -0400657 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100658 if (IS_ERR(trans)) {
659 ret = PTR_ERR(trans);
660 } else {
661 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
662 ret = btrfs_reserve_extent(trans, root,
Chris Mason771ed682008-11-06 22:02:51 -0500663 async_extent->compressed_size,
664 async_extent->compressed_size,
Josef Bacik81c9ad22012-01-18 10:56:06 -0500665 0, alloc_hint, &ins, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100666 if (ret)
667 btrfs_abort_transaction(trans, root, ret);
668 btrfs_end_transaction(trans, root);
669 }
Yan, Zhengc21677542009-11-12 09:34:21 +0000670
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500671 if (ret) {
672 int i;
673 for (i = 0; i < async_extent->nr_pages; i++) {
674 WARN_ON(async_extent->pages[i]->mapping);
675 page_cache_release(async_extent->pages[i]);
676 }
677 kfree(async_extent->pages);
678 async_extent->nr_pages = 0;
679 async_extent->pages = NULL;
680 unlock_extent(io_tree, async_extent->start,
681 async_extent->start +
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100682 async_extent->ram_size - 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100683 if (ret == -ENOSPC)
684 goto retry;
685 goto out_free; /* JDM: Requeue? */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500686 }
687
Yan, Zhengc21677542009-11-12 09:34:21 +0000688 /*
689 * here we're doing allocation and writeback of the
690 * compressed pages
691 */
692 btrfs_drop_extent_cache(inode, async_extent->start,
693 async_extent->start +
694 async_extent->ram_size - 1, 0);
695
David Sterba172ddd62011-04-21 00:48:27 +0200696 em = alloc_extent_map();
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100697 BUG_ON(!em); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -0500698 em->start = async_extent->start;
699 em->len = async_extent->ram_size;
Chris Mason445a6942008-11-10 11:53:33 -0500700 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500701
702 em->block_start = ins.objectid;
703 em->block_len = ins.offset;
704 em->bdev = root->fs_info->fs_devices->latest_bdev;
Li Zefan261507a02010-12-17 14:21:50 +0800705 em->compress_type = async_extent->compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500706 set_bit(EXTENT_FLAG_PINNED, &em->flags);
707 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
708
Chris Masond3977122009-01-05 21:25:51 -0500709 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400710 write_lock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500711 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400712 write_unlock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500713 if (ret != -EEXIST) {
714 free_extent_map(em);
715 break;
716 }
717 btrfs_drop_extent_cache(inode, async_extent->start,
718 async_extent->start +
719 async_extent->ram_size - 1, 0);
720 }
721
Li Zefan261507a02010-12-17 14:21:50 +0800722 ret = btrfs_add_ordered_extent_compress(inode,
723 async_extent->start,
724 ins.objectid,
725 async_extent->ram_size,
726 ins.offset,
727 BTRFS_ORDERED_COMPRESSED,
728 async_extent->compress_type);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100729 BUG_ON(ret); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -0500730
Chris Mason771ed682008-11-06 22:02:51 -0500731 /*
732 * clear dirty, set writeback and unlock the pages.
733 */
734 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400735 &BTRFS_I(inode)->io_tree,
736 async_extent->start,
737 async_extent->start +
738 async_extent->ram_size - 1,
739 NULL, EXTENT_CLEAR_UNLOCK_PAGE |
740 EXTENT_CLEAR_UNLOCK |
Chris Masona3429ab2009-10-08 12:30:20 -0400741 EXTENT_CLEAR_DELALLOC |
Chris Masona791e352009-10-08 11:27:10 -0400742 EXTENT_CLEAR_DIRTY | EXTENT_SET_WRITEBACK);
Chris Mason771ed682008-11-06 22:02:51 -0500743
744 ret = btrfs_submit_compressed_write(inode,
Chris Masond3977122009-01-05 21:25:51 -0500745 async_extent->start,
746 async_extent->ram_size,
747 ins.objectid,
748 ins.offset, async_extent->pages,
749 async_extent->nr_pages);
Chris Mason771ed682008-11-06 22:02:51 -0500750
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100751 BUG_ON(ret); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -0500752 alloc_hint = ins.objectid + ins.offset;
753 kfree(async_extent);
754 cond_resched();
755 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100756 ret = 0;
757out:
758 return ret;
759out_free:
760 kfree(async_extent);
761 goto out;
Chris Mason771ed682008-11-06 22:02:51 -0500762}
763
Josef Bacik4b46fce2010-05-23 11:00:55 -0400764static u64 get_extent_allocation_hint(struct inode *inode, u64 start,
765 u64 num_bytes)
766{
767 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
768 struct extent_map *em;
769 u64 alloc_hint = 0;
770
771 read_lock(&em_tree->lock);
772 em = search_extent_mapping(em_tree, start, num_bytes);
773 if (em) {
774 /*
775 * if block start isn't an actual block number then find the
776 * first block in this inode and use that as a hint. If that
777 * block is also bogus then just don't worry about it.
778 */
779 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
780 free_extent_map(em);
781 em = search_extent_mapping(em_tree, 0, 0);
782 if (em && em->block_start < EXTENT_MAP_LAST_BYTE)
783 alloc_hint = em->block_start;
784 if (em)
785 free_extent_map(em);
786 } else {
787 alloc_hint = em->block_start;
788 free_extent_map(em);
789 }
790 }
791 read_unlock(&em_tree->lock);
792
793 return alloc_hint;
794}
795
Chris Mason771ed682008-11-06 22:02:51 -0500796/*
797 * when extent_io.c finds a delayed allocation range in the file,
798 * the call backs end up in this code. The basic idea is to
799 * allocate extents on disk for the range, and create ordered data structs
800 * in ram to track those extents.
801 *
802 * locked_page is the page that writepage had locked already. We use
803 * it to make sure we don't do extra locks or unlocks.
804 *
805 * *page_started is set to one if we unlock locked_page and do everything
806 * required to start IO on it. It may be clean and already done with
807 * IO when we return.
808 */
809static noinline int cow_file_range(struct inode *inode,
810 struct page *locked_page,
811 u64 start, u64 end, int *page_started,
812 unsigned long *nr_written,
813 int unlock)
814{
815 struct btrfs_root *root = BTRFS_I(inode)->root;
816 struct btrfs_trans_handle *trans;
817 u64 alloc_hint = 0;
818 u64 num_bytes;
819 unsigned long ram_size;
820 u64 disk_num_bytes;
821 u64 cur_alloc_size;
822 u64 blocksize = root->sectorsize;
Chris Mason771ed682008-11-06 22:02:51 -0500823 struct btrfs_key ins;
824 struct extent_map *em;
825 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
826 int ret = 0;
827
Chris Mason2cf85722011-07-26 15:35:09 -0400828 BUG_ON(btrfs_is_free_space_inode(root, inode));
Josef Bacik7a7eaa402011-04-13 12:54:33 -0400829 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100830 if (IS_ERR(trans)) {
831 extent_clear_unlock_delalloc(inode,
832 &BTRFS_I(inode)->io_tree,
Josef Bacikbeb42dd2012-05-30 15:35:17 -0400833 start, end, locked_page,
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100834 EXTENT_CLEAR_UNLOCK_PAGE |
835 EXTENT_CLEAR_UNLOCK |
836 EXTENT_CLEAR_DELALLOC |
837 EXTENT_CLEAR_DIRTY |
838 EXTENT_SET_WRITEBACK |
839 EXTENT_END_WRITEBACK);
840 return PTR_ERR(trans);
841 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400842 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason771ed682008-11-06 22:02:51 -0500843
Chris Mason771ed682008-11-06 22:02:51 -0500844 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
845 num_bytes = max(blocksize, num_bytes);
846 disk_num_bytes = num_bytes;
847 ret = 0;
848
Chris Mason4cb53002011-05-24 15:35:30 -0400849 /* if this is a small write inside eof, kick off defrag */
Liu Bo4cb13e52012-03-29 09:57:45 -0400850 if (num_bytes < 64 * 1024 &&
851 (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size))
Chris Mason4cb53002011-05-24 15:35:30 -0400852 btrfs_add_inode_defrag(trans, inode);
853
Chris Mason771ed682008-11-06 22:02:51 -0500854 if (start == 0) {
855 /* lets try to make an inline extent */
856 ret = cow_file_range_inline(trans, root, inode,
Li Zefanfe3f5662011-03-28 08:30:38 +0000857 start, end, 0, 0, NULL);
Chris Mason771ed682008-11-06 22:02:51 -0500858 if (ret == 0) {
859 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400860 &BTRFS_I(inode)->io_tree,
861 start, end, NULL,
862 EXTENT_CLEAR_UNLOCK_PAGE |
863 EXTENT_CLEAR_UNLOCK |
864 EXTENT_CLEAR_DELALLOC |
865 EXTENT_CLEAR_DIRTY |
866 EXTENT_SET_WRITEBACK |
867 EXTENT_END_WRITEBACK);
Yan, Zhengc21677542009-11-12 09:34:21 +0000868
Chris Mason771ed682008-11-06 22:02:51 -0500869 *nr_written = *nr_written +
870 (end - start + PAGE_CACHE_SIZE) / PAGE_CACHE_SIZE;
871 *page_started = 1;
Chris Mason771ed682008-11-06 22:02:51 -0500872 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100873 } else if (ret < 0) {
874 btrfs_abort_transaction(trans, root, ret);
875 goto out_unlock;
Chris Mason771ed682008-11-06 22:02:51 -0500876 }
877 }
Chris Masonc8b97812008-10-29 14:49:59 -0400878
879 BUG_ON(disk_num_bytes >
David Sterba6c417612011-04-13 15:41:04 +0200880 btrfs_super_total_bytes(root->fs_info->super_copy));
Chris Masonc8b97812008-10-29 14:49:59 -0400881
Josef Bacik4b46fce2010-05-23 11:00:55 -0400882 alloc_hint = get_extent_allocation_hint(inode, start, num_bytes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400883 btrfs_drop_extent_cache(inode, start, start + num_bytes - 1, 0);
Chris Mason3b951512008-04-17 11:29:12 -0400884
Chris Masond3977122009-01-05 21:25:51 -0500885 while (disk_num_bytes > 0) {
Chris Masona791e352009-10-08 11:27:10 -0400886 unsigned long op;
887
Josef Bacik287a0ab2010-03-19 18:07:23 +0000888 cur_alloc_size = disk_num_bytes;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400889 ret = btrfs_reserve_extent(trans, root, cur_alloc_size,
Chris Mason771ed682008-11-06 22:02:51 -0500890 root->sectorsize, 0, alloc_hint,
Josef Bacik81c9ad22012-01-18 10:56:06 -0500891 &ins, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100892 if (ret < 0) {
893 btrfs_abort_transaction(trans, root, ret);
894 goto out_unlock;
895 }
Chris Masond3977122009-01-05 21:25:51 -0500896
David Sterba172ddd62011-04-21 00:48:27 +0200897 em = alloc_extent_map();
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100898 BUG_ON(!em); /* -ENOMEM */
Chris Masone6dcd2d2008-07-17 12:53:50 -0400899 em->start = start;
Chris Mason445a6942008-11-10 11:53:33 -0500900 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500901 ram_size = ins.offset;
902 em->len = ins.offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400903
Chris Masone6dcd2d2008-07-17 12:53:50 -0400904 em->block_start = ins.objectid;
Chris Masonc8b97812008-10-29 14:49:59 -0400905 em->block_len = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400906 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -0400907 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -0400908
Chris Masond3977122009-01-05 21:25:51 -0500909 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400910 write_lock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400911 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400912 write_unlock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400913 if (ret != -EEXIST) {
914 free_extent_map(em);
915 break;
916 }
917 btrfs_drop_extent_cache(inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -0400918 start + ram_size - 1, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400919 }
920
Chris Mason98d20f62008-04-14 09:46:10 -0400921 cur_alloc_size = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400922 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
Chris Mason771ed682008-11-06 22:02:51 -0500923 ram_size, cur_alloc_size, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100924 BUG_ON(ret); /* -ENOMEM */
Chris Masonc8b97812008-10-29 14:49:59 -0400925
Yan Zheng17d217f2008-12-12 10:03:38 -0500926 if (root->root_key.objectid ==
927 BTRFS_DATA_RELOC_TREE_OBJECTID) {
928 ret = btrfs_reloc_clone_csums(inode, start,
929 cur_alloc_size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100930 if (ret) {
931 btrfs_abort_transaction(trans, root, ret);
932 goto out_unlock;
933 }
Yan Zheng17d217f2008-12-12 10:03:38 -0500934 }
935
Chris Masond3977122009-01-05 21:25:51 -0500936 if (disk_num_bytes < cur_alloc_size)
Chris Mason3b951512008-04-17 11:29:12 -0400937 break;
Chris Masond3977122009-01-05 21:25:51 -0500938
Chris Masonc8b97812008-10-29 14:49:59 -0400939 /* we're not doing compressed IO, don't unlock the first
940 * page (which the caller expects to stay locked), don't
941 * clear any dirty bits and don't set any writeback bits
Chris Mason8b62b722009-09-02 16:53:46 -0400942 *
943 * Do set the Private2 bit so we know this page was properly
944 * setup for writepage
Chris Masonc8b97812008-10-29 14:49:59 -0400945 */
Chris Masona791e352009-10-08 11:27:10 -0400946 op = unlock ? EXTENT_CLEAR_UNLOCK_PAGE : 0;
947 op |= EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
948 EXTENT_SET_PRIVATE2;
949
Chris Masonc8b97812008-10-29 14:49:59 -0400950 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
951 start, start + ram_size - 1,
Chris Masona791e352009-10-08 11:27:10 -0400952 locked_page, op);
Chris Masonc8b97812008-10-29 14:49:59 -0400953 disk_num_bytes -= cur_alloc_size;
Chris Masonc59f8952007-12-17 20:14:04 -0500954 num_bytes -= cur_alloc_size;
955 alloc_hint = ins.objectid + ins.offset;
956 start += cur_alloc_size;
Chris Masonb888db22007-08-27 16:49:44 -0400957 }
Chris Mason771ed682008-11-06 22:02:51 -0500958 ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100959out:
Chris Masonb888db22007-08-27 16:49:44 -0400960 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400961
Chris Masonbe20aa92007-12-17 20:14:01 -0500962 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100963out_unlock:
964 extent_clear_unlock_delalloc(inode,
965 &BTRFS_I(inode)->io_tree,
Josef Bacikbeb42dd2012-05-30 15:35:17 -0400966 start, end, locked_page,
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100967 EXTENT_CLEAR_UNLOCK_PAGE |
968 EXTENT_CLEAR_UNLOCK |
969 EXTENT_CLEAR_DELALLOC |
970 EXTENT_CLEAR_DIRTY |
971 EXTENT_SET_WRITEBACK |
972 EXTENT_END_WRITEBACK);
973
974 goto out;
Chris Mason771ed682008-11-06 22:02:51 -0500975}
Chris Masonc8b97812008-10-29 14:49:59 -0400976
Chris Mason771ed682008-11-06 22:02:51 -0500977/*
978 * work queue call back to started compression on a file and pages
979 */
980static noinline void async_cow_start(struct btrfs_work *work)
981{
982 struct async_cow *async_cow;
983 int num_added = 0;
984 async_cow = container_of(work, struct async_cow, work);
985
986 compress_file_range(async_cow->inode, async_cow->locked_page,
987 async_cow->start, async_cow->end, async_cow,
988 &num_added);
Josef Bacik8180ef82012-06-08 15:16:12 -0400989 if (num_added == 0) {
990 iput(async_cow->inode);
Chris Mason771ed682008-11-06 22:02:51 -0500991 async_cow->inode = NULL;
Josef Bacik8180ef82012-06-08 15:16:12 -0400992 }
Chris Mason771ed682008-11-06 22:02:51 -0500993}
994
995/*
996 * work queue call back to submit previously compressed pages
997 */
998static noinline void async_cow_submit(struct btrfs_work *work)
999{
1000 struct async_cow *async_cow;
1001 struct btrfs_root *root;
1002 unsigned long nr_pages;
1003
1004 async_cow = container_of(work, struct async_cow, work);
1005
1006 root = async_cow->root;
1007 nr_pages = (async_cow->end - async_cow->start + PAGE_CACHE_SIZE) >>
1008 PAGE_CACHE_SHIFT;
1009
1010 atomic_sub(nr_pages, &root->fs_info->async_delalloc_pages);
1011
1012 if (atomic_read(&root->fs_info->async_delalloc_pages) <
1013 5 * 1042 * 1024 &&
1014 waitqueue_active(&root->fs_info->async_submit_wait))
1015 wake_up(&root->fs_info->async_submit_wait);
1016
Chris Masond3977122009-01-05 21:25:51 -05001017 if (async_cow->inode)
Chris Mason771ed682008-11-06 22:02:51 -05001018 submit_compressed_extents(async_cow->inode, async_cow);
Chris Mason771ed682008-11-06 22:02:51 -05001019}
Chris Masonc8b97812008-10-29 14:49:59 -04001020
Chris Mason771ed682008-11-06 22:02:51 -05001021static noinline void async_cow_free(struct btrfs_work *work)
1022{
1023 struct async_cow *async_cow;
1024 async_cow = container_of(work, struct async_cow, work);
Josef Bacik8180ef82012-06-08 15:16:12 -04001025 if (async_cow->inode)
1026 iput(async_cow->inode);
Chris Mason771ed682008-11-06 22:02:51 -05001027 kfree(async_cow);
1028}
1029
1030static int cow_file_range_async(struct inode *inode, struct page *locked_page,
1031 u64 start, u64 end, int *page_started,
1032 unsigned long *nr_written)
1033{
1034 struct async_cow *async_cow;
1035 struct btrfs_root *root = BTRFS_I(inode)->root;
1036 unsigned long nr_pages;
1037 u64 cur_end;
1038 int limit = 10 * 1024 * 1042;
1039
Chris Masona3429ab2009-10-08 12:30:20 -04001040 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED,
1041 1, 0, NULL, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -05001042 while (start < end) {
Chris Mason771ed682008-11-06 22:02:51 -05001043 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001044 BUG_ON(!async_cow); /* -ENOMEM */
Josef Bacik8180ef82012-06-08 15:16:12 -04001045 async_cow->inode = igrab(inode);
Chris Mason771ed682008-11-06 22:02:51 -05001046 async_cow->root = root;
1047 async_cow->locked_page = locked_page;
1048 async_cow->start = start;
1049
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001050 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS)
Chris Mason771ed682008-11-06 22:02:51 -05001051 cur_end = end;
1052 else
1053 cur_end = min(end, start + 512 * 1024 - 1);
1054
1055 async_cow->end = cur_end;
1056 INIT_LIST_HEAD(&async_cow->extents);
1057
1058 async_cow->work.func = async_cow_start;
1059 async_cow->work.ordered_func = async_cow_submit;
1060 async_cow->work.ordered_free = async_cow_free;
1061 async_cow->work.flags = 0;
1062
Chris Mason771ed682008-11-06 22:02:51 -05001063 nr_pages = (cur_end - start + PAGE_CACHE_SIZE) >>
1064 PAGE_CACHE_SHIFT;
1065 atomic_add(nr_pages, &root->fs_info->async_delalloc_pages);
1066
1067 btrfs_queue_worker(&root->fs_info->delalloc_workers,
1068 &async_cow->work);
1069
1070 if (atomic_read(&root->fs_info->async_delalloc_pages) > limit) {
1071 wait_event(root->fs_info->async_submit_wait,
1072 (atomic_read(&root->fs_info->async_delalloc_pages) <
1073 limit));
1074 }
1075
Chris Masond3977122009-01-05 21:25:51 -05001076 while (atomic_read(&root->fs_info->async_submit_draining) &&
Chris Mason771ed682008-11-06 22:02:51 -05001077 atomic_read(&root->fs_info->async_delalloc_pages)) {
1078 wait_event(root->fs_info->async_submit_wait,
1079 (atomic_read(&root->fs_info->async_delalloc_pages) ==
1080 0));
1081 }
1082
1083 *nr_written += nr_pages;
1084 start = cur_end + 1;
1085 }
1086 *page_started = 1;
1087 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001088}
1089
Chris Masond3977122009-01-05 21:25:51 -05001090static noinline int csum_exist_in_range(struct btrfs_root *root,
Yan Zheng17d217f2008-12-12 10:03:38 -05001091 u64 bytenr, u64 num_bytes)
1092{
1093 int ret;
1094 struct btrfs_ordered_sum *sums;
1095 LIST_HEAD(list);
1096
Yan Zheng07d400a2009-01-06 11:42:00 -05001097 ret = btrfs_lookup_csums_range(root->fs_info->csum_root, bytenr,
Arne Jansena2de7332011-03-08 14:14:00 +01001098 bytenr + num_bytes - 1, &list, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -05001099 if (ret == 0 && list_empty(&list))
1100 return 0;
1101
1102 while (!list_empty(&list)) {
1103 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
1104 list_del(&sums->list);
1105 kfree(sums);
1106 }
1107 return 1;
1108}
1109
Chris Masond352ac62008-09-29 15:18:18 -04001110/*
1111 * when nowcow writeback call back. This checks for snapshots or COW copies
1112 * of the extents that exist in the file, and COWs the file as required.
1113 *
1114 * If no cow copies or snapshots exist, we write directly to the existing
1115 * blocks on disk
1116 */
Chris Mason7f366cf2009-03-12 20:12:45 -04001117static noinline int run_delalloc_nocow(struct inode *inode,
1118 struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001119 u64 start, u64 end, int *page_started, int force,
1120 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001121{
Chris Masonbe20aa92007-12-17 20:14:01 -05001122 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001123 struct btrfs_trans_handle *trans;
Chris Masonbe20aa92007-12-17 20:14:01 -05001124 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -05001125 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -04001126 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -05001127 struct btrfs_key found_key;
Yan Zheng80ff3852008-10-30 14:20:02 -04001128 u64 cow_start;
1129 u64 cur_offset;
1130 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001131 u64 extent_offset;
Yan Zheng80ff3852008-10-30 14:20:02 -04001132 u64 disk_bytenr;
1133 u64 num_bytes;
1134 int extent_type;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001135 int ret, err;
Yan Zhengd899e052008-10-30 14:25:28 -04001136 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -04001137 int nocow;
1138 int check_prev = 1;
Li Zefan82d59022011-04-20 10:33:24 +08001139 bool nolock;
Li Zefan33345d012011-04-20 10:31:50 +08001140 u64 ino = btrfs_ino(inode);
Chris Masonbe20aa92007-12-17 20:14:01 -05001141
1142 path = btrfs_alloc_path();
Josef Bacik17ca04a2012-05-31 15:58:55 -04001143 if (!path) {
1144 extent_clear_unlock_delalloc(inode,
1145 &BTRFS_I(inode)->io_tree,
1146 start, end, locked_page,
1147 EXTENT_CLEAR_UNLOCK_PAGE |
1148 EXTENT_CLEAR_UNLOCK |
1149 EXTENT_CLEAR_DELALLOC |
1150 EXTENT_CLEAR_DIRTY |
1151 EXTENT_SET_WRITEBACK |
1152 EXTENT_END_WRITEBACK);
Mark Fashehd8926bb2011-07-13 10:38:47 -07001153 return -ENOMEM;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001154 }
Li Zefan82d59022011-04-20 10:33:24 +08001155
Chris Mason2cf85722011-07-26 15:35:09 -04001156 nolock = btrfs_is_free_space_inode(root, inode);
Li Zefan82d59022011-04-20 10:33:24 +08001157
1158 if (nolock)
Josef Bacik7a7eaa402011-04-13 12:54:33 -04001159 trans = btrfs_join_transaction_nolock(root);
Li Zefan82d59022011-04-20 10:33:24 +08001160 else
Josef Bacik7a7eaa402011-04-13 12:54:33 -04001161 trans = btrfs_join_transaction(root);
Chris Masonff5714c2011-05-28 07:00:39 -04001162
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001163 if (IS_ERR(trans)) {
Josef Bacik17ca04a2012-05-31 15:58:55 -04001164 extent_clear_unlock_delalloc(inode,
1165 &BTRFS_I(inode)->io_tree,
1166 start, end, locked_page,
1167 EXTENT_CLEAR_UNLOCK_PAGE |
1168 EXTENT_CLEAR_UNLOCK |
1169 EXTENT_CLEAR_DELALLOC |
1170 EXTENT_CLEAR_DIRTY |
1171 EXTENT_SET_WRITEBACK |
1172 EXTENT_END_WRITEBACK);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001173 btrfs_free_path(path);
1174 return PTR_ERR(trans);
1175 }
1176
Josef Bacik74b21072011-04-13 12:02:53 -04001177 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Masonbe20aa92007-12-17 20:14:01 -05001178
Yan Zheng80ff3852008-10-30 14:20:02 -04001179 cow_start = (u64)-1;
1180 cur_offset = start;
1181 while (1) {
Li Zefan33345d012011-04-20 10:31:50 +08001182 ret = btrfs_lookup_file_extent(trans, root, path, ino,
Yan Zheng80ff3852008-10-30 14:20:02 -04001183 cur_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001184 if (ret < 0) {
1185 btrfs_abort_transaction(trans, root, ret);
1186 goto error;
1187 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001188 if (ret > 0 && path->slots[0] > 0 && check_prev) {
1189 leaf = path->nodes[0];
1190 btrfs_item_key_to_cpu(leaf, &found_key,
1191 path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +08001192 if (found_key.objectid == ino &&
Yan Zheng80ff3852008-10-30 14:20:02 -04001193 found_key.type == BTRFS_EXTENT_DATA_KEY)
1194 path->slots[0]--;
1195 }
1196 check_prev = 0;
1197next_slot:
1198 leaf = path->nodes[0];
1199 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1200 ret = btrfs_next_leaf(root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001201 if (ret < 0) {
1202 btrfs_abort_transaction(trans, root, ret);
1203 goto error;
1204 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001205 if (ret > 0)
1206 break;
1207 leaf = path->nodes[0];
1208 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001209
Yan Zheng80ff3852008-10-30 14:20:02 -04001210 nocow = 0;
1211 disk_bytenr = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -05001212 num_bytes = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001213 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05001214
Li Zefan33345d012011-04-20 10:31:50 +08001215 if (found_key.objectid > ino ||
Yan Zheng80ff3852008-10-30 14:20:02 -04001216 found_key.type > BTRFS_EXTENT_DATA_KEY ||
1217 found_key.offset > end)
1218 break;
Chris Masonbe20aa92007-12-17 20:14:01 -05001219
Yan Zheng80ff3852008-10-30 14:20:02 -04001220 if (found_key.offset > cur_offset) {
1221 extent_end = found_key.offset;
Chris Masone9061e22009-10-09 09:57:45 -04001222 extent_type = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001223 goto out_check;
1224 }
Chris Masonc31f8832008-01-08 15:46:31 -05001225
Yan Zheng80ff3852008-10-30 14:20:02 -04001226 fi = btrfs_item_ptr(leaf, path->slots[0],
1227 struct btrfs_file_extent_item);
1228 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -05001229
Yan Zhengd899e052008-10-30 14:25:28 -04001230 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1231 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001232 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001233 extent_offset = btrfs_file_extent_offset(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001234 extent_end = found_key.offset +
1235 btrfs_file_extent_num_bytes(leaf, fi);
1236 if (extent_end <= start) {
1237 path->slots[0]++;
1238 goto next_slot;
1239 }
Yan Zheng17d217f2008-12-12 10:03:38 -05001240 if (disk_bytenr == 0)
1241 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001242 if (btrfs_file_extent_compression(leaf, fi) ||
1243 btrfs_file_extent_encryption(leaf, fi) ||
1244 btrfs_file_extent_other_encoding(leaf, fi))
1245 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001246 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1247 goto out_check;
Yan Zhengd2fb3432008-12-11 16:30:39 -05001248 if (btrfs_extent_readonly(root, disk_bytenr))
Yan Zheng80ff3852008-10-30 14:20:02 -04001249 goto out_check;
Li Zefan33345d012011-04-20 10:31:50 +08001250 if (btrfs_cross_ref_exist(trans, root, ino,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001251 found_key.offset -
1252 extent_offset, disk_bytenr))
Yan Zheng17d217f2008-12-12 10:03:38 -05001253 goto out_check;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001254 disk_bytenr += extent_offset;
Yan Zheng17d217f2008-12-12 10:03:38 -05001255 disk_bytenr += cur_offset - found_key.offset;
1256 num_bytes = min(end + 1, extent_end) - cur_offset;
1257 /*
1258 * force cow if csum exists in the range.
1259 * this ensure that csum for a given extent are
1260 * either valid or do not exist.
1261 */
1262 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
1263 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001264 nocow = 1;
1265 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1266 extent_end = found_key.offset +
1267 btrfs_file_extent_inline_len(leaf, fi);
1268 extent_end = ALIGN(extent_end, root->sectorsize);
1269 } else {
1270 BUG_ON(1);
1271 }
1272out_check:
1273 if (extent_end <= start) {
1274 path->slots[0]++;
1275 goto next_slot;
1276 }
1277 if (!nocow) {
1278 if (cow_start == (u64)-1)
1279 cow_start = cur_offset;
1280 cur_offset = extent_end;
1281 if (cur_offset > end)
1282 break;
1283 path->slots[0]++;
1284 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001285 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001286
David Sterbab3b4aa72011-04-21 01:20:15 +02001287 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001288 if (cow_start != (u64)-1) {
1289 ret = cow_file_range(inode, locked_page, cow_start,
Chris Mason771ed682008-11-06 22:02:51 -05001290 found_key.offset - 1, page_started,
1291 nr_written, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001292 if (ret) {
1293 btrfs_abort_transaction(trans, root, ret);
1294 goto error;
1295 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001296 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001297 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001298
Yan Zhengd899e052008-10-30 14:25:28 -04001299 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1300 struct extent_map *em;
1301 struct extent_map_tree *em_tree;
1302 em_tree = &BTRFS_I(inode)->extent_tree;
David Sterba172ddd62011-04-21 00:48:27 +02001303 em = alloc_extent_map();
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001304 BUG_ON(!em); /* -ENOMEM */
Yan Zhengd899e052008-10-30 14:25:28 -04001305 em->start = cur_offset;
Chris Mason445a6942008-11-10 11:53:33 -05001306 em->orig_start = em->start;
Yan Zhengd899e052008-10-30 14:25:28 -04001307 em->len = num_bytes;
1308 em->block_len = num_bytes;
1309 em->block_start = disk_bytenr;
1310 em->bdev = root->fs_info->fs_devices->latest_bdev;
1311 set_bit(EXTENT_FLAG_PINNED, &em->flags);
1312 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04001313 write_lock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001314 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04001315 write_unlock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001316 if (ret != -EEXIST) {
1317 free_extent_map(em);
1318 break;
1319 }
1320 btrfs_drop_extent_cache(inode, em->start,
1321 em->start + em->len - 1, 0);
1322 }
1323 type = BTRFS_ORDERED_PREALLOC;
1324 } else {
1325 type = BTRFS_ORDERED_NOCOW;
1326 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001327
1328 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001329 num_bytes, num_bytes, type);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001330 BUG_ON(ret); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -05001331
Yan, Zhengefa56462010-05-16 10:49:59 -04001332 if (root->root_key.objectid ==
1333 BTRFS_DATA_RELOC_TREE_OBJECTID) {
1334 ret = btrfs_reloc_clone_csums(inode, cur_offset,
1335 num_bytes);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001336 if (ret) {
1337 btrfs_abort_transaction(trans, root, ret);
1338 goto error;
1339 }
Yan, Zhengefa56462010-05-16 10:49:59 -04001340 }
1341
Yan Zhengd899e052008-10-30 14:25:28 -04001342 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
Chris Masona791e352009-10-08 11:27:10 -04001343 cur_offset, cur_offset + num_bytes - 1,
1344 locked_page, EXTENT_CLEAR_UNLOCK_PAGE |
1345 EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
1346 EXTENT_SET_PRIVATE2);
Yan Zheng80ff3852008-10-30 14:20:02 -04001347 cur_offset = extent_end;
1348 if (cur_offset > end)
1349 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001350 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001351 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001352
Josef Bacik17ca04a2012-05-31 15:58:55 -04001353 if (cur_offset <= end && cow_start == (u64)-1) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001354 cow_start = cur_offset;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001355 cur_offset = end;
1356 }
1357
Yan Zheng80ff3852008-10-30 14:20:02 -04001358 if (cow_start != (u64)-1) {
1359 ret = cow_file_range(inode, locked_page, cow_start, end,
Chris Mason771ed682008-11-06 22:02:51 -05001360 page_started, nr_written, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001361 if (ret) {
1362 btrfs_abort_transaction(trans, root, ret);
1363 goto error;
1364 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001365 }
1366
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001367error:
Josef Bacik0cb59c92010-07-02 12:14:14 -04001368 if (nolock) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001369 err = btrfs_end_transaction_nolock(trans, root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001370 } else {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001371 err = btrfs_end_transaction(trans, root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001372 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001373 if (!ret)
1374 ret = err;
1375
Josef Bacik17ca04a2012-05-31 15:58:55 -04001376 if (ret && cur_offset < end)
1377 extent_clear_unlock_delalloc(inode,
1378 &BTRFS_I(inode)->io_tree,
1379 cur_offset, end, locked_page,
1380 EXTENT_CLEAR_UNLOCK_PAGE |
1381 EXTENT_CLEAR_UNLOCK |
1382 EXTENT_CLEAR_DELALLOC |
1383 EXTENT_CLEAR_DIRTY |
1384 EXTENT_SET_WRITEBACK |
1385 EXTENT_END_WRITEBACK);
1386
Yan Zheng7ea394f2008-08-05 13:05:02 -04001387 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001388 return ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05001389}
1390
Chris Masond352ac62008-09-29 15:18:18 -04001391/*
1392 * extent_io.c call back to do delayed allocation processing
1393 */
Chris Masonc8b97812008-10-29 14:49:59 -04001394static int run_delalloc_range(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001395 u64 start, u64 end, int *page_started,
1396 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001397{
Chris Masonbe20aa92007-12-17 20:14:01 -05001398 int ret;
Chris Mason7f366cf2009-03-12 20:12:45 -04001399 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masona2135012008-06-25 16:01:30 -04001400
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001401 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW)
Chris Masonc8b97812008-10-29 14:49:59 -04001402 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001403 page_started, 1, nr_written);
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001404 else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC)
Yan Zhengd899e052008-10-30 14:25:28 -04001405 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001406 page_started, 0, nr_written);
Chris Mason1e701a32010-03-11 09:42:04 -05001407 else if (!btrfs_test_opt(root, COMPRESS) &&
Liu Bo75e7cb72011-03-22 10:12:20 +00001408 !(BTRFS_I(inode)->force_compress) &&
1409 !(BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS))
Chris Mason7f366cf2009-03-12 20:12:45 -04001410 ret = cow_file_range(inode, locked_page, start, end,
1411 page_started, nr_written, 1);
Chris Masonbe20aa92007-12-17 20:14:01 -05001412 else
Chris Mason771ed682008-11-06 22:02:51 -05001413 ret = cow_file_range_async(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001414 page_started, nr_written);
Chris Masonb888db22007-08-27 16:49:44 -04001415 return ret;
1416}
1417
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001418static void btrfs_split_extent_hook(struct inode *inode,
1419 struct extent_state *orig, u64 split)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001420{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001421 /* not delalloc, ignore it */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001422 if (!(orig->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001423 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001424
Josef Bacik9e0baf62011-07-15 15:16:44 +00001425 spin_lock(&BTRFS_I(inode)->lock);
1426 BTRFS_I(inode)->outstanding_extents++;
1427 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001428}
1429
1430/*
1431 * extent_io.c merge_extent_hook, used to track merged delayed allocation
1432 * extents so we can keep track of new extents that are just merged onto old
1433 * extents, such as when we are doing sequential writes, so we can properly
1434 * account for the metadata space we'll need.
1435 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001436static void btrfs_merge_extent_hook(struct inode *inode,
1437 struct extent_state *new,
1438 struct extent_state *other)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001439{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001440 /* not delalloc, ignore it */
1441 if (!(other->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001442 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001443
Josef Bacik9e0baf62011-07-15 15:16:44 +00001444 spin_lock(&BTRFS_I(inode)->lock);
1445 BTRFS_I(inode)->outstanding_extents--;
1446 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001447}
1448
Chris Masond352ac62008-09-29 15:18:18 -04001449/*
1450 * extent_io.c set_bit_hook, used to track delayed allocation
1451 * bytes in this file, and to maintain the list of inodes that
1452 * have pending delalloc work to be done.
1453 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001454static void btrfs_set_bit_hook(struct inode *inode,
1455 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001456{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001457
Chris Mason75eff682008-12-15 15:54:40 -05001458 /*
1459 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001460 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001461 * bit, which is only set or cleared with irqs on
1462 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001463 if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001464 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001465 u64 len = state->end + 1 - state->start;
Chris Mason2cf85722011-07-26 15:35:09 -04001466 bool do_list = !btrfs_is_free_space_inode(root, inode);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001467
Josef Bacik9e0baf62011-07-15 15:16:44 +00001468 if (*bits & EXTENT_FIRST_DELALLOC) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001469 *bits &= ~EXTENT_FIRST_DELALLOC;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001470 } else {
1471 spin_lock(&BTRFS_I(inode)->lock);
1472 BTRFS_I(inode)->outstanding_extents++;
1473 spin_unlock(&BTRFS_I(inode)->lock);
1474 }
Josef Bacik287a0ab2010-03-19 18:07:23 +00001475
Chris Mason75eff682008-12-15 15:54:40 -05001476 spin_lock(&root->fs_info->delalloc_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001477 BTRFS_I(inode)->delalloc_bytes += len;
1478 root->fs_info->delalloc_bytes += len;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001479 if (do_list && list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
Chris Masonea8c2812008-08-04 23:17:27 -04001480 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1481 &root->fs_info->delalloc_inodes);
1482 }
Chris Mason75eff682008-12-15 15:54:40 -05001483 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001484 }
Chris Mason291d6732008-01-29 15:55:23 -05001485}
1486
Chris Masond352ac62008-09-29 15:18:18 -04001487/*
1488 * extent_io.c clear_bit_hook, see set_bit_hook for why
1489 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001490static void btrfs_clear_bit_hook(struct inode *inode,
1491 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001492{
Chris Mason75eff682008-12-15 15:54:40 -05001493 /*
1494 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001495 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001496 * bit, which is only set or cleared with irqs on
1497 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001498 if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001499 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001500 u64 len = state->end + 1 - state->start;
Chris Mason2cf85722011-07-26 15:35:09 -04001501 bool do_list = !btrfs_is_free_space_inode(root, inode);
Chris Masonbcbfce82008-04-22 13:26:47 -04001502
Josef Bacik9e0baf62011-07-15 15:16:44 +00001503 if (*bits & EXTENT_FIRST_DELALLOC) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001504 *bits &= ~EXTENT_FIRST_DELALLOC;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001505 } else if (!(*bits & EXTENT_DO_ACCOUNTING)) {
1506 spin_lock(&BTRFS_I(inode)->lock);
1507 BTRFS_I(inode)->outstanding_extents--;
1508 spin_unlock(&BTRFS_I(inode)->lock);
1509 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001510
1511 if (*bits & EXTENT_DO_ACCOUNTING)
1512 btrfs_delalloc_release_metadata(inode, len);
1513
Josef Bacik0cb59c92010-07-02 12:14:14 -04001514 if (root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID
1515 && do_list)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001516 btrfs_free_reserved_data_space(inode, len);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001517
Chris Mason75eff682008-12-15 15:54:40 -05001518 spin_lock(&root->fs_info->delalloc_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001519 root->fs_info->delalloc_bytes -= len;
1520 BTRFS_I(inode)->delalloc_bytes -= len;
1521
Josef Bacik0cb59c92010-07-02 12:14:14 -04001522 if (do_list && BTRFS_I(inode)->delalloc_bytes == 0 &&
Chris Masonea8c2812008-08-04 23:17:27 -04001523 !list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1524 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
1525 }
Chris Mason75eff682008-12-15 15:54:40 -05001526 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001527 }
Chris Mason291d6732008-01-29 15:55:23 -05001528}
1529
Chris Masond352ac62008-09-29 15:18:18 -04001530/*
1531 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1532 * we don't create bios that span stripes or chunks
1533 */
Chris Mason239b14b2008-03-24 15:02:07 -04001534int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001535 size_t size, struct bio *bio,
1536 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001537{
1538 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
1539 struct btrfs_mapping_tree *map_tree;
Chris Masona62b9402008-10-03 16:31:08 -04001540 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001541 u64 length = 0;
1542 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001543 int ret;
1544
Chris Mason771ed682008-11-06 22:02:51 -05001545 if (bio_flags & EXTENT_BIO_COMPRESSED)
1546 return 0;
1547
Chris Masonf2d8d742008-04-21 10:03:05 -04001548 length = bio->bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001549 map_tree = &root->fs_info->mapping_tree;
1550 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04001551 ret = btrfs_map_block(map_tree, READ, logical,
Chris Masonf1885912008-04-09 16:28:12 -04001552 &map_length, NULL, 0);
Jeff Mahoney3444a972011-10-03 23:23:13 -04001553 /* Will always return 0 or 1 with map_multi == NULL */
1554 BUG_ON(ret < 0);
Chris Masond3977122009-01-05 21:25:51 -05001555 if (map_length < length + size)
Chris Mason239b14b2008-03-24 15:02:07 -04001556 return 1;
Jeff Mahoney3444a972011-10-03 23:23:13 -04001557 return 0;
Chris Mason239b14b2008-03-24 15:02:07 -04001558}
1559
Chris Masond352ac62008-09-29 15:18:18 -04001560/*
1561 * in order to insert checksums into the metadata in large chunks,
1562 * we wait until bio submission time. All the pages in the bio are
1563 * checksummed and sums are attached onto the ordered extent record.
1564 *
1565 * At IO completion time the cums attached on the ordered extent record
1566 * are inserted into the btree
1567 */
Chris Masond3977122009-01-05 21:25:51 -05001568static int __btrfs_submit_bio_start(struct inode *inode, int rw,
1569 struct bio *bio, int mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001570 unsigned long bio_flags,
1571 u64 bio_offset)
Chris Mason065631f2008-02-20 12:07:25 -05001572{
Chris Mason065631f2008-02-20 12:07:25 -05001573 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason065631f2008-02-20 12:07:25 -05001574 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001575
Chris Masond20f7042008-12-08 16:58:54 -05001576 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001577 BUG_ON(ret); /* -ENOMEM */
Chris Mason4a69a412008-11-06 22:03:00 -05001578 return 0;
1579}
Chris Masone0156402008-04-16 11:15:20 -04001580
Chris Mason4a69a412008-11-06 22:03:00 -05001581/*
1582 * in order to insert checksums into the metadata in large chunks,
1583 * we wait until bio submission time. All the pages in the bio are
1584 * checksummed and sums are attached onto the ordered extent record.
1585 *
1586 * At IO completion time the cums attached on the ordered extent record
1587 * are inserted into the btree
1588 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001589static int __btrfs_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001590 int mirror_num, unsigned long bio_flags,
1591 u64 bio_offset)
Chris Mason4a69a412008-11-06 22:03:00 -05001592{
1593 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason8b712842008-06-11 16:50:36 -04001594 return btrfs_map_bio(root, rw, bio, mirror_num, 1);
Chris Mason44b8bd72008-04-16 11:14:51 -04001595}
1596
Chris Masond352ac62008-09-29 15:18:18 -04001597/*
Chris Masoncad321a2008-12-17 14:51:42 -05001598 * extent_io.c submission hook. This does the right thing for csum calculation
1599 * on write, or reading the csums from the tree before a read
Chris Masond352ac62008-09-29 15:18:18 -04001600 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001601static int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001602 int mirror_num, unsigned long bio_flags,
1603 u64 bio_offset)
Chris Mason44b8bd72008-04-16 11:14:51 -04001604{
1605 struct btrfs_root *root = BTRFS_I(inode)->root;
1606 int ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001607 int skip_sum;
Jeff Mahoney04173412011-10-03 23:23:12 -04001608 int metadata = 0;
Chris Mason44b8bd72008-04-16 11:14:51 -04001609
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001610 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masoncad321a2008-12-17 14:51:42 -05001611
Chris Mason2cf85722011-07-26 15:35:09 -04001612 if (btrfs_is_free_space_inode(root, inode))
Jeff Mahoney04173412011-10-03 23:23:12 -04001613 metadata = 2;
1614
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001615 if (!(rw & REQ_WRITE)) {
Josef Bacik5fd02042012-05-02 14:00:54 -04001616 ret = btrfs_bio_wq_end_io(root->fs_info, bio, metadata);
1617 if (ret)
1618 return ret;
1619
Chris Masond20f7042008-12-08 16:58:54 -05001620 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Chris Masonc8b97812008-10-29 14:49:59 -04001621 return btrfs_submit_compressed_read(inode, bio,
1622 mirror_num, bio_flags);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001623 } else if (!skip_sum) {
1624 ret = btrfs_lookup_bio_sums(root, inode, bio, NULL);
1625 if (ret)
1626 return ret;
1627 }
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001628 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001629 } else if (!skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001630 /* csum items have already been cloned */
1631 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1632 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001633 /* we're doing a write, do the async checksumming */
1634 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
Chris Mason44b8bd72008-04-16 11:14:51 -04001635 inode, rw, bio, mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001636 bio_flags, bio_offset,
1637 __btrfs_submit_bio_start,
Chris Mason4a69a412008-11-06 22:03:00 -05001638 __btrfs_submit_bio_done);
Chris Mason19b9bdb2008-10-30 14:23:13 -04001639 }
1640
Chris Mason0b86a832008-03-24 15:01:56 -04001641mapit:
Chris Mason8b712842008-06-11 16:50:36 -04001642 return btrfs_map_bio(root, rw, bio, mirror_num, 0);
Chris Mason065631f2008-02-20 12:07:25 -05001643}
Chris Mason6885f302008-02-20 16:11:05 -05001644
Chris Masond352ac62008-09-29 15:18:18 -04001645/*
1646 * given a list of ordered sums record them in the inode. This happens
1647 * at IO completion time based on sums calculated at bio submission time.
1648 */
Chris Masonba1da2f2008-07-17 12:54:15 -04001649static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -04001650 struct inode *inode, u64 file_offset,
1651 struct list_head *list)
1652{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001653 struct btrfs_ordered_sum *sum;
1654
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001655 list_for_each_entry(sum, list, list) {
Chris Masond20f7042008-12-08 16:58:54 -05001656 btrfs_csum_file_blocks(trans,
1657 BTRFS_I(inode)->root->fs_info->csum_root, sum);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001658 }
1659 return 0;
1660}
1661
Josef Bacik2ac55d42010-02-03 19:33:23 +00001662int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end,
1663 struct extent_state **cached_state)
Chris Masonea8c2812008-08-04 23:17:27 -04001664{
Chris Masond3977122009-01-05 21:25:51 -05001665 if ((end & (PAGE_CACHE_SIZE - 1)) == 0)
Chris Mason771ed682008-11-06 22:02:51 -05001666 WARN_ON(1);
Chris Masonea8c2812008-08-04 23:17:27 -04001667 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001668 cached_state, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04001669}
1670
Chris Masond352ac62008-09-29 15:18:18 -04001671/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04001672struct btrfs_writepage_fixup {
1673 struct page *page;
1674 struct btrfs_work work;
1675};
1676
Christoph Hellwigb2950862008-12-02 09:54:17 -05001677static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04001678{
1679 struct btrfs_writepage_fixup *fixup;
1680 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001681 struct extent_state *cached_state = NULL;
Chris Mason247e7432008-07-17 12:53:51 -04001682 struct page *page;
1683 struct inode *inode;
1684 u64 page_start;
1685 u64 page_end;
Jeff Mahoney87826df2012-02-15 16:23:57 +01001686 int ret;
Chris Mason247e7432008-07-17 12:53:51 -04001687
1688 fixup = container_of(work, struct btrfs_writepage_fixup, work);
1689 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04001690again:
Chris Mason247e7432008-07-17 12:53:51 -04001691 lock_page(page);
1692 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
1693 ClearPageChecked(page);
1694 goto out_page;
1695 }
1696
1697 inode = page->mapping->host;
1698 page_start = page_offset(page);
1699 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
1700
Josef Bacik2ac55d42010-02-03 19:33:23 +00001701 lock_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001702 &cached_state);
Chris Mason4a096752008-07-21 10:29:44 -04001703
1704 /* already ordered? We're done */
Chris Mason8b62b722009-09-02 16:53:46 -04001705 if (PagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001706 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04001707
1708 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1709 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00001710 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start,
1711 page_end, &cached_state, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001712 unlock_page(page);
1713 btrfs_start_ordered_extent(inode, ordered, 1);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001714 btrfs_put_ordered_extent(ordered);
Chris Mason4a096752008-07-21 10:29:44 -04001715 goto again;
1716 }
Chris Mason247e7432008-07-17 12:53:51 -04001717
Jeff Mahoney87826df2012-02-15 16:23:57 +01001718 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
1719 if (ret) {
1720 mapping_set_error(page->mapping, ret);
1721 end_extent_writepage(page, ret, page_start, page_end);
1722 ClearPageChecked(page);
1723 goto out;
1724 }
1725
Josef Bacik2ac55d42010-02-03 19:33:23 +00001726 btrfs_set_extent_delalloc(inode, page_start, page_end, &cached_state);
Chris Mason247e7432008-07-17 12:53:51 -04001727 ClearPageChecked(page);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001728 set_page_dirty(page);
Chris Mason247e7432008-07-17 12:53:51 -04001729out:
Josef Bacik2ac55d42010-02-03 19:33:23 +00001730 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, page_end,
1731 &cached_state, GFP_NOFS);
Chris Mason247e7432008-07-17 12:53:51 -04001732out_page:
1733 unlock_page(page);
1734 page_cache_release(page);
Miao Xieb897abe2011-01-26 16:19:22 +08001735 kfree(fixup);
Chris Mason247e7432008-07-17 12:53:51 -04001736}
1737
1738/*
1739 * There are a few paths in the higher layers of the kernel that directly
1740 * set the page dirty bit without asking the filesystem if it is a
1741 * good idea. This causes problems because we want to make sure COW
1742 * properly happens and the data=ordered rules are followed.
1743 *
Chris Masonc8b97812008-10-29 14:49:59 -04001744 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04001745 * hasn't been properly setup for IO. We kick off an async process
1746 * to fix it up. The async helper will wait for ordered extents, set
1747 * the delalloc bit and make it safe to write the page.
1748 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001749static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04001750{
1751 struct inode *inode = page->mapping->host;
1752 struct btrfs_writepage_fixup *fixup;
1753 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason247e7432008-07-17 12:53:51 -04001754
Chris Mason8b62b722009-09-02 16:53:46 -04001755 /* this page is properly in the ordered list */
1756 if (TestClearPagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001757 return 0;
1758
1759 if (PageChecked(page))
1760 return -EAGAIN;
1761
1762 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
1763 if (!fixup)
1764 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04001765
Chris Mason247e7432008-07-17 12:53:51 -04001766 SetPageChecked(page);
1767 page_cache_get(page);
1768 fixup->work.func = btrfs_writepage_fixup_worker;
1769 fixup->page = page;
1770 btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001771 return -EBUSY;
Chris Mason247e7432008-07-17 12:53:51 -04001772}
1773
Yan Zhengd899e052008-10-30 14:25:28 -04001774static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
1775 struct inode *inode, u64 file_pos,
1776 u64 disk_bytenr, u64 disk_num_bytes,
1777 u64 num_bytes, u64 ram_bytes,
1778 u8 compression, u8 encryption,
1779 u16 other_encoding, int extent_type)
1780{
1781 struct btrfs_root *root = BTRFS_I(inode)->root;
1782 struct btrfs_file_extent_item *fi;
1783 struct btrfs_path *path;
1784 struct extent_buffer *leaf;
1785 struct btrfs_key ins;
1786 u64 hint;
1787 int ret;
1788
1789 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07001790 if (!path)
1791 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -04001792
Chris Masonb9473432009-03-13 11:00:37 -04001793 path->leave_spinning = 1;
Chris Masona1ed8352009-09-11 12:27:37 -04001794
1795 /*
1796 * we may be replacing one extent in the tree with another.
1797 * The new extent is pinned in the extent map, and we don't want
1798 * to drop it from the cache until it is completely in the btree.
1799 *
1800 * So, tell btrfs_drop_extents to leave this extent in the cache.
1801 * the caller is expected to unpin it and allow it to be merged
1802 * with the others.
1803 */
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001804 ret = btrfs_drop_extents(trans, inode, file_pos, file_pos + num_bytes,
1805 &hint, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001806 if (ret)
1807 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04001808
Li Zefan33345d012011-04-20 10:31:50 +08001809 ins.objectid = btrfs_ino(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04001810 ins.offset = file_pos;
1811 ins.type = BTRFS_EXTENT_DATA_KEY;
1812 ret = btrfs_insert_empty_item(trans, root, path, &ins, sizeof(*fi));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001813 if (ret)
1814 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04001815 leaf = path->nodes[0];
1816 fi = btrfs_item_ptr(leaf, path->slots[0],
1817 struct btrfs_file_extent_item);
1818 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
1819 btrfs_set_file_extent_type(leaf, fi, extent_type);
1820 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
1821 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
1822 btrfs_set_file_extent_offset(leaf, fi, 0);
1823 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
1824 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
1825 btrfs_set_file_extent_compression(leaf, fi, compression);
1826 btrfs_set_file_extent_encryption(leaf, fi, encryption);
1827 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
Chris Masonb9473432009-03-13 11:00:37 -04001828
1829 btrfs_unlock_up_safe(path, 1);
1830 btrfs_set_lock_blocking(leaf);
1831
Yan Zhengd899e052008-10-30 14:25:28 -04001832 btrfs_mark_buffer_dirty(leaf);
1833
1834 inode_add_bytes(inode, num_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -04001835
1836 ins.objectid = disk_bytenr;
1837 ins.offset = disk_num_bytes;
1838 ins.type = BTRFS_EXTENT_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001839 ret = btrfs_alloc_reserved_file_extent(trans, root,
1840 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08001841 btrfs_ino(inode), file_pos, &ins);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001842out:
Yan Zhengd899e052008-10-30 14:25:28 -04001843 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04001844
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001845 return ret;
Yan Zhengd899e052008-10-30 14:25:28 -04001846}
1847
Chris Mason5d13a982009-03-13 11:41:46 -04001848/*
1849 * helper function for btrfs_finish_ordered_io, this
1850 * just reads in some of the csum leaves to prime them into ram
1851 * before we start the transaction. It limits the amount of btree
1852 * reads required while inside the transaction.
1853 */
Chris Masond352ac62008-09-29 15:18:18 -04001854/* as ordered data IO finishes, this gets called so we can finish
1855 * an ordered extent if the range of bytes in the file it covers are
1856 * fully written.
1857 */
Josef Bacik5fd02042012-05-02 14:00:54 -04001858static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001859{
Josef Bacik5fd02042012-05-02 14:00:54 -04001860 struct inode *inode = ordered_extent->inode;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001861 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001862 struct btrfs_trans_handle *trans = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001863 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001864 struct extent_state *cached_state = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08001865 int compress_type = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001866 int ret;
Li Zefan82d59022011-04-20 10:33:24 +08001867 bool nolock;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001868
Chris Mason2cf85722011-07-26 15:35:09 -04001869 nolock = btrfs_is_free_space_inode(root, inode);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001870
Josef Bacik5fd02042012-05-02 14:00:54 -04001871 if (test_bit(BTRFS_ORDERED_IOERR, &ordered_extent->flags)) {
1872 ret = -EIO;
1873 goto out;
1874 }
1875
Yan, Zhengc21677542009-11-12 09:34:21 +00001876 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001877 BUG_ON(!list_empty(&ordered_extent->list)); /* Logic error */
Yan, Zhengc21677542009-11-12 09:34:21 +00001878 ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent);
1879 if (!ret) {
Josef Bacik0cb59c92010-07-02 12:14:14 -04001880 if (nolock)
Josef Bacik7a7eaa402011-04-13 12:54:33 -04001881 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001882 else
Josef Bacik7a7eaa402011-04-13 12:54:33 -04001883 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001884 if (IS_ERR(trans))
1885 return PTR_ERR(trans);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001886 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason21151332011-11-10 20:39:08 -05001887 ret = btrfs_update_inode_fallback(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001888 if (ret) /* -ENOMEM or corruption */
1889 btrfs_abort_transaction(trans, root, ret);
Yan, Zhengc21677542009-11-12 09:34:21 +00001890 }
1891 goto out;
1892 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001893
Josef Bacik2ac55d42010-02-03 19:33:23 +00001894 lock_extent_bits(io_tree, ordered_extent->file_offset,
1895 ordered_extent->file_offset + ordered_extent->len - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001896 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001897
Josef Bacik0cb59c92010-07-02 12:14:14 -04001898 if (nolock)
Josef Bacik7a7eaa402011-04-13 12:54:33 -04001899 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001900 else
Josef Bacik7a7eaa402011-04-13 12:54:33 -04001901 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001902 if (IS_ERR(trans)) {
1903 ret = PTR_ERR(trans);
1904 trans = NULL;
1905 goto out_unlock;
1906 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001907 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Yan, Zhengc21677542009-11-12 09:34:21 +00001908
Chris Masonc8b97812008-10-29 14:49:59 -04001909 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Li Zefan261507a02010-12-17 14:21:50 +08001910 compress_type = ordered_extent->compress_type;
Yan Zhengd899e052008-10-30 14:25:28 -04001911 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Li Zefan261507a02010-12-17 14:21:50 +08001912 BUG_ON(compress_type);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001913 ret = btrfs_mark_extent_written(trans, inode,
Yan Zhengd899e052008-10-30 14:25:28 -04001914 ordered_extent->file_offset,
1915 ordered_extent->file_offset +
1916 ordered_extent->len);
Yan Zhengd899e052008-10-30 14:25:28 -04001917 } else {
Josef Bacik0af3d002010-06-21 14:48:16 -04001918 BUG_ON(root == root->fs_info->tree_root);
Yan Zhengd899e052008-10-30 14:25:28 -04001919 ret = insert_reserved_file_extent(trans, inode,
1920 ordered_extent->file_offset,
1921 ordered_extent->start,
1922 ordered_extent->disk_len,
1923 ordered_extent->len,
1924 ordered_extent->len,
Li Zefan261507a02010-12-17 14:21:50 +08001925 compress_type, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04001926 BTRFS_FILE_EXTENT_REG);
Chris Masona1ed8352009-09-11 12:27:37 -04001927 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
1928 ordered_extent->file_offset,
1929 ordered_extent->len);
Yan Zhengd899e052008-10-30 14:25:28 -04001930 }
Josef Bacik5fd02042012-05-02 14:00:54 -04001931
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001932 if (ret < 0) {
1933 btrfs_abort_transaction(trans, root, ret);
Josef Bacik5fd02042012-05-02 14:00:54 -04001934 goto out_unlock;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001935 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00001936
Chris Masone6dcd2d2008-07-17 12:53:50 -04001937 add_pending_csums(trans, inode, ordered_extent->file_offset,
1938 &ordered_extent->list);
1939
Josef Bacik1ef30be2011-04-05 19:25:36 -04001940 ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent);
Miao Xiea39f7522011-09-11 10:52:25 -04001941 if (!ret || !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Chris Mason21151332011-11-10 20:39:08 -05001942 ret = btrfs_update_inode_fallback(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001943 if (ret) { /* -ENOMEM or corruption */
1944 btrfs_abort_transaction(trans, root, ret);
Josef Bacik5fd02042012-05-02 14:00:54 -04001945 goto out_unlock;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001946 }
Josef Bacik1ef30be2011-04-05 19:25:36 -04001947 }
1948 ret = 0;
Josef Bacik5fd02042012-05-02 14:00:54 -04001949out_unlock:
1950 unlock_extent_cached(io_tree, ordered_extent->file_offset,
1951 ordered_extent->file_offset +
1952 ordered_extent->len - 1, &cached_state, GFP_NOFS);
Yan, Zhengc21677542009-11-12 09:34:21 +00001953out:
Josef Bacik5b0e95b2011-10-06 08:58:24 -04001954 if (root != root->fs_info->tree_root)
Josef Bacik0cb59c92010-07-02 12:14:14 -04001955 btrfs_delalloc_release_metadata(inode, ordered_extent->len);
Josef Bacik5b0e95b2011-10-06 08:58:24 -04001956 if (trans) {
1957 if (nolock)
Josef Bacik0cb59c92010-07-02 12:14:14 -04001958 btrfs_end_transaction_nolock(trans, root);
Josef Bacik5b0e95b2011-10-06 08:58:24 -04001959 else
Josef Bacik0cb59c92010-07-02 12:14:14 -04001960 btrfs_end_transaction(trans, root);
1961 }
1962
Josef Bacik5fd02042012-05-02 14:00:54 -04001963 if (ret)
1964 clear_extent_uptodate(io_tree, ordered_extent->file_offset,
1965 ordered_extent->file_offset +
1966 ordered_extent->len - 1, NULL, GFP_NOFS);
1967
1968 /*
1969 * This needs to be dont to make sure anybody waiting knows we are done
1970 * upating everything for this ordered extent.
1971 */
1972 btrfs_remove_ordered_extent(inode, ordered_extent);
1973
Chris Masone6dcd2d2008-07-17 12:53:50 -04001974 /* once for us */
1975 btrfs_put_ordered_extent(ordered_extent);
1976 /* once for the tree */
1977 btrfs_put_ordered_extent(ordered_extent);
1978
Josef Bacik5fd02042012-05-02 14:00:54 -04001979 return ret;
1980}
1981
1982static void finish_ordered_fn(struct btrfs_work *work)
1983{
1984 struct btrfs_ordered_extent *ordered_extent;
1985 ordered_extent = container_of(work, struct btrfs_ordered_extent, work);
1986 btrfs_finish_ordered_io(ordered_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001987}
1988
Christoph Hellwigb2950862008-12-02 09:54:17 -05001989static int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04001990 struct extent_state *state, int uptodate)
1991{
Josef Bacik5fd02042012-05-02 14:00:54 -04001992 struct inode *inode = page->mapping->host;
1993 struct btrfs_root *root = BTRFS_I(inode)->root;
1994 struct btrfs_ordered_extent *ordered_extent = NULL;
1995 struct btrfs_workers *workers;
1996
liubo1abe9b82011-03-24 11:18:59 +00001997 trace_btrfs_writepage_end_io_hook(page, start, end, uptodate);
1998
Chris Mason8b62b722009-09-02 16:53:46 -04001999 ClearPagePrivate2(page);
Josef Bacik5fd02042012-05-02 14:00:54 -04002000 if (!btrfs_dec_test_ordered_pending(inode, &ordered_extent, start,
2001 end - start + 1, uptodate))
2002 return 0;
2003
2004 ordered_extent->work.func = finish_ordered_fn;
2005 ordered_extent->work.flags = 0;
2006
2007 if (btrfs_is_free_space_inode(root, inode))
2008 workers = &root->fs_info->endio_freespace_worker;
2009 else
2010 workers = &root->fs_info->endio_write_workers;
2011 btrfs_queue_worker(workers, &ordered_extent->work);
2012
2013 return 0;
Chris Mason211f90e2008-07-18 11:56:15 -04002014}
2015
Chris Masond352ac62008-09-29 15:18:18 -04002016/*
Chris Masond352ac62008-09-29 15:18:18 -04002017 * when reads are done, we need to check csums to verify the data is correct
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002018 * if there's a match, we allow the bio to finish. If not, the code in
2019 * extent_io.c will try to find good copies for us.
Chris Masond352ac62008-09-29 15:18:18 -04002020 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05002021static int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002022 struct extent_state *state, int mirror)
Chris Mason07157aa2007-08-30 08:50:51 -04002023{
Chris Mason35ebb932007-10-30 16:56:53 -04002024 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -04002025 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05002026 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -04002027 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -05002028 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -04002029 int ret;
Chris Masonff79f812007-10-15 16:22:25 -04002030 struct btrfs_root *root = BTRFS_I(inode)->root;
2031 u32 csum = ~(u32)0;
Chris Masond1310b22008-01-24 16:13:08 -05002032
Chris Masond20f7042008-12-08 16:58:54 -05002033 if (PageChecked(page)) {
2034 ClearPageChecked(page);
2035 goto good;
2036 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002037
2038 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Jan Schmidt08d2f342011-05-04 16:18:50 +02002039 goto good;
Chris Masond20f7042008-12-08 16:58:54 -05002040
Yan Zheng17d217f2008-12-12 10:03:38 -05002041 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04002042 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
Yan Zheng17d217f2008-12-12 10:03:38 -05002043 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM,
2044 GFP_NOFS);
2045 return 0;
2046 }
2047
Yanc2e639f2008-02-04 08:57:25 -05002048 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -05002049 private = state->private;
2050 ret = 0;
2051 } else {
2052 ret = get_state_private(io_tree, start, &private);
2053 }
Cong Wang7ac687d2011-11-25 23:14:28 +08002054 kaddr = kmap_atomic(page);
Chris Masond3977122009-01-05 21:25:51 -05002055 if (ret)
Chris Mason07157aa2007-08-30 08:50:51 -04002056 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05002057
Chris Masonff79f812007-10-15 16:22:25 -04002058 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
2059 btrfs_csum_final(csum, (char *)&csum);
Chris Masond3977122009-01-05 21:25:51 -05002060 if (csum != private)
Chris Mason07157aa2007-08-30 08:50:51 -04002061 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05002062
Cong Wang7ac687d2011-11-25 23:14:28 +08002063 kunmap_atomic(kaddr);
Chris Masond20f7042008-12-08 16:58:54 -05002064good:
Chris Mason07157aa2007-08-30 08:50:51 -04002065 return 0;
2066
2067zeroit:
Chris Mason945d8962011-05-22 12:33:42 -04002068 printk_ratelimited(KERN_INFO "btrfs csum failed ino %llu off %llu csum %u "
Li Zefan33345d012011-04-20 10:31:50 +08002069 "private %llu\n",
2070 (unsigned long long)btrfs_ino(page->mapping->host),
Chris Mason193f2842009-04-27 07:29:05 -04002071 (unsigned long long)start, csum,
2072 (unsigned long long)private);
Chris Masondb945352007-10-15 16:15:53 -04002073 memset(kaddr + offset, 1, end - start + 1);
2074 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002075 kunmap_atomic(kaddr);
Chris Mason3b951512008-04-17 11:29:12 -04002076 if (private == 0)
2077 return 0;
Chris Mason7e383262008-04-09 16:28:12 -04002078 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -04002079}
Chris Masonb888db22007-08-27 16:49:44 -04002080
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002081struct delayed_iput {
2082 struct list_head list;
2083 struct inode *inode;
2084};
2085
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002086/* JDM: If this is fs-wide, why can't we add a pointer to
2087 * btrfs_inode instead and avoid the allocation? */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002088void btrfs_add_delayed_iput(struct inode *inode)
2089{
2090 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2091 struct delayed_iput *delayed;
2092
2093 if (atomic_add_unless(&inode->i_count, -1, 1))
2094 return;
2095
2096 delayed = kmalloc(sizeof(*delayed), GFP_NOFS | __GFP_NOFAIL);
2097 delayed->inode = inode;
2098
2099 spin_lock(&fs_info->delayed_iput_lock);
2100 list_add_tail(&delayed->list, &fs_info->delayed_iputs);
2101 spin_unlock(&fs_info->delayed_iput_lock);
2102}
2103
2104void btrfs_run_delayed_iputs(struct btrfs_root *root)
2105{
2106 LIST_HEAD(list);
2107 struct btrfs_fs_info *fs_info = root->fs_info;
2108 struct delayed_iput *delayed;
2109 int empty;
2110
2111 spin_lock(&fs_info->delayed_iput_lock);
2112 empty = list_empty(&fs_info->delayed_iputs);
2113 spin_unlock(&fs_info->delayed_iput_lock);
2114 if (empty)
2115 return;
2116
2117 down_read(&root->fs_info->cleanup_work_sem);
2118 spin_lock(&fs_info->delayed_iput_lock);
2119 list_splice_init(&fs_info->delayed_iputs, &list);
2120 spin_unlock(&fs_info->delayed_iput_lock);
2121
2122 while (!list_empty(&list)) {
2123 delayed = list_entry(list.next, struct delayed_iput, list);
2124 list_del(&delayed->list);
2125 iput(delayed->inode);
2126 kfree(delayed);
2127 }
2128 up_read(&root->fs_info->cleanup_work_sem);
2129}
2130
Yan, Zhengd68fc572010-05-16 10:49:58 -04002131enum btrfs_orphan_cleanup_state {
2132 ORPHAN_CLEANUP_STARTED = 1,
2133 ORPHAN_CLEANUP_DONE = 2,
2134};
2135
2136/*
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08002137 * This is called in transaction commit time. If there are no orphan
Yan, Zhengd68fc572010-05-16 10:49:58 -04002138 * files in the subvolume, it removes orphan item and frees block_rsv
2139 * structure.
2140 */
2141void btrfs_orphan_commit_root(struct btrfs_trans_handle *trans,
2142 struct btrfs_root *root)
2143{
Josef Bacik90290e12011-12-02 15:44:12 -05002144 struct btrfs_block_rsv *block_rsv;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002145 int ret;
2146
Josef Bacik8a35d952012-05-23 14:26:42 -04002147 if (atomic_read(&root->orphan_inodes) ||
Yan, Zhengd68fc572010-05-16 10:49:58 -04002148 root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE)
2149 return;
2150
Josef Bacik90290e12011-12-02 15:44:12 -05002151 spin_lock(&root->orphan_lock);
Josef Bacik8a35d952012-05-23 14:26:42 -04002152 if (atomic_read(&root->orphan_inodes)) {
Josef Bacik90290e12011-12-02 15:44:12 -05002153 spin_unlock(&root->orphan_lock);
2154 return;
2155 }
2156
2157 if (root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE) {
2158 spin_unlock(&root->orphan_lock);
2159 return;
2160 }
2161
2162 block_rsv = root->orphan_block_rsv;
2163 root->orphan_block_rsv = NULL;
2164 spin_unlock(&root->orphan_lock);
2165
Yan, Zhengd68fc572010-05-16 10:49:58 -04002166 if (root->orphan_item_inserted &&
2167 btrfs_root_refs(&root->root_item) > 0) {
2168 ret = btrfs_del_orphan_item(trans, root->fs_info->tree_root,
2169 root->root_key.objectid);
2170 BUG_ON(ret);
2171 root->orphan_item_inserted = 0;
2172 }
2173
Josef Bacik90290e12011-12-02 15:44:12 -05002174 if (block_rsv) {
2175 WARN_ON(block_rsv->size > 0);
2176 btrfs_free_block_rsv(root, block_rsv);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002177 }
2178}
2179
2180/*
Josef Bacik7b128762008-07-24 12:17:14 -04002181 * This creates an orphan entry for the given inode in case something goes
2182 * wrong in the middle of an unlink/truncate.
Yan, Zhengd68fc572010-05-16 10:49:58 -04002183 *
2184 * NOTE: caller of this function should reserve 5 units of metadata for
2185 * this function.
Josef Bacik7b128762008-07-24 12:17:14 -04002186 */
2187int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
2188{
2189 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002190 struct btrfs_block_rsv *block_rsv = NULL;
2191 int reserve = 0;
2192 int insert = 0;
2193 int ret;
Josef Bacik7b128762008-07-24 12:17:14 -04002194
Yan, Zhengd68fc572010-05-16 10:49:58 -04002195 if (!root->orphan_block_rsv) {
2196 block_rsv = btrfs_alloc_block_rsv(root);
Tsutomu Itohb5324022011-07-19 07:27:20 +00002197 if (!block_rsv)
2198 return -ENOMEM;
Josef Bacik7b128762008-07-24 12:17:14 -04002199 }
2200
Yan, Zhengd68fc572010-05-16 10:49:58 -04002201 spin_lock(&root->orphan_lock);
2202 if (!root->orphan_block_rsv) {
2203 root->orphan_block_rsv = block_rsv;
2204 } else if (block_rsv) {
2205 btrfs_free_block_rsv(root, block_rsv);
2206 block_rsv = NULL;
2207 }
Josef Bacik7b128762008-07-24 12:17:14 -04002208
Josef Bacik8a35d952012-05-23 14:26:42 -04002209 if (!test_and_set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2210 &BTRFS_I(inode)->runtime_flags)) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04002211#if 0
2212 /*
2213 * For proper ENOSPC handling, we should do orphan
2214 * cleanup when mounting. But this introduces backward
2215 * compatibility issue.
2216 */
2217 if (!xchg(&root->orphan_item_inserted, 1))
2218 insert = 2;
2219 else
2220 insert = 1;
2221#endif
2222 insert = 1;
Josef Bacik8a35d952012-05-23 14:26:42 -04002223 atomic_dec(&root->orphan_inodes);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002224 }
Josef Bacik7b128762008-07-24 12:17:14 -04002225
Josef Bacik72ac3c02012-05-23 14:13:11 -04002226 if (!test_and_set_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
2227 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04002228 reserve = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002229 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002230
Yan, Zhengd68fc572010-05-16 10:49:58 -04002231 /* grab metadata reservation from transaction handle */
2232 if (reserve) {
2233 ret = btrfs_orphan_reserve_metadata(trans, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002234 BUG_ON(ret); /* -ENOSPC in reservation; Logic error? JDM */
Yan, Zhengd68fc572010-05-16 10:49:58 -04002235 }
2236
2237 /* insert an orphan item to track this unlinked/truncated file */
2238 if (insert >= 1) {
Li Zefan33345d012011-04-20 10:31:50 +08002239 ret = btrfs_insert_orphan_item(trans, root, btrfs_ino(inode));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002240 if (ret && ret != -EEXIST) {
Josef Bacik8a35d952012-05-23 14:26:42 -04002241 clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2242 &BTRFS_I(inode)->runtime_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002243 btrfs_abort_transaction(trans, root, ret);
2244 return ret;
2245 }
2246 ret = 0;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002247 }
2248
2249 /* insert an orphan item to track subvolume contains orphan files */
2250 if (insert >= 2) {
2251 ret = btrfs_insert_orphan_item(trans, root->fs_info->tree_root,
2252 root->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002253 if (ret && ret != -EEXIST) {
2254 btrfs_abort_transaction(trans, root, ret);
2255 return ret;
2256 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002257 }
2258 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002259}
2260
2261/*
2262 * We have done the truncate/delete so we can go ahead and remove the orphan
2263 * item for this particular inode.
2264 */
2265int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode)
2266{
2267 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002268 int delete_item = 0;
2269 int release_rsv = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002270 int ret = 0;
2271
Yan, Zhengd68fc572010-05-16 10:49:58 -04002272 spin_lock(&root->orphan_lock);
Josef Bacik8a35d952012-05-23 14:26:42 -04002273 if (test_and_clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2274 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04002275 delete_item = 1;
Josef Bacik7b128762008-07-24 12:17:14 -04002276
Josef Bacik72ac3c02012-05-23 14:13:11 -04002277 if (test_and_clear_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
2278 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04002279 release_rsv = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002280 spin_unlock(&root->orphan_lock);
2281
2282 if (trans && delete_item) {
Li Zefan33345d012011-04-20 10:31:50 +08002283 ret = btrfs_del_orphan_item(trans, root, btrfs_ino(inode));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002284 BUG_ON(ret); /* -ENOMEM or corruption (JDM: Recheck) */
Josef Bacik7b128762008-07-24 12:17:14 -04002285 }
2286
Josef Bacik8a35d952012-05-23 14:26:42 -04002287 if (release_rsv) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04002288 btrfs_orphan_release_metadata(inode);
Josef Bacik8a35d952012-05-23 14:26:42 -04002289 atomic_dec(&root->orphan_inodes);
2290 }
Josef Bacik7b128762008-07-24 12:17:14 -04002291
Yan, Zhengd68fc572010-05-16 10:49:58 -04002292 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002293}
2294
2295/*
2296 * this cleans up any orphans that may be left on the list from the last use
2297 * of this root.
2298 */
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002299int btrfs_orphan_cleanup(struct btrfs_root *root)
Josef Bacik7b128762008-07-24 12:17:14 -04002300{
2301 struct btrfs_path *path;
2302 struct extent_buffer *leaf;
Josef Bacik7b128762008-07-24 12:17:14 -04002303 struct btrfs_key key, found_key;
2304 struct btrfs_trans_handle *trans;
2305 struct inode *inode;
Josef Bacik8f6d7f42011-09-26 15:55:20 -04002306 u64 last_objectid = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002307 int ret = 0, nr_unlink = 0, nr_truncate = 0;
2308
Yan, Zhengd68fc572010-05-16 10:49:58 -04002309 if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002310 return 0;
Yan, Zhengc71bf092009-11-12 09:34:40 +00002311
2312 path = btrfs_alloc_path();
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002313 if (!path) {
2314 ret = -ENOMEM;
2315 goto out;
2316 }
Josef Bacik7b128762008-07-24 12:17:14 -04002317 path->reada = -1;
2318
2319 key.objectid = BTRFS_ORPHAN_OBJECTID;
2320 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
2321 key.offset = (u64)-1;
2322
Josef Bacik7b128762008-07-24 12:17:14 -04002323 while (1) {
2324 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002325 if (ret < 0)
2326 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04002327
2328 /*
2329 * if ret == 0 means we found what we were searching for, which
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002330 * is weird, but possible, so only screw with path if we didn't
Josef Bacik7b128762008-07-24 12:17:14 -04002331 * find the key and see if we have stuff that matches
2332 */
2333 if (ret > 0) {
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002334 ret = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002335 if (path->slots[0] == 0)
2336 break;
2337 path->slots[0]--;
2338 }
2339
2340 /* pull out the item */
2341 leaf = path->nodes[0];
Josef Bacik7b128762008-07-24 12:17:14 -04002342 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2343
2344 /* make sure the item matches what we want */
2345 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
2346 break;
2347 if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY)
2348 break;
2349
2350 /* release the path since we're done with it */
David Sterbab3b4aa72011-04-21 01:20:15 +02002351 btrfs_release_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04002352
2353 /*
2354 * this is where we are basically btrfs_lookup, without the
2355 * crossing root thing. we store the inode number in the
2356 * offset of the orphan item.
2357 */
Josef Bacik8f6d7f42011-09-26 15:55:20 -04002358
2359 if (found_key.offset == last_objectid) {
2360 printk(KERN_ERR "btrfs: Error removing orphan entry, "
2361 "stopping orphan cleanup\n");
2362 ret = -EINVAL;
2363 goto out;
2364 }
2365
2366 last_objectid = found_key.offset;
2367
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002368 found_key.objectid = found_key.offset;
2369 found_key.type = BTRFS_INODE_ITEM_KEY;
2370 found_key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +00002371 inode = btrfs_iget(root->fs_info->sb, &found_key, root, NULL);
Josef Bacika8c9e572011-09-21 16:55:59 -04002372 ret = PTR_RET(inode);
2373 if (ret && ret != -ESTALE)
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002374 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04002375
Arne Jansenf8e9e0b2011-12-14 20:12:02 -05002376 if (ret == -ESTALE && root == root->fs_info->tree_root) {
2377 struct btrfs_root *dead_root;
2378 struct btrfs_fs_info *fs_info = root->fs_info;
2379 int is_dead_root = 0;
2380
2381 /*
2382 * this is an orphan in the tree root. Currently these
2383 * could come from 2 sources:
2384 * a) a snapshot deletion in progress
2385 * b) a free space cache inode
2386 * We need to distinguish those two, as the snapshot
2387 * orphan must not get deleted.
2388 * find_dead_roots already ran before us, so if this
2389 * is a snapshot deletion, we should find the root
2390 * in the dead_roots list
2391 */
2392 spin_lock(&fs_info->trans_lock);
2393 list_for_each_entry(dead_root, &fs_info->dead_roots,
2394 root_list) {
2395 if (dead_root->root_key.objectid ==
2396 found_key.objectid) {
2397 is_dead_root = 1;
2398 break;
2399 }
2400 }
2401 spin_unlock(&fs_info->trans_lock);
2402 if (is_dead_root) {
2403 /* prevent this orphan from being found again */
2404 key.offset = found_key.objectid - 1;
2405 continue;
2406 }
2407 }
Josef Bacika8c9e572011-09-21 16:55:59 -04002408 /*
2409 * Inode is already gone but the orphan item is still there,
2410 * kill the orphan item.
2411 */
2412 if (ret == -ESTALE) {
2413 trans = btrfs_start_transaction(root, 1);
2414 if (IS_ERR(trans)) {
2415 ret = PTR_ERR(trans);
2416 goto out;
2417 }
Josef Bacik8a35d952012-05-23 14:26:42 -04002418 printk(KERN_ERR "auto deleting %Lu\n",
2419 found_key.objectid);
Josef Bacika8c9e572011-09-21 16:55:59 -04002420 ret = btrfs_del_orphan_item(trans, root,
2421 found_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002422 BUG_ON(ret); /* -ENOMEM or corruption (JDM: Recheck) */
Josef Bacika8c9e572011-09-21 16:55:59 -04002423 btrfs_end_transaction(trans, root);
2424 continue;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002425 }
Josef Bacik7b128762008-07-24 12:17:14 -04002426
Josef Bacik7b128762008-07-24 12:17:14 -04002427 /*
2428 * add this inode to the orphan list so btrfs_orphan_del does
2429 * the proper thing when we hit it
2430 */
Josef Bacik8a35d952012-05-23 14:26:42 -04002431 set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2432 &BTRFS_I(inode)->runtime_flags);
Josef Bacik7b128762008-07-24 12:17:14 -04002433
Josef Bacik7b128762008-07-24 12:17:14 -04002434 /* if we have links, this was a truncate, lets do that */
2435 if (inode->i_nlink) {
Josef Bacika41ad392011-01-31 15:30:16 -05002436 if (!S_ISREG(inode->i_mode)) {
2437 WARN_ON(1);
2438 iput(inode);
2439 continue;
2440 }
Josef Bacik7b128762008-07-24 12:17:14 -04002441 nr_truncate++;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002442 ret = btrfs_truncate(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04002443 } else {
2444 nr_unlink++;
2445 }
2446
2447 /* this will do delete_inode and everything for us */
2448 iput(inode);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002449 if (ret)
2450 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04002451 }
Miao Xie3254c872011-11-10 20:45:05 -05002452 /* release the path since we're done with it */
2453 btrfs_release_path(path);
2454
Yan, Zhengd68fc572010-05-16 10:49:58 -04002455 root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE;
2456
2457 if (root->orphan_block_rsv)
2458 btrfs_block_rsv_release(root, root->orphan_block_rsv,
2459 (u64)-1);
2460
2461 if (root->orphan_block_rsv || root->orphan_item_inserted) {
Josef Bacik7a7eaa402011-04-13 12:54:33 -04002462 trans = btrfs_join_transaction(root);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002463 if (!IS_ERR(trans))
2464 btrfs_end_transaction(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002465 }
Josef Bacik7b128762008-07-24 12:17:14 -04002466
2467 if (nr_unlink)
2468 printk(KERN_INFO "btrfs: unlinked %d orphans\n", nr_unlink);
2469 if (nr_truncate)
2470 printk(KERN_INFO "btrfs: truncated %d orphans\n", nr_truncate);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002471
2472out:
2473 if (ret)
2474 printk(KERN_CRIT "btrfs: could not do orphan cleanup %d\n", ret);
2475 btrfs_free_path(path);
2476 return ret;
Josef Bacik7b128762008-07-24 12:17:14 -04002477}
2478
Chris Masond352ac62008-09-29 15:18:18 -04002479/*
Chris Mason46a53cc2009-04-27 11:47:50 -04002480 * very simple check to peek ahead in the leaf looking for xattrs. If we
2481 * don't find any xattrs, we know there can't be any acls.
2482 *
2483 * slot is the slot the inode is in, objectid is the objectid of the inode
2484 */
2485static noinline int acls_after_inode_item(struct extent_buffer *leaf,
2486 int slot, u64 objectid)
2487{
2488 u32 nritems = btrfs_header_nritems(leaf);
2489 struct btrfs_key found_key;
2490 int scanned = 0;
2491
2492 slot++;
2493 while (slot < nritems) {
2494 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2495
2496 /* we found a different objectid, there must not be acls */
2497 if (found_key.objectid != objectid)
2498 return 0;
2499
2500 /* we found an xattr, assume we've got an acl */
2501 if (found_key.type == BTRFS_XATTR_ITEM_KEY)
2502 return 1;
2503
2504 /*
2505 * we found a key greater than an xattr key, there can't
2506 * be any acls later on
2507 */
2508 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
2509 return 0;
2510
2511 slot++;
2512 scanned++;
2513
2514 /*
2515 * it goes inode, inode backrefs, xattrs, extents,
2516 * so if there are a ton of hard links to an inode there can
2517 * be a lot of backrefs. Don't waste time searching too hard,
2518 * this is just an optimization
2519 */
2520 if (scanned >= 8)
2521 break;
2522 }
2523 /* we hit the end of the leaf before we found an xattr or
2524 * something larger than an xattr. We have to assume the inode
2525 * has acls
2526 */
2527 return 1;
2528}
2529
2530/*
Chris Masond352ac62008-09-29 15:18:18 -04002531 * read an inode from the btree into the in-memory inode
2532 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002533static void btrfs_read_locked_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002534{
2535 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002536 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002537 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -04002538 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -04002539 struct btrfs_root *root = BTRFS_I(inode)->root;
2540 struct btrfs_key location;
Chris Mason46a53cc2009-04-27 11:47:50 -04002541 int maybe_acls;
Josef Bacik618e21d2007-07-11 10:18:17 -04002542 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04002543 int ret;
Miao Xie2f7e33d2011-06-23 07:27:13 +00002544 bool filled = false;
2545
2546 ret = btrfs_fill_inode(inode, &rdev);
2547 if (!ret)
2548 filled = true;
Chris Mason39279cc2007-06-12 06:35:45 -04002549
2550 path = btrfs_alloc_path();
Mark Fasheh1748f842011-07-12 11:25:31 -07002551 if (!path)
2552 goto make_bad;
2553
Josef Bacikd90c7322011-05-17 09:50:54 -04002554 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002555 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05002556
Chris Mason39279cc2007-06-12 06:35:45 -04002557 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002558 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04002559 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -04002560
Chris Mason5f39d392007-10-15 16:14:19 -04002561 leaf = path->nodes[0];
Miao Xie2f7e33d2011-06-23 07:27:13 +00002562
2563 if (filled)
2564 goto cache_acl;
2565
Chris Mason5f39d392007-10-15 16:14:19 -04002566 inode_item = btrfs_item_ptr(leaf, path->slots[0],
2567 struct btrfs_inode_item);
Chris Mason5f39d392007-10-15 16:14:19 -04002568 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
Miklos Szeredibfe86842011-10-28 14:13:29 +02002569 set_nlink(inode, btrfs_inode_nlink(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002570 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
2571 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
Chris Masondbe674a2008-07-17 12:54:05 -04002572 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002573
2574 tspec = btrfs_inode_atime(inode_item);
2575 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2576 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2577
2578 tspec = btrfs_inode_mtime(inode_item);
2579 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2580 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2581
2582 tspec = btrfs_inode_ctime(inode_item);
2583 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2584 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2585
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002586 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04002587 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04002588 inode->i_version = btrfs_inode_sequence(leaf, inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04002589 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04002590 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002591 rdev = btrfs_inode_rdev(leaf, inode_item);
2592
Josef Bacikaec74772008-07-24 12:12:38 -04002593 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05002594 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Miao Xie2f7e33d2011-06-23 07:27:13 +00002595cache_acl:
Chris Mason46a53cc2009-04-27 11:47:50 -04002596 /*
2597 * try to precache a NULL acl entry for files that don't have
2598 * any xattrs or acls
2599 */
Li Zefan33345d012011-04-20 10:31:50 +08002600 maybe_acls = acls_after_inode_item(leaf, path->slots[0],
2601 btrfs_ino(inode));
Al Viro72c04902009-06-24 16:58:48 -04002602 if (!maybe_acls)
2603 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04002604
Chris Mason39279cc2007-06-12 06:35:45 -04002605 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002606
Chris Mason39279cc2007-06-12 06:35:45 -04002607 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04002608 case S_IFREG:
2609 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04002610 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05002611 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04002612 inode->i_fop = &btrfs_file_operations;
2613 inode->i_op = &btrfs_file_inode_operations;
2614 break;
2615 case S_IFDIR:
2616 inode->i_fop = &btrfs_dir_file_operations;
2617 if (root == root->fs_info->tree_root)
2618 inode->i_op = &btrfs_dir_ro_inode_operations;
2619 else
2620 inode->i_op = &btrfs_dir_inode_operations;
2621 break;
2622 case S_IFLNK:
2623 inode->i_op = &btrfs_symlink_inode_operations;
2624 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04002625 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04002626 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04002627 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05002628 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04002629 init_special_inode(inode, inode->i_mode, rdev);
2630 break;
Chris Mason39279cc2007-06-12 06:35:45 -04002631 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002632
2633 btrfs_update_iflags(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002634 return;
2635
2636make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04002637 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002638 make_bad_inode(inode);
2639}
2640
Chris Masond352ac62008-09-29 15:18:18 -04002641/*
2642 * given a leaf and an inode, copy the inode fields into the leaf
2643 */
Chris Masone02119d2008-09-05 16:13:11 -04002644static void fill_inode_item(struct btrfs_trans_handle *trans,
2645 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04002646 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04002647 struct inode *inode)
2648{
Chris Mason5f39d392007-10-15 16:14:19 -04002649 btrfs_set_inode_uid(leaf, item, inode->i_uid);
2650 btrfs_set_inode_gid(leaf, item, inode->i_gid);
Chris Masondbe674a2008-07-17 12:54:05 -04002651 btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size);
Chris Mason5f39d392007-10-15 16:14:19 -04002652 btrfs_set_inode_mode(leaf, item, inode->i_mode);
2653 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
2654
2655 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
2656 inode->i_atime.tv_sec);
2657 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
2658 inode->i_atime.tv_nsec);
2659
2660 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
2661 inode->i_mtime.tv_sec);
2662 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
2663 inode->i_mtime.tv_nsec);
2664
2665 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
2666 inode->i_ctime.tv_sec);
2667 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
2668 inode->i_ctime.tv_nsec);
2669
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002670 btrfs_set_inode_nbytes(leaf, item, inode_get_bytes(inode));
Chris Masone02119d2008-09-05 16:13:11 -04002671 btrfs_set_inode_generation(leaf, item, BTRFS_I(inode)->generation);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04002672 btrfs_set_inode_sequence(leaf, item, inode->i_version);
Chris Masone02119d2008-09-05 16:13:11 -04002673 btrfs_set_inode_transid(leaf, item, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002674 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -05002675 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Josef Bacikd82a6f12011-05-11 15:26:06 -04002676 btrfs_set_inode_block_group(leaf, item, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002677}
2678
Chris Masond352ac62008-09-29 15:18:18 -04002679/*
2680 * copy everything in the in-memory inode into the btree.
2681 */
Chris Mason21151332011-11-10 20:39:08 -05002682static noinline int btrfs_update_inode_item(struct btrfs_trans_handle *trans,
Chris Masond3977122009-01-05 21:25:51 -05002683 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002684{
2685 struct btrfs_inode_item *inode_item;
2686 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002687 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002688 int ret;
2689
2690 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08002691 if (!path)
2692 return -ENOMEM;
2693
Chris Masonb9473432009-03-13 11:00:37 -04002694 path->leave_spinning = 1;
Miao Xie16cdcec2011-04-22 18:12:22 +08002695 ret = btrfs_lookup_inode(trans, root, path, &BTRFS_I(inode)->location,
2696 1);
Chris Mason39279cc2007-06-12 06:35:45 -04002697 if (ret) {
2698 if (ret > 0)
2699 ret = -ENOENT;
2700 goto failed;
2701 }
2702
Chris Masonb4ce94d2009-02-04 09:25:08 -05002703 btrfs_unlock_up_safe(path, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002704 leaf = path->nodes[0];
2705 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Miao Xie16cdcec2011-04-22 18:12:22 +08002706 struct btrfs_inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -04002707
Chris Masone02119d2008-09-05 16:13:11 -04002708 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002709 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002710 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002711 ret = 0;
2712failed:
Chris Mason39279cc2007-06-12 06:35:45 -04002713 btrfs_free_path(path);
2714 return ret;
2715}
2716
Chris Masond352ac62008-09-29 15:18:18 -04002717/*
Chris Mason21151332011-11-10 20:39:08 -05002718 * copy everything in the in-memory inode into the btree.
2719 */
2720noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
2721 struct btrfs_root *root, struct inode *inode)
2722{
2723 int ret;
2724
2725 /*
2726 * If the inode is a free space inode, we can deadlock during commit
2727 * if we put it into the delayed code.
2728 *
2729 * The data relocation inode should also be directly updated
2730 * without delay
2731 */
2732 if (!btrfs_is_free_space_inode(root, inode)
2733 && root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID) {
2734 ret = btrfs_delayed_update_inode(trans, root, inode);
2735 if (!ret)
2736 btrfs_set_inode_last_trans(trans, inode);
2737 return ret;
2738 }
2739
2740 return btrfs_update_inode_item(trans, root, inode);
2741}
2742
2743static noinline int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans,
2744 struct btrfs_root *root, struct inode *inode)
2745{
2746 int ret;
2747
2748 ret = btrfs_update_inode(trans, root, inode);
2749 if (ret == -ENOSPC)
2750 return btrfs_update_inode_item(trans, root, inode);
2751 return ret;
2752}
2753
2754/*
Chris Masond352ac62008-09-29 15:18:18 -04002755 * unlink helper that gets used here in inode.c and in the tree logging
2756 * recovery code. It remove a link in a directory with a given name, and
2757 * also drops the back refs in the inode to the directory
2758 */
Al Viro92986792011-03-04 17:14:37 +00002759static int __btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2760 struct btrfs_root *root,
2761 struct inode *dir, struct inode *inode,
2762 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04002763{
2764 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04002765 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002766 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002767 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04002768 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04002769 u64 index;
Li Zefan33345d012011-04-20 10:31:50 +08002770 u64 ino = btrfs_ino(inode);
2771 u64 dir_ino = btrfs_ino(dir);
Chris Mason39279cc2007-06-12 06:35:45 -04002772
2773 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002774 if (!path) {
2775 ret = -ENOMEM;
Tsutomu Itoh554233a2011-02-03 03:16:25 +00002776 goto out;
Chris Mason54aa1f42007-06-22 14:16:25 -04002777 }
2778
Chris Masonb9473432009-03-13 11:00:37 -04002779 path->leave_spinning = 1;
Li Zefan33345d012011-04-20 10:31:50 +08002780 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Chris Mason39279cc2007-06-12 06:35:45 -04002781 name, name_len, -1);
2782 if (IS_ERR(di)) {
2783 ret = PTR_ERR(di);
2784 goto err;
2785 }
2786 if (!di) {
2787 ret = -ENOENT;
2788 goto err;
2789 }
Chris Mason5f39d392007-10-15 16:14:19 -04002790 leaf = path->nodes[0];
2791 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04002792 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04002793 if (ret)
2794 goto err;
David Sterbab3b4aa72011-04-21 01:20:15 +02002795 btrfs_release_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002796
Li Zefan33345d012011-04-20 10:31:50 +08002797 ret = btrfs_del_inode_ref(trans, root, name, name_len, ino,
2798 dir_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04002799 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05002800 printk(KERN_INFO "btrfs failed to delete reference to %.*s, "
Li Zefan33345d012011-04-20 10:31:50 +08002801 "inode %llu parent %llu\n", name_len, name,
2802 (unsigned long long)ino, (unsigned long long)dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002803 btrfs_abort_transaction(trans, root, ret);
Josef Bacikaec74772008-07-24 12:12:38 -04002804 goto err;
2805 }
2806
Miao Xie16cdcec2011-04-22 18:12:22 +08002807 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002808 if (ret) {
2809 btrfs_abort_transaction(trans, root, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04002810 goto err;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002811 }
Chris Mason39279cc2007-06-12 06:35:45 -04002812
Chris Masone02119d2008-09-05 16:13:11 -04002813 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
Li Zefan33345d012011-04-20 10:31:50 +08002814 inode, dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002815 if (ret != 0 && ret != -ENOENT) {
2816 btrfs_abort_transaction(trans, root, ret);
2817 goto err;
2818 }
Chris Masone02119d2008-09-05 16:13:11 -04002819
2820 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
2821 dir, index);
Chris Mason6418c962010-10-30 07:34:24 -04002822 if (ret == -ENOENT)
2823 ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002824err:
2825 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002826 if (ret)
2827 goto out;
2828
2829 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04002830 inode_inc_iversion(inode);
2831 inode_inc_iversion(dir);
Chris Masone02119d2008-09-05 16:13:11 -04002832 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
2833 btrfs_update_inode(trans, root, dir);
Chris Masone02119d2008-09-05 16:13:11 -04002834out:
Chris Mason39279cc2007-06-12 06:35:45 -04002835 return ret;
2836}
2837
Al Viro92986792011-03-04 17:14:37 +00002838int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2839 struct btrfs_root *root,
2840 struct inode *dir, struct inode *inode,
2841 const char *name, int name_len)
2842{
2843 int ret;
2844 ret = __btrfs_unlink_inode(trans, root, dir, inode, name, name_len);
2845 if (!ret) {
2846 btrfs_drop_nlink(inode);
2847 ret = btrfs_update_inode(trans, root, inode);
2848 }
2849 return ret;
2850}
2851
2852
Yan, Zhenga22285a2010-05-16 10:48:46 -04002853/* helper to check if there is any shared block in the path */
2854static int check_path_shared(struct btrfs_root *root,
2855 struct btrfs_path *path)
2856{
2857 struct extent_buffer *eb;
2858 int level;
Dan Carpenter0e4dcbe2010-06-01 08:23:11 +00002859 u64 refs = 1;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002860
2861 for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
Josef Bacikdedefd72011-01-24 21:43:18 +00002862 int ret;
2863
Yan, Zhenga22285a2010-05-16 10:48:46 -04002864 if (!path->nodes[level])
2865 break;
2866 eb = path->nodes[level];
2867 if (!btrfs_block_can_be_shared(root, eb))
2868 continue;
2869 ret = btrfs_lookup_extent_info(NULL, root, eb->start, eb->len,
2870 &refs, NULL);
2871 if (refs > 1)
2872 return 1;
2873 }
Josef Bacikdedefd72011-01-24 21:43:18 +00002874 return 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002875}
2876
2877/*
2878 * helper to start transaction for unlink and rmdir.
2879 *
2880 * unlink and rmdir are special in btrfs, they do not always free space.
2881 * so in enospc case, we should make sure they will free space before
2882 * allowing them to use the global metadata reservation.
2883 */
2884static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir,
2885 struct dentry *dentry)
2886{
2887 struct btrfs_trans_handle *trans;
2888 struct btrfs_root *root = BTRFS_I(dir)->root;
2889 struct btrfs_path *path;
2890 struct btrfs_inode_ref *ref;
2891 struct btrfs_dir_item *di;
2892 struct inode *inode = dentry->d_inode;
2893 u64 index;
2894 int check_link = 1;
2895 int err = -ENOSPC;
2896 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08002897 u64 ino = btrfs_ino(inode);
2898 u64 dir_ino = btrfs_ino(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002899
Josef Bacike70bea52011-10-11 14:18:24 -04002900 /*
2901 * 1 for the possible orphan item
2902 * 1 for the dir item
2903 * 1 for the dir index
2904 * 1 for the inode ref
2905 * 1 for the inode ref in the tree log
2906 * 2 for the dir entries in the log
2907 * 1 for the inode
2908 */
2909 trans = btrfs_start_transaction(root, 8);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002910 if (!IS_ERR(trans) || PTR_ERR(trans) != -ENOSPC)
2911 return trans;
2912
Li Zefan33345d012011-04-20 10:31:50 +08002913 if (ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhenga22285a2010-05-16 10:48:46 -04002914 return ERR_PTR(-ENOSPC);
2915
2916 /* check if there is someone else holds reference */
2917 if (S_ISDIR(inode->i_mode) && atomic_read(&inode->i_count) > 1)
2918 return ERR_PTR(-ENOSPC);
2919
2920 if (atomic_read(&inode->i_count) > 2)
2921 return ERR_PTR(-ENOSPC);
2922
2923 if (xchg(&root->fs_info->enospc_unlink, 1))
2924 return ERR_PTR(-ENOSPC);
2925
2926 path = btrfs_alloc_path();
2927 if (!path) {
2928 root->fs_info->enospc_unlink = 0;
2929 return ERR_PTR(-ENOMEM);
2930 }
2931
Josef Bacik3880a1b2011-10-14 14:46:51 -04002932 /* 1 for the orphan item */
2933 trans = btrfs_start_transaction(root, 1);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002934 if (IS_ERR(trans)) {
2935 btrfs_free_path(path);
2936 root->fs_info->enospc_unlink = 0;
2937 return trans;
2938 }
2939
2940 path->skip_locking = 1;
2941 path->search_commit_root = 1;
2942
2943 ret = btrfs_lookup_inode(trans, root, path,
2944 &BTRFS_I(dir)->location, 0);
2945 if (ret < 0) {
2946 err = ret;
2947 goto out;
2948 }
2949 if (ret == 0) {
2950 if (check_path_shared(root, path))
2951 goto out;
2952 } else {
2953 check_link = 0;
2954 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002955 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002956
2957 ret = btrfs_lookup_inode(trans, root, path,
2958 &BTRFS_I(inode)->location, 0);
2959 if (ret < 0) {
2960 err = ret;
2961 goto out;
2962 }
2963 if (ret == 0) {
2964 if (check_path_shared(root, path))
2965 goto out;
2966 } else {
2967 check_link = 0;
2968 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002969 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002970
2971 if (ret == 0 && S_ISREG(inode->i_mode)) {
2972 ret = btrfs_lookup_file_extent(trans, root, path,
Li Zefan33345d012011-04-20 10:31:50 +08002973 ino, (u64)-1, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002974 if (ret < 0) {
2975 err = ret;
2976 goto out;
2977 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002978 BUG_ON(ret == 0); /* Corruption */
Yan, Zhenga22285a2010-05-16 10:48:46 -04002979 if (check_path_shared(root, path))
2980 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +02002981 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002982 }
2983
2984 if (!check_link) {
2985 err = 0;
2986 goto out;
2987 }
2988
Li Zefan33345d012011-04-20 10:31:50 +08002989 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zhenga22285a2010-05-16 10:48:46 -04002990 dentry->d_name.name, dentry->d_name.len, 0);
2991 if (IS_ERR(di)) {
2992 err = PTR_ERR(di);
2993 goto out;
2994 }
2995 if (di) {
2996 if (check_path_shared(root, path))
2997 goto out;
2998 } else {
2999 err = 0;
3000 goto out;
3001 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003002 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003003
3004 ref = btrfs_lookup_inode_ref(trans, root, path,
3005 dentry->d_name.name, dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08003006 ino, dir_ino, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003007 if (IS_ERR(ref)) {
3008 err = PTR_ERR(ref);
3009 goto out;
3010 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003011 BUG_ON(!ref); /* Logic error */
Yan, Zhenga22285a2010-05-16 10:48:46 -04003012 if (check_path_shared(root, path))
3013 goto out;
3014 index = btrfs_inode_ref_index(path->nodes[0], ref);
David Sterbab3b4aa72011-04-21 01:20:15 +02003015 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003016
Miao Xie16cdcec2011-04-22 18:12:22 +08003017 /*
3018 * This is a commit root search, if we can lookup inode item and other
3019 * relative items in the commit root, it means the transaction of
3020 * dir/file creation has been committed, and the dir index item that we
3021 * delay to insert has also been inserted into the commit root. So
3022 * we needn't worry about the delayed insertion of the dir index item
3023 * here.
3024 */
Li Zefan33345d012011-04-20 10:31:50 +08003025 di = btrfs_lookup_dir_index_item(trans, root, path, dir_ino, index,
Yan, Zhenga22285a2010-05-16 10:48:46 -04003026 dentry->d_name.name, dentry->d_name.len, 0);
3027 if (IS_ERR(di)) {
3028 err = PTR_ERR(di);
3029 goto out;
3030 }
3031 BUG_ON(ret == -ENOENT);
3032 if (check_path_shared(root, path))
3033 goto out;
3034
3035 err = 0;
3036out:
3037 btrfs_free_path(path);
Josef Bacik3880a1b2011-10-14 14:46:51 -04003038 /* Migrate the orphan reservation over */
3039 if (!err)
3040 err = btrfs_block_rsv_migrate(trans->block_rsv,
3041 &root->fs_info->global_block_rsv,
Josef Bacik5a77d762011-11-01 14:32:23 -04003042 trans->bytes_reserved);
Josef Bacik3880a1b2011-10-14 14:46:51 -04003043
Yan, Zhenga22285a2010-05-16 10:48:46 -04003044 if (err) {
3045 btrfs_end_transaction(trans, root);
3046 root->fs_info->enospc_unlink = 0;
3047 return ERR_PTR(err);
3048 }
3049
3050 trans->block_rsv = &root->fs_info->global_block_rsv;
3051 return trans;
3052}
3053
3054static void __unlink_end_trans(struct btrfs_trans_handle *trans,
3055 struct btrfs_root *root)
3056{
3057 if (trans->block_rsv == &root->fs_info->global_block_rsv) {
Josef Bacik5a77d762011-11-01 14:32:23 -04003058 btrfs_block_rsv_release(root, trans->block_rsv,
3059 trans->bytes_reserved);
3060 trans->block_rsv = &root->fs_info->trans_block_rsv;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003061 BUG_ON(!root->fs_info->enospc_unlink);
3062 root->fs_info->enospc_unlink = 0;
3063 }
Josef Bacik7ad85bb2012-01-12 19:10:12 -05003064 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003065}
3066
Chris Mason39279cc2007-06-12 06:35:45 -04003067static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
3068{
Yan, Zhenga22285a2010-05-16 10:48:46 -04003069 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003070 struct btrfs_trans_handle *trans;
Josef Bacik7b128762008-07-24 12:17:14 -04003071 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04003072 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05003073 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003074
Yan, Zhenga22285a2010-05-16 10:48:46 -04003075 trans = __unlink_start_trans(dir, dentry);
3076 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003077 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04003078
Chris Mason12fcfd22009-03-24 10:24:20 -04003079 btrfs_record_unlink_dir(trans, dir, dentry->d_inode, 0);
3080
Chris Masone02119d2008-09-05 16:13:11 -04003081 ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
3082 dentry->d_name.name, dentry->d_name.len);
Tsutomu Itohb5324022011-07-19 07:27:20 +00003083 if (ret)
3084 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003085
Yan, Zhenga22285a2010-05-16 10:48:46 -04003086 if (inode->i_nlink == 0) {
Josef Bacik7b128762008-07-24 12:17:14 -04003087 ret = btrfs_orphan_add(trans, inode);
Tsutomu Itohb5324022011-07-19 07:27:20 +00003088 if (ret)
3089 goto out;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003090 }
Josef Bacik7b128762008-07-24 12:17:14 -04003091
Tsutomu Itohb5324022011-07-19 07:27:20 +00003092out:
Chris Masond3c2fdc2007-09-17 10:58:06 -04003093 nr = trans->blocks_used;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003094 __unlink_end_trans(trans, root);
Chris Masond3c2fdc2007-09-17 10:58:06 -04003095 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003096 return ret;
3097}
3098
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003099int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
3100 struct btrfs_root *root,
3101 struct inode *dir, u64 objectid,
3102 const char *name, int name_len)
3103{
3104 struct btrfs_path *path;
3105 struct extent_buffer *leaf;
3106 struct btrfs_dir_item *di;
3107 struct btrfs_key key;
3108 u64 index;
3109 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08003110 u64 dir_ino = btrfs_ino(dir);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003111
3112 path = btrfs_alloc_path();
3113 if (!path)
3114 return -ENOMEM;
3115
Li Zefan33345d012011-04-20 10:31:50 +08003116 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003117 name, name_len, -1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003118 if (IS_ERR_OR_NULL(di)) {
3119 if (!di)
3120 ret = -ENOENT;
3121 else
3122 ret = PTR_ERR(di);
3123 goto out;
3124 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003125
3126 leaf = path->nodes[0];
3127 btrfs_dir_item_key_to_cpu(leaf, di, &key);
3128 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
3129 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003130 if (ret) {
3131 btrfs_abort_transaction(trans, root, ret);
3132 goto out;
3133 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003134 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003135
3136 ret = btrfs_del_root_ref(trans, root->fs_info->tree_root,
3137 objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08003138 dir_ino, &index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003139 if (ret < 0) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003140 if (ret != -ENOENT) {
3141 btrfs_abort_transaction(trans, root, ret);
3142 goto out;
3143 }
Li Zefan33345d012011-04-20 10:31:50 +08003144 di = btrfs_search_dir_index_item(root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003145 name, name_len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003146 if (IS_ERR_OR_NULL(di)) {
3147 if (!di)
3148 ret = -ENOENT;
3149 else
3150 ret = PTR_ERR(di);
3151 btrfs_abort_transaction(trans, root, ret);
3152 goto out;
3153 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003154
3155 leaf = path->nodes[0];
3156 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02003157 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003158 index = key.offset;
3159 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003160 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003161
Miao Xie16cdcec2011-04-22 18:12:22 +08003162 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003163 if (ret) {
3164 btrfs_abort_transaction(trans, root, ret);
3165 goto out;
3166 }
Miao Xie16cdcec2011-04-22 18:12:22 +08003167
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003168 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04003169 inode_inc_iversion(dir);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003170 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
3171 ret = btrfs_update_inode(trans, root, dir);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003172 if (ret)
3173 btrfs_abort_transaction(trans, root, ret);
3174out:
Josef Bacik71d7aed2011-06-14 14:24:32 -04003175 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003176 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003177}
3178
Chris Mason39279cc2007-06-12 06:35:45 -04003179static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
3180{
3181 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05003182 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003183 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003184 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -05003185 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003186
Chris Mason3394e162008-11-17 20:42:26 -05003187 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE ||
Li Zefan33345d012011-04-20 10:31:50 +08003188 btrfs_ino(inode) == BTRFS_FIRST_FREE_OBJECTID)
Yan134d4512007-10-25 15:49:25 -04003189 return -ENOTEMPTY;
3190
Yan, Zhenga22285a2010-05-16 10:48:46 -04003191 trans = __unlink_start_trans(dir, dentry);
3192 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003193 return PTR_ERR(trans);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003194
Li Zefan33345d012011-04-20 10:31:50 +08003195 if (unlikely(btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003196 err = btrfs_unlink_subvol(trans, root, dir,
3197 BTRFS_I(inode)->location.objectid,
3198 dentry->d_name.name,
3199 dentry->d_name.len);
3200 goto out;
3201 }
3202
Josef Bacik7b128762008-07-24 12:17:14 -04003203 err = btrfs_orphan_add(trans, inode);
3204 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003205 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003206
Chris Mason39279cc2007-06-12 06:35:45 -04003207 /* now the directory is empty */
Chris Masone02119d2008-09-05 16:13:11 -04003208 err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
3209 dentry->d_name.name, dentry->d_name.len);
Chris Masond3977122009-01-05 21:25:51 -05003210 if (!err)
Chris Masondbe674a2008-07-17 12:54:05 -04003211 btrfs_i_size_write(inode, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003212out:
Chris Masond3c2fdc2007-09-17 10:58:06 -04003213 nr = trans->blocks_used;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003214 __unlink_end_trans(trans, root);
Chris Masond3c2fdc2007-09-17 10:58:06 -04003215 btrfs_btree_balance_dirty(root, nr);
Chris Mason39544012007-12-12 14:38:19 -05003216
Chris Mason39279cc2007-06-12 06:35:45 -04003217 return err;
3218}
3219
Chris Mason323ac952008-10-01 19:05:46 -04003220/*
Chris Mason39279cc2007-06-12 06:35:45 -04003221 * this can truncate away extent items, csum items and directory items.
3222 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04003223 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04003224 *
3225 * csum items that cross the new i_size are truncated to the new size
3226 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04003227 *
3228 * min_type is the minimum key type to truncate down to. If set to 0, this
3229 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04003230 */
Yan, Zheng80825102009-11-12 09:35:36 +00003231int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
3232 struct btrfs_root *root,
3233 struct inode *inode,
3234 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003235{
Chris Mason39279cc2007-06-12 06:35:45 -04003236 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003237 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003238 struct btrfs_file_extent_item *fi;
Yan, Zheng80825102009-11-12 09:35:36 +00003239 struct btrfs_key key;
3240 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04003241 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04003242 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003243 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003244 u64 item_end = 0;
Yan, Zheng80825102009-11-12 09:35:36 +00003245 u64 mask = root->sectorsize - 1;
3246 u32 found_type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -04003247 int found_extent;
3248 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05003249 int pending_del_nr = 0;
3250 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04003251 int extent_type = -1;
Yan, Zheng80825102009-11-12 09:35:36 +00003252 int ret;
3253 int err = 0;
Li Zefan33345d012011-04-20 10:31:50 +08003254 u64 ino = btrfs_ino(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003255
3256 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04003257
Mark Fasheh0eb0e192011-07-12 16:44:10 -07003258 path = btrfs_alloc_path();
3259 if (!path)
3260 return -ENOMEM;
3261 path->reada = -1;
3262
Josef Bacik0af3d002010-06-21 14:48:16 -04003263 if (root->ref_cows || root == root->fs_info->tree_root)
Zheng Yan5b21f2e2008-09-26 10:05:38 -04003264 btrfs_drop_extent_cache(inode, new_size & (~mask), (u64)-1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003265
Miao Xie16cdcec2011-04-22 18:12:22 +08003266 /*
3267 * This function is also used to drop the items in the log tree before
3268 * we relog the inode, so if root != BTRFS_I(inode)->root, it means
3269 * it is used to drop the loged items. So we shouldn't kill the delayed
3270 * items.
3271 */
3272 if (min_type == 0 && root == BTRFS_I(inode)->root)
3273 btrfs_kill_delayed_inode_items(inode);
3274
Li Zefan33345d012011-04-20 10:31:50 +08003275 key.objectid = ino;
Chris Mason39279cc2007-06-12 06:35:45 -04003276 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04003277 key.type = (u8)-1;
3278
Chris Mason85e21ba2008-01-29 15:11:36 -05003279search_again:
Chris Masonb9473432009-03-13 11:00:37 -04003280 path->leave_spinning = 1;
Chris Mason85e21ba2008-01-29 15:11:36 -05003281 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Yan, Zheng80825102009-11-12 09:35:36 +00003282 if (ret < 0) {
3283 err = ret;
3284 goto out;
3285 }
Chris Masond3977122009-01-05 21:25:51 -05003286
Chris Mason85e21ba2008-01-29 15:11:36 -05003287 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003288 /* there are no items in the tree for us to truncate, we're
3289 * done
3290 */
Yan, Zheng80825102009-11-12 09:35:36 +00003291 if (path->slots[0] == 0)
3292 goto out;
Chris Mason85e21ba2008-01-29 15:11:36 -05003293 path->slots[0]--;
3294 }
3295
Chris Masond3977122009-01-05 21:25:51 -05003296 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04003297 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04003298 leaf = path->nodes[0];
3299 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3300 found_type = btrfs_key_type(&found_key);
Chris Mason39279cc2007-06-12 06:35:45 -04003301
Li Zefan33345d012011-04-20 10:31:50 +08003302 if (found_key.objectid != ino)
Chris Mason39279cc2007-06-12 06:35:45 -04003303 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003304
Chris Mason85e21ba2008-01-29 15:11:36 -05003305 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003306 break;
3307
Chris Mason5f39d392007-10-15 16:14:19 -04003308 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04003309 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04003310 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04003311 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04003312 extent_type = btrfs_file_extent_type(leaf, fi);
3313 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04003314 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04003315 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04003316 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04003317 item_end += btrfs_file_extent_inline_len(leaf,
Chris Masonc8b97812008-10-29 14:49:59 -04003318 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003319 }
Yan008630c2007-11-07 13:31:09 -05003320 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04003321 }
Yan, Zheng80825102009-11-12 09:35:36 +00003322 if (found_type > min_type) {
Chris Mason39279cc2007-06-12 06:35:45 -04003323 del_item = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00003324 } else {
3325 if (item_end < new_size)
3326 break;
3327 if (found_key.offset >= new_size)
3328 del_item = 1;
3329 else
3330 del_item = 0;
3331 }
Chris Mason39279cc2007-06-12 06:35:45 -04003332 found_extent = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003333 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04003334 if (found_type != BTRFS_EXTENT_DATA_KEY)
3335 goto delete;
3336
3337 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04003338 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04003339 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Miao Xief70a9a6b2012-01-12 19:10:12 -05003340 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -04003341 u64 orig_num_bytes =
3342 btrfs_file_extent_num_bytes(leaf, fi);
Chris Masone02119d2008-09-05 16:13:11 -04003343 extent_num_bytes = new_size -
Chris Mason5f39d392007-10-15 16:14:19 -04003344 found_key.offset + root->sectorsize - 1;
Yanb1632b102008-01-30 11:54:04 -05003345 extent_num_bytes = extent_num_bytes &
3346 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04003347 btrfs_set_file_extent_num_bytes(leaf, fi,
3348 extent_num_bytes);
3349 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05003350 extent_num_bytes);
Chris Masone02119d2008-09-05 16:13:11 -04003351 if (root->ref_cows && extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003352 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04003353 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003354 } else {
Chris Masondb945352007-10-15 16:15:53 -04003355 extent_num_bytes =
3356 btrfs_file_extent_disk_num_bytes(leaf,
3357 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003358 extent_offset = found_key.offset -
3359 btrfs_file_extent_offset(leaf, fi);
3360
Chris Mason39279cc2007-06-12 06:35:45 -04003361 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05003362 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003363 if (extent_start != 0) {
3364 found_extent = 1;
Chris Masone02119d2008-09-05 16:13:11 -04003365 if (root->ref_cows)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003366 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04003367 }
3368 }
Chris Mason90692182008-02-08 13:49:28 -05003369 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003370 /*
3371 * we can't truncate inline items that have had
3372 * special encodings
3373 */
3374 if (!del_item &&
3375 btrfs_file_extent_compression(leaf, fi) == 0 &&
3376 btrfs_file_extent_encryption(leaf, fi) == 0 &&
3377 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003378 u32 size = new_size - found_key.offset;
3379
3380 if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003381 inode_sub_bytes(inode, item_end + 1 -
3382 new_size);
Chris Masone02119d2008-09-05 16:13:11 -04003383 }
3384 size =
3385 btrfs_file_extent_calc_inline_size(size);
Jeff Mahoney143bede2012-03-01 14:56:26 +01003386 btrfs_truncate_item(trans, root, path,
3387 size, 1);
Chris Masone02119d2008-09-05 16:13:11 -04003388 } else if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003389 inode_sub_bytes(inode, item_end + 1 -
3390 found_key.offset);
Chris Mason90692182008-02-08 13:49:28 -05003391 }
Chris Mason39279cc2007-06-12 06:35:45 -04003392 }
Chris Mason179e29e2007-11-01 11:28:41 -04003393delete:
Chris Mason39279cc2007-06-12 06:35:45 -04003394 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05003395 if (!pending_del_nr) {
3396 /* no pending yet, add ourselves */
3397 pending_del_slot = path->slots[0];
3398 pending_del_nr = 1;
3399 } else if (pending_del_nr &&
3400 path->slots[0] + 1 == pending_del_slot) {
3401 /* hop on the pending chunk */
3402 pending_del_nr++;
3403 pending_del_slot = path->slots[0];
3404 } else {
Chris Masond3977122009-01-05 21:25:51 -05003405 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05003406 }
Chris Mason39279cc2007-06-12 06:35:45 -04003407 } else {
3408 break;
3409 }
Josef Bacik0af3d002010-06-21 14:48:16 -04003410 if (found_extent && (root->ref_cows ||
3411 root == root->fs_info->tree_root)) {
Chris Masonb9473432009-03-13 11:00:37 -04003412 btrfs_set_path_blocking(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003413 ret = btrfs_free_extent(trans, root, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003414 extent_num_bytes, 0,
3415 btrfs_header_owner(leaf),
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003416 ino, extent_offset, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04003417 BUG_ON(ret);
3418 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003419
Yan, Zheng80825102009-11-12 09:35:36 +00003420 if (found_type == BTRFS_INODE_ITEM_KEY)
3421 break;
3422
3423 if (path->slots[0] == 0 ||
3424 path->slots[0] != pending_del_slot) {
Li Zefan82d59022011-04-20 10:33:24 +08003425 if (root->ref_cows &&
3426 BTRFS_I(inode)->location.objectid !=
3427 BTRFS_FREE_INO_OBJECTID) {
Yan, Zheng80825102009-11-12 09:35:36 +00003428 err = -EAGAIN;
3429 goto out;
3430 }
3431 if (pending_del_nr) {
3432 ret = btrfs_del_items(trans, root, path,
3433 pending_del_slot,
3434 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003435 if (ret) {
3436 btrfs_abort_transaction(trans,
3437 root, ret);
3438 goto error;
3439 }
Yan, Zheng80825102009-11-12 09:35:36 +00003440 pending_del_nr = 0;
3441 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003442 btrfs_release_path(path);
Chris Mason85e21ba2008-01-29 15:11:36 -05003443 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00003444 } else {
3445 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05003446 }
Chris Mason39279cc2007-06-12 06:35:45 -04003447 }
Yan, Zheng80825102009-11-12 09:35:36 +00003448out:
Chris Mason85e21ba2008-01-29 15:11:36 -05003449 if (pending_del_nr) {
3450 ret = btrfs_del_items(trans, root, path, pending_del_slot,
3451 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003452 if (ret)
3453 btrfs_abort_transaction(trans, root, ret);
Chris Mason85e21ba2008-01-29 15:11:36 -05003454 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003455error:
Chris Mason39279cc2007-06-12 06:35:45 -04003456 btrfs_free_path(path);
Yan, Zheng80825102009-11-12 09:35:36 +00003457 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003458}
3459
Chris Masona52d9a82007-08-27 16:49:44 -04003460/*
3461 * taken from block_truncate_page, but does cow as it zeros out
3462 * any bytes left in the last page in the file.
3463 */
3464static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
3465{
3466 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -04003467 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003468 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
3469 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003470 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003471 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04003472 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04003473 pgoff_t index = from >> PAGE_CACHE_SHIFT;
3474 unsigned offset = from & (PAGE_CACHE_SIZE-1);
3475 struct page *page;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04003476 gfp_t mask = btrfs_alloc_write_mask(mapping);
Chris Masona52d9a82007-08-27 16:49:44 -04003477 int ret = 0;
3478 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003479 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04003480
3481 if ((offset & (blocksize - 1)) == 0)
3482 goto out;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003483 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003484 if (ret)
3485 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003486
3487 ret = -ENOMEM;
Chris Mason211c17f2008-05-15 09:13:45 -04003488again:
Josef Bacik3b16a4e2011-09-21 15:05:58 -04003489 page = find_or_create_page(mapping, index, mask);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003490 if (!page) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003491 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Masona52d9a82007-08-27 16:49:44 -04003492 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04003493 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003494
3495 page_start = page_offset(page);
3496 page_end = page_start + PAGE_CACHE_SIZE - 1;
3497
Chris Masona52d9a82007-08-27 16:49:44 -04003498 if (!PageUptodate(page)) {
3499 ret = btrfs_readpage(NULL, page);
3500 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04003501 if (page->mapping != mapping) {
3502 unlock_page(page);
3503 page_cache_release(page);
3504 goto again;
3505 }
Chris Masona52d9a82007-08-27 16:49:44 -04003506 if (!PageUptodate(page)) {
3507 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04003508 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04003509 }
3510 }
Chris Mason211c17f2008-05-15 09:13:45 -04003511 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003512
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003513 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003514 set_page_extent_mapped(page);
3515
3516 ordered = btrfs_lookup_ordered_extent(inode, page_start);
3517 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003518 unlock_extent_cached(io_tree, page_start, page_end,
3519 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003520 unlock_page(page);
3521 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04003522 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003523 btrfs_put_ordered_extent(ordered);
3524 goto again;
3525 }
3526
Josef Bacik2ac55d42010-02-03 19:33:23 +00003527 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Josef Bacik5d5e1032009-10-13 16:46:49 -04003528 EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003529 0, 0, &cached_state, GFP_NOFS);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003530
Josef Bacik2ac55d42010-02-03 19:33:23 +00003531 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
3532 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003533 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003534 unlock_extent_cached(io_tree, page_start, page_end,
3535 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003536 goto out_unlock;
3537 }
3538
Chris Masone6dcd2d2008-07-17 12:53:50 -04003539 ret = 0;
3540 if (offset != PAGE_CACHE_SIZE) {
3541 kaddr = kmap(page);
3542 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
3543 flush_dcache_page(page);
3544 kunmap(page);
3545 }
Chris Mason247e7432008-07-17 12:53:51 -04003546 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003547 set_page_dirty(page);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003548 unlock_extent_cached(io_tree, page_start, page_end, &cached_state,
3549 GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04003550
Chris Mason89642222008-07-24 09:41:53 -04003551out_unlock:
Josef Bacik5d5e1032009-10-13 16:46:49 -04003552 if (ret)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003553 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason39279cc2007-06-12 06:35:45 -04003554 unlock_page(page);
3555 page_cache_release(page);
3556out:
3557 return ret;
3558}
3559
Josef Bacik695a0d02011-03-04 15:46:53 -05003560/*
3561 * This function puts in dummy file extents for the area we're creating a hole
3562 * for. So if we are truncating this file to a larger size we need to insert
3563 * these file extents so that btrfs_get_extent will return a EXTENT_MAP_HOLE for
3564 * the range between oldsize and size
3565 */
Josef Bacika41ad392011-01-31 15:30:16 -05003566int btrfs_cont_expand(struct inode *inode, loff_t oldsize, loff_t size)
Yan Zheng9036c102008-10-30 14:19:41 -04003567{
3568 struct btrfs_trans_handle *trans;
3569 struct btrfs_root *root = BTRFS_I(inode)->root;
3570 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003571 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003572 struct extent_state *cached_state = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04003573 u64 mask = root->sectorsize - 1;
Josef Bacika41ad392011-01-31 15:30:16 -05003574 u64 hole_start = (oldsize + mask) & ~mask;
Yan Zheng9036c102008-10-30 14:19:41 -04003575 u64 block_end = (size + mask) & ~mask;
3576 u64 last_byte;
3577 u64 cur_offset;
3578 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003579 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003580
3581 if (size <= hole_start)
3582 return 0;
3583
Yan Zheng9036c102008-10-30 14:19:41 -04003584 while (1) {
3585 struct btrfs_ordered_extent *ordered;
3586 btrfs_wait_ordered_range(inode, hole_start,
3587 block_end - hole_start);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003588 lock_extent_bits(io_tree, hole_start, block_end - 1, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003589 &cached_state);
Yan Zheng9036c102008-10-30 14:19:41 -04003590 ordered = btrfs_lookup_ordered_extent(inode, hole_start);
3591 if (!ordered)
3592 break;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003593 unlock_extent_cached(io_tree, hole_start, block_end - 1,
3594 &cached_state, GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003595 btrfs_put_ordered_extent(ordered);
3596 }
3597
Yan Zheng9036c102008-10-30 14:19:41 -04003598 cur_offset = hole_start;
3599 while (1) {
3600 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
3601 block_end - cur_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003602 if (IS_ERR(em)) {
3603 err = PTR_ERR(em);
3604 break;
3605 }
Yan Zheng9036c102008-10-30 14:19:41 -04003606 last_byte = min(extent_map_end(em), block_end);
3607 last_byte = (last_byte + mask) & ~mask;
Yan, Zheng80825102009-11-12 09:35:36 +00003608 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Chris Mason771ed682008-11-06 22:02:51 -05003609 u64 hint_byte = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003610 hole_size = last_byte - cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00003611
Miao Xie36423202011-12-14 20:12:02 -05003612 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003613 if (IS_ERR(trans)) {
3614 err = PTR_ERR(trans);
Chris Mason771ed682008-11-06 22:02:51 -05003615 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003616 }
Yan, Zheng80825102009-11-12 09:35:36 +00003617
3618 err = btrfs_drop_extents(trans, inode, cur_offset,
3619 cur_offset + hole_size,
3620 &hint_byte, 1);
Miao Xie5b397372011-09-11 10:52:24 -04003621 if (err) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003622 btrfs_abort_transaction(trans, root, err);
Miao Xie5b397372011-09-11 10:52:24 -04003623 btrfs_end_transaction(trans, root);
Josef Bacik3893e332011-01-31 16:03:11 -05003624 break;
Miao Xie5b397372011-09-11 10:52:24 -04003625 }
Josef Bacik9ed74f22009-09-11 16:12:44 -04003626
Yan Zheng9036c102008-10-30 14:19:41 -04003627 err = btrfs_insert_file_extent(trans, root,
Li Zefan33345d012011-04-20 10:31:50 +08003628 btrfs_ino(inode), cur_offset, 0,
Yan Zheng9036c102008-10-30 14:19:41 -04003629 0, hole_size, 0, hole_size,
3630 0, 0, 0);
Miao Xie5b397372011-09-11 10:52:24 -04003631 if (err) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003632 btrfs_abort_transaction(trans, root, err);
Miao Xie5b397372011-09-11 10:52:24 -04003633 btrfs_end_transaction(trans, root);
Josef Bacik3893e332011-01-31 16:03:11 -05003634 break;
Miao Xie5b397372011-09-11 10:52:24 -04003635 }
Yan, Zheng80825102009-11-12 09:35:36 +00003636
Yan Zheng9036c102008-10-30 14:19:41 -04003637 btrfs_drop_extent_cache(inode, hole_start,
3638 last_byte - 1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003639
Miao Xie36423202011-12-14 20:12:02 -05003640 btrfs_update_inode(trans, root, inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003641 btrfs_end_transaction(trans, root);
Yan Zheng9036c102008-10-30 14:19:41 -04003642 }
3643 free_extent_map(em);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003644 em = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04003645 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00003646 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04003647 break;
3648 }
3649
Yan, Zhenga22285a2010-05-16 10:48:46 -04003650 free_extent_map(em);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003651 unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state,
3652 GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003653 return err;
3654}
3655
Josef Bacika41ad392011-01-31 15:30:16 -05003656static int btrfs_setsize(struct inode *inode, loff_t newsize)
Yan, Zheng80825102009-11-12 09:35:36 +00003657{
Miao Xief4a2f4c2011-12-14 20:12:01 -05003658 struct btrfs_root *root = BTRFS_I(inode)->root;
3659 struct btrfs_trans_handle *trans;
Josef Bacika41ad392011-01-31 15:30:16 -05003660 loff_t oldsize = i_size_read(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003661 int ret;
3662
Josef Bacika41ad392011-01-31 15:30:16 -05003663 if (newsize == oldsize)
Yan, Zheng80825102009-11-12 09:35:36 +00003664 return 0;
3665
Josef Bacika41ad392011-01-31 15:30:16 -05003666 if (newsize > oldsize) {
Josef Bacika41ad392011-01-31 15:30:16 -05003667 truncate_pagecache(inode, oldsize, newsize);
3668 ret = btrfs_cont_expand(inode, oldsize, newsize);
Miao Xief4a2f4c2011-12-14 20:12:01 -05003669 if (ret)
Yan, Zheng80825102009-11-12 09:35:36 +00003670 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00003671
Miao Xief4a2f4c2011-12-14 20:12:01 -05003672 trans = btrfs_start_transaction(root, 1);
3673 if (IS_ERR(trans))
3674 return PTR_ERR(trans);
3675
3676 i_size_write(inode, newsize);
3677 btrfs_ordered_update_i_size(inode, i_size_read(inode), NULL);
3678 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik7ad85bb2012-01-12 19:10:12 -05003679 btrfs_end_transaction(trans, root);
Josef Bacika41ad392011-01-31 15:30:16 -05003680 } else {
Yan, Zheng80825102009-11-12 09:35:36 +00003681
Josef Bacika41ad392011-01-31 15:30:16 -05003682 /*
3683 * We're truncating a file that used to have good data down to
3684 * zero. Make sure it gets into the ordered flush list so that
3685 * any new writes get down to disk quickly.
3686 */
3687 if (newsize == 0)
Josef Bacik72ac3c02012-05-23 14:13:11 -04003688 set_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
3689 &BTRFS_I(inode)->runtime_flags);
Yan, Zheng80825102009-11-12 09:35:36 +00003690
Josef Bacika41ad392011-01-31 15:30:16 -05003691 /* we don't support swapfiles, so vmtruncate shouldn't fail */
3692 truncate_setsize(inode, newsize);
3693 ret = btrfs_truncate(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003694 }
3695
Josef Bacika41ad392011-01-31 15:30:16 -05003696 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00003697}
3698
Chris Mason39279cc2007-06-12 06:35:45 -04003699static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
3700{
3701 struct inode *inode = dentry->d_inode;
Li Zefanb83cc962010-12-20 16:04:08 +08003702 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003703 int err;
3704
Li Zefanb83cc962010-12-20 16:04:08 +08003705 if (btrfs_root_readonly(root))
3706 return -EROFS;
3707
Chris Mason39279cc2007-06-12 06:35:45 -04003708 err = inode_change_ok(inode, attr);
3709 if (err)
3710 return err;
3711
Chris Mason5a3f23d2009-03-31 13:27:11 -04003712 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Josef Bacika41ad392011-01-31 15:30:16 -05003713 err = btrfs_setsize(inode, attr->ia_size);
Yan, Zheng80825102009-11-12 09:35:36 +00003714 if (err)
3715 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003716 }
Yan Zheng9036c102008-10-30 14:19:41 -04003717
Christoph Hellwig10257742010-06-04 11:30:02 +02003718 if (attr->ia_valid) {
3719 setattr_copy(inode, attr);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04003720 inode_inc_iversion(inode);
Josef Bacik22c44fe2011-11-30 10:45:38 -05003721 err = btrfs_dirty_inode(inode);
Josef Bacik33268ea2008-07-24 12:16:36 -04003722
Josef Bacik22c44fe2011-11-30 10:45:38 -05003723 if (!err && attr->ia_valid & ATTR_MODE)
Christoph Hellwig10257742010-06-04 11:30:02 +02003724 err = btrfs_acl_chmod(inode);
3725 }
3726
Chris Mason39279cc2007-06-12 06:35:45 -04003727 return err;
3728}
Chris Mason61295eb2008-01-14 16:24:38 -05003729
Al Virobd555972010-06-07 11:35:40 -04003730void btrfs_evict_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003731{
3732 struct btrfs_trans_handle *trans;
3733 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik726c35f2011-09-26 15:46:06 -04003734 struct btrfs_block_rsv *rsv, *global_rsv;
Josef Bacik07127182011-08-19 10:29:59 -04003735 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
Chris Masond3c2fdc2007-09-17 10:58:06 -04003736 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04003737 int ret;
3738
liubo1abe9b82011-03-24 11:18:59 +00003739 trace_btrfs_inode_evict(inode);
3740
Chris Mason39279cc2007-06-12 06:35:45 -04003741 truncate_inode_pages(&inode->i_data, 0);
Josef Bacik0af3d002010-06-21 14:48:16 -04003742 if (inode->i_nlink && (btrfs_root_refs(&root->root_item) != 0 ||
Chris Mason2cf85722011-07-26 15:35:09 -04003743 btrfs_is_free_space_inode(root, inode)))
Al Virobd555972010-06-07 11:35:40 -04003744 goto no_delete;
3745
Chris Mason39279cc2007-06-12 06:35:45 -04003746 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04003747 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003748 goto no_delete;
3749 }
Al Virobd555972010-06-07 11:35:40 -04003750 /* do we really want it for ->i_nlink > 0 and zero btrfs_root_refs? */
Chris Mason4a096752008-07-21 10:29:44 -04003751 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04003752
Yan, Zhengc71bf092009-11-12 09:34:40 +00003753 if (root->fs_info->log_root_recovering) {
Josef Bacik8a35d952012-05-23 14:26:42 -04003754 BUG_ON(!test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
3755 &BTRFS_I(inode)->runtime_flags));
Yan, Zhengc71bf092009-11-12 09:34:40 +00003756 goto no_delete;
3757 }
3758
Yan, Zheng76dda932009-09-21 16:00:26 -04003759 if (inode->i_nlink > 0) {
3760 BUG_ON(btrfs_root_refs(&root->root_item) != 0);
3761 goto no_delete;
3762 }
3763
Josef Bacik4289a662011-08-05 13:22:24 -04003764 rsv = btrfs_alloc_block_rsv(root);
3765 if (!rsv) {
3766 btrfs_orphan_del(NULL, inode);
3767 goto no_delete;
3768 }
Josef Bacik4a338542011-08-29 11:01:31 -04003769 rsv->size = min_size;
Josef Bacik726c35f2011-09-26 15:46:06 -04003770 global_rsv = &root->fs_info->global_block_rsv;
Josef Bacik4289a662011-08-05 13:22:24 -04003771
Chris Masondbe674a2008-07-17 12:54:05 -04003772 btrfs_i_size_write(inode, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003773
Josef Bacik4289a662011-08-05 13:22:24 -04003774 /*
3775 * This is a bit simpler than btrfs_truncate since
3776 *
3777 * 1) We've already reserved our space for our orphan item in the
3778 * unlink.
3779 * 2) We're going to delete the inode item, so we don't need to update
3780 * it at all.
3781 *
3782 * So we just need to reserve some slack space in case we add bytes when
3783 * doing the truncate.
3784 */
Yan, Zheng80825102009-11-12 09:35:36 +00003785 while (1) {
Miao Xieaa38a712011-11-18 17:43:00 +08003786 ret = btrfs_block_rsv_refill_noflush(root, rsv, min_size);
Yan, Zheng80825102009-11-12 09:35:36 +00003787
Josef Bacik726c35f2011-09-26 15:46:06 -04003788 /*
3789 * Try and steal from the global reserve since we will
3790 * likely not use this space anyway, we want to try as
3791 * hard as possible to get this to work.
3792 */
3793 if (ret)
3794 ret = btrfs_block_rsv_migrate(global_rsv, rsv, min_size);
3795
Yan, Zhengd68fc572010-05-16 10:49:58 -04003796 if (ret) {
Josef Bacik4289a662011-08-05 13:22:24 -04003797 printk(KERN_WARNING "Could not get space for a "
Josef Bacik482e6dc2011-08-19 10:31:56 -04003798 "delete, will truncate on mount %d\n", ret);
Josef Bacik4289a662011-08-05 13:22:24 -04003799 btrfs_orphan_del(NULL, inode);
3800 btrfs_free_block_rsv(root, rsv);
3801 goto no_delete;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003802 }
3803
Josef Bacik4289a662011-08-05 13:22:24 -04003804 trans = btrfs_start_transaction(root, 0);
3805 if (IS_ERR(trans)) {
3806 btrfs_orphan_del(NULL, inode);
3807 btrfs_free_block_rsv(root, rsv);
3808 goto no_delete;
3809 }
3810
3811 trans->block_rsv = rsv;
3812
Yan, Zhengd68fc572010-05-16 10:49:58 -04003813 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003814 if (ret != -EAGAIN)
3815 break;
3816
3817 nr = trans->blocks_used;
3818 btrfs_end_transaction(trans, root);
3819 trans = NULL;
3820 btrfs_btree_balance_dirty(root, nr);
Josef Bacik7b128762008-07-24 12:17:14 -04003821 }
3822
Josef Bacik4289a662011-08-05 13:22:24 -04003823 btrfs_free_block_rsv(root, rsv);
3824
Yan, Zheng80825102009-11-12 09:35:36 +00003825 if (ret == 0) {
Josef Bacik4289a662011-08-05 13:22:24 -04003826 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00003827 ret = btrfs_orphan_del(trans, inode);
3828 BUG_ON(ret);
3829 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003830
Josef Bacik4289a662011-08-05 13:22:24 -04003831 trans->block_rsv = &root->fs_info->trans_block_rsv;
Li Zefan581bb052011-04-20 10:06:11 +08003832 if (!(root == root->fs_info->tree_root ||
3833 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID))
Li Zefan33345d012011-04-20 10:31:50 +08003834 btrfs_return_ino(root, btrfs_ino(inode));
Li Zefan581bb052011-04-20 10:06:11 +08003835
Chris Masond3c2fdc2007-09-17 10:58:06 -04003836 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04003837 btrfs_end_transaction(trans, root);
Chris Masond3c2fdc2007-09-17 10:58:06 -04003838 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003839no_delete:
Al Virobd555972010-06-07 11:35:40 -04003840 end_writeback(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003841 return;
Chris Mason39279cc2007-06-12 06:35:45 -04003842}
3843
3844/*
3845 * this returns the key found in the dir entry in the location pointer.
3846 * If no dir entries were found, location->objectid is 0.
3847 */
3848static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
3849 struct btrfs_key *location)
3850{
3851 const char *name = dentry->d_name.name;
3852 int namelen = dentry->d_name.len;
3853 struct btrfs_dir_item *di;
3854 struct btrfs_path *path;
3855 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04003856 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003857
3858 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07003859 if (!path)
3860 return -ENOMEM;
Chris Mason39544012007-12-12 14:38:19 -05003861
Li Zefan33345d012011-04-20 10:31:50 +08003862 di = btrfs_lookup_dir_item(NULL, root, path, btrfs_ino(dir), name,
Chris Mason39279cc2007-06-12 06:35:45 -04003863 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04003864 if (IS_ERR(di))
3865 ret = PTR_ERR(di);
Chris Masond3977122009-01-05 21:25:51 -05003866
David Sterbac7040052011-04-19 18:00:01 +02003867 if (IS_ERR_OR_NULL(di))
Chris Mason39544012007-12-12 14:38:19 -05003868 goto out_err;
Chris Masond3977122009-01-05 21:25:51 -05003869
Chris Mason5f39d392007-10-15 16:14:19 -04003870 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04003871out:
Chris Mason39279cc2007-06-12 06:35:45 -04003872 btrfs_free_path(path);
3873 return ret;
Chris Mason39544012007-12-12 14:38:19 -05003874out_err:
3875 location->objectid = 0;
3876 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04003877}
3878
3879/*
3880 * when we hit a tree root in a directory, the btrfs part of the inode
3881 * needs to be changed to reflect the root directory of the tree root. This
3882 * is kind of like crossing a mount point.
3883 */
3884static int fixup_tree_root_location(struct btrfs_root *root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003885 struct inode *dir,
3886 struct dentry *dentry,
3887 struct btrfs_key *location,
3888 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04003889{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003890 struct btrfs_path *path;
3891 struct btrfs_root *new_root;
3892 struct btrfs_root_ref *ref;
3893 struct extent_buffer *leaf;
3894 int ret;
3895 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003896
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003897 path = btrfs_alloc_path();
3898 if (!path) {
3899 err = -ENOMEM;
3900 goto out;
3901 }
Chris Mason39279cc2007-06-12 06:35:45 -04003902
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003903 err = -ENOENT;
3904 ret = btrfs_find_root_ref(root->fs_info->tree_root, path,
3905 BTRFS_I(dir)->root->root_key.objectid,
3906 location->objectid);
3907 if (ret) {
3908 if (ret < 0)
3909 err = ret;
3910 goto out;
3911 }
Chris Mason39279cc2007-06-12 06:35:45 -04003912
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003913 leaf = path->nodes[0];
3914 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
Li Zefan33345d012011-04-20 10:31:50 +08003915 if (btrfs_root_ref_dirid(leaf, ref) != btrfs_ino(dir) ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003916 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
3917 goto out;
3918
3919 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
3920 (unsigned long)(ref + 1),
3921 dentry->d_name.len);
3922 if (ret)
3923 goto out;
3924
David Sterbab3b4aa72011-04-21 01:20:15 +02003925 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003926
3927 new_root = btrfs_read_fs_root_no_name(root->fs_info, location);
3928 if (IS_ERR(new_root)) {
3929 err = PTR_ERR(new_root);
3930 goto out;
3931 }
3932
3933 if (btrfs_root_refs(&new_root->root_item) == 0) {
3934 err = -ENOENT;
3935 goto out;
3936 }
3937
3938 *sub_root = new_root;
3939 location->objectid = btrfs_root_dirid(&new_root->root_item);
3940 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04003941 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003942 err = 0;
3943out:
3944 btrfs_free_path(path);
3945 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003946}
3947
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003948static void inode_tree_add(struct inode *inode)
3949{
3950 struct btrfs_root *root = BTRFS_I(inode)->root;
3951 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003952 struct rb_node **p;
3953 struct rb_node *parent;
Li Zefan33345d012011-04-20 10:31:50 +08003954 u64 ino = btrfs_ino(inode);
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003955again:
3956 p = &root->inode_tree.rb_node;
3957 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003958
Al Viro1d3382c2010-10-23 15:19:20 -04003959 if (inode_unhashed(inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04003960 return;
3961
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003962 spin_lock(&root->inode_lock);
3963 while (*p) {
3964 parent = *p;
3965 entry = rb_entry(parent, struct btrfs_inode, rb_node);
3966
Li Zefan33345d012011-04-20 10:31:50 +08003967 if (ino < btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003968 p = &parent->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08003969 else if (ino > btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003970 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003971 else {
3972 WARN_ON(!(entry->vfs_inode.i_state &
Al Viroa4ffdde2010-06-02 17:38:30 -04003973 (I_WILL_FREE | I_FREEING)));
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003974 rb_erase(parent, &root->inode_tree);
3975 RB_CLEAR_NODE(parent);
3976 spin_unlock(&root->inode_lock);
3977 goto again;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003978 }
3979 }
3980 rb_link_node(&BTRFS_I(inode)->rb_node, parent, p);
3981 rb_insert_color(&BTRFS_I(inode)->rb_node, &root->inode_tree);
3982 spin_unlock(&root->inode_lock);
3983}
3984
3985static void inode_tree_del(struct inode *inode)
3986{
3987 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04003988 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003989
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003990 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003991 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003992 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003993 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04003994 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003995 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003996 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04003997
Josef Bacik0af3d002010-06-21 14:48:16 -04003998 /*
3999 * Free space cache has inodes in the tree root, but the tree root has a
4000 * root_refs of 0, so this could end up dropping the tree root as a
4001 * snapshot, so we need the extra !root->fs_info->tree_root check to
4002 * make sure we don't drop it.
4003 */
4004 if (empty && btrfs_root_refs(&root->root_item) == 0 &&
4005 root != root->fs_info->tree_root) {
Yan, Zheng76dda932009-09-21 16:00:26 -04004006 synchronize_srcu(&root->fs_info->subvol_srcu);
4007 spin_lock(&root->inode_lock);
4008 empty = RB_EMPTY_ROOT(&root->inode_tree);
4009 spin_unlock(&root->inode_lock);
4010 if (empty)
4011 btrfs_add_dead_root(root);
4012 }
4013}
4014
Jeff Mahoney143bede2012-03-01 14:56:26 +01004015void btrfs_invalidate_inodes(struct btrfs_root *root)
Yan, Zheng76dda932009-09-21 16:00:26 -04004016{
4017 struct rb_node *node;
4018 struct rb_node *prev;
4019 struct btrfs_inode *entry;
4020 struct inode *inode;
4021 u64 objectid = 0;
4022
4023 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
4024
4025 spin_lock(&root->inode_lock);
4026again:
4027 node = root->inode_tree.rb_node;
4028 prev = NULL;
4029 while (node) {
4030 prev = node;
4031 entry = rb_entry(node, struct btrfs_inode, rb_node);
4032
Li Zefan33345d012011-04-20 10:31:50 +08004033 if (objectid < btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04004034 node = node->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08004035 else if (objectid > btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04004036 node = node->rb_right;
4037 else
4038 break;
4039 }
4040 if (!node) {
4041 while (prev) {
4042 entry = rb_entry(prev, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08004043 if (objectid <= btrfs_ino(&entry->vfs_inode)) {
Yan, Zheng76dda932009-09-21 16:00:26 -04004044 node = prev;
4045 break;
4046 }
4047 prev = rb_next(prev);
4048 }
4049 }
4050 while (node) {
4051 entry = rb_entry(node, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08004052 objectid = btrfs_ino(&entry->vfs_inode) + 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04004053 inode = igrab(&entry->vfs_inode);
4054 if (inode) {
4055 spin_unlock(&root->inode_lock);
4056 if (atomic_read(&inode->i_count) > 1)
4057 d_prune_aliases(inode);
4058 /*
Al Viro45321ac2010-06-07 13:43:19 -04004059 * btrfs_drop_inode will have it removed from
Yan, Zheng76dda932009-09-21 16:00:26 -04004060 * the inode cache when its usage count
4061 * hits zero.
4062 */
4063 iput(inode);
4064 cond_resched();
4065 spin_lock(&root->inode_lock);
4066 goto again;
4067 }
4068
4069 if (cond_resched_lock(&root->inode_lock))
4070 goto again;
4071
4072 node = rb_next(node);
4073 }
4074 spin_unlock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004075}
4076
Chris Masone02119d2008-09-05 16:13:11 -04004077static int btrfs_init_locked_inode(struct inode *inode, void *p)
4078{
4079 struct btrfs_iget_args *args = p;
4080 inode->i_ino = args->ino;
Chris Masone02119d2008-09-05 16:13:11 -04004081 BTRFS_I(inode)->root = args->root;
Josef Bacik6a632092009-02-20 11:00:09 -05004082 btrfs_set_inode_space_info(args->root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004083 return 0;
4084}
4085
4086static int btrfs_find_actor(struct inode *inode, void *opaque)
4087{
4088 struct btrfs_iget_args *args = opaque;
Li Zefan33345d012011-04-20 10:31:50 +08004089 return args->ino == btrfs_ino(inode) &&
Chris Masond3977122009-01-05 21:25:51 -05004090 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004091}
4092
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004093static struct inode *btrfs_iget_locked(struct super_block *s,
4094 u64 objectid,
4095 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04004096{
4097 struct inode *inode;
4098 struct btrfs_iget_args args;
4099 args.ino = objectid;
4100 args.root = root;
4101
4102 inode = iget5_locked(s, objectid, btrfs_find_actor,
4103 btrfs_init_locked_inode,
4104 (void *)&args);
4105 return inode;
4106}
4107
Balaji Rao1a54ef82008-07-21 02:01:04 +05304108/* Get an inode object given its location and corresponding root.
4109 * Returns in *is_new if the inode was read from disk
4110 */
4111struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
Josef Bacik73f73412009-12-04 17:38:27 +00004112 struct btrfs_root *root, int *new)
Balaji Rao1a54ef82008-07-21 02:01:04 +05304113{
4114 struct inode *inode;
4115
4116 inode = btrfs_iget_locked(s, location->objectid, root);
4117 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004118 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05304119
4120 if (inode->i_state & I_NEW) {
4121 BTRFS_I(inode)->root = root;
4122 memcpy(&BTRFS_I(inode)->location, location, sizeof(*location));
4123 btrfs_read_locked_inode(inode);
Mark Fasheh1748f842011-07-12 11:25:31 -07004124 if (!is_bad_inode(inode)) {
4125 inode_tree_add(inode);
4126 unlock_new_inode(inode);
4127 if (new)
4128 *new = 1;
4129 } else {
Sergei Trofimoviche0b6d652011-09-11 10:52:24 -04004130 unlock_new_inode(inode);
4131 iput(inode);
4132 inode = ERR_PTR(-ESTALE);
Mark Fasheh1748f842011-07-12 11:25:31 -07004133 }
4134 }
4135
Balaji Rao1a54ef82008-07-21 02:01:04 +05304136 return inode;
4137}
4138
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004139static struct inode *new_simple_dir(struct super_block *s,
4140 struct btrfs_key *key,
4141 struct btrfs_root *root)
4142{
4143 struct inode *inode = new_inode(s);
4144
4145 if (!inode)
4146 return ERR_PTR(-ENOMEM);
4147
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004148 BTRFS_I(inode)->root = root;
4149 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
Josef Bacik72ac3c02012-05-23 14:13:11 -04004150 set_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004151
4152 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
Li Zefan848cce02012-02-21 17:04:28 +08004153 inode->i_op = &btrfs_dir_ro_inode_operations;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004154 inode->i_fop = &simple_dir_operations;
4155 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
4156 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
4157
4158 return inode;
4159}
4160
Chris Mason3de45862008-11-17 21:02:50 -05004161struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04004162{
Chris Masond3977122009-01-05 21:25:51 -05004163 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004164 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004165 struct btrfs_root *sub_root = root;
4166 struct btrfs_key location;
Yan, Zheng76dda932009-09-21 16:00:26 -04004167 int index;
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004168 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004169
4170 if (dentry->d_name.len > BTRFS_NAME_LEN)
4171 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04004172
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004173 if (unlikely(d_need_lookup(dentry))) {
4174 memcpy(&location, dentry->d_fsdata, sizeof(struct btrfs_key));
4175 kfree(dentry->d_fsdata);
4176 dentry->d_fsdata = NULL;
Josef Bacika66e7cc2011-09-18 10:34:03 -04004177 /* This thing is hashed, drop it for now */
4178 d_drop(dentry);
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004179 } else {
4180 ret = btrfs_inode_by_name(dir, dentry, &location);
4181 }
Chris Mason5f39d392007-10-15 16:14:19 -04004182
Chris Mason39279cc2007-06-12 06:35:45 -04004183 if (ret < 0)
4184 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04004185
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004186 if (location.objectid == 0)
4187 return NULL;
4188
4189 if (location.type == BTRFS_INODE_ITEM_KEY) {
Josef Bacik73f73412009-12-04 17:38:27 +00004190 inode = btrfs_iget(dir->i_sb, &location, root, NULL);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004191 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004192 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004193
4194 BUG_ON(location.type != BTRFS_ROOT_ITEM_KEY);
4195
Yan, Zheng76dda932009-09-21 16:00:26 -04004196 index = srcu_read_lock(&root->fs_info->subvol_srcu);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004197 ret = fixup_tree_root_location(root, dir, dentry,
4198 &location, &sub_root);
4199 if (ret < 0) {
4200 if (ret != -ENOENT)
4201 inode = ERR_PTR(ret);
4202 else
4203 inode = new_simple_dir(dir->i_sb, &location, sub_root);
4204 } else {
Josef Bacik73f73412009-12-04 17:38:27 +00004205 inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004206 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004207 srcu_read_unlock(&root->fs_info->subvol_srcu, index);
4208
Julia Lawall34d19ba2011-01-24 19:55:19 +00004209 if (!IS_ERR(inode) && root != sub_root) {
Yan, Zhengc71bf092009-11-12 09:34:40 +00004210 down_read(&root->fs_info->cleanup_work_sem);
4211 if (!(inode->i_sb->s_flags & MS_RDONLY))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05004212 ret = btrfs_orphan_cleanup(sub_root);
Yan, Zhengc71bf092009-11-12 09:34:40 +00004213 up_read(&root->fs_info->cleanup_work_sem);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05004214 if (ret)
4215 inode = ERR_PTR(ret);
Yan, Zhengc71bf092009-11-12 09:34:40 +00004216 }
4217
Chris Mason3de45862008-11-17 21:02:50 -05004218 return inode;
4219}
4220
Nick Pigginfe15ce42011-01-07 17:49:23 +11004221static int btrfs_dentry_delete(const struct dentry *dentry)
Yan, Zheng76dda932009-09-21 16:00:26 -04004222{
4223 struct btrfs_root *root;
Li Zefan848cce02012-02-21 17:04:28 +08004224 struct inode *inode = dentry->d_inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04004225
Li Zefan848cce02012-02-21 17:04:28 +08004226 if (!inode && !IS_ROOT(dentry))
4227 inode = dentry->d_parent->d_inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04004228
Li Zefan848cce02012-02-21 17:04:28 +08004229 if (inode) {
4230 root = BTRFS_I(inode)->root;
Yan, Zhengefefb142009-10-09 09:25:16 -04004231 if (btrfs_root_refs(&root->root_item) == 0)
4232 return 1;
Li Zefan848cce02012-02-21 17:04:28 +08004233
4234 if (btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
4235 return 1;
Yan, Zhengefefb142009-10-09 09:25:16 -04004236 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004237 return 0;
4238}
4239
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004240static void btrfs_dentry_release(struct dentry *dentry)
4241{
4242 if (dentry->d_fsdata)
4243 kfree(dentry->d_fsdata);
4244}
4245
Chris Mason3de45862008-11-17 21:02:50 -05004246static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
4247 struct nameidata *nd)
4248{
Josef Bacika66e7cc2011-09-18 10:34:03 -04004249 struct dentry *ret;
4250
4251 ret = d_splice_alias(btrfs_lookup_dentry(dir, dentry), dentry);
4252 if (unlikely(d_need_lookup(dentry))) {
4253 spin_lock(&dentry->d_lock);
4254 dentry->d_flags &= ~DCACHE_NEED_LOOKUP;
4255 spin_unlock(&dentry->d_lock);
4256 }
4257 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004258}
4259
Miao Xie16cdcec2011-04-22 18:12:22 +08004260unsigned char btrfs_filetype_table[] = {
Chris Mason39279cc2007-06-12 06:35:45 -04004261 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
4262};
4263
David Woodhousecbdf5a22008-08-06 19:42:33 +01004264static int btrfs_real_readdir(struct file *filp, void *dirent,
4265 filldir_t filldir)
Chris Mason39279cc2007-06-12 06:35:45 -04004266{
Chris Mason6da6aba2007-12-18 16:15:09 -05004267 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004268 struct btrfs_root *root = BTRFS_I(inode)->root;
4269 struct btrfs_item *item;
4270 struct btrfs_dir_item *di;
4271 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04004272 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04004273 struct btrfs_path *path;
Miao Xie16cdcec2011-04-22 18:12:22 +08004274 struct list_head ins_list;
4275 struct list_head del_list;
Chris Mason39279cc2007-06-12 06:35:45 -04004276 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04004277 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04004278 int slot;
Chris Mason39279cc2007-06-12 06:35:45 -04004279 unsigned char d_type;
4280 int over = 0;
4281 u32 di_cur;
4282 u32 di_total;
4283 u32 di_len;
4284 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004285 char tmp_name[32];
4286 char *name_ptr;
4287 int name_len;
Miao Xie16cdcec2011-04-22 18:12:22 +08004288 int is_curr = 0; /* filp->f_pos points to the current index? */
Chris Mason39279cc2007-06-12 06:35:45 -04004289
4290 /* FIXME, use a real flag for deciding about the key type */
4291 if (root->fs_info->tree_root == root)
4292 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004293
Chris Mason39544012007-12-12 14:38:19 -05004294 /* special case for "." */
4295 if (filp->f_pos == 0) {
Hidetoshi Seto3765fef2011-09-18 10:20:46 -04004296 over = filldir(dirent, ".", 1,
4297 filp->f_pos, btrfs_ino(inode), DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05004298 if (over)
4299 return 0;
4300 filp->f_pos = 1;
4301 }
Chris Mason39544012007-12-12 14:38:19 -05004302 /* special case for .., just use the back ref */
4303 if (filp->f_pos == 1) {
David Woodhouse5ecc7e52008-08-17 15:14:48 +01004304 u64 pino = parent_ino(filp->f_path.dentry);
Chris Mason39544012007-12-12 14:38:19 -05004305 over = filldir(dirent, "..", 2,
Hidetoshi Seto3765fef2011-09-18 10:20:46 -04004306 filp->f_pos, pino, DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05004307 if (over)
David Woodhouse49593bf2008-08-17 17:08:36 +01004308 return 0;
Chris Mason39544012007-12-12 14:38:19 -05004309 filp->f_pos = 2;
4310 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004311 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08004312 if (!path)
4313 return -ENOMEM;
Chris Masonff5714c2011-05-28 07:00:39 -04004314
Josef Bacik026fd312011-05-13 10:32:11 -04004315 path->reada = 1;
David Woodhouse49593bf2008-08-17 17:08:36 +01004316
Miao Xie16cdcec2011-04-22 18:12:22 +08004317 if (key_type == BTRFS_DIR_INDEX_KEY) {
4318 INIT_LIST_HEAD(&ins_list);
4319 INIT_LIST_HEAD(&del_list);
4320 btrfs_get_delayed_items(inode, &ins_list, &del_list);
4321 }
4322
Chris Mason39279cc2007-06-12 06:35:45 -04004323 btrfs_set_key_type(&key, key_type);
4324 key.offset = filp->f_pos;
Li Zefan33345d012011-04-20 10:31:50 +08004325 key.objectid = btrfs_ino(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004326
Chris Mason39279cc2007-06-12 06:35:45 -04004327 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4328 if (ret < 0)
4329 goto err;
David Woodhouse49593bf2008-08-17 17:08:36 +01004330
4331 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04004332 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -04004333 slot = path->slots[0];
Li Zefanb9e03af2011-03-23 10:43:58 +08004334 if (slot >= btrfs_header_nritems(leaf)) {
4335 ret = btrfs_next_leaf(root, path);
4336 if (ret < 0)
4337 goto err;
4338 else if (ret > 0)
4339 break;
4340 continue;
Chris Mason39279cc2007-06-12 06:35:45 -04004341 }
Chris Mason3de45862008-11-17 21:02:50 -05004342
Chris Mason5f39d392007-10-15 16:14:19 -04004343 item = btrfs_item_nr(leaf, slot);
4344 btrfs_item_key_to_cpu(leaf, &found_key, slot);
4345
4346 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04004347 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004348 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004349 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004350 if (found_key.offset < filp->f_pos)
Li Zefanb9e03af2011-03-23 10:43:58 +08004351 goto next;
Miao Xie16cdcec2011-04-22 18:12:22 +08004352 if (key_type == BTRFS_DIR_INDEX_KEY &&
4353 btrfs_should_delete_dir_index(&del_list,
4354 found_key.offset))
4355 goto next;
Chris Mason5f39d392007-10-15 16:14:19 -04004356
4357 filp->f_pos = found_key.offset;
Miao Xie16cdcec2011-04-22 18:12:22 +08004358 is_curr = 1;
David Woodhouse49593bf2008-08-17 17:08:36 +01004359
Chris Mason39279cc2007-06-12 06:35:45 -04004360 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
4361 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04004362 di_total = btrfs_item_size(leaf, item);
David Woodhouse49593bf2008-08-17 17:08:36 +01004363
4364 while (di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04004365 struct btrfs_key location;
4366
Josef Bacik22a94d42011-03-16 16:47:17 -04004367 if (verify_dir_item(root, leaf, di))
4368 break;
4369
Chris Mason5f39d392007-10-15 16:14:19 -04004370 name_len = btrfs_dir_name_len(leaf, di);
David Woodhouse49593bf2008-08-17 17:08:36 +01004371 if (name_len <= sizeof(tmp_name)) {
Chris Mason5f39d392007-10-15 16:14:19 -04004372 name_ptr = tmp_name;
4373 } else {
4374 name_ptr = kmalloc(name_len, GFP_NOFS);
David Woodhouse49593bf2008-08-17 17:08:36 +01004375 if (!name_ptr) {
4376 ret = -ENOMEM;
4377 goto err;
4378 }
Chris Mason5f39d392007-10-15 16:14:19 -04004379 }
4380 read_extent_buffer(leaf, name_ptr,
4381 (unsigned long)(di + 1), name_len);
4382
4383 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
4384 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason3de45862008-11-17 21:02:50 -05004385
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004386
Chris Mason3de45862008-11-17 21:02:50 -05004387 /* is this a reference to our own snapshot? If so
Arne Jansen8c9c2bf2012-02-25 09:09:30 +01004388 * skip it.
4389 *
4390 * In contrast to old kernels, we insert the snapshot's
4391 * dir item and dir index after it has been created, so
4392 * we won't find a reference to our own snapshot. We
4393 * still keep the following code for backward
4394 * compatibility.
Chris Mason3de45862008-11-17 21:02:50 -05004395 */
4396 if (location.type == BTRFS_ROOT_ITEM_KEY &&
4397 location.objectid == root->root_key.objectid) {
4398 over = 0;
4399 goto skip;
4400 }
Chris Mason5f39d392007-10-15 16:14:19 -04004401 over = filldir(dirent, name_ptr, name_len,
David Woodhouse49593bf2008-08-17 17:08:36 +01004402 found_key.offset, location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04004403 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04004404
Chris Mason3de45862008-11-17 21:02:50 -05004405skip:
Chris Mason5f39d392007-10-15 16:14:19 -04004406 if (name_ptr != tmp_name)
4407 kfree(name_ptr);
4408
Chris Mason39279cc2007-06-12 06:35:45 -04004409 if (over)
4410 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05004411 di_len = btrfs_dir_name_len(leaf, di) +
David Woodhouse49593bf2008-08-17 17:08:36 +01004412 btrfs_dir_data_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04004413 di_cur += di_len;
4414 di = (struct btrfs_dir_item *)((char *)di + di_len);
4415 }
Li Zefanb9e03af2011-03-23 10:43:58 +08004416next:
4417 path->slots[0]++;
Chris Mason39279cc2007-06-12 06:35:45 -04004418 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004419
Miao Xie16cdcec2011-04-22 18:12:22 +08004420 if (key_type == BTRFS_DIR_INDEX_KEY) {
4421 if (is_curr)
4422 filp->f_pos++;
4423 ret = btrfs_readdir_delayed_dir_index(filp, dirent, filldir,
4424 &ins_list);
4425 if (ret)
4426 goto nopos;
4427 }
4428
David Woodhouse49593bf2008-08-17 17:08:36 +01004429 /* Reached end of directory/root. Bump pos past the last item. */
Yan Zheng5e591a02008-02-19 11:41:02 -05004430 if (key_type == BTRFS_DIR_INDEX_KEY)
Jan Engelhardt406266a2009-12-09 22:00:38 +00004431 /*
4432 * 32-bit glibc will use getdents64, but then strtol -
4433 * so the last number we can serve is this.
4434 */
4435 filp->f_pos = 0x7fffffff;
Yan Zheng5e591a02008-02-19 11:41:02 -05004436 else
4437 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04004438nopos:
4439 ret = 0;
4440err:
Miao Xie16cdcec2011-04-22 18:12:22 +08004441 if (key_type == BTRFS_DIR_INDEX_KEY)
4442 btrfs_put_delayed_items(&ins_list, &del_list);
Chris Mason39279cc2007-06-12 06:35:45 -04004443 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004444 return ret;
4445}
4446
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004447int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc)
Chris Mason39279cc2007-06-12 06:35:45 -04004448{
4449 struct btrfs_root *root = BTRFS_I(inode)->root;
4450 struct btrfs_trans_handle *trans;
4451 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04004452 bool nolock = false;
Chris Mason39279cc2007-06-12 06:35:45 -04004453
Josef Bacik72ac3c02012-05-23 14:13:11 -04004454 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Chris Mason4ca8b412008-08-05 13:30:48 -04004455 return 0;
4456
Chris Mason2cf85722011-07-26 15:35:09 -04004457 if (btrfs_fs_closing(root->fs_info) && btrfs_is_free_space_inode(root, inode))
Li Zefan82d59022011-04-20 10:33:24 +08004458 nolock = true;
Josef Bacik0af3d002010-06-21 14:48:16 -04004459
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004460 if (wbc->sync_mode == WB_SYNC_ALL) {
Josef Bacik0af3d002010-06-21 14:48:16 -04004461 if (nolock)
Josef Bacik7a7eaa402011-04-13 12:54:33 -04004462 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0af3d002010-06-21 14:48:16 -04004463 else
Josef Bacik7a7eaa402011-04-13 12:54:33 -04004464 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00004465 if (IS_ERR(trans))
4466 return PTR_ERR(trans);
Josef Bacik0af3d002010-06-21 14:48:16 -04004467 if (nolock)
4468 ret = btrfs_end_transaction_nolock(trans, root);
4469 else
4470 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004471 }
4472 return ret;
4473}
4474
4475/*
Chris Mason54aa1f42007-06-22 14:16:25 -04004476 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04004477 * inode changes. But, it is most likely to find the inode in cache.
4478 * FIXME, needs more benchmarking...there are no reasons other than performance
4479 * to keep or drop this code.
4480 */
Josef Bacik22c44fe2011-11-30 10:45:38 -05004481int btrfs_dirty_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04004482{
4483 struct btrfs_root *root = BTRFS_I(inode)->root;
4484 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004485 int ret;
4486
Josef Bacik72ac3c02012-05-23 14:13:11 -04004487 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Josef Bacik22c44fe2011-11-30 10:45:38 -05004488 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004489
Josef Bacik7a7eaa402011-04-13 12:54:33 -04004490 trans = btrfs_join_transaction(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004491 if (IS_ERR(trans))
4492 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004493
4494 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04004495 if (ret && ret == -ENOSPC) {
4496 /* whoops, lets try again with the full transaction */
4497 btrfs_end_transaction(trans, root);
4498 trans = btrfs_start_transaction(root, 1);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004499 if (IS_ERR(trans))
4500 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004501
Chris Mason94b60442010-05-26 11:02:00 -04004502 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04004503 }
Chris Mason39279cc2007-06-12 06:35:45 -04004504 btrfs_end_transaction(trans, root);
Miao Xie16cdcec2011-04-22 18:12:22 +08004505 if (BTRFS_I(inode)->delayed_node)
4506 btrfs_balance_delayed_items(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004507
4508 return ret;
4509}
4510
4511/*
4512 * This is a copy of file_update_time. We need this so we can return error on
4513 * ENOSPC for updating the inode in the case of file write and mmap writes.
4514 */
4515int btrfs_update_time(struct file *file)
4516{
4517 struct inode *inode = file->f_path.dentry->d_inode;
4518 struct timespec now;
4519 int ret;
4520 enum { S_MTIME = 1, S_CTIME = 2, S_VERSION = 4 } sync_it = 0;
4521
4522 /* First try to exhaust all avenues to not sync */
4523 if (IS_NOCMTIME(inode))
4524 return 0;
4525
4526 now = current_fs_time(inode->i_sb);
4527 if (!timespec_equal(&inode->i_mtime, &now))
4528 sync_it = S_MTIME;
4529
4530 if (!timespec_equal(&inode->i_ctime, &now))
4531 sync_it |= S_CTIME;
4532
4533 if (IS_I_VERSION(inode))
4534 sync_it |= S_VERSION;
4535
4536 if (!sync_it)
4537 return 0;
4538
4539 /* Finally allowed to write? Takes lock. */
4540 if (mnt_want_write_file(file))
4541 return 0;
4542
4543 /* Only change inode inside the lock region */
4544 if (sync_it & S_VERSION)
4545 inode_inc_iversion(inode);
4546 if (sync_it & S_CTIME)
4547 inode->i_ctime = now;
4548 if (sync_it & S_MTIME)
4549 inode->i_mtime = now;
4550 ret = btrfs_dirty_inode(inode);
4551 if (!ret)
4552 mark_inode_dirty_sync(inode);
4553 mnt_drop_write(file->f_path.mnt);
4554 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004555}
4556
Chris Masond352ac62008-09-29 15:18:18 -04004557/*
4558 * find the highest existing sequence number in a directory
4559 * and then set the in-memory index_cnt variable to reflect
4560 * free sequence numbers
4561 */
Josef Bacikaec74772008-07-24 12:12:38 -04004562static int btrfs_set_inode_index_count(struct inode *inode)
4563{
4564 struct btrfs_root *root = BTRFS_I(inode)->root;
4565 struct btrfs_key key, found_key;
4566 struct btrfs_path *path;
4567 struct extent_buffer *leaf;
4568 int ret;
4569
Li Zefan33345d012011-04-20 10:31:50 +08004570 key.objectid = btrfs_ino(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004571 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
4572 key.offset = (u64)-1;
4573
4574 path = btrfs_alloc_path();
4575 if (!path)
4576 return -ENOMEM;
4577
4578 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4579 if (ret < 0)
4580 goto out;
4581 /* FIXME: we should be able to handle this */
4582 if (ret == 0)
4583 goto out;
4584 ret = 0;
4585
4586 /*
4587 * MAGIC NUMBER EXPLANATION:
4588 * since we search a directory based on f_pos we have to start at 2
4589 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
4590 * else has to start at 2
4591 */
4592 if (path->slots[0] == 0) {
4593 BTRFS_I(inode)->index_cnt = 2;
4594 goto out;
4595 }
4596
4597 path->slots[0]--;
4598
4599 leaf = path->nodes[0];
4600 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4601
Li Zefan33345d012011-04-20 10:31:50 +08004602 if (found_key.objectid != btrfs_ino(inode) ||
Josef Bacikaec74772008-07-24 12:12:38 -04004603 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
4604 BTRFS_I(inode)->index_cnt = 2;
4605 goto out;
4606 }
4607
4608 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
4609out:
4610 btrfs_free_path(path);
4611 return ret;
4612}
4613
Chris Masond352ac62008-09-29 15:18:18 -04004614/*
4615 * helper to find a free sequence number in a given directory. This current
4616 * code is very simple, later versions will do smarter things in the btree
4617 */
Chris Mason3de45862008-11-17 21:02:50 -05004618int btrfs_set_inode_index(struct inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04004619{
4620 int ret = 0;
4621
4622 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
Miao Xie16cdcec2011-04-22 18:12:22 +08004623 ret = btrfs_inode_delayed_dir_index_count(dir);
4624 if (ret) {
4625 ret = btrfs_set_inode_index_count(dir);
4626 if (ret)
4627 return ret;
4628 }
Josef Bacikaec74772008-07-24 12:12:38 -04004629 }
4630
Chris Mason00e4e6b2008-08-05 11:18:09 -04004631 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04004632 BTRFS_I(dir)->index_cnt++;
4633
4634 return ret;
4635}
4636
Chris Mason39279cc2007-06-12 06:35:45 -04004637static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
4638 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04004639 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05004640 const char *name, int name_len,
Al Viro175a4eb2011-07-26 03:30:54 -04004641 u64 ref_objectid, u64 objectid,
4642 umode_t mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04004643{
4644 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004645 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04004646 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04004647 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05004648 struct btrfs_inode_ref *ref;
4649 struct btrfs_key key[2];
4650 u32 sizes[2];
4651 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04004652 int ret;
4653 int owner;
4654
Chris Mason5f39d392007-10-15 16:14:19 -04004655 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07004656 if (!path)
4657 return ERR_PTR(-ENOMEM);
Chris Mason5f39d392007-10-15 16:14:19 -04004658
Chris Mason39279cc2007-06-12 06:35:45 -04004659 inode = new_inode(root->fs_info->sb);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004660 if (!inode) {
4661 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004662 return ERR_PTR(-ENOMEM);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004663 }
Chris Mason39279cc2007-06-12 06:35:45 -04004664
Li Zefan581bb052011-04-20 10:06:11 +08004665 /*
4666 * we have to initialize this early, so we can reclaim the inode
4667 * number if we fail afterwards in this function.
4668 */
4669 inode->i_ino = objectid;
4670
Josef Bacikaec74772008-07-24 12:12:38 -04004671 if (dir) {
liubo1abe9b82011-03-24 11:18:59 +00004672 trace_btrfs_inode_request(dir);
4673
Chris Mason3de45862008-11-17 21:02:50 -05004674 ret = btrfs_set_inode_index(dir, index);
Shen Feng09771432009-04-02 16:46:06 -04004675 if (ret) {
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004676 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004677 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004678 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04004679 }
Josef Bacikaec74772008-07-24 12:12:38 -04004680 }
4681 /*
4682 * index_cnt is ignored for everything but a dir,
4683 * btrfs_get_inode_index_count has an explanation for the magic
4684 * number
4685 */
4686 BTRFS_I(inode)->index_cnt = 2;
Chris Mason39279cc2007-06-12 06:35:45 -04004687 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04004688 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik76195852010-11-19 02:18:02 +00004689 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik6a632092009-02-20 11:00:09 -05004690 btrfs_set_inode_space_info(root, inode);
Chris Masonb888db22007-08-27 16:49:44 -04004691
Al Viro569254b2011-07-24 17:08:40 -04004692 if (S_ISDIR(mode))
Chris Mason39279cc2007-06-12 06:35:45 -04004693 owner = 0;
4694 else
4695 owner = 1;
Chris Mason9c583092008-01-29 15:15:18 -05004696
4697 key[0].objectid = objectid;
4698 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
4699 key[0].offset = 0;
4700
4701 key[1].objectid = objectid;
4702 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
4703 key[1].offset = ref_objectid;
4704
4705 sizes[0] = sizeof(struct btrfs_inode_item);
4706 sizes[1] = name_len + sizeof(*ref);
4707
Chris Masonb9473432009-03-13 11:00:37 -04004708 path->leave_spinning = 1;
Chris Mason9c583092008-01-29 15:15:18 -05004709 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
4710 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04004711 goto fail;
4712
Dmitry Monakhovecc11fab2010-03-04 17:31:47 +03004713 inode_init_owner(inode, dir, mode);
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004714 inode_set_bytes(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004715 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04004716 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
4717 struct btrfs_inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04004718 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05004719
4720 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
4721 struct btrfs_inode_ref);
4722 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004723 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
Chris Mason9c583092008-01-29 15:15:18 -05004724 ptr = (unsigned long)(ref + 1);
4725 write_extent_buffer(path->nodes[0], name, ptr, name_len);
4726
Chris Mason5f39d392007-10-15 16:14:19 -04004727 btrfs_mark_buffer_dirty(path->nodes[0]);
4728 btrfs_free_path(path);
4729
Chris Mason39279cc2007-06-12 06:35:45 -04004730 location = &BTRFS_I(inode)->location;
4731 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04004732 location->offset = 0;
4733 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
4734
Christoph Hellwig6cbff002009-04-17 10:37:41 +02004735 btrfs_inherit_iflags(inode, dir);
4736
Al Viro569254b2011-07-24 17:08:40 -04004737 if (S_ISREG(mode)) {
Chris Mason94272162009-07-02 12:26:06 -04004738 if (btrfs_test_opt(root, NODATASUM))
4739 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
Liu Bo75e7cb72011-03-22 10:12:20 +00004740 if (btrfs_test_opt(root, NODATACOW) ||
4741 (BTRFS_I(dir)->flags & BTRFS_INODE_NODATACOW))
Chris Mason94272162009-07-02 12:26:06 -04004742 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
4743 }
4744
Chris Mason39279cc2007-06-12 06:35:45 -04004745 insert_inode_hash(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004746 inode_tree_add(inode);
liubo1abe9b82011-03-24 11:18:59 +00004747
4748 trace_btrfs_inode_new(inode);
Chris Mason1973f0f2011-06-24 13:13:29 -04004749 btrfs_set_inode_last_trans(trans, inode);
liubo1abe9b82011-03-24 11:18:59 +00004750
Chris Mason39279cc2007-06-12 06:35:45 -04004751 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004752fail:
Josef Bacikaec74772008-07-24 12:12:38 -04004753 if (dir)
4754 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04004755 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004756 iput(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004757 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004758}
4759
4760static inline u8 btrfs_inode_type(struct inode *inode)
4761{
4762 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
4763}
4764
Chris Masond352ac62008-09-29 15:18:18 -04004765/*
4766 * utility function to add 'inode' into 'parent_inode' with
4767 * a give name and a given sequence number.
4768 * if 'add_backref' is true, also insert a backref from the
4769 * inode to the parent directory.
4770 */
Chris Masone02119d2008-09-05 16:13:11 -04004771int btrfs_add_link(struct btrfs_trans_handle *trans,
4772 struct inode *parent_inode, struct inode *inode,
4773 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004774{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004775 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004776 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04004777 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Li Zefan33345d012011-04-20 10:31:50 +08004778 u64 ino = btrfs_ino(inode);
4779 u64 parent_ino = btrfs_ino(parent_inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004780
Li Zefan33345d012011-04-20 10:31:50 +08004781 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004782 memcpy(&key, &BTRFS_I(inode)->root->root_key, sizeof(key));
4783 } else {
Li Zefan33345d012011-04-20 10:31:50 +08004784 key.objectid = ino;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004785 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
4786 key.offset = 0;
4787 }
Chris Mason39279cc2007-06-12 06:35:45 -04004788
Li Zefan33345d012011-04-20 10:31:50 +08004789 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004790 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
4791 key.objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08004792 parent_ino, index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004793 } else if (add_backref) {
Li Zefan33345d012011-04-20 10:31:50 +08004794 ret = btrfs_insert_inode_ref(trans, root, name, name_len, ino,
4795 parent_ino, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004796 }
4797
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004798 /* Nothing to clean up yet */
4799 if (ret)
4800 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004801
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004802 ret = btrfs_insert_dir_item(trans, root, name, name_len,
4803 parent_inode, &key,
4804 btrfs_inode_type(inode), index);
4805 if (ret == -EEXIST)
4806 goto fail_dir_item;
4807 else if (ret) {
4808 btrfs_abort_transaction(trans, root, ret);
4809 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004810 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004811
4812 btrfs_i_size_write(parent_inode, parent_inode->i_size +
4813 name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04004814 inode_inc_iversion(parent_inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004815 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
4816 ret = btrfs_update_inode(trans, root, parent_inode);
4817 if (ret)
4818 btrfs_abort_transaction(trans, root, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004819 return ret;
Chris Masonfe66a052012-02-20 08:40:56 -05004820
4821fail_dir_item:
4822 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
4823 u64 local_index;
4824 int err;
4825 err = btrfs_del_root_ref(trans, root->fs_info->tree_root,
4826 key.objectid, root->root_key.objectid,
4827 parent_ino, &local_index, name, name_len);
4828
4829 } else if (add_backref) {
4830 u64 local_index;
4831 int err;
4832
4833 err = btrfs_del_inode_ref(trans, root, name, name_len,
4834 ino, parent_ino, &local_index);
4835 }
4836 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004837}
4838
4839static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Josef Bacika1b075d2010-11-19 20:36:11 +00004840 struct inode *dir, struct dentry *dentry,
4841 struct inode *inode, int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004842{
Josef Bacika1b075d2010-11-19 20:36:11 +00004843 int err = btrfs_add_link(trans, dir, inode,
4844 dentry->d_name.name, dentry->d_name.len,
4845 backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004846 if (err > 0)
4847 err = -EEXIST;
4848 return err;
4849}
4850
Josef Bacik618e21d2007-07-11 10:18:17 -04004851static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -04004852 umode_t mode, dev_t rdev)
Josef Bacik618e21d2007-07-11 10:18:17 -04004853{
4854 struct btrfs_trans_handle *trans;
4855 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004856 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04004857 int err;
4858 int drop_inode = 0;
4859 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05004860 unsigned long nr = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004861 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04004862
4863 if (!new_valid_dev(rdev))
4864 return -EINVAL;
4865
Josef Bacik9ed74f22009-09-11 16:12:44 -04004866 /*
4867 * 2 for inode item and ref
4868 * 2 for dir items
4869 * 1 for xattr if selinux is on
4870 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004871 trans = btrfs_start_transaction(root, 5);
4872 if (IS_ERR(trans))
4873 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05004874
Li Zefan581bb052011-04-20 10:06:11 +08004875 err = btrfs_find_free_ino(root, &objectid);
4876 if (err)
4877 goto out_unlock;
4878
Josef Bacikaec74772008-07-24 12:12:38 -04004879 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08004880 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04004881 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004882 if (IS_ERR(inode)) {
4883 err = PTR_ERR(inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04004884 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004885 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004886
Eric Paris2a7dba32011-02-01 11:05:39 -05004887 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04004888 if (err) {
4889 drop_inode = 1;
4890 goto out_unlock;
4891 }
4892
Casey Schauflerad19db72011-12-15 10:09:07 -05004893 /*
4894 * If the active LSM wants to access the inode during
4895 * d_instantiate it needs these. Smack checks to see
4896 * if the filesystem supports xattrs by looking at the
4897 * ops vector.
4898 */
4899
4900 inode->i_op = &btrfs_special_inode_operations;
Josef Bacika1b075d2010-11-19 20:36:11 +00004901 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Josef Bacik618e21d2007-07-11 10:18:17 -04004902 if (err)
4903 drop_inode = 1;
4904 else {
Josef Bacik618e21d2007-07-11 10:18:17 -04004905 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04004906 btrfs_update_inode(trans, root, inode);
Al Viro08c422c2011-12-23 07:58:13 -05004907 d_instantiate(dentry, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04004908 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004909out_unlock:
Chris Masond3c2fdc2007-09-17 10:58:06 -04004910 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05004911 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004912 btrfs_btree_balance_dirty(root, nr);
Josef Bacik618e21d2007-07-11 10:18:17 -04004913 if (drop_inode) {
4914 inode_dec_link_count(inode);
4915 iput(inode);
4916 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004917 return err;
4918}
4919
Chris Mason39279cc2007-06-12 06:35:45 -04004920static int btrfs_create(struct inode *dir, struct dentry *dentry,
Al Viro4acdaf22011-07-26 01:42:34 -04004921 umode_t mode, struct nameidata *nd)
Chris Mason39279cc2007-06-12 06:35:45 -04004922{
4923 struct btrfs_trans_handle *trans;
4924 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004925 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004926 int drop_inode = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004927 int err;
Chris Mason1832a6d2007-12-21 16:27:21 -05004928 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004929 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004930 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004931
Josef Bacik9ed74f22009-09-11 16:12:44 -04004932 /*
4933 * 2 for inode item and ref
4934 * 2 for dir items
4935 * 1 for xattr if selinux is on
4936 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004937 trans = btrfs_start_transaction(root, 5);
4938 if (IS_ERR(trans))
4939 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004940
Li Zefan581bb052011-04-20 10:06:11 +08004941 err = btrfs_find_free_ino(root, &objectid);
4942 if (err)
4943 goto out_unlock;
4944
Josef Bacikaec74772008-07-24 12:12:38 -04004945 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08004946 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04004947 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004948 if (IS_ERR(inode)) {
4949 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004950 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004951 }
Chris Mason39279cc2007-06-12 06:35:45 -04004952
Eric Paris2a7dba32011-02-01 11:05:39 -05004953 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04004954 if (err) {
4955 drop_inode = 1;
4956 goto out_unlock;
4957 }
4958
Casey Schauflerad19db72011-12-15 10:09:07 -05004959 /*
4960 * If the active LSM wants to access the inode during
4961 * d_instantiate it needs these. Smack checks to see
4962 * if the filesystem supports xattrs by looking at the
4963 * ops vector.
4964 */
4965 inode->i_fop = &btrfs_file_operations;
4966 inode->i_op = &btrfs_file_inode_operations;
4967
Josef Bacika1b075d2010-11-19 20:36:11 +00004968 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004969 if (err)
4970 drop_inode = 1;
4971 else {
4972 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04004973 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05004974 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Al Viro08c422c2011-12-23 07:58:13 -05004975 d_instantiate(dentry, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004976 }
Chris Mason39279cc2007-06-12 06:35:45 -04004977out_unlock:
Chris Masond3c2fdc2007-09-17 10:58:06 -04004978 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05004979 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004980 if (drop_inode) {
4981 inode_dec_link_count(inode);
4982 iput(inode);
4983 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04004984 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004985 return err;
4986}
4987
4988static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
4989 struct dentry *dentry)
4990{
4991 struct btrfs_trans_handle *trans;
4992 struct btrfs_root *root = BTRFS_I(dir)->root;
4993 struct inode *inode = old_dentry->d_inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004994 u64 index;
Chris Mason1832a6d2007-12-21 16:27:21 -05004995 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004996 int err;
4997 int drop_inode = 0;
4998
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00004999 /* do not allow sys_link's with other subvols of the same device */
5000 if (root->objectid != BTRFS_I(inode)->root->objectid)
Mark Fasheh3ab35642011-03-22 17:20:26 +00005001 return -EXDEV;
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00005002
Al Viroc055e992011-03-04 17:15:18 +00005003 if (inode->i_nlink == ~0U)
5004 return -EMLINK;
Josef Bacik9ed74f22009-09-11 16:12:44 -04005005
Chris Mason3de45862008-11-17 21:02:50 -05005006 err = btrfs_set_inode_index(dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04005007 if (err)
5008 goto fail;
5009
Yan, Zhenga22285a2010-05-16 10:48:46 -04005010 /*
Miao Xie7e6b6462011-02-18 09:21:17 +00005011 * 2 items for inode and inode ref
Yan, Zhenga22285a2010-05-16 10:48:46 -04005012 * 2 items for dir items
Miao Xie7e6b6462011-02-18 09:21:17 +00005013 * 1 item for parent inode
Yan, Zhenga22285a2010-05-16 10:48:46 -04005014 */
Miao Xie7e6b6462011-02-18 09:21:17 +00005015 trans = btrfs_start_transaction(root, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005016 if (IS_ERR(trans)) {
5017 err = PTR_ERR(trans);
5018 goto fail;
5019 }
Chris Mason5f39d392007-10-15 16:14:19 -04005020
Miao Xie31534952011-04-13 13:19:21 +08005021 btrfs_inc_nlink(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04005022 inode_inc_iversion(inode);
Miao Xie31534952011-04-13 13:19:21 +08005023 inode->i_ctime = CURRENT_TIME;
Al Viro7de9c6e2010-10-23 11:11:40 -04005024 ihold(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04005025
Josef Bacika1b075d2010-11-19 20:36:11 +00005026 err = btrfs_add_nondir(trans, dir, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04005027
Yan, Zhenga5719522009-09-24 09:17:31 -04005028 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04005029 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04005030 } else {
Al Viro10d9f302011-07-16 23:09:10 -04005031 struct dentry *parent = dentry->d_parent;
Yan, Zhenga5719522009-09-24 09:17:31 -04005032 err = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005033 if (err)
5034 goto fail;
Al Viro08c422c2011-12-23 07:58:13 -05005035 d_instantiate(dentry, inode);
Josef Bacik6a912212010-11-20 09:48:00 +00005036 btrfs_log_new_name(trans, inode, NULL, parent);
Yan, Zhenga5719522009-09-24 09:17:31 -04005037 }
Chris Mason39279cc2007-06-12 06:35:45 -04005038
Chris Masond3c2fdc2007-09-17 10:58:06 -04005039 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05005040 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05005041fail:
Chris Mason39279cc2007-06-12 06:35:45 -04005042 if (drop_inode) {
5043 inode_dec_link_count(inode);
5044 iput(inode);
5045 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04005046 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04005047 return err;
5048}
5049
Al Viro18bb1db2011-07-26 01:41:39 -04005050static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Chris Mason39279cc2007-06-12 06:35:45 -04005051{
Chris Masonb9d86662008-05-02 16:13:49 -04005052 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04005053 struct btrfs_trans_handle *trans;
5054 struct btrfs_root *root = BTRFS_I(dir)->root;
5055 int err = 0;
5056 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04005057 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005058 u64 index = 0;
Chris Masond3c2fdc2007-09-17 10:58:06 -04005059 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04005060
Josef Bacik9ed74f22009-09-11 16:12:44 -04005061 /*
5062 * 2 items for inode and ref
5063 * 2 items for dir items
5064 * 1 for xattr if selinux is on
5065 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04005066 trans = btrfs_start_transaction(root, 5);
5067 if (IS_ERR(trans))
5068 return PTR_ERR(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04005069
Li Zefan581bb052011-04-20 10:06:11 +08005070 err = btrfs_find_free_ino(root, &objectid);
5071 if (err)
5072 goto out_fail;
5073
Josef Bacikaec74772008-07-24 12:12:38 -04005074 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08005075 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04005076 S_IFDIR | mode, &index);
Chris Mason39279cc2007-06-12 06:35:45 -04005077 if (IS_ERR(inode)) {
5078 err = PTR_ERR(inode);
5079 goto out_fail;
5080 }
Chris Mason5f39d392007-10-15 16:14:19 -04005081
Chris Mason39279cc2007-06-12 06:35:45 -04005082 drop_on_err = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -04005083
Eric Paris2a7dba32011-02-01 11:05:39 -05005084 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04005085 if (err)
5086 goto out_fail;
5087
Chris Mason39279cc2007-06-12 06:35:45 -04005088 inode->i_op = &btrfs_dir_inode_operations;
5089 inode->i_fop = &btrfs_dir_file_operations;
Chris Mason39279cc2007-06-12 06:35:45 -04005090
Chris Masondbe674a2008-07-17 12:54:05 -04005091 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04005092 err = btrfs_update_inode(trans, root, inode);
5093 if (err)
5094 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04005095
Josef Bacika1b075d2010-11-19 20:36:11 +00005096 err = btrfs_add_link(trans, dir, inode, dentry->d_name.name,
5097 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04005098 if (err)
5099 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04005100
Chris Mason39279cc2007-06-12 06:35:45 -04005101 d_instantiate(dentry, inode);
5102 drop_on_err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005103
5104out_fail:
Chris Masond3c2fdc2007-09-17 10:58:06 -04005105 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05005106 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04005107 if (drop_on_err)
5108 iput(inode);
Chris Masond3c2fdc2007-09-17 10:58:06 -04005109 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04005110 return err;
5111}
5112
Chris Masond352ac62008-09-29 15:18:18 -04005113/* helper for btfs_get_extent. Given an existing extent in the tree,
5114 * and an extent that you want to insert, deal with overlap and insert
5115 * the new extent into the tree.
5116 */
Chris Mason3b951512008-04-17 11:29:12 -04005117static int merge_extent_mapping(struct extent_map_tree *em_tree,
5118 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005119 struct extent_map *em,
5120 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04005121{
5122 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04005123
Chris Masone6dcd2d2008-07-17 12:53:50 -04005124 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
5125 start_diff = map_start - em->start;
5126 em->start = map_start;
5127 em->len = map_len;
Chris Masonc8b97812008-10-29 14:49:59 -04005128 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
5129 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04005130 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04005131 em->block_len -= start_diff;
5132 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005133 return add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04005134}
5135
Chris Masonc8b97812008-10-29 14:49:59 -04005136static noinline int uncompress_inline(struct btrfs_path *path,
5137 struct inode *inode, struct page *page,
5138 size_t pg_offset, u64 extent_offset,
5139 struct btrfs_file_extent_item *item)
5140{
5141 int ret;
5142 struct extent_buffer *leaf = path->nodes[0];
5143 char *tmp;
5144 size_t max_size;
5145 unsigned long inline_size;
5146 unsigned long ptr;
Li Zefan261507a02010-12-17 14:21:50 +08005147 int compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04005148
5149 WARN_ON(pg_offset != 0);
Li Zefan261507a02010-12-17 14:21:50 +08005150 compress_type = btrfs_file_extent_compression(leaf, item);
Chris Masonc8b97812008-10-29 14:49:59 -04005151 max_size = btrfs_file_extent_ram_bytes(leaf, item);
5152 inline_size = btrfs_file_extent_inline_item_len(leaf,
5153 btrfs_item_nr(leaf, path->slots[0]));
5154 tmp = kmalloc(inline_size, GFP_NOFS);
Tsutomu Itoh8d413712011-04-25 19:43:52 -04005155 if (!tmp)
5156 return -ENOMEM;
Chris Masonc8b97812008-10-29 14:49:59 -04005157 ptr = btrfs_file_extent_inline_start(item);
5158
5159 read_extent_buffer(leaf, tmp, ptr, inline_size);
5160
Chris Mason5b050f02008-11-11 09:34:41 -05005161 max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size);
Li Zefan261507a02010-12-17 14:21:50 +08005162 ret = btrfs_decompress(compress_type, tmp, page,
5163 extent_offset, inline_size, max_size);
Chris Masonc8b97812008-10-29 14:49:59 -04005164 if (ret) {
Cong Wang7ac687d2011-11-25 23:14:28 +08005165 char *kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04005166 unsigned long copy_size = min_t(u64,
5167 PAGE_CACHE_SIZE - pg_offset,
5168 max_size - extent_offset);
5169 memset(kaddr + pg_offset, 0, copy_size);
Cong Wang7ac687d2011-11-25 23:14:28 +08005170 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -04005171 }
5172 kfree(tmp);
5173 return 0;
5174}
5175
Chris Masond352ac62008-09-29 15:18:18 -04005176/*
5177 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05005178 * the ugly parts come from merging extents from the disk with the in-ram
5179 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04005180 * where the in-ram extents might be locked pending data=ordered completion.
5181 *
5182 * This also copies inline extents directly into the page.
5183 */
Chris Masond3977122009-01-05 21:25:51 -05005184
Chris Masona52d9a82007-08-27 16:49:44 -04005185struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05005186 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04005187 int create)
5188{
5189 int ret;
5190 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04005191 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04005192 u64 extent_start = 0;
5193 u64 extent_end = 0;
Li Zefan33345d012011-04-20 10:31:50 +08005194 u64 objectid = btrfs_ino(inode);
Chris Masona52d9a82007-08-27 16:49:44 -04005195 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04005196 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04005197 struct btrfs_root *root = BTRFS_I(inode)->root;
5198 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04005199 struct extent_buffer *leaf;
5200 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04005201 struct extent_map *em = NULL;
5202 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05005203 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04005204 struct btrfs_trans_handle *trans = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08005205 int compress_type;
Chris Masona52d9a82007-08-27 16:49:44 -04005206
Chris Masona52d9a82007-08-27 16:49:44 -04005207again:
Chris Mason890871b2009-09-02 16:24:52 -04005208 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05005209 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04005210 if (em)
5211 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04005212 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05005213
Chris Masona52d9a82007-08-27 16:49:44 -04005214 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04005215 if (em->start > start || em->start + em->len <= start)
5216 free_extent_map(em);
5217 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05005218 free_extent_map(em);
5219 else
5220 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005221 }
David Sterba172ddd62011-04-21 00:48:27 +02005222 em = alloc_extent_map();
Chris Masona52d9a82007-08-27 16:49:44 -04005223 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05005224 err = -ENOMEM;
5225 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005226 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005227 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05005228 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05005229 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05005230 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04005231 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04005232
5233 if (!path) {
5234 path = btrfs_alloc_path();
Josef Bacik026fd312011-05-13 10:32:11 -04005235 if (!path) {
5236 err = -ENOMEM;
5237 goto out;
5238 }
5239 /*
5240 * Chances are we'll be called again, so go ahead and do
5241 * readahead
5242 */
5243 path->reada = 1;
Chris Masonf4219502008-07-22 11:18:09 -04005244 }
5245
Chris Mason179e29e2007-11-01 11:28:41 -04005246 ret = btrfs_lookup_file_extent(trans, root, path,
5247 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04005248 if (ret < 0) {
5249 err = ret;
5250 goto out;
5251 }
5252
5253 if (ret != 0) {
5254 if (path->slots[0] == 0)
5255 goto not_found;
5256 path->slots[0]--;
5257 }
5258
Chris Mason5f39d392007-10-15 16:14:19 -04005259 leaf = path->nodes[0];
5260 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04005261 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04005262 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04005263 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5264 found_type = btrfs_key_type(&found_key);
5265 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04005266 found_type != BTRFS_EXTENT_DATA_KEY) {
5267 goto not_found;
5268 }
5269
Chris Mason5f39d392007-10-15 16:14:19 -04005270 found_type = btrfs_file_extent_type(leaf, item);
5271 extent_start = found_key.offset;
Li Zefan261507a02010-12-17 14:21:50 +08005272 compress_type = btrfs_file_extent_compression(leaf, item);
Yan Zhengd899e052008-10-30 14:25:28 -04005273 if (found_type == BTRFS_FILE_EXTENT_REG ||
5274 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04005275 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04005276 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04005277 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
5278 size_t size;
5279 size = btrfs_file_extent_inline_len(leaf, item);
5280 extent_end = (extent_start + size + root->sectorsize - 1) &
5281 ~((u64)root->sectorsize - 1);
5282 }
5283
5284 if (start >= extent_end) {
5285 path->slots[0]++;
5286 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
5287 ret = btrfs_next_leaf(root, path);
5288 if (ret < 0) {
5289 err = ret;
5290 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005291 }
Yan Zheng9036c102008-10-30 14:19:41 -04005292 if (ret > 0)
5293 goto not_found;
5294 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04005295 }
Yan Zheng9036c102008-10-30 14:19:41 -04005296 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5297 if (found_key.objectid != objectid ||
5298 found_key.type != BTRFS_EXTENT_DATA_KEY)
5299 goto not_found;
5300 if (start + len <= found_key.offset)
5301 goto not_found;
5302 em->start = start;
5303 em->len = found_key.offset - start;
5304 goto not_found_em;
5305 }
5306
Yan Zhengd899e052008-10-30 14:25:28 -04005307 if (found_type == BTRFS_FILE_EXTENT_REG ||
5308 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng9036c102008-10-30 14:19:41 -04005309 em->start = extent_start;
5310 em->len = extent_end - extent_start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005311 em->orig_start = extent_start -
5312 btrfs_file_extent_offset(leaf, item);
Chris Masondb945352007-10-15 16:15:53 -04005313 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
5314 if (bytenr == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04005315 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04005316 goto insert;
5317 }
Li Zefan261507a02010-12-17 14:21:50 +08005318 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04005319 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08005320 em->compress_type = compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04005321 em->block_start = bytenr;
5322 em->block_len = btrfs_file_extent_disk_num_bytes(leaf,
5323 item);
5324 } else {
5325 bytenr += btrfs_file_extent_offset(leaf, item);
5326 em->block_start = bytenr;
5327 em->block_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04005328 if (found_type == BTRFS_FILE_EXTENT_PREALLOC)
5329 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -04005330 }
Chris Masona52d9a82007-08-27 16:49:44 -04005331 goto insert;
5332 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04005333 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04005334 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04005335 size_t size;
5336 size_t extent_offset;
5337 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04005338
Chris Masona52d9a82007-08-27 16:49:44 -04005339 em->block_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04005340 if (!page || create) {
Yan689f9342007-10-29 11:41:07 -04005341 em->start = extent_start;
Yan Zheng9036c102008-10-30 14:19:41 -04005342 em->len = extent_end - extent_start;
Yan689f9342007-10-29 11:41:07 -04005343 goto out;
5344 }
5345
Yan Zheng9036c102008-10-30 14:19:41 -04005346 size = btrfs_file_extent_inline_len(leaf, item);
5347 extent_offset = page_offset(page) + pg_offset - extent_start;
Chris Mason70dec802008-01-29 09:59:12 -05005348 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04005349 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04005350 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05005351 em->len = (copy_size + root->sectorsize - 1) &
5352 ~((u64)root->sectorsize - 1);
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005353 em->orig_start = EXTENT_MAP_INLINE;
Li Zefan261507a02010-12-17 14:21:50 +08005354 if (compress_type) {
Chris Masonc8b97812008-10-29 14:49:59 -04005355 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08005356 em->compress_type = compress_type;
5357 }
Yan689f9342007-10-29 11:41:07 -04005358 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04005359 if (create == 0 && !PageUptodate(page)) {
Li Zefan261507a02010-12-17 14:21:50 +08005360 if (btrfs_file_extent_compression(leaf, item) !=
5361 BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04005362 ret = uncompress_inline(path, inode, page,
5363 pg_offset,
5364 extent_offset, item);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005365 BUG_ON(ret); /* -ENOMEM */
Chris Masonc8b97812008-10-29 14:49:59 -04005366 } else {
5367 map = kmap(page);
5368 read_extent_buffer(leaf, map + pg_offset, ptr,
5369 copy_size);
Chris Mason93c82d52009-09-11 12:36:29 -04005370 if (pg_offset + copy_size < PAGE_CACHE_SIZE) {
5371 memset(map + pg_offset + copy_size, 0,
5372 PAGE_CACHE_SIZE - pg_offset -
5373 copy_size);
5374 }
Chris Masonc8b97812008-10-29 14:49:59 -04005375 kunmap(page);
5376 }
Chris Mason179e29e2007-11-01 11:28:41 -04005377 flush_dcache_page(page);
5378 } else if (create && PageUptodate(page)) {
Jan Schmidt6bf7e082011-12-01 14:35:19 +01005379 BUG();
Chris Mason179e29e2007-11-01 11:28:41 -04005380 if (!trans) {
5381 kunmap(page);
5382 free_extent_map(em);
5383 em = NULL;
Chris Masonff5714c2011-05-28 07:00:39 -04005384
David Sterbab3b4aa72011-04-21 01:20:15 +02005385 btrfs_release_path(path);
Josef Bacik7a7eaa402011-04-13 12:54:33 -04005386 trans = btrfs_join_transaction(root);
Chris Masonff5714c2011-05-28 07:00:39 -04005387
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005388 if (IS_ERR(trans))
5389 return ERR_CAST(trans);
Chris Mason179e29e2007-11-01 11:28:41 -04005390 goto again;
5391 }
Chris Masonc8b97812008-10-29 14:49:59 -04005392 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05005393 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04005394 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04005395 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04005396 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04005397 }
Chris Masond1310b22008-01-24 16:13:08 -05005398 set_extent_uptodate(io_tree, em->start,
Arne Jansen507903b2011-04-06 10:02:20 +00005399 extent_map_end(em) - 1, NULL, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04005400 goto insert;
5401 } else {
Chris Masond3977122009-01-05 21:25:51 -05005402 printk(KERN_ERR "btrfs unknown found_type %d\n", found_type);
Chris Masona52d9a82007-08-27 16:49:44 -04005403 WARN_ON(1);
5404 }
5405not_found:
5406 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05005407 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04005408not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04005409 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04005410 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04005411insert:
David Sterbab3b4aa72011-04-21 01:20:15 +02005412 btrfs_release_path(path);
Chris Masond1310b22008-01-24 16:13:08 -05005413 if (em->start > start || extent_map_end(em) <= start) {
Chris Masond3977122009-01-05 21:25:51 -05005414 printk(KERN_ERR "Btrfs: bad extent! em: [%llu %llu] passed "
5415 "[%llu %llu]\n", (unsigned long long)em->start,
5416 (unsigned long long)em->len,
5417 (unsigned long long)start,
5418 (unsigned long long)len);
Chris Masona52d9a82007-08-27 16:49:44 -04005419 err = -EIO;
5420 goto out;
5421 }
Chris Masond1310b22008-01-24 16:13:08 -05005422
5423 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04005424 write_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005425 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04005426 /* it is possible that someone inserted the extent into the tree
5427 * while we had the lock dropped. It is also possible that
5428 * an overlapping map exists in the tree
5429 */
Chris Masona52d9a82007-08-27 16:49:44 -04005430 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04005431 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005432
5433 ret = 0;
5434
Chris Mason3b951512008-04-17 11:29:12 -04005435 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04005436 if (existing && (existing->start > start ||
5437 existing->start + existing->len <= start)) {
5438 free_extent_map(existing);
5439 existing = NULL;
5440 }
Chris Mason3b951512008-04-17 11:29:12 -04005441 if (!existing) {
5442 existing = lookup_extent_mapping(em_tree, em->start,
5443 em->len);
5444 if (existing) {
5445 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005446 em, start,
5447 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04005448 free_extent_map(existing);
5449 if (err) {
5450 free_extent_map(em);
5451 em = NULL;
5452 }
5453 } else {
5454 err = -EIO;
Chris Mason3b951512008-04-17 11:29:12 -04005455 free_extent_map(em);
5456 em = NULL;
5457 }
5458 } else {
5459 free_extent_map(em);
5460 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005461 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04005462 }
Chris Masona52d9a82007-08-27 16:49:44 -04005463 }
Chris Mason890871b2009-09-02 16:24:52 -04005464 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005465out:
liubo1abe9b82011-03-24 11:18:59 +00005466
5467 trace_btrfs_get_extent(root, em);
5468
Chris Masonf4219502008-07-22 11:18:09 -04005469 if (path)
5470 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04005471 if (trans) {
5472 ret = btrfs_end_transaction(trans, root);
Chris Masond3977122009-01-05 21:25:51 -05005473 if (!err)
Chris Masona52d9a82007-08-27 16:49:44 -04005474 err = ret;
5475 }
Chris Masona52d9a82007-08-27 16:49:44 -04005476 if (err) {
5477 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04005478 return ERR_PTR(err);
5479 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005480 BUG_ON(!em); /* Error is always set */
Chris Masona52d9a82007-08-27 16:49:44 -04005481 return em;
5482}
5483
Chris Masonec29ed52011-02-23 16:23:20 -05005484struct extent_map *btrfs_get_extent_fiemap(struct inode *inode, struct page *page,
5485 size_t pg_offset, u64 start, u64 len,
5486 int create)
5487{
5488 struct extent_map *em;
5489 struct extent_map *hole_em = NULL;
5490 u64 range_start = start;
5491 u64 end;
5492 u64 found;
5493 u64 found_end;
5494 int err = 0;
5495
5496 em = btrfs_get_extent(inode, page, pg_offset, start, len, create);
5497 if (IS_ERR(em))
5498 return em;
5499 if (em) {
5500 /*
5501 * if our em maps to a hole, there might
5502 * actually be delalloc bytes behind it
5503 */
5504 if (em->block_start != EXTENT_MAP_HOLE)
5505 return em;
5506 else
5507 hole_em = em;
5508 }
5509
5510 /* check to see if we've wrapped (len == -1 or similar) */
5511 end = start + len;
5512 if (end < start)
5513 end = (u64)-1;
5514 else
5515 end -= 1;
5516
5517 em = NULL;
5518
5519 /* ok, we didn't find anything, lets look for delalloc */
5520 found = count_range_bits(&BTRFS_I(inode)->io_tree, &range_start,
5521 end, len, EXTENT_DELALLOC, 1);
5522 found_end = range_start + found;
5523 if (found_end < range_start)
5524 found_end = (u64)-1;
5525
5526 /*
5527 * we didn't find anything useful, return
5528 * the original results from get_extent()
5529 */
5530 if (range_start > end || found_end <= start) {
5531 em = hole_em;
5532 hole_em = NULL;
5533 goto out;
5534 }
5535
5536 /* adjust the range_start to make sure it doesn't
5537 * go backwards from the start they passed in
5538 */
5539 range_start = max(start,range_start);
5540 found = found_end - range_start;
5541
5542 if (found > 0) {
5543 u64 hole_start = start;
5544 u64 hole_len = len;
5545
David Sterba172ddd62011-04-21 00:48:27 +02005546 em = alloc_extent_map();
Chris Masonec29ed52011-02-23 16:23:20 -05005547 if (!em) {
5548 err = -ENOMEM;
5549 goto out;
5550 }
5551 /*
5552 * when btrfs_get_extent can't find anything it
5553 * returns one huge hole
5554 *
5555 * make sure what it found really fits our range, and
5556 * adjust to make sure it is based on the start from
5557 * the caller
5558 */
5559 if (hole_em) {
5560 u64 calc_end = extent_map_end(hole_em);
5561
5562 if (calc_end <= start || (hole_em->start > end)) {
5563 free_extent_map(hole_em);
5564 hole_em = NULL;
5565 } else {
5566 hole_start = max(hole_em->start, start);
5567 hole_len = calc_end - hole_start;
5568 }
5569 }
5570 em->bdev = NULL;
5571 if (hole_em && range_start > hole_start) {
5572 /* our hole starts before our delalloc, so we
5573 * have to return just the parts of the hole
5574 * that go until the delalloc starts
5575 */
5576 em->len = min(hole_len,
5577 range_start - hole_start);
5578 em->start = hole_start;
5579 em->orig_start = hole_start;
5580 /*
5581 * don't adjust block start at all,
5582 * it is fixed at EXTENT_MAP_HOLE
5583 */
5584 em->block_start = hole_em->block_start;
5585 em->block_len = hole_len;
5586 } else {
5587 em->start = range_start;
5588 em->len = found;
5589 em->orig_start = range_start;
5590 em->block_start = EXTENT_MAP_DELALLOC;
5591 em->block_len = found;
5592 }
5593 } else if (hole_em) {
5594 return hole_em;
5595 }
5596out:
5597
5598 free_extent_map(hole_em);
5599 if (err) {
5600 free_extent_map(em);
5601 return ERR_PTR(err);
5602 }
5603 return em;
5604}
5605
Josef Bacik4b46fce2010-05-23 11:00:55 -04005606static struct extent_map *btrfs_new_extent_direct(struct inode *inode,
Josef Bacik16d299a2011-04-06 14:53:07 -04005607 struct extent_map *em,
Josef Bacik4b46fce2010-05-23 11:00:55 -04005608 u64 start, u64 len)
5609{
5610 struct btrfs_root *root = BTRFS_I(inode)->root;
5611 struct btrfs_trans_handle *trans;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005612 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
5613 struct btrfs_key ins;
5614 u64 alloc_hint;
5615 int ret;
Josef Bacik16d299a2011-04-06 14:53:07 -04005616 bool insert = false;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005617
Josef Bacik16d299a2011-04-06 14:53:07 -04005618 /*
5619 * Ok if the extent map we looked up is a hole and is for the exact
5620 * range we want, there is no reason to allocate a new one, however if
5621 * it is not right then we need to free this one and drop the cache for
5622 * our range.
5623 */
5624 if (em->block_start != EXTENT_MAP_HOLE || em->start != start ||
5625 em->len != len) {
5626 free_extent_map(em);
5627 em = NULL;
5628 insert = true;
5629 btrfs_drop_extent_cache(inode, start, start + len - 1, 0);
5630 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005631
Josef Bacik7a7eaa402011-04-13 12:54:33 -04005632 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005633 if (IS_ERR(trans))
5634 return ERR_CAST(trans);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005635
Chris Mason4cb53002011-05-24 15:35:30 -04005636 if (start <= BTRFS_I(inode)->disk_i_size && len < 64 * 1024)
5637 btrfs_add_inode_defrag(trans, inode);
5638
Josef Bacik4b46fce2010-05-23 11:00:55 -04005639 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
5640
5641 alloc_hint = get_extent_allocation_hint(inode, start, len);
5642 ret = btrfs_reserve_extent(trans, root, len, root->sectorsize, 0,
Josef Bacik81c9ad22012-01-18 10:56:06 -05005643 alloc_hint, &ins, 1);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005644 if (ret) {
5645 em = ERR_PTR(ret);
5646 goto out;
5647 }
5648
Josef Bacik4b46fce2010-05-23 11:00:55 -04005649 if (!em) {
David Sterba172ddd62011-04-21 00:48:27 +02005650 em = alloc_extent_map();
Josef Bacik16d299a2011-04-06 14:53:07 -04005651 if (!em) {
5652 em = ERR_PTR(-ENOMEM);
5653 goto out;
5654 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005655 }
5656
5657 em->start = start;
5658 em->orig_start = em->start;
5659 em->len = ins.offset;
5660
5661 em->block_start = ins.objectid;
5662 em->block_len = ins.offset;
5663 em->bdev = root->fs_info->fs_devices->latest_bdev;
Josef Bacik16d299a2011-04-06 14:53:07 -04005664
5665 /*
5666 * We need to do this because if we're using the original em we searched
5667 * for, we could have EXTENT_FLAG_VACANCY set, and we don't want that.
5668 */
5669 em->flags = 0;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005670 set_bit(EXTENT_FLAG_PINNED, &em->flags);
5671
Josef Bacik16d299a2011-04-06 14:53:07 -04005672 while (insert) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04005673 write_lock(&em_tree->lock);
5674 ret = add_extent_mapping(em_tree, em);
5675 write_unlock(&em_tree->lock);
5676 if (ret != -EEXIST)
5677 break;
5678 btrfs_drop_extent_cache(inode, start, start + em->len - 1, 0);
5679 }
5680
5681 ret = btrfs_add_ordered_extent_dio(inode, start, ins.objectid,
5682 ins.offset, ins.offset, 0);
5683 if (ret) {
5684 btrfs_free_reserved_extent(root, ins.objectid, ins.offset);
5685 em = ERR_PTR(ret);
5686 }
5687out:
5688 btrfs_end_transaction(trans, root);
5689 return em;
5690}
5691
Chris Mason46bfbb52010-05-26 11:04:10 -04005692/*
5693 * returns 1 when the nocow is safe, < 1 on error, 0 if the
5694 * block must be cow'd
5695 */
5696static noinline int can_nocow_odirect(struct btrfs_trans_handle *trans,
5697 struct inode *inode, u64 offset, u64 len)
5698{
5699 struct btrfs_path *path;
5700 int ret;
5701 struct extent_buffer *leaf;
5702 struct btrfs_root *root = BTRFS_I(inode)->root;
5703 struct btrfs_file_extent_item *fi;
5704 struct btrfs_key key;
5705 u64 disk_bytenr;
5706 u64 backref_offset;
5707 u64 extent_end;
5708 u64 num_bytes;
5709 int slot;
5710 int found_type;
5711
5712 path = btrfs_alloc_path();
5713 if (!path)
5714 return -ENOMEM;
5715
Li Zefan33345d012011-04-20 10:31:50 +08005716 ret = btrfs_lookup_file_extent(trans, root, path, btrfs_ino(inode),
Chris Mason46bfbb52010-05-26 11:04:10 -04005717 offset, 0);
5718 if (ret < 0)
5719 goto out;
5720
5721 slot = path->slots[0];
5722 if (ret == 1) {
5723 if (slot == 0) {
5724 /* can't find the item, must cow */
5725 ret = 0;
5726 goto out;
5727 }
5728 slot--;
5729 }
5730 ret = 0;
5731 leaf = path->nodes[0];
5732 btrfs_item_key_to_cpu(leaf, &key, slot);
Li Zefan33345d012011-04-20 10:31:50 +08005733 if (key.objectid != btrfs_ino(inode) ||
Chris Mason46bfbb52010-05-26 11:04:10 -04005734 key.type != BTRFS_EXTENT_DATA_KEY) {
5735 /* not our file or wrong item type, must cow */
5736 goto out;
5737 }
5738
5739 if (key.offset > offset) {
5740 /* Wrong offset, must cow */
5741 goto out;
5742 }
5743
5744 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
5745 found_type = btrfs_file_extent_type(leaf, fi);
5746 if (found_type != BTRFS_FILE_EXTENT_REG &&
5747 found_type != BTRFS_FILE_EXTENT_PREALLOC) {
5748 /* not a regular extent, must cow */
5749 goto out;
5750 }
5751 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
5752 backref_offset = btrfs_file_extent_offset(leaf, fi);
5753
5754 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
5755 if (extent_end < offset + len) {
5756 /* extent doesn't include our full range, must cow */
5757 goto out;
5758 }
5759
5760 if (btrfs_extent_readonly(root, disk_bytenr))
5761 goto out;
5762
5763 /*
5764 * look for other files referencing this extent, if we
5765 * find any we must cow
5766 */
Li Zefan33345d012011-04-20 10:31:50 +08005767 if (btrfs_cross_ref_exist(trans, root, btrfs_ino(inode),
Chris Mason46bfbb52010-05-26 11:04:10 -04005768 key.offset - backref_offset, disk_bytenr))
5769 goto out;
5770
5771 /*
5772 * adjust disk_bytenr and num_bytes to cover just the bytes
5773 * in this extent we are about to write. If there
5774 * are any csums in that range we have to cow in order
5775 * to keep the csums correct
5776 */
5777 disk_bytenr += backref_offset;
5778 disk_bytenr += offset - key.offset;
5779 num_bytes = min(offset + len, extent_end) - offset;
5780 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
5781 goto out;
5782 /*
5783 * all of the above have passed, it is safe to overwrite this extent
5784 * without cow
5785 */
5786 ret = 1;
5787out:
5788 btrfs_free_path(path);
5789 return ret;
5790}
5791
Josef Bacik4b46fce2010-05-23 11:00:55 -04005792static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock,
5793 struct buffer_head *bh_result, int create)
5794{
5795 struct extent_map *em;
5796 struct btrfs_root *root = BTRFS_I(inode)->root;
5797 u64 start = iblock << inode->i_blkbits;
5798 u64 len = bh_result->b_size;
Chris Mason46bfbb52010-05-26 11:04:10 -04005799 struct btrfs_trans_handle *trans;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005800
5801 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
5802 if (IS_ERR(em))
5803 return PTR_ERR(em);
5804
5805 /*
5806 * Ok for INLINE and COMPRESSED extents we need to fallback on buffered
5807 * io. INLINE is special, and we could probably kludge it in here, but
5808 * it's still buffered so for safety lets just fall back to the generic
5809 * buffered path.
5810 *
5811 * For COMPRESSED we _have_ to read the entire extent in so we can
5812 * decompress it, so there will be buffering required no matter what we
5813 * do, so go ahead and fallback to buffered.
5814 *
5815 * We return -ENOTBLK because thats what makes DIO go ahead and go back
5816 * to buffered IO. Don't blame me, this is the price we pay for using
5817 * the generic code.
5818 */
5819 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) ||
5820 em->block_start == EXTENT_MAP_INLINE) {
5821 free_extent_map(em);
5822 return -ENOTBLK;
5823 }
5824
5825 /* Just a good old fashioned hole, return */
5826 if (!create && (em->block_start == EXTENT_MAP_HOLE ||
5827 test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
5828 free_extent_map(em);
5829 /* DIO will do one hole at a time, so just unlock a sector */
5830 unlock_extent(&BTRFS_I(inode)->io_tree, start,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01005831 start + root->sectorsize - 1);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005832 return 0;
5833 }
5834
5835 /*
5836 * We don't allocate a new extent in the following cases
5837 *
5838 * 1) The inode is marked as NODATACOW. In this case we'll just use the
5839 * existing extent.
5840 * 2) The extent is marked as PREALLOC. We're good to go here and can
5841 * just use the extent.
5842 *
5843 */
Chris Mason46bfbb52010-05-26 11:04:10 -04005844 if (!create) {
5845 len = em->len - (start - em->start);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005846 goto map;
Chris Mason46bfbb52010-05-26 11:04:10 -04005847 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005848
5849 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
5850 ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
5851 em->block_start != EXTENT_MAP_HOLE)) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04005852 int type;
5853 int ret;
Chris Mason46bfbb52010-05-26 11:04:10 -04005854 u64 block_start;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005855
5856 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
5857 type = BTRFS_ORDERED_PREALLOC;
5858 else
5859 type = BTRFS_ORDERED_NOCOW;
Chris Mason46bfbb52010-05-26 11:04:10 -04005860 len = min(len, em->len - (start - em->start));
Josef Bacik4b46fce2010-05-23 11:00:55 -04005861 block_start = em->block_start + (start - em->start);
Chris Mason46bfbb52010-05-26 11:04:10 -04005862
5863 /*
5864 * we're not going to log anything, but we do need
5865 * to make sure the current transaction stays open
5866 * while we look for nocow cross refs
5867 */
Josef Bacik7a7eaa402011-04-13 12:54:33 -04005868 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005869 if (IS_ERR(trans))
Chris Mason46bfbb52010-05-26 11:04:10 -04005870 goto must_cow;
5871
5872 if (can_nocow_odirect(trans, inode, start, len) == 1) {
5873 ret = btrfs_add_ordered_extent_dio(inode, start,
5874 block_start, len, len, type);
5875 btrfs_end_transaction(trans, root);
5876 if (ret) {
5877 free_extent_map(em);
5878 return ret;
5879 }
5880 goto unlock;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005881 }
Chris Mason46bfbb52010-05-26 11:04:10 -04005882 btrfs_end_transaction(trans, root);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005883 }
Chris Mason46bfbb52010-05-26 11:04:10 -04005884must_cow:
5885 /*
5886 * this will cow the extent, reset the len in case we changed
5887 * it above
5888 */
5889 len = bh_result->b_size;
Josef Bacik16d299a2011-04-06 14:53:07 -04005890 em = btrfs_new_extent_direct(inode, em, start, len);
Chris Mason46bfbb52010-05-26 11:04:10 -04005891 if (IS_ERR(em))
5892 return PTR_ERR(em);
5893 len = min(len, em->len - (start - em->start));
5894unlock:
Chris Mason4845e442010-05-25 20:56:50 -04005895 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, start + len - 1,
5896 EXTENT_LOCKED | EXTENT_DELALLOC | EXTENT_DIRTY, 1,
5897 0, NULL, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005898map:
5899 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
5900 inode->i_blkbits;
Chris Mason46bfbb52010-05-26 11:04:10 -04005901 bh_result->b_size = len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005902 bh_result->b_bdev = em->bdev;
5903 set_buffer_mapped(bh_result);
5904 if (create && !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
5905 set_buffer_new(bh_result);
5906
5907 free_extent_map(em);
5908
5909 return 0;
5910}
5911
5912struct btrfs_dio_private {
5913 struct inode *inode;
5914 u64 logical_offset;
5915 u64 disk_bytenr;
5916 u64 bytes;
5917 u32 *csums;
5918 void *private;
Miao Xiee65e1532010-11-22 03:04:43 +00005919
5920 /* number of bios pending for this dio */
5921 atomic_t pending_bios;
5922
5923 /* IO errors */
5924 int errors;
5925
5926 struct bio *orig_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005927};
5928
5929static void btrfs_endio_direct_read(struct bio *bio, int err)
5930{
Miao Xiee65e1532010-11-22 03:04:43 +00005931 struct btrfs_dio_private *dip = bio->bi_private;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005932 struct bio_vec *bvec_end = bio->bi_io_vec + bio->bi_vcnt - 1;
5933 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005934 struct inode *inode = dip->inode;
5935 struct btrfs_root *root = BTRFS_I(inode)->root;
5936 u64 start;
5937 u32 *private = dip->csums;
5938
5939 start = dip->logical_offset;
5940 do {
5941 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)) {
5942 struct page *page = bvec->bv_page;
5943 char *kaddr;
5944 u32 csum = ~(u32)0;
5945 unsigned long flags;
5946
5947 local_irq_save(flags);
Cong Wang7ac687d2011-11-25 23:14:28 +08005948 kaddr = kmap_atomic(page);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005949 csum = btrfs_csum_data(root, kaddr + bvec->bv_offset,
5950 csum, bvec->bv_len);
5951 btrfs_csum_final(csum, (char *)&csum);
Cong Wang7ac687d2011-11-25 23:14:28 +08005952 kunmap_atomic(kaddr);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005953 local_irq_restore(flags);
5954
5955 flush_dcache_page(bvec->bv_page);
5956 if (csum != *private) {
Li Zefan33345d012011-04-20 10:31:50 +08005957 printk(KERN_ERR "btrfs csum failed ino %llu off"
Josef Bacik4b46fce2010-05-23 11:00:55 -04005958 " %llu csum %u private %u\n",
Li Zefan33345d012011-04-20 10:31:50 +08005959 (unsigned long long)btrfs_ino(inode),
5960 (unsigned long long)start,
Josef Bacik4b46fce2010-05-23 11:00:55 -04005961 csum, *private);
5962 err = -EIO;
5963 }
5964 }
5965
5966 start += bvec->bv_len;
5967 private++;
5968 bvec++;
5969 } while (bvec <= bvec_end);
5970
5971 unlock_extent(&BTRFS_I(inode)->io_tree, dip->logical_offset,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01005972 dip->logical_offset + dip->bytes - 1);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005973 bio->bi_private = dip->private;
5974
5975 kfree(dip->csums);
5976 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04005977
5978 /* If we had a csum failure make sure to clear the uptodate flag */
5979 if (err)
5980 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005981 dio_end_io(bio, err);
5982}
5983
5984static void btrfs_endio_direct_write(struct bio *bio, int err)
5985{
5986 struct btrfs_dio_private *dip = bio->bi_private;
5987 struct inode *inode = dip->inode;
5988 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005989 struct btrfs_ordered_extent *ordered = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05005990 u64 ordered_offset = dip->logical_offset;
5991 u64 ordered_bytes = dip->bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005992 int ret;
5993
5994 if (err)
5995 goto out_done;
Chris Mason163cf092010-11-28 19:56:33 -05005996again:
5997 ret = btrfs_dec_test_first_ordered_pending(inode, &ordered,
5998 &ordered_offset,
Josef Bacik5fd02042012-05-02 14:00:54 -04005999 ordered_bytes, !err);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006000 if (!ret)
Chris Mason163cf092010-11-28 19:56:33 -05006001 goto out_test;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006002
Josef Bacik5fd02042012-05-02 14:00:54 -04006003 ordered->work.func = finish_ordered_fn;
6004 ordered->work.flags = 0;
6005 btrfs_queue_worker(&root->fs_info->endio_write_workers,
6006 &ordered->work);
Chris Mason163cf092010-11-28 19:56:33 -05006007out_test:
6008 /*
6009 * our bio might span multiple ordered extents. If we haven't
6010 * completed the accounting for the whole dio, go back and try again
6011 */
6012 if (ordered_offset < dip->logical_offset + dip->bytes) {
6013 ordered_bytes = dip->logical_offset + dip->bytes -
6014 ordered_offset;
Josef Bacik5fd02042012-05-02 14:00:54 -04006015 ordered = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05006016 goto again;
6017 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04006018out_done:
6019 bio->bi_private = dip->private;
6020
Josef Bacik4b46fce2010-05-23 11:00:55 -04006021 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04006022
6023 /* If we had an error make sure to clear the uptodate flag */
6024 if (err)
6025 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006026 dio_end_io(bio, err);
6027}
6028
Chris Masoneaf25d92010-05-25 09:48:28 -04006029static int __btrfs_submit_bio_start_direct_io(struct inode *inode, int rw,
6030 struct bio *bio, int mirror_num,
6031 unsigned long bio_flags, u64 offset)
6032{
6033 int ret;
6034 struct btrfs_root *root = BTRFS_I(inode)->root;
6035 ret = btrfs_csum_one_bio(root, inode, bio, offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006036 BUG_ON(ret); /* -ENOMEM */
Chris Masoneaf25d92010-05-25 09:48:28 -04006037 return 0;
6038}
6039
Miao Xiee65e1532010-11-22 03:04:43 +00006040static void btrfs_end_dio_bio(struct bio *bio, int err)
6041{
6042 struct btrfs_dio_private *dip = bio->bi_private;
6043
6044 if (err) {
Li Zefan33345d012011-04-20 10:31:50 +08006045 printk(KERN_ERR "btrfs direct IO failed ino %llu rw %lu "
Jan Beulich3dd14622010-12-07 14:54:09 +00006046 "sector %#Lx len %u err no %d\n",
Li Zefan33345d012011-04-20 10:31:50 +08006047 (unsigned long long)btrfs_ino(dip->inode), bio->bi_rw,
Jan Beulich3dd14622010-12-07 14:54:09 +00006048 (unsigned long long)bio->bi_sector, bio->bi_size, err);
Miao Xiee65e1532010-11-22 03:04:43 +00006049 dip->errors = 1;
6050
6051 /*
6052 * before atomic variable goto zero, we must make sure
6053 * dip->errors is perceived to be set.
6054 */
6055 smp_mb__before_atomic_dec();
6056 }
6057
6058 /* if there are more bios still pending for this dio, just exit */
6059 if (!atomic_dec_and_test(&dip->pending_bios))
6060 goto out;
6061
6062 if (dip->errors)
6063 bio_io_error(dip->orig_bio);
6064 else {
6065 set_bit(BIO_UPTODATE, &dip->orig_bio->bi_flags);
6066 bio_endio(dip->orig_bio, 0);
6067 }
6068out:
6069 bio_put(bio);
6070}
6071
6072static struct bio *btrfs_dio_bio_alloc(struct block_device *bdev,
6073 u64 first_sector, gfp_t gfp_flags)
6074{
6075 int nr_vecs = bio_get_nr_vecs(bdev);
6076 return btrfs_bio_alloc(bdev, first_sector, nr_vecs, gfp_flags);
6077}
6078
6079static inline int __btrfs_submit_dio_bio(struct bio *bio, struct inode *inode,
6080 int rw, u64 file_offset, int skip_sum,
Josef Bacik1ae39932011-04-06 14:41:34 -04006081 u32 *csums, int async_submit)
Miao Xiee65e1532010-11-22 03:04:43 +00006082{
6083 int write = rw & REQ_WRITE;
6084 struct btrfs_root *root = BTRFS_I(inode)->root;
6085 int ret;
6086
6087 bio_get(bio);
Josef Bacik5fd02042012-05-02 14:00:54 -04006088
6089 if (!write) {
6090 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
6091 if (ret)
6092 goto err;
6093 }
Miao Xiee65e1532010-11-22 03:04:43 +00006094
Josef Bacik1ae39932011-04-06 14:41:34 -04006095 if (skip_sum)
6096 goto map;
6097
6098 if (write && async_submit) {
Miao Xiee65e1532010-11-22 03:04:43 +00006099 ret = btrfs_wq_submit_bio(root->fs_info,
6100 inode, rw, bio, 0, 0,
6101 file_offset,
6102 __btrfs_submit_bio_start_direct_io,
6103 __btrfs_submit_bio_done);
6104 goto err;
Josef Bacik1ae39932011-04-06 14:41:34 -04006105 } else if (write) {
6106 /*
6107 * If we aren't doing async submit, calculate the csum of the
6108 * bio now.
6109 */
6110 ret = btrfs_csum_one_bio(root, inode, bio, file_offset, 1);
6111 if (ret)
6112 goto err;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00006113 } else if (!skip_sum) {
6114 ret = btrfs_lookup_bio_sums_dio(root, inode, bio,
Miao Xiee65e1532010-11-22 03:04:43 +00006115 file_offset, csums);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00006116 if (ret)
6117 goto err;
6118 }
Miao Xiee65e1532010-11-22 03:04:43 +00006119
Josef Bacik1ae39932011-04-06 14:41:34 -04006120map:
6121 ret = btrfs_map_bio(root, rw, bio, 0, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00006122err:
6123 bio_put(bio);
6124 return ret;
6125}
6126
6127static int btrfs_submit_direct_hook(int rw, struct btrfs_dio_private *dip,
6128 int skip_sum)
6129{
6130 struct inode *inode = dip->inode;
6131 struct btrfs_root *root = BTRFS_I(inode)->root;
6132 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
6133 struct bio *bio;
6134 struct bio *orig_bio = dip->orig_bio;
6135 struct bio_vec *bvec = orig_bio->bi_io_vec;
6136 u64 start_sector = orig_bio->bi_sector;
6137 u64 file_offset = dip->logical_offset;
6138 u64 submit_len = 0;
6139 u64 map_length;
6140 int nr_pages = 0;
6141 u32 *csums = dip->csums;
6142 int ret = 0;
Josef Bacik1ae39932011-04-06 14:41:34 -04006143 int async_submit = 0;
Josef Bacik98bc3142011-03-22 11:00:46 -04006144 int write = rw & REQ_WRITE;
Miao Xiee65e1532010-11-22 03:04:43 +00006145
Miao Xiee65e1532010-11-22 03:04:43 +00006146 map_length = orig_bio->bi_size;
6147 ret = btrfs_map_block(map_tree, READ, start_sector << 9,
6148 &map_length, NULL, 0);
6149 if (ret) {
Josef Bacik64728bb2011-04-25 19:43:52 -04006150 bio_put(orig_bio);
Miao Xiee65e1532010-11-22 03:04:43 +00006151 return -EIO;
6152 }
6153
Josef Bacik02f57c72011-04-06 14:25:44 -04006154 if (map_length >= orig_bio->bi_size) {
6155 bio = orig_bio;
6156 goto submit;
6157 }
6158
Josef Bacik1ae39932011-04-06 14:41:34 -04006159 async_submit = 1;
Josef Bacik02f57c72011-04-06 14:25:44 -04006160 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev, start_sector, GFP_NOFS);
6161 if (!bio)
6162 return -ENOMEM;
6163 bio->bi_private = dip;
6164 bio->bi_end_io = btrfs_end_dio_bio;
6165 atomic_inc(&dip->pending_bios);
6166
Miao Xiee65e1532010-11-22 03:04:43 +00006167 while (bvec <= (orig_bio->bi_io_vec + orig_bio->bi_vcnt - 1)) {
6168 if (unlikely(map_length < submit_len + bvec->bv_len ||
6169 bio_add_page(bio, bvec->bv_page, bvec->bv_len,
6170 bvec->bv_offset) < bvec->bv_len)) {
6171 /*
6172 * inc the count before we submit the bio so
6173 * we know the end IO handler won't happen before
6174 * we inc the count. Otherwise, the dip might get freed
6175 * before we're done setting it up
6176 */
6177 atomic_inc(&dip->pending_bios);
6178 ret = __btrfs_submit_dio_bio(bio, inode, rw,
6179 file_offset, skip_sum,
Josef Bacik1ae39932011-04-06 14:41:34 -04006180 csums, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00006181 if (ret) {
6182 bio_put(bio);
6183 atomic_dec(&dip->pending_bios);
6184 goto out_err;
6185 }
6186
Josef Bacik98bc3142011-03-22 11:00:46 -04006187 /* Write's use the ordered csums */
6188 if (!write && !skip_sum)
Miao Xiee65e1532010-11-22 03:04:43 +00006189 csums = csums + nr_pages;
6190 start_sector += submit_len >> 9;
6191 file_offset += submit_len;
6192
6193 submit_len = 0;
6194 nr_pages = 0;
6195
6196 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev,
6197 start_sector, GFP_NOFS);
6198 if (!bio)
6199 goto out_err;
6200 bio->bi_private = dip;
6201 bio->bi_end_io = btrfs_end_dio_bio;
6202
6203 map_length = orig_bio->bi_size;
6204 ret = btrfs_map_block(map_tree, READ, start_sector << 9,
6205 &map_length, NULL, 0);
6206 if (ret) {
6207 bio_put(bio);
6208 goto out_err;
6209 }
6210 } else {
6211 submit_len += bvec->bv_len;
6212 nr_pages ++;
6213 bvec++;
6214 }
6215 }
6216
Josef Bacik02f57c72011-04-06 14:25:44 -04006217submit:
Miao Xiee65e1532010-11-22 03:04:43 +00006218 ret = __btrfs_submit_dio_bio(bio, inode, rw, file_offset, skip_sum,
Josef Bacik1ae39932011-04-06 14:41:34 -04006219 csums, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00006220 if (!ret)
6221 return 0;
6222
6223 bio_put(bio);
6224out_err:
6225 dip->errors = 1;
6226 /*
6227 * before atomic variable goto zero, we must
6228 * make sure dip->errors is perceived to be set.
6229 */
6230 smp_mb__before_atomic_dec();
6231 if (atomic_dec_and_test(&dip->pending_bios))
6232 bio_io_error(dip->orig_bio);
6233
6234 /* bio_end_io() will handle error, so we needn't return it */
6235 return 0;
6236}
6237
Josef Bacik4b46fce2010-05-23 11:00:55 -04006238static void btrfs_submit_direct(int rw, struct bio *bio, struct inode *inode,
6239 loff_t file_offset)
6240{
6241 struct btrfs_root *root = BTRFS_I(inode)->root;
6242 struct btrfs_dio_private *dip;
6243 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006244 int skip_sum;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02006245 int write = rw & REQ_WRITE;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006246 int ret = 0;
6247
6248 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
6249
6250 dip = kmalloc(sizeof(*dip), GFP_NOFS);
6251 if (!dip) {
6252 ret = -ENOMEM;
6253 goto free_ordered;
6254 }
6255 dip->csums = NULL;
6256
Josef Bacik98bc3142011-03-22 11:00:46 -04006257 /* Write's use the ordered csum stuff, so we don't need dip->csums */
6258 if (!write && !skip_sum) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04006259 dip->csums = kmalloc(sizeof(u32) * bio->bi_vcnt, GFP_NOFS);
6260 if (!dip->csums) {
Daniel J Bluemanb4966b72011-03-09 16:46:42 +00006261 kfree(dip);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006262 ret = -ENOMEM;
6263 goto free_ordered;
6264 }
6265 }
6266
6267 dip->private = bio->bi_private;
6268 dip->inode = inode;
6269 dip->logical_offset = file_offset;
6270
Josef Bacik4b46fce2010-05-23 11:00:55 -04006271 dip->bytes = 0;
6272 do {
6273 dip->bytes += bvec->bv_len;
6274 bvec++;
6275 } while (bvec <= (bio->bi_io_vec + bio->bi_vcnt - 1));
6276
Chris Mason46bfbb52010-05-26 11:04:10 -04006277 dip->disk_bytenr = (u64)bio->bi_sector << 9;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006278 bio->bi_private = dip;
Miao Xiee65e1532010-11-22 03:04:43 +00006279 dip->errors = 0;
6280 dip->orig_bio = bio;
6281 atomic_set(&dip->pending_bios, 0);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006282
6283 if (write)
6284 bio->bi_end_io = btrfs_endio_direct_write;
6285 else
6286 bio->bi_end_io = btrfs_endio_direct_read;
6287
Miao Xiee65e1532010-11-22 03:04:43 +00006288 ret = btrfs_submit_direct_hook(rw, dip, skip_sum);
6289 if (!ret)
Chris Masoneaf25d92010-05-25 09:48:28 -04006290 return;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006291free_ordered:
6292 /*
6293 * If this is a write, we need to clean up the reserved space and kill
6294 * the ordered extent.
6295 */
6296 if (write) {
6297 struct btrfs_ordered_extent *ordered;
Josef Bacik955256f2010-11-19 09:41:10 -05006298 ordered = btrfs_lookup_ordered_extent(inode, file_offset);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006299 if (!test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags) &&
6300 !test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags))
6301 btrfs_free_reserved_extent(root, ordered->start,
6302 ordered->disk_len);
6303 btrfs_put_ordered_extent(ordered);
6304 btrfs_put_ordered_extent(ordered);
6305 }
6306 bio_endio(bio, ret);
6307}
6308
Chris Mason5a5f79b2010-05-26 21:33:37 -04006309static ssize_t check_direct_IO(struct btrfs_root *root, int rw, struct kiocb *iocb,
6310 const struct iovec *iov, loff_t offset,
6311 unsigned long nr_segs)
6312{
6313 int seg;
Josef Bacika1b75f72011-04-08 15:51:18 +00006314 int i;
Chris Mason5a5f79b2010-05-26 21:33:37 -04006315 size_t size;
6316 unsigned long addr;
6317 unsigned blocksize_mask = root->sectorsize - 1;
6318 ssize_t retval = -EINVAL;
6319 loff_t end = offset;
6320
6321 if (offset & blocksize_mask)
6322 goto out;
6323
6324 /* Check the memory alignment. Blocks cannot straddle pages */
6325 for (seg = 0; seg < nr_segs; seg++) {
6326 addr = (unsigned long)iov[seg].iov_base;
6327 size = iov[seg].iov_len;
6328 end += size;
Josef Bacika1b75f72011-04-08 15:51:18 +00006329 if ((addr & blocksize_mask) || (size & blocksize_mask))
Chris Mason5a5f79b2010-05-26 21:33:37 -04006330 goto out;
Josef Bacika1b75f72011-04-08 15:51:18 +00006331
6332 /* If this is a write we don't need to check anymore */
6333 if (rw & WRITE)
6334 continue;
6335
6336 /*
6337 * Check to make sure we don't have duplicate iov_base's in this
6338 * iovec, if so return EINVAL, otherwise we'll get csum errors
6339 * when reading back.
6340 */
6341 for (i = seg + 1; i < nr_segs; i++) {
6342 if (iov[seg].iov_base == iov[i].iov_base)
6343 goto out;
6344 }
Chris Mason5a5f79b2010-05-26 21:33:37 -04006345 }
6346 retval = 0;
6347out:
6348 return retval;
6349}
Chris Mason16432982008-04-10 10:23:21 -04006350static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
6351 const struct iovec *iov, loff_t offset,
6352 unsigned long nr_segs)
6353{
Josef Bacik4b46fce2010-05-23 11:00:55 -04006354 struct file *file = iocb->ki_filp;
6355 struct inode *inode = file->f_mapping->host;
6356 struct btrfs_ordered_extent *ordered;
Chris Mason4845e442010-05-25 20:56:50 -04006357 struct extent_state *cached_state = NULL;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006358 u64 lockstart, lockend;
6359 ssize_t ret;
Chris Mason4845e442010-05-25 20:56:50 -04006360 int writing = rw & WRITE;
6361 int write_bits = 0;
Chris Mason3f7c5792010-05-26 10:59:53 -04006362 size_t count = iov_length(iov, nr_segs);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006363
Chris Mason5a5f79b2010-05-26 21:33:37 -04006364 if (check_direct_IO(BTRFS_I(inode)->root, rw, iocb, iov,
6365 offset, nr_segs)) {
6366 return 0;
6367 }
6368
Josef Bacik4b46fce2010-05-23 11:00:55 -04006369 lockstart = offset;
Chris Mason3f7c5792010-05-26 10:59:53 -04006370 lockend = offset + count - 1;
6371
6372 if (writing) {
6373 ret = btrfs_delalloc_reserve_space(inode, count);
6374 if (ret)
6375 goto out;
6376 }
Chris Mason4845e442010-05-25 20:56:50 -04006377
Josef Bacik4b46fce2010-05-23 11:00:55 -04006378 while (1) {
Chris Mason4845e442010-05-25 20:56:50 -04006379 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006380 0, &cached_state);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006381 /*
6382 * We're concerned with the entire range that we're going to be
6383 * doing DIO to, so we need to make sure theres no ordered
6384 * extents in this range.
6385 */
6386 ordered = btrfs_lookup_ordered_range(inode, lockstart,
6387 lockend - lockstart + 1);
6388 if (!ordered)
6389 break;
Chris Mason4845e442010-05-25 20:56:50 -04006390 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6391 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006392 btrfs_start_ordered_extent(inode, ordered, 1);
6393 btrfs_put_ordered_extent(ordered);
6394 cond_resched();
6395 }
6396
Chris Mason4845e442010-05-25 20:56:50 -04006397 /*
6398 * we don't use btrfs_set_extent_delalloc because we don't want
6399 * the dirty or uptodate bits
6400 */
6401 if (writing) {
6402 write_bits = EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING;
6403 ret = set_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01006404 EXTENT_DELALLOC, NULL, &cached_state,
Chris Mason4845e442010-05-25 20:56:50 -04006405 GFP_NOFS);
6406 if (ret) {
6407 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
6408 lockend, EXTENT_LOCKED | write_bits,
6409 1, 0, &cached_state, GFP_NOFS);
6410 goto out;
6411 }
6412 }
6413
6414 free_extent_state(cached_state);
6415 cached_state = NULL;
6416
Chris Mason5a5f79b2010-05-26 21:33:37 -04006417 ret = __blockdev_direct_IO(rw, iocb, inode,
6418 BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev,
6419 iov, offset, nr_segs, btrfs_get_blocks_direct, NULL,
6420 btrfs_submit_direct, 0);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006421
6422 if (ret < 0 && ret != -EIOCBQUEUED) {
Chris Mason4845e442010-05-25 20:56:50 -04006423 clear_extent_bit(&BTRFS_I(inode)->io_tree, offset,
6424 offset + iov_length(iov, nr_segs) - 1,
6425 EXTENT_LOCKED | write_bits, 1, 0,
6426 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006427 } else if (ret >= 0 && ret < iov_length(iov, nr_segs)) {
6428 /*
6429 * We're falling back to buffered, unlock the section we didn't
6430 * do IO on.
6431 */
Chris Mason4845e442010-05-25 20:56:50 -04006432 clear_extent_bit(&BTRFS_I(inode)->io_tree, offset + ret,
6433 offset + iov_length(iov, nr_segs) - 1,
6434 EXTENT_LOCKED | write_bits, 1, 0,
6435 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006436 }
Chris Mason4845e442010-05-25 20:56:50 -04006437out:
6438 free_extent_state(cached_state);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006439 return ret;
Chris Mason16432982008-04-10 10:23:21 -04006440}
6441
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006442static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
6443 __u64 start, __u64 len)
6444{
Chris Masonec29ed52011-02-23 16:23:20 -05006445 return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent_fiemap);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006446}
6447
Chris Mason9ebefb182007-06-15 13:50:00 -04006448int btrfs_readpage(struct file *file, struct page *page)
6449{
Chris Masond1310b22008-01-24 16:13:08 -05006450 struct extent_io_tree *tree;
6451 tree = &BTRFS_I(page->mapping->host)->io_tree;
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02006452 return extent_read_full_page(tree, page, btrfs_get_extent, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04006453}
Chris Mason1832a6d2007-12-21 16:27:21 -05006454
Chris Mason39279cc2007-06-12 06:35:45 -04006455static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
6456{
Chris Masond1310b22008-01-24 16:13:08 -05006457 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04006458
6459
6460 if (current->flags & PF_MEMALLOC) {
6461 redirty_page_for_writepage(wbc, page);
6462 unlock_page(page);
6463 return 0;
6464 }
Chris Masond1310b22008-01-24 16:13:08 -05006465 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04006466 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
6467}
Chris Mason39279cc2007-06-12 06:35:45 -04006468
Chris Masonf4219502008-07-22 11:18:09 -04006469int btrfs_writepages(struct address_space *mapping,
6470 struct writeback_control *wbc)
Chris Masonb293f022007-11-01 19:45:34 -04006471{
Chris Masond1310b22008-01-24 16:13:08 -05006472 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05006473
Chris Masond1310b22008-01-24 16:13:08 -05006474 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04006475 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
6476}
6477
Chris Mason3ab2fb52007-11-08 10:59:22 -05006478static int
6479btrfs_readpages(struct file *file, struct address_space *mapping,
6480 struct list_head *pages, unsigned nr_pages)
6481{
Chris Masond1310b22008-01-24 16:13:08 -05006482 struct extent_io_tree *tree;
6483 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05006484 return extent_readpages(tree, mapping, pages, nr_pages,
6485 btrfs_get_extent);
6486}
Chris Masone6dcd2d2008-07-17 12:53:50 -04006487static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04006488{
Chris Masond1310b22008-01-24 16:13:08 -05006489 struct extent_io_tree *tree;
6490 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04006491 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006492
Chris Masond1310b22008-01-24 16:13:08 -05006493 tree = &BTRFS_I(page->mapping->host)->io_tree;
6494 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05006495 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04006496 if (ret == 1) {
6497 ClearPagePrivate(page);
6498 set_page_private(page, 0);
6499 page_cache_release(page);
6500 }
6501 return ret;
6502}
Chris Mason39279cc2007-06-12 06:35:45 -04006503
Chris Masone6dcd2d2008-07-17 12:53:50 -04006504static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
6505{
Chris Mason98509cf2008-09-11 15:51:43 -04006506 if (PageWriteback(page) || PageDirty(page))
6507 return 0;
Yan Zhengb335b002009-02-12 10:06:04 -05006508 return __btrfs_releasepage(page, gfp_flags & GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006509}
6510
Chris Masona52d9a82007-08-27 16:49:44 -04006511static void btrfs_invalidatepage(struct page *page, unsigned long offset)
6512{
Josef Bacik5fd02042012-05-02 14:00:54 -04006513 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05006514 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006515 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006516 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006517 u64 page_start = page_offset(page);
6518 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006519
Chris Mason8b62b722009-09-02 16:53:46 -04006520 /*
6521 * we have the page locked, so new writeback can't start,
6522 * and the dirty bit won't be cleared while we are here.
6523 *
6524 * Wait for IO on this page so that we can safely clear
6525 * the PagePrivate2 bit and do ordered accounting
6526 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006527 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04006528
Josef Bacik5fd02042012-05-02 14:00:54 -04006529 tree = &BTRFS_I(inode)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006530 if (offset) {
6531 btrfs_releasepage(page, GFP_NOFS);
6532 return;
6533 }
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006534 lock_extent_bits(tree, page_start, page_end, 0, &cached_state);
Josef Bacik5fd02042012-05-02 14:00:54 -04006535 ordered = btrfs_lookup_ordered_extent(inode,
Chris Masone6dcd2d2008-07-17 12:53:50 -04006536 page_offset(page));
6537 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04006538 /*
6539 * IO on this page will never be started, so we need
6540 * to account for any ordered extents now
6541 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006542 clear_extent_bit(tree, page_start, page_end,
6543 EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik32c00af2009-10-08 13:34:05 -04006544 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING, 1, 0,
Josef Bacik2ac55d42010-02-03 19:33:23 +00006545 &cached_state, GFP_NOFS);
Chris Mason8b62b722009-09-02 16:53:46 -04006546 /*
6547 * whoever cleared the private bit is responsible
6548 * for the finish_ordered_io
6549 */
Josef Bacik5fd02042012-05-02 14:00:54 -04006550 if (TestClearPagePrivate2(page) &&
6551 btrfs_dec_test_ordered_pending(inode, &ordered, page_start,
6552 PAGE_CACHE_SIZE, 1)) {
6553 btrfs_finish_ordered_io(ordered);
Chris Mason8b62b722009-09-02 16:53:46 -04006554 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006555 btrfs_put_ordered_extent(ordered);
Josef Bacik2ac55d42010-02-03 19:33:23 +00006556 cached_state = NULL;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006557 lock_extent_bits(tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006558 }
6559 clear_extent_bit(tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04006560 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik2ac55d42010-02-03 19:33:23 +00006561 EXTENT_DO_ACCOUNTING, 1, 1, &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006562 __btrfs_releasepage(page, GFP_NOFS);
6563
Chris Mason4a096752008-07-21 10:29:44 -04006564 ClearPageChecked(page);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04006565 if (PagePrivate(page)) {
Chris Mason9ad6b7b2008-04-18 16:11:30 -04006566 ClearPagePrivate(page);
6567 set_page_private(page, 0);
6568 page_cache_release(page);
6569 }
Chris Mason39279cc2007-06-12 06:35:45 -04006570}
6571
Chris Mason9ebefb182007-06-15 13:50:00 -04006572/*
6573 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
6574 * called from a page fault handler when a page is first dirtied. Hence we must
6575 * be careful to check for EOF conditions here. We set the page up correctly
6576 * for a written page which means we get ENOSPC checking when writing into
6577 * holes and correct delalloc and unwritten extent mapping on filesystems that
6578 * support these features.
6579 *
6580 * We are not allowed to take the i_mutex here so we have to play games to
6581 * protect against truncate races as the page could now be beyond EOF. Because
6582 * vmtruncate() writes the inode size before removing pages, once we have the
6583 * page lock we can determine safely if the page is beyond EOF. If it is not
6584 * beyond EOF, then the page is guaranteed safe against truncation until we
6585 * unlock the page.
6586 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07006587int btrfs_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04006588{
Nick Pigginc2ec1752009-03-31 15:23:21 -07006589 struct page *page = vmf->page;
Chris Mason6da6aba2007-12-18 16:15:09 -05006590 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05006591 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006592 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
6593 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006594 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006595 char *kaddr;
6596 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04006597 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05006598 int ret;
Chris Mason9998eb72012-01-25 13:47:40 -05006599 int reserved = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04006600 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006601 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04006602
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006603 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Chris Mason9998eb72012-01-25 13:47:40 -05006604 if (!ret) {
Josef Bacik22c44fe2011-11-30 10:45:38 -05006605 ret = btrfs_update_time(vma->vm_file);
Chris Mason9998eb72012-01-25 13:47:40 -05006606 reserved = 1;
6607 }
Nick Piggin56a76f82009-03-31 15:23:23 -07006608 if (ret) {
6609 if (ret == -ENOMEM)
6610 ret = VM_FAULT_OOM;
6611 else /* -ENOSPC, -EIO, etc */
6612 ret = VM_FAULT_SIGBUS;
Chris Mason9998eb72012-01-25 13:47:40 -05006613 if (reserved)
6614 goto out;
6615 goto out_noreserve;
Nick Piggin56a76f82009-03-31 15:23:23 -07006616 }
Chris Mason1832a6d2007-12-21 16:27:21 -05006617
Nick Piggin56a76f82009-03-31 15:23:23 -07006618 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006619again:
Chris Mason9ebefb182007-06-15 13:50:00 -04006620 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04006621 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006622 page_start = page_offset(page);
6623 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006624
Chris Mason9ebefb182007-06-15 13:50:00 -04006625 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04006626 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04006627 /* page got truncated out from underneath us */
6628 goto out_unlock;
6629 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006630 wait_on_page_writeback(page);
6631
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006632 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006633 set_page_extent_mapped(page);
6634
Chris Masoneb84ae02008-07-17 13:53:27 -04006635 /*
6636 * we can't set the delalloc bits if there are pending ordered
6637 * extents. Drop our locks and wait for them to finish
6638 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006639 ordered = btrfs_lookup_ordered_extent(inode, page_start);
6640 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006641 unlock_extent_cached(io_tree, page_start, page_end,
6642 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006643 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04006644 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006645 btrfs_put_ordered_extent(ordered);
6646 goto again;
6647 }
6648
Josef Bacikfbf19082009-10-01 17:10:23 -04006649 /*
6650 * XXX - page_mkwrite gets called every time the page is dirtied, even
6651 * if it was already dirty, so for space accounting reasons we need to
6652 * clear any delalloc bits for the range we are fixing to save. There
6653 * is probably a better way to do this, but for now keep consistent with
6654 * prepare_pages in the normal write path.
6655 */
Josef Bacik2ac55d42010-02-03 19:33:23 +00006656 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04006657 EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00006658 0, 0, &cached_state, GFP_NOFS);
Josef Bacikfbf19082009-10-01 17:10:23 -04006659
Josef Bacik2ac55d42010-02-03 19:33:23 +00006660 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
6661 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006662 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006663 unlock_extent_cached(io_tree, page_start, page_end,
6664 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006665 ret = VM_FAULT_SIGBUS;
6666 goto out_unlock;
6667 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006668 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04006669
6670 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04006671 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04006672 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04006673 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04006674 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04006675
Chris Masone6dcd2d2008-07-17 12:53:50 -04006676 if (zero_start != PAGE_CACHE_SIZE) {
6677 kaddr = kmap(page);
6678 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
6679 flush_dcache_page(page);
6680 kunmap(page);
6681 }
Chris Mason247e7432008-07-17 12:53:51 -04006682 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006683 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04006684 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04006685
Chris Mason257c62e2009-10-13 13:21:08 -04006686 BTRFS_I(inode)->last_trans = root->fs_info->generation;
6687 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
6688
Josef Bacik2ac55d42010-02-03 19:33:23 +00006689 unlock_extent_cached(io_tree, page_start, page_end, &cached_state, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04006690
6691out_unlock:
Chris Mason50a9b212009-09-11 12:33:12 -04006692 if (!ret)
6693 return VM_FAULT_LOCKED;
Chris Mason9ebefb182007-06-15 13:50:00 -04006694 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05006695out:
Josef Bacikec39e182012-01-12 19:10:12 -05006696 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason9998eb72012-01-25 13:47:40 -05006697out_noreserve:
Chris Mason9ebefb182007-06-15 13:50:00 -04006698 return ret;
6699}
6700
Josef Bacika41ad392011-01-31 15:30:16 -05006701static int btrfs_truncate(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04006702{
6703 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikfcb80c22011-05-03 10:40:22 -04006704 struct btrfs_block_rsv *rsv;
Chris Mason39279cc2007-06-12 06:35:45 -04006705 int ret;
Josef Bacik3893e332011-01-31 16:03:11 -05006706 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006707 struct btrfs_trans_handle *trans;
Chris Masond3c2fdc2007-09-17 10:58:06 -04006708 unsigned long nr;
Chris Masondbe674a2008-07-17 12:54:05 -04006709 u64 mask = root->sectorsize - 1;
Josef Bacik07127182011-08-19 10:29:59 -04006710 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04006711
Josef Bacik5d5e1032009-10-13 16:46:49 -04006712 ret = btrfs_truncate_page(inode->i_mapping, inode->i_size);
6713 if (ret)
Josef Bacika41ad392011-01-31 15:30:16 -05006714 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00006715
Chris Mason4a096752008-07-21 10:29:44 -04006716 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
Yan, Zheng80825102009-11-12 09:35:36 +00006717 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006718
Josef Bacikfcb80c22011-05-03 10:40:22 -04006719 /*
6720 * Yes ladies and gentelment, this is indeed ugly. The fact is we have
6721 * 3 things going on here
6722 *
6723 * 1) We need to reserve space for our orphan item and the space to
6724 * delete our orphan item. Lord knows we don't want to have a dangling
6725 * orphan item because we didn't reserve space to remove it.
6726 *
6727 * 2) We need to reserve space to update our inode.
6728 *
6729 * 3) We need to have something to cache all the space that is going to
6730 * be free'd up by the truncate operation, but also have some slack
6731 * space reserved in case it uses space during the truncate (thank you
6732 * very much snapshotting).
6733 *
6734 * And we need these to all be seperate. The fact is we can use alot of
6735 * space doing the truncate, and we have no earthly idea how much space
6736 * we will use, so we need the truncate reservation to be seperate so it
6737 * doesn't end up using space reserved for updating the inode or
6738 * removing the orphan item. We also need to be able to stop the
6739 * transaction and start a new one, which means we need to be able to
6740 * update the inode several times, and we have no idea of knowing how
6741 * many times that will be, so we can't just reserve 1 item for the
6742 * entirety of the opration, so that has to be done seperately as well.
6743 * Then there is the orphan item, which does indeed need to be held on
6744 * to for the whole operation, and we need nobody to touch this reserved
6745 * space except the orphan code.
6746 *
6747 * So that leaves us with
6748 *
6749 * 1) root->orphan_block_rsv - for the orphan deletion.
6750 * 2) rsv - for the truncate reservation, which we will steal from the
6751 * transaction reservation.
6752 * 3) fs_info->trans_block_rsv - this will have 1 items worth left for
6753 * updating the inode.
6754 */
6755 rsv = btrfs_alloc_block_rsv(root);
6756 if (!rsv)
6757 return -ENOMEM;
Josef Bacik4a338542011-08-29 11:01:31 -04006758 rsv->size = min_size;
Josef Bacikf0cd8462011-03-04 14:37:08 -05006759
Josef Bacik907cbce2011-08-08 13:46:15 -04006760 /*
Josef Bacik07127182011-08-19 10:29:59 -04006761 * 1 for the truncate slack space
Josef Bacik907cbce2011-08-08 13:46:15 -04006762 * 1 for the orphan item we're going to add
6763 * 1 for the orphan item deletion
6764 * 1 for updating the inode.
6765 */
Josef Bacikfcb80c22011-05-03 10:40:22 -04006766 trans = btrfs_start_transaction(root, 4);
6767 if (IS_ERR(trans)) {
6768 err = PTR_ERR(trans);
6769 goto out;
6770 }
Josef Bacikf0cd8462011-03-04 14:37:08 -05006771
Josef Bacik907cbce2011-08-08 13:46:15 -04006772 /* Migrate the slack space for the truncate to our reserve */
6773 ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv, rsv,
6774 min_size);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006775 BUG_ON(ret);
Josef Bacikf0cd8462011-03-04 14:37:08 -05006776
6777 ret = btrfs_orphan_add(trans, inode);
6778 if (ret) {
6779 btrfs_end_transaction(trans, root);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006780 goto out;
Josef Bacikf0cd8462011-03-04 14:37:08 -05006781 }
6782
Chris Mason5a3f23d2009-03-31 13:27:11 -04006783 /*
6784 * setattr is responsible for setting the ordered_data_close flag,
6785 * but that is only tested during the last file release. That
6786 * could happen well after the next commit, leaving a great big
6787 * window where new writes may get lost if someone chooses to write
6788 * to this file after truncating to zero
6789 *
6790 * The inode doesn't have any dirty data here, and so if we commit
6791 * this is a noop. If someone immediately starts writing to the inode
6792 * it is very likely we'll catch some of their writes in this
6793 * transaction, and the commit will find this file on the ordered
6794 * data list with good things to send down.
6795 *
6796 * This is a best effort solution, there is still a window where
6797 * using truncate to replace the contents of the file will
6798 * end up with a zero length file after a crash.
6799 */
Josef Bacik72ac3c02012-05-23 14:13:11 -04006800 if (inode->i_size == 0 && test_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
6801 &BTRFS_I(inode)->runtime_flags))
Chris Mason5a3f23d2009-03-31 13:27:11 -04006802 btrfs_add_ordered_operation(trans, root, inode);
6803
Yan, Zheng80825102009-11-12 09:35:36 +00006804 while (1) {
Josef Bacik36ba0222011-10-18 12:15:48 -04006805 ret = btrfs_block_rsv_refill(root, rsv, min_size);
Josef Bacik907cbce2011-08-08 13:46:15 -04006806 if (ret) {
6807 /*
6808 * This can only happen with the original transaction we
6809 * started above, every other time we shouldn't have a
6810 * transaction started yet.
6811 */
6812 if (ret == -EAGAIN)
6813 goto end_trans;
6814 err = ret;
6815 break;
6816 }
6817
Yan, Zhengd68fc572010-05-16 10:49:58 -04006818 if (!trans) {
Josef Bacik907cbce2011-08-08 13:46:15 -04006819 /* Just need the 1 for updating the inode */
6820 trans = btrfs_start_transaction(root, 1);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006821 if (IS_ERR(trans)) {
Josef Bacik7041ee92011-12-09 13:26:22 -05006822 ret = err = PTR_ERR(trans);
6823 trans = NULL;
6824 break;
Josef Bacikfcb80c22011-05-03 10:40:22 -04006825 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04006826 }
6827
Josef Bacik907cbce2011-08-08 13:46:15 -04006828 trans->block_rsv = rsv;
6829
Yan, Zheng80825102009-11-12 09:35:36 +00006830 ret = btrfs_truncate_inode_items(trans, root, inode,
6831 inode->i_size,
6832 BTRFS_EXTENT_DATA_KEY);
Josef Bacik3893e332011-01-31 16:03:11 -05006833 if (ret != -EAGAIN) {
6834 err = ret;
Yan, Zheng80825102009-11-12 09:35:36 +00006835 break;
Josef Bacik3893e332011-01-31 16:03:11 -05006836 }
Chris Mason39279cc2007-06-12 06:35:45 -04006837
Josef Bacikfcb80c22011-05-03 10:40:22 -04006838 trans->block_rsv = &root->fs_info->trans_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00006839 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05006840 if (ret) {
6841 err = ret;
6842 break;
6843 }
Josef Bacik907cbce2011-08-08 13:46:15 -04006844end_trans:
Yan, Zheng80825102009-11-12 09:35:36 +00006845 nr = trans->blocks_used;
6846 btrfs_end_transaction(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -04006847 trans = NULL;
Yan, Zheng80825102009-11-12 09:35:36 +00006848 btrfs_btree_balance_dirty(root, nr);
Yan, Zheng80825102009-11-12 09:35:36 +00006849 }
6850
6851 if (ret == 0 && inode->i_nlink > 0) {
Josef Bacikfcb80c22011-05-03 10:40:22 -04006852 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00006853 ret = btrfs_orphan_del(trans, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05006854 if (ret)
6855 err = ret;
Josef Bacikded5db92011-03-04 14:09:46 -05006856 } else if (ret && inode->i_nlink > 0) {
6857 /*
6858 * Failed to do the truncate, remove us from the in memory
6859 * orphan list.
6860 */
6861 ret = btrfs_orphan_del(NULL, inode);
Yan, Zheng80825102009-11-12 09:35:36 +00006862 }
6863
Chris Mason917c16b2011-11-08 14:49:59 -05006864 if (trans) {
6865 trans->block_rsv = &root->fs_info->trans_block_rsv;
6866 ret = btrfs_update_inode(trans, root, inode);
6867 if (ret && !err)
6868 err = ret;
Josef Bacik7b128762008-07-24 12:17:14 -04006869
Chris Mason917c16b2011-11-08 14:49:59 -05006870 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05006871 ret = btrfs_end_transaction(trans, root);
Chris Mason917c16b2011-11-08 14:49:59 -05006872 btrfs_btree_balance_dirty(root, nr);
6873 }
Josef Bacikfcb80c22011-05-03 10:40:22 -04006874
6875out:
6876 btrfs_free_block_rsv(root, rsv);
6877
Josef Bacik3893e332011-01-31 16:03:11 -05006878 if (ret && !err)
6879 err = ret;
Josef Bacika41ad392011-01-31 15:30:16 -05006880
Josef Bacik3893e332011-01-31 16:03:11 -05006881 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04006882}
6883
Sven Wegener3b963622008-06-09 21:57:42 -04006884/*
Chris Masond352ac62008-09-29 15:18:18 -04006885 * create a new subvolume directory/inode (helper for the ioctl).
6886 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05006887int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Josef Bacikd82a6f12011-05-11 15:26:06 -04006888 struct btrfs_root *new_root, u64 new_dirid)
Chris Mason39279cc2007-06-12 06:35:45 -04006889{
Chris Mason39279cc2007-06-12 06:35:45 -04006890 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04006891 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006892 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006893
Florian Albrechtskirchinger12fc9d02012-02-10 22:15:54 +01006894 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2,
6895 new_dirid, new_dirid,
6896 S_IFDIR | (~current_umask() & S_IRWXUGO),
6897 &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04006898 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04006899 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006900 inode->i_op = &btrfs_dir_inode_operations;
6901 inode->i_fop = &btrfs_dir_file_operations;
6902
Miklos Szeredibfe86842011-10-28 14:13:29 +02006903 set_nlink(inode, 1);
Chris Masondbe674a2008-07-17 12:54:05 -04006904 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04006905
Yan, Zheng76dda932009-09-21 16:00:26 -04006906 err = btrfs_update_inode(trans, new_root, inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04006907
Yan, Zheng76dda932009-09-21 16:00:26 -04006908 iput(inode);
Mark Fashehce598972011-07-26 11:32:23 -07006909 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04006910}
6911
Chris Mason39279cc2007-06-12 06:35:45 -04006912struct inode *btrfs_alloc_inode(struct super_block *sb)
6913{
6914 struct btrfs_inode *ei;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006915 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04006916
6917 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
6918 if (!ei)
6919 return NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006920
6921 ei->root = NULL;
6922 ei->space_info = NULL;
6923 ei->generation = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04006924 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04006925 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04006926 ei->logged_trans = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006927 ei->delalloc_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006928 ei->disk_i_size = 0;
6929 ei->flags = 0;
Josef Bacik7709cde2011-08-04 10:25:02 -04006930 ei->csum_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006931 ei->index_cnt = (u64)-1;
6932 ei->last_unlink_trans = 0;
6933
Josef Bacik9e0baf62011-07-15 15:16:44 +00006934 spin_lock_init(&ei->lock);
6935 ei->outstanding_extents = 0;
6936 ei->reserved_extents = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006937
Josef Bacik72ac3c02012-05-23 14:13:11 -04006938 ei->runtime_flags = 0;
Li Zefan261507a02010-12-17 14:21:50 +08006939 ei->force_compress = BTRFS_COMPRESS_NONE;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006940
Miao Xie16cdcec2011-04-22 18:12:22 +08006941 ei->delayed_node = NULL;
6942
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006943 inode = &ei->vfs_inode;
David Sterbaa8067e02011-04-21 00:34:43 +02006944 extent_map_tree_init(&ei->extent_tree);
David Sterbaf993c882011-04-20 23:35:57 +02006945 extent_io_tree_init(&ei->io_tree, &inode->i_data);
6946 extent_io_tree_init(&ei->io_failure_tree, &inode->i_data);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04006947 ei->io_tree.track_uptodate = 1;
6948 ei->io_failure_tree.track_uptodate = 1;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006949 mutex_init(&ei->log_mutex);
Josef Bacikf2486792012-01-13 12:09:22 -05006950 mutex_init(&ei->delalloc_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006951 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006952 INIT_LIST_HEAD(&ei->delalloc_inodes);
Chris Mason5a3f23d2009-03-31 13:27:11 -04006953 INIT_LIST_HEAD(&ei->ordered_operations);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006954 RB_CLEAR_NODE(&ei->rb_node);
6955
6956 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04006957}
6958
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11006959static void btrfs_i_callback(struct rcu_head *head)
6960{
6961 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11006962 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
6963}
6964
Chris Mason39279cc2007-06-12 06:35:45 -04006965void btrfs_destroy_inode(struct inode *inode)
6966{
Chris Masone6dcd2d2008-07-17 12:53:50 -04006967 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006968 struct btrfs_root *root = BTRFS_I(inode)->root;
6969
Chris Mason39279cc2007-06-12 06:35:45 -04006970 WARN_ON(!list_empty(&inode->i_dentry));
6971 WARN_ON(inode->i_data.nrpages);
Josef Bacik9e0baf62011-07-15 15:16:44 +00006972 WARN_ON(BTRFS_I(inode)->outstanding_extents);
6973 WARN_ON(BTRFS_I(inode)->reserved_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04006974 WARN_ON(BTRFS_I(inode)->delalloc_bytes);
6975 WARN_ON(BTRFS_I(inode)->csum_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -04006976
Chris Mason5a3f23d2009-03-31 13:27:11 -04006977 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05006978 * This can happen where we create an inode, but somebody else also
6979 * created the same inode and we need to destroy the one we already
6980 * created.
6981 */
6982 if (!root)
6983 goto free;
6984
6985 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04006986 * Make sure we're properly removed from the ordered operation
6987 * lists.
6988 */
6989 smp_mb();
6990 if (!list_empty(&BTRFS_I(inode)->ordered_operations)) {
6991 spin_lock(&root->fs_info->ordered_extent_lock);
6992 list_del_init(&BTRFS_I(inode)->ordered_operations);
6993 spin_unlock(&root->fs_info->ordered_extent_lock);
6994 }
6995
Josef Bacik8a35d952012-05-23 14:26:42 -04006996 if (test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
6997 &BTRFS_I(inode)->runtime_flags)) {
Li Zefan33345d012011-04-20 10:31:50 +08006998 printk(KERN_INFO "BTRFS: inode %llu still on the orphan list\n",
6999 (unsigned long long)btrfs_ino(inode));
Josef Bacik8a35d952012-05-23 14:26:42 -04007000 atomic_dec(&root->orphan_inodes);
Josef Bacik7b128762008-07-24 12:17:14 -04007001 }
Josef Bacik7b128762008-07-24 12:17:14 -04007002
Chris Masond3977122009-01-05 21:25:51 -05007003 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04007004 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
7005 if (!ordered)
7006 break;
7007 else {
Chris Masond3977122009-01-05 21:25:51 -05007008 printk(KERN_ERR "btrfs found ordered "
7009 "extent %llu %llu on inode cleanup\n",
7010 (unsigned long long)ordered->file_offset,
7011 (unsigned long long)ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007012 btrfs_remove_ordered_extent(inode, ordered);
7013 btrfs_put_ordered_extent(ordered);
7014 btrfs_put_ordered_extent(ordered);
7015 }
7016 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007017 inode_tree_del(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007018 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
Josef Bacika6dbd422009-11-11 15:53:34 -05007019free:
Miao Xie16cdcec2011-04-22 18:12:22 +08007020 btrfs_remove_delayed_node(inode);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11007021 call_rcu(&inode->i_rcu, btrfs_i_callback);
Chris Mason39279cc2007-06-12 06:35:45 -04007022}
7023
Al Viro45321ac2010-06-07 13:43:19 -04007024int btrfs_drop_inode(struct inode *inode)
Yan, Zheng76dda932009-09-21 16:00:26 -04007025{
7026 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro45321ac2010-06-07 13:43:19 -04007027
Josef Bacik0af3d002010-06-21 14:48:16 -04007028 if (btrfs_root_refs(&root->root_item) == 0 &&
Chris Mason2cf85722011-07-26 15:35:09 -04007029 !btrfs_is_free_space_inode(root, inode))
Al Viro45321ac2010-06-07 13:43:19 -04007030 return 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04007031 else
Al Viro45321ac2010-06-07 13:43:19 -04007032 return generic_drop_inode(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04007033}
7034
Sven Wegener0ee0fda2008-07-30 16:54:26 -04007035static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04007036{
7037 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
7038
7039 inode_init_once(&ei->vfs_inode);
7040}
7041
7042void btrfs_destroy_cachep(void)
7043{
7044 if (btrfs_inode_cachep)
7045 kmem_cache_destroy(btrfs_inode_cachep);
7046 if (btrfs_trans_handle_cachep)
7047 kmem_cache_destroy(btrfs_trans_handle_cachep);
7048 if (btrfs_transaction_cachep)
7049 kmem_cache_destroy(btrfs_transaction_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04007050 if (btrfs_path_cachep)
7051 kmem_cache_destroy(btrfs_path_cachep);
Josef Bacikdc89e982011-01-28 17:05:48 -05007052 if (btrfs_free_space_cachep)
7053 kmem_cache_destroy(btrfs_free_space_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04007054}
7055
7056int btrfs_init_cachep(void)
7057{
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007058 btrfs_inode_cachep = kmem_cache_create("btrfs_inode_cache",
7059 sizeof(struct btrfs_inode), 0,
7060 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04007061 if (!btrfs_inode_cachep)
7062 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007063
7064 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle_cache",
7065 sizeof(struct btrfs_trans_handle), 0,
7066 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04007067 if (!btrfs_trans_handle_cachep)
7068 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007069
7070 btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction_cache",
7071 sizeof(struct btrfs_transaction), 0,
7072 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04007073 if (!btrfs_transaction_cachep)
7074 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007075
7076 btrfs_path_cachep = kmem_cache_create("btrfs_path_cache",
7077 sizeof(struct btrfs_path), 0,
7078 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04007079 if (!btrfs_path_cachep)
7080 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007081
Josef Bacikdc89e982011-01-28 17:05:48 -05007082 btrfs_free_space_cachep = kmem_cache_create("btrfs_free_space_cache",
7083 sizeof(struct btrfs_free_space), 0,
7084 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
7085 if (!btrfs_free_space_cachep)
7086 goto fail;
7087
Chris Mason39279cc2007-06-12 06:35:45 -04007088 return 0;
7089fail:
7090 btrfs_destroy_cachep();
7091 return -ENOMEM;
7092}
7093
7094static int btrfs_getattr(struct vfsmount *mnt,
7095 struct dentry *dentry, struct kstat *stat)
7096{
7097 struct inode *inode = dentry->d_inode;
David Sterbafadc0d82011-11-20 07:33:38 -05007098 u32 blocksize = inode->i_sb->s_blocksize;
7099
Chris Mason39279cc2007-06-12 06:35:45 -04007100 generic_fillattr(inode, stat);
Al Viro0ee5dc62011-07-07 15:44:25 -04007101 stat->dev = BTRFS_I(inode)->root->anon_dev;
Chris Masond6667462008-01-03 14:51:00 -05007102 stat->blksize = PAGE_CACHE_SIZE;
David Sterbafadc0d82011-11-20 07:33:38 -05007103 stat->blocks = (ALIGN(inode_get_bytes(inode), blocksize) +
7104 ALIGN(BTRFS_I(inode)->delalloc_bytes, blocksize)) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04007105 return 0;
7106}
7107
Liu Bo75e7cb72011-03-22 10:12:20 +00007108/*
7109 * If a file is moved, it will inherit the cow and compression flags of the new
7110 * directory.
7111 */
7112static void fixup_inode_flags(struct inode *dir, struct inode *inode)
7113{
7114 struct btrfs_inode *b_dir = BTRFS_I(dir);
7115 struct btrfs_inode *b_inode = BTRFS_I(inode);
7116
7117 if (b_dir->flags & BTRFS_INODE_NODATACOW)
7118 b_inode->flags |= BTRFS_INODE_NODATACOW;
7119 else
7120 b_inode->flags &= ~BTRFS_INODE_NODATACOW;
7121
7122 if (b_dir->flags & BTRFS_INODE_COMPRESS)
7123 b_inode->flags |= BTRFS_INODE_COMPRESS;
7124 else
7125 b_inode->flags &= ~BTRFS_INODE_COMPRESS;
7126}
7127
Chris Masond3977122009-01-05 21:25:51 -05007128static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
7129 struct inode *new_dir, struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04007130{
7131 struct btrfs_trans_handle *trans;
7132 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007133 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04007134 struct inode *new_inode = new_dentry->d_inode;
7135 struct inode *old_inode = old_dentry->d_inode;
7136 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04007137 u64 index = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007138 u64 root_objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04007139 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08007140 u64 old_ino = btrfs_ino(old_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007141
Li Zefan33345d012011-04-20 10:31:50 +08007142 if (btrfs_ino(new_dir) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhengf679a842009-09-24 09:17:31 -04007143 return -EPERM;
7144
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007145 /* we only allow rename subvolume link between subvolumes */
Li Zefan33345d012011-04-20 10:31:50 +08007146 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05007147 return -EXDEV;
7148
Li Zefan33345d012011-04-20 10:31:50 +08007149 if (old_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
7150 (new_inode && btrfs_ino(new_inode) == BTRFS_FIRST_FREE_OBJECTID))
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007151 return -ENOTEMPTY;
7152
Chris Mason39279cc2007-06-12 06:35:45 -04007153 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007154 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04007155 return -ENOTEMPTY;
Chris Mason5a3f23d2009-03-31 13:27:11 -04007156 /*
7157 * we're using rename to replace one file with another.
7158 * and the replacement file is large. Start IO on it now so
7159 * we don't add too much work to the end of the transaction
7160 */
Bartlomiej Zolnierkiewicz4baf8c92009-08-07 13:47:08 -04007161 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size &&
Chris Mason5a3f23d2009-03-31 13:27:11 -04007162 old_inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
7163 filemap_flush(old_inode->i_mapping);
7164
Yan, Zheng76dda932009-09-21 16:00:26 -04007165 /* close the racy window with snapshot create/destroy ioctl */
Li Zefan33345d012011-04-20 10:31:50 +08007166 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04007167 down_read(&root->fs_info->subvol_sem);
Yan, Zhenga22285a2010-05-16 10:48:46 -04007168 /*
7169 * We want to reserve the absolute worst case amount of items. So if
7170 * both inodes are subvols and we need to unlink them then that would
7171 * require 4 item modifications, but if they are both normal inodes it
7172 * would require 5 item modifications, so we'll assume their normal
7173 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
7174 * should cover the worst case number of items we'll modify.
7175 */
7176 trans = btrfs_start_transaction(root, 20);
Johann Lombardib44c59a2011-03-31 13:23:47 +00007177 if (IS_ERR(trans)) {
7178 ret = PTR_ERR(trans);
7179 goto out_notrans;
7180 }
Chris Mason5f39d392007-10-15 16:14:19 -04007181
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007182 if (dest != root)
7183 btrfs_record_root_in_trans(trans, dest);
7184
Yan, Zhenga5719522009-09-24 09:17:31 -04007185 ret = btrfs_set_inode_index(new_dir, &index);
7186 if (ret)
7187 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04007188
Li Zefan33345d012011-04-20 10:31:50 +08007189 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007190 /* force full log commit if subvolume involved. */
7191 root->fs_info->last_trans_log_full_commit = trans->transid;
7192 } else {
Yan, Zhenga5719522009-09-24 09:17:31 -04007193 ret = btrfs_insert_inode_ref(trans, dest,
7194 new_dentry->d_name.name,
7195 new_dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08007196 old_ino,
7197 btrfs_ino(new_dir), index);
Yan, Zhenga5719522009-09-24 09:17:31 -04007198 if (ret)
7199 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007200 /*
7201 * this is an ugly little race, but the rename is required
7202 * to make sure that if we crash, the inode is either at the
7203 * old name or the new one. pinning the log transaction lets
7204 * us make sure we don't allow a log commit to come in after
7205 * we unlink the name but before we add the new name back in.
7206 */
7207 btrfs_pin_log_trans(root);
7208 }
Chris Mason12fcfd22009-03-24 10:24:20 -04007209 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04007210 * make sure the inode gets flushed if it is replacing
7211 * something.
7212 */
Li Zefan33345d012011-04-20 10:31:50 +08007213 if (new_inode && new_inode->i_size && S_ISREG(old_inode->i_mode))
Chris Mason5a3f23d2009-03-31 13:27:11 -04007214 btrfs_add_ordered_operation(trans, root, old_inode);
Chris Mason5a3f23d2009-03-31 13:27:11 -04007215
Josef Bacik0c4d2d92012-04-05 15:03:02 -04007216 inode_inc_iversion(old_dir);
7217 inode_inc_iversion(new_dir);
7218 inode_inc_iversion(old_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007219 old_dir->i_ctime = old_dir->i_mtime = ctime;
7220 new_dir->i_ctime = new_dir->i_mtime = ctime;
7221 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04007222
Chris Mason12fcfd22009-03-24 10:24:20 -04007223 if (old_dentry->d_parent != new_dentry->d_parent)
7224 btrfs_record_unlink_dir(trans, old_dir, old_inode, 1);
7225
Li Zefan33345d012011-04-20 10:31:50 +08007226 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007227 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
7228 ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid,
7229 old_dentry->d_name.name,
7230 old_dentry->d_name.len);
7231 } else {
Al Viro92986792011-03-04 17:14:37 +00007232 ret = __btrfs_unlink_inode(trans, root, old_dir,
7233 old_dentry->d_inode,
7234 old_dentry->d_name.name,
7235 old_dentry->d_name.len);
7236 if (!ret)
7237 ret = btrfs_update_inode(trans, root, old_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007238 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007239 if (ret) {
7240 btrfs_abort_transaction(trans, root, ret);
7241 goto out_fail;
7242 }
Chris Mason39279cc2007-06-12 06:35:45 -04007243
7244 if (new_inode) {
Josef Bacik0c4d2d92012-04-05 15:03:02 -04007245 inode_inc_iversion(new_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007246 new_inode->i_ctime = CURRENT_TIME;
Li Zefan33345d012011-04-20 10:31:50 +08007247 if (unlikely(btrfs_ino(new_inode) ==
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007248 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
7249 root_objectid = BTRFS_I(new_inode)->location.objectid;
7250 ret = btrfs_unlink_subvol(trans, dest, new_dir,
7251 root_objectid,
7252 new_dentry->d_name.name,
7253 new_dentry->d_name.len);
7254 BUG_ON(new_inode->i_nlink == 0);
7255 } else {
7256 ret = btrfs_unlink_inode(trans, dest, new_dir,
7257 new_dentry->d_inode,
7258 new_dentry->d_name.name,
7259 new_dentry->d_name.len);
7260 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007261 if (!ret && new_inode->i_nlink == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04007262 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007263 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04007264 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007265 if (ret) {
7266 btrfs_abort_transaction(trans, root, ret);
7267 goto out_fail;
7268 }
Chris Mason39279cc2007-06-12 06:35:45 -04007269 }
Josef Bacikaec74772008-07-24 12:12:38 -04007270
Liu Bo75e7cb72011-03-22 10:12:20 +00007271 fixup_inode_flags(new_dir, old_inode);
7272
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007273 ret = btrfs_add_link(trans, new_dir, old_inode,
7274 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04007275 new_dentry->d_name.len, 0, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007276 if (ret) {
7277 btrfs_abort_transaction(trans, root, ret);
7278 goto out_fail;
7279 }
Chris Mason39279cc2007-06-12 06:35:45 -04007280
Li Zefan33345d012011-04-20 10:31:50 +08007281 if (old_ino != BTRFS_FIRST_FREE_OBJECTID) {
Al Viro10d9f302011-07-16 23:09:10 -04007282 struct dentry *parent = new_dentry->d_parent;
Josef Bacik6a912212010-11-20 09:48:00 +00007283 btrfs_log_new_name(trans, old_inode, old_dir, parent);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007284 btrfs_end_log_trans(root);
7285 }
Chris Mason39279cc2007-06-12 06:35:45 -04007286out_fail:
Josef Bacik7ad85bb2012-01-12 19:10:12 -05007287 btrfs_end_transaction(trans, root);
Johann Lombardib44c59a2011-03-31 13:23:47 +00007288out_notrans:
Li Zefan33345d012011-04-20 10:31:50 +08007289 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04007290 up_read(&root->fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04007291
Chris Mason39279cc2007-06-12 06:35:45 -04007292 return ret;
7293}
7294
Chris Masond352ac62008-09-29 15:18:18 -04007295/*
7296 * some fairly slow code that needs optimization. This walks the list
7297 * of all the inodes with pending delalloc and forces them to disk.
7298 */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00007299int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput)
Chris Masonea8c2812008-08-04 23:17:27 -04007300{
7301 struct list_head *head = &root->fs_info->delalloc_inodes;
7302 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007303 struct inode *inode;
Chris Masonea8c2812008-08-04 23:17:27 -04007304
Yan Zhengc146afa2008-11-12 14:34:12 -05007305 if (root->fs_info->sb->s_flags & MS_RDONLY)
7306 return -EROFS;
7307
Chris Mason75eff682008-12-15 15:54:40 -05007308 spin_lock(&root->fs_info->delalloc_lock);
Chris Masond3977122009-01-05 21:25:51 -05007309 while (!list_empty(head)) {
Chris Masonea8c2812008-08-04 23:17:27 -04007310 binode = list_entry(head->next, struct btrfs_inode,
7311 delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007312 inode = igrab(&binode->vfs_inode);
7313 if (!inode)
7314 list_del_init(&binode->delalloc_inodes);
Chris Mason75eff682008-12-15 15:54:40 -05007315 spin_unlock(&root->fs_info->delalloc_lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007316 if (inode) {
Chris Mason8c8bee12008-09-29 11:19:10 -04007317 filemap_flush(inode->i_mapping);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00007318 if (delay_iput)
7319 btrfs_add_delayed_iput(inode);
7320 else
7321 iput(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007322 }
7323 cond_resched();
Chris Mason75eff682008-12-15 15:54:40 -05007324 spin_lock(&root->fs_info->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04007325 }
Chris Mason75eff682008-12-15 15:54:40 -05007326 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -04007327
7328 /* the filemap_flush will queue IO into the worker threads, but
7329 * we have to make sure the IO is actually started and that
7330 * ordered extents get created before we return
7331 */
7332 atomic_inc(&root->fs_info->async_submit_draining);
Chris Masond3977122009-01-05 21:25:51 -05007333 while (atomic_read(&root->fs_info->nr_async_submits) ||
Chris Mason771ed682008-11-06 22:02:51 -05007334 atomic_read(&root->fs_info->async_delalloc_pages)) {
Chris Mason8c8bee12008-09-29 11:19:10 -04007335 wait_event(root->fs_info->async_submit_wait,
Chris Mason771ed682008-11-06 22:02:51 -05007336 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
7337 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee12008-09-29 11:19:10 -04007338 }
7339 atomic_dec(&root->fs_info->async_submit_draining);
Chris Masonea8c2812008-08-04 23:17:27 -04007340 return 0;
7341}
7342
Chris Mason39279cc2007-06-12 06:35:45 -04007343static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
7344 const char *symname)
7345{
7346 struct btrfs_trans_handle *trans;
7347 struct btrfs_root *root = BTRFS_I(dir)->root;
7348 struct btrfs_path *path;
7349 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05007350 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04007351 int err;
7352 int drop_inode = 0;
7353 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04007354 u64 index = 0 ;
Chris Mason39279cc2007-06-12 06:35:45 -04007355 int name_len;
7356 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04007357 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04007358 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04007359 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05007360 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007361
7362 name_len = strlen(symname) + 1;
7363 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
7364 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05007365
Josef Bacik9ed74f22009-09-11 16:12:44 -04007366 /*
7367 * 2 items for inode item and ref
7368 * 2 items for dir items
7369 * 1 item for xattr if selinux is on
7370 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04007371 trans = btrfs_start_transaction(root, 5);
7372 if (IS_ERR(trans))
7373 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05007374
Li Zefan581bb052011-04-20 10:06:11 +08007375 err = btrfs_find_free_ino(root, &objectid);
7376 if (err)
7377 goto out_unlock;
7378
Josef Bacikaec74772008-07-24 12:12:38 -04007379 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08007380 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04007381 S_IFLNK|S_IRWXUGO, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04007382 if (IS_ERR(inode)) {
7383 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007384 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04007385 }
Chris Mason39279cc2007-06-12 06:35:45 -04007386
Eric Paris2a7dba32011-02-01 11:05:39 -05007387 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04007388 if (err) {
7389 drop_inode = 1;
7390 goto out_unlock;
7391 }
7392
Casey Schauflerad19db72011-12-15 10:09:07 -05007393 /*
7394 * If the active LSM wants to access the inode during
7395 * d_instantiate it needs these. Smack checks to see
7396 * if the filesystem supports xattrs by looking at the
7397 * ops vector.
7398 */
7399 inode->i_fop = &btrfs_file_operations;
7400 inode->i_op = &btrfs_file_inode_operations;
7401
Josef Bacika1b075d2010-11-19 20:36:11 +00007402 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04007403 if (err)
7404 drop_inode = 1;
7405 else {
7406 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04007407 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05007408 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04007409 }
Chris Mason39279cc2007-06-12 06:35:45 -04007410 if (drop_inode)
7411 goto out_unlock;
7412
7413 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07007414 if (!path) {
7415 err = -ENOMEM;
7416 drop_inode = 1;
7417 goto out_unlock;
7418 }
Li Zefan33345d012011-04-20 10:31:50 +08007419 key.objectid = btrfs_ino(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007420 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007421 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
7422 datasize = btrfs_file_extent_calc_inline_size(name_len);
7423 err = btrfs_insert_empty_item(trans, root, path, &key,
7424 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04007425 if (err) {
7426 drop_inode = 1;
Julia Lawallb0839162011-05-14 07:10:51 +00007427 btrfs_free_path(path);
Chris Mason54aa1f42007-06-22 14:16:25 -04007428 goto out_unlock;
7429 }
Chris Mason5f39d392007-10-15 16:14:19 -04007430 leaf = path->nodes[0];
7431 ei = btrfs_item_ptr(leaf, path->slots[0],
7432 struct btrfs_file_extent_item);
7433 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
7434 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04007435 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -04007436 btrfs_set_file_extent_encryption(leaf, ei, 0);
7437 btrfs_set_file_extent_compression(leaf, ei, 0);
7438 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
7439 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
7440
Chris Mason39279cc2007-06-12 06:35:45 -04007441 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04007442 write_extent_buffer(leaf, symname, ptr, name_len);
7443 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04007444 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04007445
Chris Mason39279cc2007-06-12 06:35:45 -04007446 inode->i_op = &btrfs_symlink_inode_operations;
7447 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04007448 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Yan Zhengd899e052008-10-30 14:25:28 -04007449 inode_set_bytes(inode, name_len);
Chris Masondbe674a2008-07-17 12:54:05 -04007450 btrfs_i_size_write(inode, name_len - 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04007451 err = btrfs_update_inode(trans, root, inode);
7452 if (err)
7453 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04007454
7455out_unlock:
Al Viro08c422c2011-12-23 07:58:13 -05007456 if (!err)
7457 d_instantiate(dentry, inode);
Chris Masond3c2fdc2007-09-17 10:58:06 -04007458 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05007459 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04007460 if (drop_inode) {
7461 inode_dec_link_count(inode);
7462 iput(inode);
7463 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04007464 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04007465 return err;
7466}
Chris Mason16432982008-04-10 10:23:21 -04007467
Josef Bacik0af3d002010-06-21 14:48:16 -04007468static int __btrfs_prealloc_file_range(struct inode *inode, int mode,
7469 u64 start, u64 num_bytes, u64 min_size,
7470 loff_t actual_len, u64 *alloc_hint,
7471 struct btrfs_trans_handle *trans)
Yan Zhengd899e052008-10-30 14:25:28 -04007472{
Yan Zhengd899e052008-10-30 14:25:28 -04007473 struct btrfs_root *root = BTRFS_I(inode)->root;
7474 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -04007475 u64 cur_offset = start;
Josef Bacik55a61d12010-11-22 18:50:32 +00007476 u64 i_size;
Yan Zhengd899e052008-10-30 14:25:28 -04007477 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04007478 bool own_trans = true;
Yan Zhengd899e052008-10-30 14:25:28 -04007479
Josef Bacik0af3d002010-06-21 14:48:16 -04007480 if (trans)
7481 own_trans = false;
Yan Zhengd899e052008-10-30 14:25:28 -04007482 while (num_bytes > 0) {
Josef Bacik0af3d002010-06-21 14:48:16 -04007483 if (own_trans) {
7484 trans = btrfs_start_transaction(root, 3);
7485 if (IS_ERR(trans)) {
7486 ret = PTR_ERR(trans);
7487 break;
7488 }
Yan Zhengd899e052008-10-30 14:25:28 -04007489 }
Yan, Zheng5a303d52009-11-12 09:34:52 +00007490
Yan, Zhengefa56462010-05-16 10:49:59 -04007491 ret = btrfs_reserve_extent(trans, root, num_bytes, min_size,
Josef Bacik81c9ad22012-01-18 10:56:06 -05007492 0, *alloc_hint, &ins, 1);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007493 if (ret) {
Josef Bacik0af3d002010-06-21 14:48:16 -04007494 if (own_trans)
7495 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04007496 break;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007497 }
7498
Yan Zhengd899e052008-10-30 14:25:28 -04007499 ret = insert_reserved_file_extent(trans, inode,
7500 cur_offset, ins.objectid,
7501 ins.offset, ins.offset,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00007502 ins.offset, 0, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04007503 BTRFS_FILE_EXTENT_PREALLOC);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007504 if (ret) {
7505 btrfs_abort_transaction(trans, root, ret);
7506 if (own_trans)
7507 btrfs_end_transaction(trans, root);
7508 break;
7509 }
Chris Masona1ed8352009-09-11 12:27:37 -04007510 btrfs_drop_extent_cache(inode, cur_offset,
7511 cur_offset + ins.offset -1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007512
Yan Zhengd899e052008-10-30 14:25:28 -04007513 num_bytes -= ins.offset;
7514 cur_offset += ins.offset;
Yan, Zhengefa56462010-05-16 10:49:59 -04007515 *alloc_hint = ins.objectid + ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007516
Josef Bacik0c4d2d92012-04-05 15:03:02 -04007517 inode_inc_iversion(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04007518 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +02007519 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -04007520 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
Yan, Zhengefa56462010-05-16 10:49:59 -04007521 (actual_len > inode->i_size) &&
7522 (cur_offset > inode->i_size)) {
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00007523 if (cur_offset > actual_len)
Josef Bacik55a61d12010-11-22 18:50:32 +00007524 i_size = actual_len;
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00007525 else
Josef Bacik55a61d12010-11-22 18:50:32 +00007526 i_size = cur_offset;
7527 i_size_write(inode, i_size);
7528 btrfs_ordered_update_i_size(inode, i_size, NULL);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007529 }
7530
Yan Zhengd899e052008-10-30 14:25:28 -04007531 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007532
7533 if (ret) {
7534 btrfs_abort_transaction(trans, root, ret);
7535 if (own_trans)
7536 btrfs_end_transaction(trans, root);
7537 break;
7538 }
Yan Zhengd899e052008-10-30 14:25:28 -04007539
Josef Bacik0af3d002010-06-21 14:48:16 -04007540 if (own_trans)
7541 btrfs_end_transaction(trans, root);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007542 }
Yan Zhengd899e052008-10-30 14:25:28 -04007543 return ret;
7544}
7545
Josef Bacik0af3d002010-06-21 14:48:16 -04007546int btrfs_prealloc_file_range(struct inode *inode, int mode,
7547 u64 start, u64 num_bytes, u64 min_size,
7548 loff_t actual_len, u64 *alloc_hint)
7549{
7550 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
7551 min_size, actual_len, alloc_hint,
7552 NULL);
7553}
7554
7555int btrfs_prealloc_file_range_trans(struct inode *inode,
7556 struct btrfs_trans_handle *trans, int mode,
7557 u64 start, u64 num_bytes, u64 min_size,
7558 loff_t actual_len, u64 *alloc_hint)
7559{
7560 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
7561 min_size, actual_len, alloc_hint, trans);
7562}
7563
Chris Masone6dcd2d2008-07-17 12:53:50 -04007564static int btrfs_set_page_dirty(struct page *page)
7565{
Chris Masone6dcd2d2008-07-17 12:53:50 -04007566 return __set_page_dirty_nobuffers(page);
7567}
7568
Al Viro10556cb2011-06-20 19:28:19 -04007569static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -05007570{
Li Zefanb83cc962010-12-20 16:04:08 +08007571 struct btrfs_root *root = BTRFS_I(inode)->root;
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +00007572 umode_t mode = inode->i_mode;
Li Zefanb83cc962010-12-20 16:04:08 +08007573
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +00007574 if (mask & MAY_WRITE &&
7575 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) {
7576 if (btrfs_root_readonly(root))
7577 return -EROFS;
7578 if (BTRFS_I(inode)->flags & BTRFS_INODE_READONLY)
7579 return -EACCES;
7580 }
Al Viro2830ba72011-06-20 19:16:29 -04007581 return generic_permission(inode, mask);
Yanfdebe2b2008-01-14 13:26:08 -05007582}
Chris Mason39279cc2007-06-12 06:35:45 -04007583
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007584static const struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -05007585 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -04007586 .lookup = btrfs_lookup,
7587 .create = btrfs_create,
7588 .unlink = btrfs_unlink,
7589 .link = btrfs_link,
7590 .mkdir = btrfs_mkdir,
7591 .rmdir = btrfs_rmdir,
7592 .rename = btrfs_rename,
7593 .symlink = btrfs_symlink,
7594 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04007595 .mknod = btrfs_mknod,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007596 .setxattr = btrfs_setxattr,
7597 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05007598 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007599 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05007600 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007601 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04007602};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007603static const struct inode_operations btrfs_dir_ro_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007604 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05007605 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007606 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04007607};
Yan, Zheng76dda932009-09-21 16:00:26 -04007608
Alexey Dobriyan828c0952009-10-01 15:43:56 -07007609static const struct file_operations btrfs_dir_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007610 .llseek = generic_file_llseek,
7611 .read = generic_read_dir,
David Woodhousecbdf5a22008-08-06 19:42:33 +01007612 .readdir = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04007613 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04007614#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04007615 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04007616#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04007617 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -04007618 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -04007619};
7620
Chris Masond1310b22008-01-24 16:13:08 -05007621static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04007622 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05007623 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04007624 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04007625 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04007626 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04007627 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05007628 .set_bit_hook = btrfs_set_bit_hook,
7629 .clear_bit_hook = btrfs_clear_bit_hook,
Josef Bacik9ed74f22009-09-11 16:12:44 -04007630 .merge_extent_hook = btrfs_merge_extent_hook,
7631 .split_extent_hook = btrfs_split_extent_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04007632};
7633
Chris Mason35054392009-01-21 13:11:13 -05007634/*
7635 * btrfs doesn't support the bmap operation because swapfiles
7636 * use bmap to make a mapping of extents in the file. They assume
7637 * these extents won't change over the life of the file and they
7638 * use the bmap result to do IO directly to the drive.
7639 *
7640 * the btrfs bmap call would return logical addresses that aren't
7641 * suitable for IO and they also will change frequently as COW
7642 * operations happen. So, swapfile + btrfs == corruption.
7643 *
7644 * For now we're avoiding this by dropping bmap.
7645 */
Alexey Dobriyan7f094102009-09-21 17:01:10 -07007646static const struct address_space_operations btrfs_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04007647 .readpage = btrfs_readpage,
7648 .writepage = btrfs_writepage,
Chris Masonb293f022007-11-01 19:45:34 -04007649 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05007650 .readpages = btrfs_readpages,
Chris Mason16432982008-04-10 10:23:21 -04007651 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04007652 .invalidatepage = btrfs_invalidatepage,
7653 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04007654 .set_page_dirty = btrfs_set_page_dirty,
Andi Kleen465fdd92009-09-16 11:50:18 +02007655 .error_remove_page = generic_error_remove_page,
Chris Mason39279cc2007-06-12 06:35:45 -04007656};
7657
Alexey Dobriyan7f094102009-09-21 17:01:10 -07007658static const struct address_space_operations btrfs_symlink_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04007659 .readpage = btrfs_readpage,
7660 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04007661 .invalidatepage = btrfs_invalidatepage,
7662 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04007663};
7664
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007665static const struct inode_operations btrfs_file_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007666 .getattr = btrfs_getattr,
7667 .setattr = btrfs_setattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007668 .setxattr = btrfs_setxattr,
7669 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05007670 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007671 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05007672 .permission = btrfs_permission,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05007673 .fiemap = btrfs_fiemap,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007674 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04007675};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007676static const struct inode_operations btrfs_special_inode_operations = {
Josef Bacik618e21d2007-07-11 10:18:17 -04007677 .getattr = btrfs_getattr,
7678 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05007679 .permission = btrfs_permission,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007680 .setxattr = btrfs_setxattr,
7681 .getxattr = btrfs_getxattr,
Josef Bacik33268ea2008-07-24 12:16:36 -04007682 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007683 .removexattr = btrfs_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007684 .get_acl = btrfs_get_acl,
Josef Bacik618e21d2007-07-11 10:18:17 -04007685};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007686static const struct inode_operations btrfs_symlink_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007687 .readlink = generic_readlink,
7688 .follow_link = page_follow_link_light,
7689 .put_link = page_put_link,
Li Zefanf2095612010-11-19 02:05:24 +00007690 .getattr = btrfs_getattr,
Josef Bacik22c44fe2011-11-30 10:45:38 -05007691 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05007692 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -05007693 .setxattr = btrfs_setxattr,
7694 .getxattr = btrfs_getxattr,
7695 .listxattr = btrfs_listxattr,
7696 .removexattr = btrfs_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007697 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04007698};
Yan, Zheng76dda932009-09-21 16:00:26 -04007699
Alexey Dobriyan82d339d2009-10-09 09:54:36 -04007700const struct dentry_operations btrfs_dentry_operations = {
Yan, Zheng76dda932009-09-21 16:00:26 -04007701 .d_delete = btrfs_dentry_delete,
Josef Bacikb4aff1f2011-06-28 16:18:59 -04007702 .d_release = btrfs_dentry_release,
Yan, Zheng76dda932009-09-21 16:00:26 -04007703};