blob: 38cda78de5e43be336b1028a09c636599d174b68 [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, Zhengc2167752009-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, Zhengc2167752009-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 Bacik7a7eaa42011-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, Zhengc2167752009-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, Zhengc2167752009-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 Bacik7a7eaa42011-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, Zhengc2167752009-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, Zhengc2167752009-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
Liu Bo83eea1f2012-07-10 05:28:39 -0600828 BUG_ON(btrfs_is_free_space_inode(inode));
Josef Bacik7a7eaa42011-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, Zhengc2167752009-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) {
Josef Bacikcb77fcd2012-06-15 12:19:48 -0600990 btrfs_add_delayed_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
Josef Bacik66657b32012-08-01 15:36:24 -04001010 if (atomic_sub_return(nr_pages, &root->fs_info->async_delalloc_pages) <
Liu Bo287082b2012-06-28 04:02:24 -06001011 5 * 1024 * 1024 &&
Chris Mason771ed682008-11-06 22:02:51 -05001012 waitqueue_active(&root->fs_info->async_submit_wait))
1013 wake_up(&root->fs_info->async_submit_wait);
1014
Chris Masond3977122009-01-05 21:25:51 -05001015 if (async_cow->inode)
Chris Mason771ed682008-11-06 22:02:51 -05001016 submit_compressed_extents(async_cow->inode, async_cow);
Chris Mason771ed682008-11-06 22:02:51 -05001017}
Chris Masonc8b97812008-10-29 14:49:59 -04001018
Chris Mason771ed682008-11-06 22:02:51 -05001019static noinline void async_cow_free(struct btrfs_work *work)
1020{
1021 struct async_cow *async_cow;
1022 async_cow = container_of(work, struct async_cow, work);
Josef Bacik8180ef82012-06-08 15:16:12 -04001023 if (async_cow->inode)
Josef Bacikcb77fcd2012-06-15 12:19:48 -06001024 btrfs_add_delayed_iput(async_cow->inode);
Chris Mason771ed682008-11-06 22:02:51 -05001025 kfree(async_cow);
1026}
1027
1028static int cow_file_range_async(struct inode *inode, struct page *locked_page,
1029 u64 start, u64 end, int *page_started,
1030 unsigned long *nr_written)
1031{
1032 struct async_cow *async_cow;
1033 struct btrfs_root *root = BTRFS_I(inode)->root;
1034 unsigned long nr_pages;
1035 u64 cur_end;
Liu Bo287082b2012-06-28 04:02:24 -06001036 int limit = 10 * 1024 * 1024;
Chris Mason771ed682008-11-06 22:02:51 -05001037
Chris Masona3429ab2009-10-08 12:30:20 -04001038 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED,
1039 1, 0, NULL, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -05001040 while (start < end) {
Chris Mason771ed682008-11-06 22:02:51 -05001041 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001042 BUG_ON(!async_cow); /* -ENOMEM */
Josef Bacik8180ef82012-06-08 15:16:12 -04001043 async_cow->inode = igrab(inode);
Chris Mason771ed682008-11-06 22:02:51 -05001044 async_cow->root = root;
1045 async_cow->locked_page = locked_page;
1046 async_cow->start = start;
1047
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001048 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS)
Chris Mason771ed682008-11-06 22:02:51 -05001049 cur_end = end;
1050 else
1051 cur_end = min(end, start + 512 * 1024 - 1);
1052
1053 async_cow->end = cur_end;
1054 INIT_LIST_HEAD(&async_cow->extents);
1055
1056 async_cow->work.func = async_cow_start;
1057 async_cow->work.ordered_func = async_cow_submit;
1058 async_cow->work.ordered_free = async_cow_free;
1059 async_cow->work.flags = 0;
1060
Chris Mason771ed682008-11-06 22:02:51 -05001061 nr_pages = (cur_end - start + PAGE_CACHE_SIZE) >>
1062 PAGE_CACHE_SHIFT;
1063 atomic_add(nr_pages, &root->fs_info->async_delalloc_pages);
1064
1065 btrfs_queue_worker(&root->fs_info->delalloc_workers,
1066 &async_cow->work);
1067
1068 if (atomic_read(&root->fs_info->async_delalloc_pages) > limit) {
1069 wait_event(root->fs_info->async_submit_wait,
1070 (atomic_read(&root->fs_info->async_delalloc_pages) <
1071 limit));
1072 }
1073
Chris Masond3977122009-01-05 21:25:51 -05001074 while (atomic_read(&root->fs_info->async_submit_draining) &&
Chris Mason771ed682008-11-06 22:02:51 -05001075 atomic_read(&root->fs_info->async_delalloc_pages)) {
1076 wait_event(root->fs_info->async_submit_wait,
1077 (atomic_read(&root->fs_info->async_delalloc_pages) ==
1078 0));
1079 }
1080
1081 *nr_written += nr_pages;
1082 start = cur_end + 1;
1083 }
1084 *page_started = 1;
1085 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001086}
1087
Chris Masond3977122009-01-05 21:25:51 -05001088static noinline int csum_exist_in_range(struct btrfs_root *root,
Yan Zheng17d217f2008-12-12 10:03:38 -05001089 u64 bytenr, u64 num_bytes)
1090{
1091 int ret;
1092 struct btrfs_ordered_sum *sums;
1093 LIST_HEAD(list);
1094
Yan Zheng07d400a2009-01-06 11:42:00 -05001095 ret = btrfs_lookup_csums_range(root->fs_info->csum_root, bytenr,
Arne Jansena2de7332011-03-08 14:14:00 +01001096 bytenr + num_bytes - 1, &list, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -05001097 if (ret == 0 && list_empty(&list))
1098 return 0;
1099
1100 while (!list_empty(&list)) {
1101 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
1102 list_del(&sums->list);
1103 kfree(sums);
1104 }
1105 return 1;
1106}
1107
Chris Masond352ac62008-09-29 15:18:18 -04001108/*
1109 * when nowcow writeback call back. This checks for snapshots or COW copies
1110 * of the extents that exist in the file, and COWs the file as required.
1111 *
1112 * If no cow copies or snapshots exist, we write directly to the existing
1113 * blocks on disk
1114 */
Chris Mason7f366cf2009-03-12 20:12:45 -04001115static noinline int run_delalloc_nocow(struct inode *inode,
1116 struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001117 u64 start, u64 end, int *page_started, int force,
1118 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001119{
Chris Masonbe20aa92007-12-17 20:14:01 -05001120 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001121 struct btrfs_trans_handle *trans;
Chris Masonbe20aa92007-12-17 20:14:01 -05001122 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -05001123 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -04001124 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -05001125 struct btrfs_key found_key;
Yan Zheng80ff3852008-10-30 14:20:02 -04001126 u64 cow_start;
1127 u64 cur_offset;
1128 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001129 u64 extent_offset;
Yan Zheng80ff3852008-10-30 14:20:02 -04001130 u64 disk_bytenr;
1131 u64 num_bytes;
1132 int extent_type;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001133 int ret, err;
Yan Zhengd899e052008-10-30 14:25:28 -04001134 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -04001135 int nocow;
1136 int check_prev = 1;
Li Zefan82d59022011-04-20 10:33:24 +08001137 bool nolock;
Li Zefan33345d012011-04-20 10:31:50 +08001138 u64 ino = btrfs_ino(inode);
Chris Masonbe20aa92007-12-17 20:14:01 -05001139
1140 path = btrfs_alloc_path();
Josef Bacik17ca04a2012-05-31 15:58:55 -04001141 if (!path) {
1142 extent_clear_unlock_delalloc(inode,
1143 &BTRFS_I(inode)->io_tree,
1144 start, end, locked_page,
1145 EXTENT_CLEAR_UNLOCK_PAGE |
1146 EXTENT_CLEAR_UNLOCK |
1147 EXTENT_CLEAR_DELALLOC |
1148 EXTENT_CLEAR_DIRTY |
1149 EXTENT_SET_WRITEBACK |
1150 EXTENT_END_WRITEBACK);
Mark Fashehd8926bb2011-07-13 10:38:47 -07001151 return -ENOMEM;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001152 }
Li Zefan82d59022011-04-20 10:33:24 +08001153
Liu Bo83eea1f2012-07-10 05:28:39 -06001154 nolock = btrfs_is_free_space_inode(inode);
Li Zefan82d59022011-04-20 10:33:24 +08001155
1156 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001157 trans = btrfs_join_transaction_nolock(root);
Li Zefan82d59022011-04-20 10:33:24 +08001158 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001159 trans = btrfs_join_transaction(root);
Chris Masonff5714c2011-05-28 07:00:39 -04001160
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001161 if (IS_ERR(trans)) {
Josef Bacik17ca04a2012-05-31 15:58:55 -04001162 extent_clear_unlock_delalloc(inode,
1163 &BTRFS_I(inode)->io_tree,
1164 start, end, locked_page,
1165 EXTENT_CLEAR_UNLOCK_PAGE |
1166 EXTENT_CLEAR_UNLOCK |
1167 EXTENT_CLEAR_DELALLOC |
1168 EXTENT_CLEAR_DIRTY |
1169 EXTENT_SET_WRITEBACK |
1170 EXTENT_END_WRITEBACK);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001171 btrfs_free_path(path);
1172 return PTR_ERR(trans);
1173 }
1174
Josef Bacik74b21072011-04-13 12:02:53 -04001175 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Masonbe20aa92007-12-17 20:14:01 -05001176
Yan Zheng80ff3852008-10-30 14:20:02 -04001177 cow_start = (u64)-1;
1178 cur_offset = start;
1179 while (1) {
Li Zefan33345d012011-04-20 10:31:50 +08001180 ret = btrfs_lookup_file_extent(trans, root, path, ino,
Yan Zheng80ff3852008-10-30 14:20:02 -04001181 cur_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001182 if (ret < 0) {
1183 btrfs_abort_transaction(trans, root, ret);
1184 goto error;
1185 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001186 if (ret > 0 && path->slots[0] > 0 && check_prev) {
1187 leaf = path->nodes[0];
1188 btrfs_item_key_to_cpu(leaf, &found_key,
1189 path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +08001190 if (found_key.objectid == ino &&
Yan Zheng80ff3852008-10-30 14:20:02 -04001191 found_key.type == BTRFS_EXTENT_DATA_KEY)
1192 path->slots[0]--;
1193 }
1194 check_prev = 0;
1195next_slot:
1196 leaf = path->nodes[0];
1197 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1198 ret = btrfs_next_leaf(root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001199 if (ret < 0) {
1200 btrfs_abort_transaction(trans, root, ret);
1201 goto error;
1202 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001203 if (ret > 0)
1204 break;
1205 leaf = path->nodes[0];
1206 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001207
Yan Zheng80ff3852008-10-30 14:20:02 -04001208 nocow = 0;
1209 disk_bytenr = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -05001210 num_bytes = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001211 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05001212
Li Zefan33345d012011-04-20 10:31:50 +08001213 if (found_key.objectid > ino ||
Yan Zheng80ff3852008-10-30 14:20:02 -04001214 found_key.type > BTRFS_EXTENT_DATA_KEY ||
1215 found_key.offset > end)
1216 break;
Chris Masonbe20aa92007-12-17 20:14:01 -05001217
Yan Zheng80ff3852008-10-30 14:20:02 -04001218 if (found_key.offset > cur_offset) {
1219 extent_end = found_key.offset;
Chris Masone9061e22009-10-09 09:57:45 -04001220 extent_type = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001221 goto out_check;
1222 }
Chris Masonc31f8832008-01-08 15:46:31 -05001223
Yan Zheng80ff3852008-10-30 14:20:02 -04001224 fi = btrfs_item_ptr(leaf, path->slots[0],
1225 struct btrfs_file_extent_item);
1226 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -05001227
Yan Zhengd899e052008-10-30 14:25:28 -04001228 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1229 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001230 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001231 extent_offset = btrfs_file_extent_offset(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001232 extent_end = found_key.offset +
1233 btrfs_file_extent_num_bytes(leaf, fi);
1234 if (extent_end <= start) {
1235 path->slots[0]++;
1236 goto next_slot;
1237 }
Yan Zheng17d217f2008-12-12 10:03:38 -05001238 if (disk_bytenr == 0)
1239 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001240 if (btrfs_file_extent_compression(leaf, fi) ||
1241 btrfs_file_extent_encryption(leaf, fi) ||
1242 btrfs_file_extent_other_encoding(leaf, fi))
1243 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001244 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1245 goto out_check;
Yan Zhengd2fb3432008-12-11 16:30:39 -05001246 if (btrfs_extent_readonly(root, disk_bytenr))
Yan Zheng80ff3852008-10-30 14:20:02 -04001247 goto out_check;
Li Zefan33345d012011-04-20 10:31:50 +08001248 if (btrfs_cross_ref_exist(trans, root, ino,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001249 found_key.offset -
1250 extent_offset, disk_bytenr))
Yan Zheng17d217f2008-12-12 10:03:38 -05001251 goto out_check;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001252 disk_bytenr += extent_offset;
Yan Zheng17d217f2008-12-12 10:03:38 -05001253 disk_bytenr += cur_offset - found_key.offset;
1254 num_bytes = min(end + 1, extent_end) - cur_offset;
1255 /*
1256 * force cow if csum exists in the range.
1257 * this ensure that csum for a given extent are
1258 * either valid or do not exist.
1259 */
1260 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
1261 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001262 nocow = 1;
1263 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1264 extent_end = found_key.offset +
1265 btrfs_file_extent_inline_len(leaf, fi);
1266 extent_end = ALIGN(extent_end, root->sectorsize);
1267 } else {
1268 BUG_ON(1);
1269 }
1270out_check:
1271 if (extent_end <= start) {
1272 path->slots[0]++;
1273 goto next_slot;
1274 }
1275 if (!nocow) {
1276 if (cow_start == (u64)-1)
1277 cow_start = cur_offset;
1278 cur_offset = extent_end;
1279 if (cur_offset > end)
1280 break;
1281 path->slots[0]++;
1282 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001283 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001284
David Sterbab3b4aa72011-04-21 01:20:15 +02001285 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001286 if (cow_start != (u64)-1) {
1287 ret = cow_file_range(inode, locked_page, cow_start,
Chris Mason771ed682008-11-06 22:02:51 -05001288 found_key.offset - 1, page_started,
1289 nr_written, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001290 if (ret) {
1291 btrfs_abort_transaction(trans, root, ret);
1292 goto error;
1293 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001294 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001295 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001296
Yan Zhengd899e052008-10-30 14:25:28 -04001297 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1298 struct extent_map *em;
1299 struct extent_map_tree *em_tree;
1300 em_tree = &BTRFS_I(inode)->extent_tree;
David Sterba172ddd62011-04-21 00:48:27 +02001301 em = alloc_extent_map();
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001302 BUG_ON(!em); /* -ENOMEM */
Yan Zhengd899e052008-10-30 14:25:28 -04001303 em->start = cur_offset;
Chris Mason445a6942008-11-10 11:53:33 -05001304 em->orig_start = em->start;
Yan Zhengd899e052008-10-30 14:25:28 -04001305 em->len = num_bytes;
1306 em->block_len = num_bytes;
1307 em->block_start = disk_bytenr;
1308 em->bdev = root->fs_info->fs_devices->latest_bdev;
1309 set_bit(EXTENT_FLAG_PINNED, &em->flags);
1310 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04001311 write_lock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001312 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04001313 write_unlock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001314 if (ret != -EEXIST) {
1315 free_extent_map(em);
1316 break;
1317 }
1318 btrfs_drop_extent_cache(inode, em->start,
1319 em->start + em->len - 1, 0);
1320 }
1321 type = BTRFS_ORDERED_PREALLOC;
1322 } else {
1323 type = BTRFS_ORDERED_NOCOW;
1324 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001325
1326 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001327 num_bytes, num_bytes, type);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001328 BUG_ON(ret); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -05001329
Yan, Zhengefa56462010-05-16 10:49:59 -04001330 if (root->root_key.objectid ==
1331 BTRFS_DATA_RELOC_TREE_OBJECTID) {
1332 ret = btrfs_reloc_clone_csums(inode, cur_offset,
1333 num_bytes);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001334 if (ret) {
1335 btrfs_abort_transaction(trans, root, ret);
1336 goto error;
1337 }
Yan, Zhengefa56462010-05-16 10:49:59 -04001338 }
1339
Yan Zhengd899e052008-10-30 14:25:28 -04001340 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
Chris Masona791e352009-10-08 11:27:10 -04001341 cur_offset, cur_offset + num_bytes - 1,
1342 locked_page, EXTENT_CLEAR_UNLOCK_PAGE |
1343 EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
1344 EXTENT_SET_PRIVATE2);
Yan Zheng80ff3852008-10-30 14:20:02 -04001345 cur_offset = extent_end;
1346 if (cur_offset > end)
1347 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001348 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001349 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001350
Josef Bacik17ca04a2012-05-31 15:58:55 -04001351 if (cur_offset <= end && cow_start == (u64)-1) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001352 cow_start = cur_offset;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001353 cur_offset = end;
1354 }
1355
Yan Zheng80ff3852008-10-30 14:20:02 -04001356 if (cow_start != (u64)-1) {
1357 ret = cow_file_range(inode, locked_page, cow_start, end,
Chris Mason771ed682008-11-06 22:02:51 -05001358 page_started, nr_written, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001359 if (ret) {
1360 btrfs_abort_transaction(trans, root, ret);
1361 goto error;
1362 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001363 }
1364
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001365error:
Josef Bacik0cb59c92010-07-02 12:14:14 -04001366 if (nolock) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001367 err = btrfs_end_transaction_nolock(trans, root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001368 } else {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001369 err = btrfs_end_transaction(trans, root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001370 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001371 if (!ret)
1372 ret = err;
1373
Josef Bacik17ca04a2012-05-31 15:58:55 -04001374 if (ret && cur_offset < end)
1375 extent_clear_unlock_delalloc(inode,
1376 &BTRFS_I(inode)->io_tree,
1377 cur_offset, end, locked_page,
1378 EXTENT_CLEAR_UNLOCK_PAGE |
1379 EXTENT_CLEAR_UNLOCK |
1380 EXTENT_CLEAR_DELALLOC |
1381 EXTENT_CLEAR_DIRTY |
1382 EXTENT_SET_WRITEBACK |
1383 EXTENT_END_WRITEBACK);
1384
Yan Zheng7ea394f2008-08-05 13:05:02 -04001385 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001386 return ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05001387}
1388
Chris Masond352ac62008-09-29 15:18:18 -04001389/*
1390 * extent_io.c call back to do delayed allocation processing
1391 */
Chris Masonc8b97812008-10-29 14:49:59 -04001392static int run_delalloc_range(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001393 u64 start, u64 end, int *page_started,
1394 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001395{
Chris Masonbe20aa92007-12-17 20:14:01 -05001396 int ret;
Chris Mason7f366cf2009-03-12 20:12:45 -04001397 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masona2135012008-06-25 16:01:30 -04001398
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001399 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) {
Chris Masonc8b97812008-10-29 14:49:59 -04001400 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001401 page_started, 1, nr_written);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001402 } else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC) {
Yan Zhengd899e052008-10-30 14:25:28 -04001403 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001404 page_started, 0, nr_written);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001405 } else if (!btrfs_test_opt(root, COMPRESS) &&
1406 !(BTRFS_I(inode)->force_compress) &&
1407 !(BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS)) {
Chris Mason7f366cf2009-03-12 20:12:45 -04001408 ret = cow_file_range(inode, locked_page, start, end,
1409 page_started, nr_written, 1);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001410 } else {
1411 set_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1412 &BTRFS_I(inode)->runtime_flags);
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);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001415 }
Chris Masonb888db22007-08-27 16:49:44 -04001416 return ret;
1417}
1418
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001419static void btrfs_split_extent_hook(struct inode *inode,
1420 struct extent_state *orig, u64 split)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001421{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001422 /* not delalloc, ignore it */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001423 if (!(orig->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001424 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001425
Josef Bacik9e0baf62011-07-15 15:16:44 +00001426 spin_lock(&BTRFS_I(inode)->lock);
1427 BTRFS_I(inode)->outstanding_extents++;
1428 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001429}
1430
1431/*
1432 * extent_io.c merge_extent_hook, used to track merged delayed allocation
1433 * extents so we can keep track of new extents that are just merged onto old
1434 * extents, such as when we are doing sequential writes, so we can properly
1435 * account for the metadata space we'll need.
1436 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001437static void btrfs_merge_extent_hook(struct inode *inode,
1438 struct extent_state *new,
1439 struct extent_state *other)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001440{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001441 /* not delalloc, ignore it */
1442 if (!(other->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001443 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001444
Josef Bacik9e0baf62011-07-15 15:16:44 +00001445 spin_lock(&BTRFS_I(inode)->lock);
1446 BTRFS_I(inode)->outstanding_extents--;
1447 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001448}
1449
Chris Masond352ac62008-09-29 15:18:18 -04001450/*
1451 * extent_io.c set_bit_hook, used to track delayed allocation
1452 * bytes in this file, and to maintain the list of inodes that
1453 * have pending delalloc work to be done.
1454 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001455static void btrfs_set_bit_hook(struct inode *inode,
1456 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001457{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001458
Chris Mason75eff682008-12-15 15:54:40 -05001459 /*
1460 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001461 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001462 * bit, which is only set or cleared with irqs on
1463 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001464 if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001465 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001466 u64 len = state->end + 1 - state->start;
Liu Bo83eea1f2012-07-10 05:28:39 -06001467 bool do_list = !btrfs_is_free_space_inode(inode);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001468
Josef Bacik9e0baf62011-07-15 15:16:44 +00001469 if (*bits & EXTENT_FIRST_DELALLOC) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001470 *bits &= ~EXTENT_FIRST_DELALLOC;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001471 } else {
1472 spin_lock(&BTRFS_I(inode)->lock);
1473 BTRFS_I(inode)->outstanding_extents++;
1474 spin_unlock(&BTRFS_I(inode)->lock);
1475 }
Josef Bacik287a0ab2010-03-19 18:07:23 +00001476
Chris Mason75eff682008-12-15 15:54:40 -05001477 spin_lock(&root->fs_info->delalloc_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001478 BTRFS_I(inode)->delalloc_bytes += len;
1479 root->fs_info->delalloc_bytes += len;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001480 if (do_list && list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
Chris Masonea8c2812008-08-04 23:17:27 -04001481 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1482 &root->fs_info->delalloc_inodes);
1483 }
Chris Mason75eff682008-12-15 15:54:40 -05001484 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001485 }
Chris Mason291d6732008-01-29 15:55:23 -05001486}
1487
Chris Masond352ac62008-09-29 15:18:18 -04001488/*
1489 * extent_io.c clear_bit_hook, see set_bit_hook for why
1490 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001491static void btrfs_clear_bit_hook(struct inode *inode,
1492 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001493{
Chris Mason75eff682008-12-15 15:54:40 -05001494 /*
1495 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001496 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001497 * bit, which is only set or cleared with irqs on
1498 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001499 if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001500 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001501 u64 len = state->end + 1 - state->start;
Liu Bo83eea1f2012-07-10 05:28:39 -06001502 bool do_list = !btrfs_is_free_space_inode(inode);
Chris Masonbcbfce82008-04-22 13:26:47 -04001503
Josef Bacik9e0baf62011-07-15 15:16:44 +00001504 if (*bits & EXTENT_FIRST_DELALLOC) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001505 *bits &= ~EXTENT_FIRST_DELALLOC;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001506 } else if (!(*bits & EXTENT_DO_ACCOUNTING)) {
1507 spin_lock(&BTRFS_I(inode)->lock);
1508 BTRFS_I(inode)->outstanding_extents--;
1509 spin_unlock(&BTRFS_I(inode)->lock);
1510 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001511
1512 if (*bits & EXTENT_DO_ACCOUNTING)
1513 btrfs_delalloc_release_metadata(inode, len);
1514
Josef Bacik0cb59c92010-07-02 12:14:14 -04001515 if (root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID
1516 && do_list)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001517 btrfs_free_reserved_data_space(inode, len);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001518
Chris Mason75eff682008-12-15 15:54:40 -05001519 spin_lock(&root->fs_info->delalloc_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001520 root->fs_info->delalloc_bytes -= len;
1521 BTRFS_I(inode)->delalloc_bytes -= len;
1522
Josef Bacik0cb59c92010-07-02 12:14:14 -04001523 if (do_list && BTRFS_I(inode)->delalloc_bytes == 0 &&
Chris Masonea8c2812008-08-04 23:17:27 -04001524 !list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1525 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
1526 }
Chris Mason75eff682008-12-15 15:54:40 -05001527 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001528 }
Chris Mason291d6732008-01-29 15:55:23 -05001529}
1530
Chris Masond352ac62008-09-29 15:18:18 -04001531/*
1532 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1533 * we don't create bios that span stripes or chunks
1534 */
Chris Mason239b14b2008-03-24 15:02:07 -04001535int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001536 size_t size, struct bio *bio,
1537 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001538{
1539 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
1540 struct btrfs_mapping_tree *map_tree;
Chris Masona62b9402008-10-03 16:31:08 -04001541 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001542 u64 length = 0;
1543 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001544 int ret;
1545
Chris Mason771ed682008-11-06 22:02:51 -05001546 if (bio_flags & EXTENT_BIO_COMPRESSED)
1547 return 0;
1548
Chris Masonf2d8d742008-04-21 10:03:05 -04001549 length = bio->bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001550 map_tree = &root->fs_info->mapping_tree;
1551 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04001552 ret = btrfs_map_block(map_tree, READ, logical,
Chris Masonf1885912008-04-09 16:28:12 -04001553 &map_length, NULL, 0);
Jeff Mahoney3444a972011-10-03 23:23:13 -04001554 /* Will always return 0 or 1 with map_multi == NULL */
1555 BUG_ON(ret < 0);
Chris Masond3977122009-01-05 21:25:51 -05001556 if (map_length < length + size)
Chris Mason239b14b2008-03-24 15:02:07 -04001557 return 1;
Jeff Mahoney3444a972011-10-03 23:23:13 -04001558 return 0;
Chris Mason239b14b2008-03-24 15:02:07 -04001559}
1560
Chris Masond352ac62008-09-29 15:18:18 -04001561/*
1562 * in order to insert checksums into the metadata in large chunks,
1563 * we wait until bio submission time. All the pages in the bio are
1564 * checksummed and sums are attached onto the ordered extent record.
1565 *
1566 * At IO completion time the cums attached on the ordered extent record
1567 * are inserted into the btree
1568 */
Chris Masond3977122009-01-05 21:25:51 -05001569static int __btrfs_submit_bio_start(struct inode *inode, int rw,
1570 struct bio *bio, int mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001571 unsigned long bio_flags,
1572 u64 bio_offset)
Chris Mason065631f2008-02-20 12:07:25 -05001573{
Chris Mason065631f2008-02-20 12:07:25 -05001574 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason065631f2008-02-20 12:07:25 -05001575 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001576
Chris Masond20f7042008-12-08 16:58:54 -05001577 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001578 BUG_ON(ret); /* -ENOMEM */
Chris Mason4a69a412008-11-06 22:03:00 -05001579 return 0;
1580}
Chris Masone0156402008-04-16 11:15:20 -04001581
Chris Mason4a69a412008-11-06 22:03:00 -05001582/*
1583 * in order to insert checksums into the metadata in large chunks,
1584 * we wait until bio submission time. All the pages in the bio are
1585 * checksummed and sums are attached onto the ordered extent record.
1586 *
1587 * At IO completion time the cums attached on the ordered extent record
1588 * are inserted into the btree
1589 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001590static int __btrfs_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001591 int mirror_num, unsigned long bio_flags,
1592 u64 bio_offset)
Chris Mason4a69a412008-11-06 22:03:00 -05001593{
1594 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason8b712842008-06-11 16:50:36 -04001595 return btrfs_map_bio(root, rw, bio, mirror_num, 1);
Chris Mason44b8bd72008-04-16 11:14:51 -04001596}
1597
Chris Masond352ac62008-09-29 15:18:18 -04001598/*
Chris Masoncad321a2008-12-17 14:51:42 -05001599 * extent_io.c submission hook. This does the right thing for csum calculation
1600 * on write, or reading the csums from the tree before a read
Chris Masond352ac62008-09-29 15:18:18 -04001601 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001602static int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001603 int mirror_num, unsigned long bio_flags,
1604 u64 bio_offset)
Chris Mason44b8bd72008-04-16 11:14:51 -04001605{
1606 struct btrfs_root *root = BTRFS_I(inode)->root;
1607 int ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001608 int skip_sum;
Jeff Mahoney04173412011-10-03 23:23:12 -04001609 int metadata = 0;
Chris Mason44b8bd72008-04-16 11:14:51 -04001610
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001611 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masoncad321a2008-12-17 14:51:42 -05001612
Liu Bo83eea1f2012-07-10 05:28:39 -06001613 if (btrfs_is_free_space_inode(inode))
Jeff Mahoney04173412011-10-03 23:23:12 -04001614 metadata = 2;
1615
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001616 if (!(rw & REQ_WRITE)) {
Josef Bacik5fd02042012-05-02 14:00:54 -04001617 ret = btrfs_bio_wq_end_io(root->fs_info, bio, metadata);
1618 if (ret)
1619 return ret;
1620
Chris Masond20f7042008-12-08 16:58:54 -05001621 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Chris Masonc8b97812008-10-29 14:49:59 -04001622 return btrfs_submit_compressed_read(inode, bio,
1623 mirror_num, bio_flags);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001624 } else if (!skip_sum) {
1625 ret = btrfs_lookup_bio_sums(root, inode, bio, NULL);
1626 if (ret)
1627 return ret;
1628 }
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001629 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001630 } else if (!skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001631 /* csum items have already been cloned */
1632 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1633 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001634 /* we're doing a write, do the async checksumming */
1635 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
Chris Mason44b8bd72008-04-16 11:14:51 -04001636 inode, rw, bio, mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001637 bio_flags, bio_offset,
1638 __btrfs_submit_bio_start,
Chris Mason4a69a412008-11-06 22:03:00 -05001639 __btrfs_submit_bio_done);
Chris Mason19b9bdb2008-10-30 14:23:13 -04001640 }
1641
Chris Mason0b86a832008-03-24 15:01:56 -04001642mapit:
Chris Mason8b712842008-06-11 16:50:36 -04001643 return btrfs_map_bio(root, rw, bio, mirror_num, 0);
Chris Mason065631f2008-02-20 12:07:25 -05001644}
Chris Mason6885f302008-02-20 16:11:05 -05001645
Chris Masond352ac62008-09-29 15:18:18 -04001646/*
1647 * given a list of ordered sums record them in the inode. This happens
1648 * at IO completion time based on sums calculated at bio submission time.
1649 */
Chris Masonba1da2f2008-07-17 12:54:15 -04001650static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -04001651 struct inode *inode, u64 file_offset,
1652 struct list_head *list)
1653{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001654 struct btrfs_ordered_sum *sum;
1655
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001656 list_for_each_entry(sum, list, list) {
Chris Masond20f7042008-12-08 16:58:54 -05001657 btrfs_csum_file_blocks(trans,
1658 BTRFS_I(inode)->root->fs_info->csum_root, sum);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001659 }
1660 return 0;
1661}
1662
Josef Bacik2ac55d42010-02-03 19:33:23 +00001663int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end,
1664 struct extent_state **cached_state)
Chris Masonea8c2812008-08-04 23:17:27 -04001665{
Chris Masond3977122009-01-05 21:25:51 -05001666 if ((end & (PAGE_CACHE_SIZE - 1)) == 0)
Chris Mason771ed682008-11-06 22:02:51 -05001667 WARN_ON(1);
Chris Masonea8c2812008-08-04 23:17:27 -04001668 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001669 cached_state, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04001670}
1671
Chris Masond352ac62008-09-29 15:18:18 -04001672/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04001673struct btrfs_writepage_fixup {
1674 struct page *page;
1675 struct btrfs_work work;
1676};
1677
Christoph Hellwigb2950862008-12-02 09:54:17 -05001678static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04001679{
1680 struct btrfs_writepage_fixup *fixup;
1681 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001682 struct extent_state *cached_state = NULL;
Chris Mason247e7432008-07-17 12:53:51 -04001683 struct page *page;
1684 struct inode *inode;
1685 u64 page_start;
1686 u64 page_end;
Jeff Mahoney87826df2012-02-15 16:23:57 +01001687 int ret;
Chris Mason247e7432008-07-17 12:53:51 -04001688
1689 fixup = container_of(work, struct btrfs_writepage_fixup, work);
1690 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04001691again:
Chris Mason247e7432008-07-17 12:53:51 -04001692 lock_page(page);
1693 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
1694 ClearPageChecked(page);
1695 goto out_page;
1696 }
1697
1698 inode = page->mapping->host;
1699 page_start = page_offset(page);
1700 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
1701
Josef Bacik2ac55d42010-02-03 19:33:23 +00001702 lock_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001703 &cached_state);
Chris Mason4a096752008-07-21 10:29:44 -04001704
1705 /* already ordered? We're done */
Chris Mason8b62b722009-09-02 16:53:46 -04001706 if (PagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001707 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04001708
1709 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1710 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00001711 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start,
1712 page_end, &cached_state, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001713 unlock_page(page);
1714 btrfs_start_ordered_extent(inode, ordered, 1);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001715 btrfs_put_ordered_extent(ordered);
Chris Mason4a096752008-07-21 10:29:44 -04001716 goto again;
1717 }
Chris Mason247e7432008-07-17 12:53:51 -04001718
Jeff Mahoney87826df2012-02-15 16:23:57 +01001719 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
1720 if (ret) {
1721 mapping_set_error(page->mapping, ret);
1722 end_extent_writepage(page, ret, page_start, page_end);
1723 ClearPageChecked(page);
1724 goto out;
1725 }
1726
Josef Bacik2ac55d42010-02-03 19:33:23 +00001727 btrfs_set_extent_delalloc(inode, page_start, page_end, &cached_state);
Chris Mason247e7432008-07-17 12:53:51 -04001728 ClearPageChecked(page);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001729 set_page_dirty(page);
Chris Mason247e7432008-07-17 12:53:51 -04001730out:
Josef Bacik2ac55d42010-02-03 19:33:23 +00001731 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, page_end,
1732 &cached_state, GFP_NOFS);
Chris Mason247e7432008-07-17 12:53:51 -04001733out_page:
1734 unlock_page(page);
1735 page_cache_release(page);
Miao Xieb897abe2011-01-26 16:19:22 +08001736 kfree(fixup);
Chris Mason247e7432008-07-17 12:53:51 -04001737}
1738
1739/*
1740 * There are a few paths in the higher layers of the kernel that directly
1741 * set the page dirty bit without asking the filesystem if it is a
1742 * good idea. This causes problems because we want to make sure COW
1743 * properly happens and the data=ordered rules are followed.
1744 *
Chris Masonc8b97812008-10-29 14:49:59 -04001745 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04001746 * hasn't been properly setup for IO. We kick off an async process
1747 * to fix it up. The async helper will wait for ordered extents, set
1748 * the delalloc bit and make it safe to write the page.
1749 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001750static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04001751{
1752 struct inode *inode = page->mapping->host;
1753 struct btrfs_writepage_fixup *fixup;
1754 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason247e7432008-07-17 12:53:51 -04001755
Chris Mason8b62b722009-09-02 16:53:46 -04001756 /* this page is properly in the ordered list */
1757 if (TestClearPagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001758 return 0;
1759
1760 if (PageChecked(page))
1761 return -EAGAIN;
1762
1763 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
1764 if (!fixup)
1765 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04001766
Chris Mason247e7432008-07-17 12:53:51 -04001767 SetPageChecked(page);
1768 page_cache_get(page);
1769 fixup->work.func = btrfs_writepage_fixup_worker;
1770 fixup->page = page;
1771 btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001772 return -EBUSY;
Chris Mason247e7432008-07-17 12:53:51 -04001773}
1774
Yan Zhengd899e052008-10-30 14:25:28 -04001775static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
1776 struct inode *inode, u64 file_pos,
1777 u64 disk_bytenr, u64 disk_num_bytes,
1778 u64 num_bytes, u64 ram_bytes,
1779 u8 compression, u8 encryption,
1780 u16 other_encoding, int extent_type)
1781{
1782 struct btrfs_root *root = BTRFS_I(inode)->root;
1783 struct btrfs_file_extent_item *fi;
1784 struct btrfs_path *path;
1785 struct extent_buffer *leaf;
1786 struct btrfs_key ins;
1787 u64 hint;
1788 int ret;
1789
1790 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07001791 if (!path)
1792 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -04001793
Chris Masonb9473432009-03-13 11:00:37 -04001794 path->leave_spinning = 1;
Chris Masona1ed8352009-09-11 12:27:37 -04001795
1796 /*
1797 * we may be replacing one extent in the tree with another.
1798 * The new extent is pinned in the extent map, and we don't want
1799 * to drop it from the cache until it is completely in the btree.
1800 *
1801 * So, tell btrfs_drop_extents to leave this extent in the cache.
1802 * the caller is expected to unpin it and allow it to be merged
1803 * with the others.
1804 */
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001805 ret = btrfs_drop_extents(trans, inode, file_pos, file_pos + num_bytes,
1806 &hint, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001807 if (ret)
1808 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04001809
Li Zefan33345d012011-04-20 10:31:50 +08001810 ins.objectid = btrfs_ino(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04001811 ins.offset = file_pos;
1812 ins.type = BTRFS_EXTENT_DATA_KEY;
1813 ret = btrfs_insert_empty_item(trans, root, path, &ins, sizeof(*fi));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001814 if (ret)
1815 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04001816 leaf = path->nodes[0];
1817 fi = btrfs_item_ptr(leaf, path->slots[0],
1818 struct btrfs_file_extent_item);
1819 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
1820 btrfs_set_file_extent_type(leaf, fi, extent_type);
1821 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
1822 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
1823 btrfs_set_file_extent_offset(leaf, fi, 0);
1824 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
1825 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
1826 btrfs_set_file_extent_compression(leaf, fi, compression);
1827 btrfs_set_file_extent_encryption(leaf, fi, encryption);
1828 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
Chris Masonb9473432009-03-13 11:00:37 -04001829
1830 btrfs_unlock_up_safe(path, 1);
1831 btrfs_set_lock_blocking(leaf);
1832
Yan Zhengd899e052008-10-30 14:25:28 -04001833 btrfs_mark_buffer_dirty(leaf);
1834
1835 inode_add_bytes(inode, num_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -04001836
1837 ins.objectid = disk_bytenr;
1838 ins.offset = disk_num_bytes;
1839 ins.type = BTRFS_EXTENT_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001840 ret = btrfs_alloc_reserved_file_extent(trans, root,
1841 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08001842 btrfs_ino(inode), file_pos, &ins);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001843out:
Yan Zhengd899e052008-10-30 14:25:28 -04001844 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04001845
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001846 return ret;
Yan Zhengd899e052008-10-30 14:25:28 -04001847}
1848
Chris Mason5d13a982009-03-13 11:41:46 -04001849/*
1850 * helper function for btrfs_finish_ordered_io, this
1851 * just reads in some of the csum leaves to prime them into ram
1852 * before we start the transaction. It limits the amount of btree
1853 * reads required while inside the transaction.
1854 */
Chris Masond352ac62008-09-29 15:18:18 -04001855/* as ordered data IO finishes, this gets called so we can finish
1856 * an ordered extent if the range of bytes in the file it covers are
1857 * fully written.
1858 */
Josef Bacik5fd02042012-05-02 14:00:54 -04001859static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001860{
Josef Bacik5fd02042012-05-02 14:00:54 -04001861 struct inode *inode = ordered_extent->inode;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001862 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001863 struct btrfs_trans_handle *trans = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001864 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001865 struct extent_state *cached_state = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08001866 int compress_type = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001867 int ret;
Li Zefan82d59022011-04-20 10:33:24 +08001868 bool nolock;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001869
Liu Bo83eea1f2012-07-10 05:28:39 -06001870 nolock = btrfs_is_free_space_inode(inode);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001871
Josef Bacik5fd02042012-05-02 14:00:54 -04001872 if (test_bit(BTRFS_ORDERED_IOERR, &ordered_extent->flags)) {
1873 ret = -EIO;
1874 goto out;
1875 }
1876
Yan, Zhengc2167752009-11-12 09:34:21 +00001877 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001878 BUG_ON(!list_empty(&ordered_extent->list)); /* Logic error */
Yan, Zhengc2167752009-11-12 09:34:21 +00001879 ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent);
1880 if (!ret) {
Josef Bacik0cb59c92010-07-02 12:14:14 -04001881 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001882 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001883 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001884 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001885 if (IS_ERR(trans))
1886 return PTR_ERR(trans);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001887 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason21151332011-11-10 20:39:08 -05001888 ret = btrfs_update_inode_fallback(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001889 if (ret) /* -ENOMEM or corruption */
1890 btrfs_abort_transaction(trans, root, ret);
Yan, Zhengc2167752009-11-12 09:34:21 +00001891 }
1892 goto out;
1893 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001894
Josef Bacik2ac55d42010-02-03 19:33:23 +00001895 lock_extent_bits(io_tree, ordered_extent->file_offset,
1896 ordered_extent->file_offset + ordered_extent->len - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001897 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001898
Josef Bacik0cb59c92010-07-02 12:14:14 -04001899 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001900 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001901 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001902 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001903 if (IS_ERR(trans)) {
1904 ret = PTR_ERR(trans);
1905 trans = NULL;
1906 goto out_unlock;
1907 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001908 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Yan, Zhengc2167752009-11-12 09:34:21 +00001909
Chris Masonc8b97812008-10-29 14:49:59 -04001910 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Li Zefan261507a02010-12-17 14:21:50 +08001911 compress_type = ordered_extent->compress_type;
Yan Zhengd899e052008-10-30 14:25:28 -04001912 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Li Zefan261507a02010-12-17 14:21:50 +08001913 BUG_ON(compress_type);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001914 ret = btrfs_mark_extent_written(trans, inode,
Yan Zhengd899e052008-10-30 14:25:28 -04001915 ordered_extent->file_offset,
1916 ordered_extent->file_offset +
1917 ordered_extent->len);
Yan Zhengd899e052008-10-30 14:25:28 -04001918 } else {
Josef Bacik0af3d002010-06-21 14:48:16 -04001919 BUG_ON(root == root->fs_info->tree_root);
Yan Zhengd899e052008-10-30 14:25:28 -04001920 ret = insert_reserved_file_extent(trans, inode,
1921 ordered_extent->file_offset,
1922 ordered_extent->start,
1923 ordered_extent->disk_len,
1924 ordered_extent->len,
1925 ordered_extent->len,
Li Zefan261507a02010-12-17 14:21:50 +08001926 compress_type, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04001927 BTRFS_FILE_EXTENT_REG);
Chris Masona1ed8352009-09-11 12:27:37 -04001928 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
1929 ordered_extent->file_offset,
1930 ordered_extent->len);
Yan Zhengd899e052008-10-30 14:25:28 -04001931 }
Josef Bacik5fd02042012-05-02 14:00:54 -04001932
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001933 if (ret < 0) {
1934 btrfs_abort_transaction(trans, root, ret);
Josef Bacik5fd02042012-05-02 14:00:54 -04001935 goto out_unlock;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001936 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00001937
Chris Masone6dcd2d2008-07-17 12:53:50 -04001938 add_pending_csums(trans, inode, ordered_extent->file_offset,
1939 &ordered_extent->list);
1940
Josef Bacik1ef30be2011-04-05 19:25:36 -04001941 ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent);
Miao Xiea39f7522011-09-11 10:52:25 -04001942 if (!ret || !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Chris Mason21151332011-11-10 20:39:08 -05001943 ret = btrfs_update_inode_fallback(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001944 if (ret) { /* -ENOMEM or corruption */
1945 btrfs_abort_transaction(trans, root, ret);
Josef Bacik5fd02042012-05-02 14:00:54 -04001946 goto out_unlock;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001947 }
Josef Bacik1ef30be2011-04-05 19:25:36 -04001948 }
1949 ret = 0;
Josef Bacik5fd02042012-05-02 14:00:54 -04001950out_unlock:
1951 unlock_extent_cached(io_tree, ordered_extent->file_offset,
1952 ordered_extent->file_offset +
1953 ordered_extent->len - 1, &cached_state, GFP_NOFS);
Yan, Zhengc2167752009-11-12 09:34:21 +00001954out:
Josef Bacik5b0e95b2011-10-06 08:58:24 -04001955 if (root != root->fs_info->tree_root)
Josef Bacik0cb59c92010-07-02 12:14:14 -04001956 btrfs_delalloc_release_metadata(inode, ordered_extent->len);
Josef Bacik5b0e95b2011-10-06 08:58:24 -04001957 if (trans) {
1958 if (nolock)
Josef Bacik0cb59c92010-07-02 12:14:14 -04001959 btrfs_end_transaction_nolock(trans, root);
Josef Bacik5b0e95b2011-10-06 08:58:24 -04001960 else
Josef Bacik0cb59c92010-07-02 12:14:14 -04001961 btrfs_end_transaction(trans, root);
1962 }
1963
Josef Bacik5fd02042012-05-02 14:00:54 -04001964 if (ret)
1965 clear_extent_uptodate(io_tree, ordered_extent->file_offset,
1966 ordered_extent->file_offset +
1967 ordered_extent->len - 1, NULL, GFP_NOFS);
1968
1969 /*
1970 * This needs to be dont to make sure anybody waiting knows we are done
1971 * upating everything for this ordered extent.
1972 */
1973 btrfs_remove_ordered_extent(inode, ordered_extent);
1974
Chris Masone6dcd2d2008-07-17 12:53:50 -04001975 /* once for us */
1976 btrfs_put_ordered_extent(ordered_extent);
1977 /* once for the tree */
1978 btrfs_put_ordered_extent(ordered_extent);
1979
Josef Bacik5fd02042012-05-02 14:00:54 -04001980 return ret;
1981}
1982
1983static void finish_ordered_fn(struct btrfs_work *work)
1984{
1985 struct btrfs_ordered_extent *ordered_extent;
1986 ordered_extent = container_of(work, struct btrfs_ordered_extent, work);
1987 btrfs_finish_ordered_io(ordered_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001988}
1989
Christoph Hellwigb2950862008-12-02 09:54:17 -05001990static int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04001991 struct extent_state *state, int uptodate)
1992{
Josef Bacik5fd02042012-05-02 14:00:54 -04001993 struct inode *inode = page->mapping->host;
1994 struct btrfs_root *root = BTRFS_I(inode)->root;
1995 struct btrfs_ordered_extent *ordered_extent = NULL;
1996 struct btrfs_workers *workers;
1997
liubo1abe9b82011-03-24 11:18:59 +00001998 trace_btrfs_writepage_end_io_hook(page, start, end, uptodate);
1999
Chris Mason8b62b722009-09-02 16:53:46 -04002000 ClearPagePrivate2(page);
Josef Bacik5fd02042012-05-02 14:00:54 -04002001 if (!btrfs_dec_test_ordered_pending(inode, &ordered_extent, start,
2002 end - start + 1, uptodate))
2003 return 0;
2004
2005 ordered_extent->work.func = finish_ordered_fn;
2006 ordered_extent->work.flags = 0;
2007
Liu Bo83eea1f2012-07-10 05:28:39 -06002008 if (btrfs_is_free_space_inode(inode))
Josef Bacik5fd02042012-05-02 14:00:54 -04002009 workers = &root->fs_info->endio_freespace_worker;
2010 else
2011 workers = &root->fs_info->endio_write_workers;
2012 btrfs_queue_worker(workers, &ordered_extent->work);
2013
2014 return 0;
Chris Mason211f90e2008-07-18 11:56:15 -04002015}
2016
Chris Masond352ac62008-09-29 15:18:18 -04002017/*
Chris Masond352ac62008-09-29 15:18:18 -04002018 * when reads are done, we need to check csums to verify the data is correct
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002019 * if there's a match, we allow the bio to finish. If not, the code in
2020 * extent_io.c will try to find good copies for us.
Chris Masond352ac62008-09-29 15:18:18 -04002021 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05002022static int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002023 struct extent_state *state, int mirror)
Chris Mason07157aa2007-08-30 08:50:51 -04002024{
Chris Mason35ebb932007-10-30 16:56:53 -04002025 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -04002026 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05002027 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -04002028 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -05002029 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -04002030 int ret;
Chris Masonff79f812007-10-15 16:22:25 -04002031 struct btrfs_root *root = BTRFS_I(inode)->root;
2032 u32 csum = ~(u32)0;
Chris Masond1310b22008-01-24 16:13:08 -05002033
Chris Masond20f7042008-12-08 16:58:54 -05002034 if (PageChecked(page)) {
2035 ClearPageChecked(page);
2036 goto good;
2037 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002038
2039 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Jan Schmidt08d2f342011-05-04 16:18:50 +02002040 goto good;
Chris Masond20f7042008-12-08 16:58:54 -05002041
Yan Zheng17d217f2008-12-12 10:03:38 -05002042 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04002043 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
Yan Zheng17d217f2008-12-12 10:03:38 -05002044 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM,
2045 GFP_NOFS);
2046 return 0;
2047 }
2048
Yanc2e639f2008-02-04 08:57:25 -05002049 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -05002050 private = state->private;
2051 ret = 0;
2052 } else {
2053 ret = get_state_private(io_tree, start, &private);
2054 }
Cong Wang7ac687d2011-11-25 23:14:28 +08002055 kaddr = kmap_atomic(page);
Chris Masond3977122009-01-05 21:25:51 -05002056 if (ret)
Chris Mason07157aa2007-08-30 08:50:51 -04002057 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05002058
Chris Masonff79f812007-10-15 16:22:25 -04002059 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
2060 btrfs_csum_final(csum, (char *)&csum);
Chris Masond3977122009-01-05 21:25:51 -05002061 if (csum != private)
Chris Mason07157aa2007-08-30 08:50:51 -04002062 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05002063
Cong Wang7ac687d2011-11-25 23:14:28 +08002064 kunmap_atomic(kaddr);
Chris Masond20f7042008-12-08 16:58:54 -05002065good:
Chris Mason07157aa2007-08-30 08:50:51 -04002066 return 0;
2067
2068zeroit:
Chris Mason945d8962011-05-22 12:33:42 -04002069 printk_ratelimited(KERN_INFO "btrfs csum failed ino %llu off %llu csum %u "
Li Zefan33345d012011-04-20 10:31:50 +08002070 "private %llu\n",
2071 (unsigned long long)btrfs_ino(page->mapping->host),
Chris Mason193f2842009-04-27 07:29:05 -04002072 (unsigned long long)start, csum,
2073 (unsigned long long)private);
Chris Masondb945352007-10-15 16:15:53 -04002074 memset(kaddr + offset, 1, end - start + 1);
2075 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002076 kunmap_atomic(kaddr);
Chris Mason3b951512008-04-17 11:29:12 -04002077 if (private == 0)
2078 return 0;
Chris Mason7e383262008-04-09 16:28:12 -04002079 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -04002080}
Chris Masonb888db22007-08-27 16:49:44 -04002081
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002082struct delayed_iput {
2083 struct list_head list;
2084 struct inode *inode;
2085};
2086
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002087/* JDM: If this is fs-wide, why can't we add a pointer to
2088 * btrfs_inode instead and avoid the allocation? */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002089void btrfs_add_delayed_iput(struct inode *inode)
2090{
2091 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2092 struct delayed_iput *delayed;
2093
2094 if (atomic_add_unless(&inode->i_count, -1, 1))
2095 return;
2096
2097 delayed = kmalloc(sizeof(*delayed), GFP_NOFS | __GFP_NOFAIL);
2098 delayed->inode = inode;
2099
2100 spin_lock(&fs_info->delayed_iput_lock);
2101 list_add_tail(&delayed->list, &fs_info->delayed_iputs);
2102 spin_unlock(&fs_info->delayed_iput_lock);
2103}
2104
2105void btrfs_run_delayed_iputs(struct btrfs_root *root)
2106{
2107 LIST_HEAD(list);
2108 struct btrfs_fs_info *fs_info = root->fs_info;
2109 struct delayed_iput *delayed;
2110 int empty;
2111
2112 spin_lock(&fs_info->delayed_iput_lock);
2113 empty = list_empty(&fs_info->delayed_iputs);
2114 spin_unlock(&fs_info->delayed_iput_lock);
2115 if (empty)
2116 return;
2117
2118 down_read(&root->fs_info->cleanup_work_sem);
2119 spin_lock(&fs_info->delayed_iput_lock);
2120 list_splice_init(&fs_info->delayed_iputs, &list);
2121 spin_unlock(&fs_info->delayed_iput_lock);
2122
2123 while (!list_empty(&list)) {
2124 delayed = list_entry(list.next, struct delayed_iput, list);
2125 list_del(&delayed->list);
2126 iput(delayed->inode);
2127 kfree(delayed);
2128 }
2129 up_read(&root->fs_info->cleanup_work_sem);
2130}
2131
Yan, Zhengd68fc572010-05-16 10:49:58 -04002132enum btrfs_orphan_cleanup_state {
2133 ORPHAN_CLEANUP_STARTED = 1,
2134 ORPHAN_CLEANUP_DONE = 2,
2135};
2136
2137/*
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08002138 * This is called in transaction commit time. If there are no orphan
Yan, Zhengd68fc572010-05-16 10:49:58 -04002139 * files in the subvolume, it removes orphan item and frees block_rsv
2140 * structure.
2141 */
2142void btrfs_orphan_commit_root(struct btrfs_trans_handle *trans,
2143 struct btrfs_root *root)
2144{
Josef Bacik90290e12011-12-02 15:44:12 -05002145 struct btrfs_block_rsv *block_rsv;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002146 int ret;
2147
Josef Bacik8a35d952012-05-23 14:26:42 -04002148 if (atomic_read(&root->orphan_inodes) ||
Yan, Zhengd68fc572010-05-16 10:49:58 -04002149 root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE)
2150 return;
2151
Josef Bacik90290e12011-12-02 15:44:12 -05002152 spin_lock(&root->orphan_lock);
Josef Bacik8a35d952012-05-23 14:26:42 -04002153 if (atomic_read(&root->orphan_inodes)) {
Josef Bacik90290e12011-12-02 15:44:12 -05002154 spin_unlock(&root->orphan_lock);
2155 return;
2156 }
2157
2158 if (root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE) {
2159 spin_unlock(&root->orphan_lock);
2160 return;
2161 }
2162
2163 block_rsv = root->orphan_block_rsv;
2164 root->orphan_block_rsv = NULL;
2165 spin_unlock(&root->orphan_lock);
2166
Yan, Zhengd68fc572010-05-16 10:49:58 -04002167 if (root->orphan_item_inserted &&
2168 btrfs_root_refs(&root->root_item) > 0) {
2169 ret = btrfs_del_orphan_item(trans, root->fs_info->tree_root,
2170 root->root_key.objectid);
2171 BUG_ON(ret);
2172 root->orphan_item_inserted = 0;
2173 }
2174
Josef Bacik90290e12011-12-02 15:44:12 -05002175 if (block_rsv) {
2176 WARN_ON(block_rsv->size > 0);
2177 btrfs_free_block_rsv(root, block_rsv);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002178 }
2179}
2180
2181/*
Josef Bacik7b128762008-07-24 12:17:14 -04002182 * This creates an orphan entry for the given inode in case something goes
2183 * wrong in the middle of an unlink/truncate.
Yan, Zhengd68fc572010-05-16 10:49:58 -04002184 *
2185 * NOTE: caller of this function should reserve 5 units of metadata for
2186 * this function.
Josef Bacik7b128762008-07-24 12:17:14 -04002187 */
2188int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
2189{
2190 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002191 struct btrfs_block_rsv *block_rsv = NULL;
2192 int reserve = 0;
2193 int insert = 0;
2194 int ret;
Josef Bacik7b128762008-07-24 12:17:14 -04002195
Yan, Zhengd68fc572010-05-16 10:49:58 -04002196 if (!root->orphan_block_rsv) {
2197 block_rsv = btrfs_alloc_block_rsv(root);
Tsutomu Itohb5324022011-07-19 07:27:20 +00002198 if (!block_rsv)
2199 return -ENOMEM;
Josef Bacik7b128762008-07-24 12:17:14 -04002200 }
2201
Yan, Zhengd68fc572010-05-16 10:49:58 -04002202 spin_lock(&root->orphan_lock);
2203 if (!root->orphan_block_rsv) {
2204 root->orphan_block_rsv = block_rsv;
2205 } else if (block_rsv) {
2206 btrfs_free_block_rsv(root, block_rsv);
2207 block_rsv = NULL;
2208 }
Josef Bacik7b128762008-07-24 12:17:14 -04002209
Josef Bacik8a35d952012-05-23 14:26:42 -04002210 if (!test_and_set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2211 &BTRFS_I(inode)->runtime_flags)) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04002212#if 0
2213 /*
2214 * For proper ENOSPC handling, we should do orphan
2215 * cleanup when mounting. But this introduces backward
2216 * compatibility issue.
2217 */
2218 if (!xchg(&root->orphan_item_inserted, 1))
2219 insert = 2;
2220 else
2221 insert = 1;
2222#endif
2223 insert = 1;
Josef Bacik8a35d952012-05-23 14:26:42 -04002224 atomic_dec(&root->orphan_inodes);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002225 }
Josef Bacik7b128762008-07-24 12:17:14 -04002226
Josef Bacik72ac3c02012-05-23 14:13:11 -04002227 if (!test_and_set_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
2228 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04002229 reserve = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002230 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002231
Yan, Zhengd68fc572010-05-16 10:49:58 -04002232 /* grab metadata reservation from transaction handle */
2233 if (reserve) {
2234 ret = btrfs_orphan_reserve_metadata(trans, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002235 BUG_ON(ret); /* -ENOSPC in reservation; Logic error? JDM */
Yan, Zhengd68fc572010-05-16 10:49:58 -04002236 }
2237
2238 /* insert an orphan item to track this unlinked/truncated file */
2239 if (insert >= 1) {
Li Zefan33345d012011-04-20 10:31:50 +08002240 ret = btrfs_insert_orphan_item(trans, root, btrfs_ino(inode));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002241 if (ret && ret != -EEXIST) {
Josef Bacik8a35d952012-05-23 14:26:42 -04002242 clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2243 &BTRFS_I(inode)->runtime_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002244 btrfs_abort_transaction(trans, root, ret);
2245 return ret;
2246 }
2247 ret = 0;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002248 }
2249
2250 /* insert an orphan item to track subvolume contains orphan files */
2251 if (insert >= 2) {
2252 ret = btrfs_insert_orphan_item(trans, root->fs_info->tree_root,
2253 root->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002254 if (ret && ret != -EEXIST) {
2255 btrfs_abort_transaction(trans, root, ret);
2256 return ret;
2257 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002258 }
2259 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002260}
2261
2262/*
2263 * We have done the truncate/delete so we can go ahead and remove the orphan
2264 * item for this particular inode.
2265 */
2266int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode)
2267{
2268 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002269 int delete_item = 0;
2270 int release_rsv = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002271 int ret = 0;
2272
Yan, Zhengd68fc572010-05-16 10:49:58 -04002273 spin_lock(&root->orphan_lock);
Josef Bacik8a35d952012-05-23 14:26:42 -04002274 if (test_and_clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2275 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04002276 delete_item = 1;
Josef Bacik7b128762008-07-24 12:17:14 -04002277
Josef Bacik72ac3c02012-05-23 14:13:11 -04002278 if (test_and_clear_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
2279 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04002280 release_rsv = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002281 spin_unlock(&root->orphan_lock);
2282
2283 if (trans && delete_item) {
Li Zefan33345d012011-04-20 10:31:50 +08002284 ret = btrfs_del_orphan_item(trans, root, btrfs_ino(inode));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002285 BUG_ON(ret); /* -ENOMEM or corruption (JDM: Recheck) */
Josef Bacik7b128762008-07-24 12:17:14 -04002286 }
2287
Josef Bacik8a35d952012-05-23 14:26:42 -04002288 if (release_rsv) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04002289 btrfs_orphan_release_metadata(inode);
Josef Bacik8a35d952012-05-23 14:26:42 -04002290 atomic_dec(&root->orphan_inodes);
2291 }
Josef Bacik7b128762008-07-24 12:17:14 -04002292
Yan, Zhengd68fc572010-05-16 10:49:58 -04002293 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002294}
2295
2296/*
2297 * this cleans up any orphans that may be left on the list from the last use
2298 * of this root.
2299 */
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002300int btrfs_orphan_cleanup(struct btrfs_root *root)
Josef Bacik7b128762008-07-24 12:17:14 -04002301{
2302 struct btrfs_path *path;
2303 struct extent_buffer *leaf;
Josef Bacik7b128762008-07-24 12:17:14 -04002304 struct btrfs_key key, found_key;
2305 struct btrfs_trans_handle *trans;
2306 struct inode *inode;
Josef Bacik8f6d7f42011-09-26 15:55:20 -04002307 u64 last_objectid = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002308 int ret = 0, nr_unlink = 0, nr_truncate = 0;
2309
Yan, Zhengd68fc572010-05-16 10:49:58 -04002310 if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002311 return 0;
Yan, Zhengc71bf092009-11-12 09:34:40 +00002312
2313 path = btrfs_alloc_path();
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002314 if (!path) {
2315 ret = -ENOMEM;
2316 goto out;
2317 }
Josef Bacik7b128762008-07-24 12:17:14 -04002318 path->reada = -1;
2319
2320 key.objectid = BTRFS_ORPHAN_OBJECTID;
2321 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
2322 key.offset = (u64)-1;
2323
Josef Bacik7b128762008-07-24 12:17:14 -04002324 while (1) {
2325 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002326 if (ret < 0)
2327 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04002328
2329 /*
2330 * if ret == 0 means we found what we were searching for, which
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002331 * is weird, but possible, so only screw with path if we didn't
Josef Bacik7b128762008-07-24 12:17:14 -04002332 * find the key and see if we have stuff that matches
2333 */
2334 if (ret > 0) {
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002335 ret = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002336 if (path->slots[0] == 0)
2337 break;
2338 path->slots[0]--;
2339 }
2340
2341 /* pull out the item */
2342 leaf = path->nodes[0];
Josef Bacik7b128762008-07-24 12:17:14 -04002343 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2344
2345 /* make sure the item matches what we want */
2346 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
2347 break;
2348 if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY)
2349 break;
2350
2351 /* release the path since we're done with it */
David Sterbab3b4aa72011-04-21 01:20:15 +02002352 btrfs_release_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04002353
2354 /*
2355 * this is where we are basically btrfs_lookup, without the
2356 * crossing root thing. we store the inode number in the
2357 * offset of the orphan item.
2358 */
Josef Bacik8f6d7f42011-09-26 15:55:20 -04002359
2360 if (found_key.offset == last_objectid) {
2361 printk(KERN_ERR "btrfs: Error removing orphan entry, "
2362 "stopping orphan cleanup\n");
2363 ret = -EINVAL;
2364 goto out;
2365 }
2366
2367 last_objectid = found_key.offset;
2368
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002369 found_key.objectid = found_key.offset;
2370 found_key.type = BTRFS_INODE_ITEM_KEY;
2371 found_key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +00002372 inode = btrfs_iget(root->fs_info->sb, &found_key, root, NULL);
Josef Bacika8c9e572011-09-21 16:55:59 -04002373 ret = PTR_RET(inode);
2374 if (ret && ret != -ESTALE)
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002375 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04002376
Arne Jansenf8e9e0b2011-12-14 20:12:02 -05002377 if (ret == -ESTALE && root == root->fs_info->tree_root) {
2378 struct btrfs_root *dead_root;
2379 struct btrfs_fs_info *fs_info = root->fs_info;
2380 int is_dead_root = 0;
2381
2382 /*
2383 * this is an orphan in the tree root. Currently these
2384 * could come from 2 sources:
2385 * a) a snapshot deletion in progress
2386 * b) a free space cache inode
2387 * We need to distinguish those two, as the snapshot
2388 * orphan must not get deleted.
2389 * find_dead_roots already ran before us, so if this
2390 * is a snapshot deletion, we should find the root
2391 * in the dead_roots list
2392 */
2393 spin_lock(&fs_info->trans_lock);
2394 list_for_each_entry(dead_root, &fs_info->dead_roots,
2395 root_list) {
2396 if (dead_root->root_key.objectid ==
2397 found_key.objectid) {
2398 is_dead_root = 1;
2399 break;
2400 }
2401 }
2402 spin_unlock(&fs_info->trans_lock);
2403 if (is_dead_root) {
2404 /* prevent this orphan from being found again */
2405 key.offset = found_key.objectid - 1;
2406 continue;
2407 }
2408 }
Josef Bacika8c9e572011-09-21 16:55:59 -04002409 /*
2410 * Inode is already gone but the orphan item is still there,
2411 * kill the orphan item.
2412 */
2413 if (ret == -ESTALE) {
2414 trans = btrfs_start_transaction(root, 1);
2415 if (IS_ERR(trans)) {
2416 ret = PTR_ERR(trans);
2417 goto out;
2418 }
Josef Bacik8a35d952012-05-23 14:26:42 -04002419 printk(KERN_ERR "auto deleting %Lu\n",
2420 found_key.objectid);
Josef Bacika8c9e572011-09-21 16:55:59 -04002421 ret = btrfs_del_orphan_item(trans, root,
2422 found_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002423 BUG_ON(ret); /* -ENOMEM or corruption (JDM: Recheck) */
Josef Bacika8c9e572011-09-21 16:55:59 -04002424 btrfs_end_transaction(trans, root);
2425 continue;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002426 }
Josef Bacik7b128762008-07-24 12:17:14 -04002427
Josef Bacik7b128762008-07-24 12:17:14 -04002428 /*
2429 * add this inode to the orphan list so btrfs_orphan_del does
2430 * the proper thing when we hit it
2431 */
Josef Bacik8a35d952012-05-23 14:26:42 -04002432 set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2433 &BTRFS_I(inode)->runtime_flags);
Josef Bacik7b128762008-07-24 12:17:14 -04002434
Josef Bacik7b128762008-07-24 12:17:14 -04002435 /* if we have links, this was a truncate, lets do that */
2436 if (inode->i_nlink) {
Josef Bacika41ad392011-01-31 15:30:16 -05002437 if (!S_ISREG(inode->i_mode)) {
2438 WARN_ON(1);
2439 iput(inode);
2440 continue;
2441 }
Josef Bacik7b128762008-07-24 12:17:14 -04002442 nr_truncate++;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002443 ret = btrfs_truncate(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04002444 } else {
2445 nr_unlink++;
2446 }
2447
2448 /* this will do delete_inode and everything for us */
2449 iput(inode);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002450 if (ret)
2451 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04002452 }
Miao Xie3254c872011-11-10 20:45:05 -05002453 /* release the path since we're done with it */
2454 btrfs_release_path(path);
2455
Yan, Zhengd68fc572010-05-16 10:49:58 -04002456 root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE;
2457
2458 if (root->orphan_block_rsv)
2459 btrfs_block_rsv_release(root, root->orphan_block_rsv,
2460 (u64)-1);
2461
2462 if (root->orphan_block_rsv || root->orphan_item_inserted) {
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002463 trans = btrfs_join_transaction(root);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002464 if (!IS_ERR(trans))
2465 btrfs_end_transaction(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002466 }
Josef Bacik7b128762008-07-24 12:17:14 -04002467
2468 if (nr_unlink)
2469 printk(KERN_INFO "btrfs: unlinked %d orphans\n", nr_unlink);
2470 if (nr_truncate)
2471 printk(KERN_INFO "btrfs: truncated %d orphans\n", nr_truncate);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002472
2473out:
2474 if (ret)
2475 printk(KERN_CRIT "btrfs: could not do orphan cleanup %d\n", ret);
2476 btrfs_free_path(path);
2477 return ret;
Josef Bacik7b128762008-07-24 12:17:14 -04002478}
2479
Chris Masond352ac62008-09-29 15:18:18 -04002480/*
Chris Mason46a53cc2009-04-27 11:47:50 -04002481 * very simple check to peek ahead in the leaf looking for xattrs. If we
2482 * don't find any xattrs, we know there can't be any acls.
2483 *
2484 * slot is the slot the inode is in, objectid is the objectid of the inode
2485 */
2486static noinline int acls_after_inode_item(struct extent_buffer *leaf,
2487 int slot, u64 objectid)
2488{
2489 u32 nritems = btrfs_header_nritems(leaf);
2490 struct btrfs_key found_key;
2491 int scanned = 0;
2492
2493 slot++;
2494 while (slot < nritems) {
2495 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2496
2497 /* we found a different objectid, there must not be acls */
2498 if (found_key.objectid != objectid)
2499 return 0;
2500
2501 /* we found an xattr, assume we've got an acl */
2502 if (found_key.type == BTRFS_XATTR_ITEM_KEY)
2503 return 1;
2504
2505 /*
2506 * we found a key greater than an xattr key, there can't
2507 * be any acls later on
2508 */
2509 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
2510 return 0;
2511
2512 slot++;
2513 scanned++;
2514
2515 /*
2516 * it goes inode, inode backrefs, xattrs, extents,
2517 * so if there are a ton of hard links to an inode there can
2518 * be a lot of backrefs. Don't waste time searching too hard,
2519 * this is just an optimization
2520 */
2521 if (scanned >= 8)
2522 break;
2523 }
2524 /* we hit the end of the leaf before we found an xattr or
2525 * something larger than an xattr. We have to assume the inode
2526 * has acls
2527 */
2528 return 1;
2529}
2530
2531/*
Chris Masond352ac62008-09-29 15:18:18 -04002532 * read an inode from the btree into the in-memory inode
2533 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002534static void btrfs_read_locked_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002535{
2536 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002537 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002538 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -04002539 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -04002540 struct btrfs_root *root = BTRFS_I(inode)->root;
2541 struct btrfs_key location;
Chris Mason46a53cc2009-04-27 11:47:50 -04002542 int maybe_acls;
Josef Bacik618e21d2007-07-11 10:18:17 -04002543 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04002544 int ret;
Miao Xie2f7e33d2011-06-23 07:27:13 +00002545 bool filled = false;
2546
2547 ret = btrfs_fill_inode(inode, &rdev);
2548 if (!ret)
2549 filled = true;
Chris Mason39279cc2007-06-12 06:35:45 -04002550
2551 path = btrfs_alloc_path();
Mark Fasheh1748f842011-07-12 11:25:31 -07002552 if (!path)
2553 goto make_bad;
2554
Josef Bacikd90c7322011-05-17 09:50:54 -04002555 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002556 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05002557
Chris Mason39279cc2007-06-12 06:35:45 -04002558 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002559 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04002560 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -04002561
Chris Mason5f39d392007-10-15 16:14:19 -04002562 leaf = path->nodes[0];
Miao Xie2f7e33d2011-06-23 07:27:13 +00002563
2564 if (filled)
2565 goto cache_acl;
2566
Chris Mason5f39d392007-10-15 16:14:19 -04002567 inode_item = btrfs_item_ptr(leaf, path->slots[0],
2568 struct btrfs_inode_item);
Chris Mason5f39d392007-10-15 16:14:19 -04002569 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
Miklos Szeredibfe86842011-10-28 14:13:29 +02002570 set_nlink(inode, btrfs_inode_nlink(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002571 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
2572 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
Chris Masondbe674a2008-07-17 12:54:05 -04002573 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002574
2575 tspec = btrfs_inode_atime(inode_item);
2576 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2577 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2578
2579 tspec = btrfs_inode_mtime(inode_item);
2580 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2581 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2582
2583 tspec = btrfs_inode_ctime(inode_item);
2584 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2585 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2586
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002587 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04002588 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04002589 inode->i_version = btrfs_inode_sequence(leaf, inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04002590 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04002591 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002592 rdev = btrfs_inode_rdev(leaf, inode_item);
2593
Josef Bacikaec74772008-07-24 12:12:38 -04002594 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05002595 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Miao Xie2f7e33d2011-06-23 07:27:13 +00002596cache_acl:
Chris Mason46a53cc2009-04-27 11:47:50 -04002597 /*
2598 * try to precache a NULL acl entry for files that don't have
2599 * any xattrs or acls
2600 */
Li Zefan33345d012011-04-20 10:31:50 +08002601 maybe_acls = acls_after_inode_item(leaf, path->slots[0],
2602 btrfs_ino(inode));
Al Viro72c04902009-06-24 16:58:48 -04002603 if (!maybe_acls)
2604 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04002605
Chris Mason39279cc2007-06-12 06:35:45 -04002606 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002607
Chris Mason39279cc2007-06-12 06:35:45 -04002608 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04002609 case S_IFREG:
2610 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04002611 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05002612 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04002613 inode->i_fop = &btrfs_file_operations;
2614 inode->i_op = &btrfs_file_inode_operations;
2615 break;
2616 case S_IFDIR:
2617 inode->i_fop = &btrfs_dir_file_operations;
2618 if (root == root->fs_info->tree_root)
2619 inode->i_op = &btrfs_dir_ro_inode_operations;
2620 else
2621 inode->i_op = &btrfs_dir_inode_operations;
2622 break;
2623 case S_IFLNK:
2624 inode->i_op = &btrfs_symlink_inode_operations;
2625 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04002626 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04002627 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04002628 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05002629 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04002630 init_special_inode(inode, inode->i_mode, rdev);
2631 break;
Chris Mason39279cc2007-06-12 06:35:45 -04002632 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002633
2634 btrfs_update_iflags(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002635 return;
2636
2637make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04002638 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002639 make_bad_inode(inode);
2640}
2641
Chris Masond352ac62008-09-29 15:18:18 -04002642/*
2643 * given a leaf and an inode, copy the inode fields into the leaf
2644 */
Chris Masone02119d2008-09-05 16:13:11 -04002645static void fill_inode_item(struct btrfs_trans_handle *trans,
2646 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04002647 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04002648 struct inode *inode)
2649{
Chris Mason5f39d392007-10-15 16:14:19 -04002650 btrfs_set_inode_uid(leaf, item, inode->i_uid);
2651 btrfs_set_inode_gid(leaf, item, inode->i_gid);
Chris Masondbe674a2008-07-17 12:54:05 -04002652 btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size);
Chris Mason5f39d392007-10-15 16:14:19 -04002653 btrfs_set_inode_mode(leaf, item, inode->i_mode);
2654 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
2655
2656 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
2657 inode->i_atime.tv_sec);
2658 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
2659 inode->i_atime.tv_nsec);
2660
2661 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
2662 inode->i_mtime.tv_sec);
2663 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
2664 inode->i_mtime.tv_nsec);
2665
2666 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
2667 inode->i_ctime.tv_sec);
2668 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
2669 inode->i_ctime.tv_nsec);
2670
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002671 btrfs_set_inode_nbytes(leaf, item, inode_get_bytes(inode));
Chris Masone02119d2008-09-05 16:13:11 -04002672 btrfs_set_inode_generation(leaf, item, BTRFS_I(inode)->generation);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04002673 btrfs_set_inode_sequence(leaf, item, inode->i_version);
Chris Masone02119d2008-09-05 16:13:11 -04002674 btrfs_set_inode_transid(leaf, item, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002675 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -05002676 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Josef Bacikd82a6f12011-05-11 15:26:06 -04002677 btrfs_set_inode_block_group(leaf, item, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002678}
2679
Chris Masond352ac62008-09-29 15:18:18 -04002680/*
2681 * copy everything in the in-memory inode into the btree.
2682 */
Chris Mason21151332011-11-10 20:39:08 -05002683static noinline int btrfs_update_inode_item(struct btrfs_trans_handle *trans,
Chris Masond3977122009-01-05 21:25:51 -05002684 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002685{
2686 struct btrfs_inode_item *inode_item;
2687 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002688 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002689 int ret;
2690
2691 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08002692 if (!path)
2693 return -ENOMEM;
2694
Chris Masonb9473432009-03-13 11:00:37 -04002695 path->leave_spinning = 1;
Miao Xie16cdcec2011-04-22 18:12:22 +08002696 ret = btrfs_lookup_inode(trans, root, path, &BTRFS_I(inode)->location,
2697 1);
Chris Mason39279cc2007-06-12 06:35:45 -04002698 if (ret) {
2699 if (ret > 0)
2700 ret = -ENOENT;
2701 goto failed;
2702 }
2703
Chris Masonb4ce94d2009-02-04 09:25:08 -05002704 btrfs_unlock_up_safe(path, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002705 leaf = path->nodes[0];
2706 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Miao Xie16cdcec2011-04-22 18:12:22 +08002707 struct btrfs_inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -04002708
Chris Masone02119d2008-09-05 16:13:11 -04002709 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002710 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002711 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002712 ret = 0;
2713failed:
Chris Mason39279cc2007-06-12 06:35:45 -04002714 btrfs_free_path(path);
2715 return ret;
2716}
2717
Chris Masond352ac62008-09-29 15:18:18 -04002718/*
Chris Mason21151332011-11-10 20:39:08 -05002719 * copy everything in the in-memory inode into the btree.
2720 */
2721noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
2722 struct btrfs_root *root, struct inode *inode)
2723{
2724 int ret;
2725
2726 /*
2727 * If the inode is a free space inode, we can deadlock during commit
2728 * if we put it into the delayed code.
2729 *
2730 * The data relocation inode should also be directly updated
2731 * without delay
2732 */
Liu Bo83eea1f2012-07-10 05:28:39 -06002733 if (!btrfs_is_free_space_inode(inode)
Chris Mason21151332011-11-10 20:39:08 -05002734 && root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID) {
Alexander Block8ea05e32012-07-25 17:35:53 +02002735 btrfs_update_root_times(trans, root);
2736
Chris Mason21151332011-11-10 20:39:08 -05002737 ret = btrfs_delayed_update_inode(trans, root, inode);
2738 if (!ret)
2739 btrfs_set_inode_last_trans(trans, inode);
2740 return ret;
2741 }
2742
2743 return btrfs_update_inode_item(trans, root, inode);
2744}
2745
2746static noinline int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans,
2747 struct btrfs_root *root, struct inode *inode)
2748{
2749 int ret;
2750
2751 ret = btrfs_update_inode(trans, root, inode);
2752 if (ret == -ENOSPC)
2753 return btrfs_update_inode_item(trans, root, inode);
2754 return ret;
2755}
2756
2757/*
Chris Masond352ac62008-09-29 15:18:18 -04002758 * unlink helper that gets used here in inode.c and in the tree logging
2759 * recovery code. It remove a link in a directory with a given name, and
2760 * also drops the back refs in the inode to the directory
2761 */
Al Viro92986792011-03-04 17:14:37 +00002762static int __btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2763 struct btrfs_root *root,
2764 struct inode *dir, struct inode *inode,
2765 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04002766{
2767 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04002768 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002769 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002770 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04002771 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04002772 u64 index;
Li Zefan33345d012011-04-20 10:31:50 +08002773 u64 ino = btrfs_ino(inode);
2774 u64 dir_ino = btrfs_ino(dir);
Chris Mason39279cc2007-06-12 06:35:45 -04002775
2776 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002777 if (!path) {
2778 ret = -ENOMEM;
Tsutomu Itoh554233a2011-02-03 03:16:25 +00002779 goto out;
Chris Mason54aa1f42007-06-22 14:16:25 -04002780 }
2781
Chris Masonb9473432009-03-13 11:00:37 -04002782 path->leave_spinning = 1;
Li Zefan33345d012011-04-20 10:31:50 +08002783 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Chris Mason39279cc2007-06-12 06:35:45 -04002784 name, name_len, -1);
2785 if (IS_ERR(di)) {
2786 ret = PTR_ERR(di);
2787 goto err;
2788 }
2789 if (!di) {
2790 ret = -ENOENT;
2791 goto err;
2792 }
Chris Mason5f39d392007-10-15 16:14:19 -04002793 leaf = path->nodes[0];
2794 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04002795 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04002796 if (ret)
2797 goto err;
David Sterbab3b4aa72011-04-21 01:20:15 +02002798 btrfs_release_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002799
Li Zefan33345d012011-04-20 10:31:50 +08002800 ret = btrfs_del_inode_ref(trans, root, name, name_len, ino,
2801 dir_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04002802 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05002803 printk(KERN_INFO "btrfs failed to delete reference to %.*s, "
Li Zefan33345d012011-04-20 10:31:50 +08002804 "inode %llu parent %llu\n", name_len, name,
2805 (unsigned long long)ino, (unsigned long long)dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002806 btrfs_abort_transaction(trans, root, ret);
Josef Bacikaec74772008-07-24 12:12:38 -04002807 goto err;
2808 }
2809
Miao Xie16cdcec2011-04-22 18:12:22 +08002810 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002811 if (ret) {
2812 btrfs_abort_transaction(trans, root, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04002813 goto err;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002814 }
Chris Mason39279cc2007-06-12 06:35:45 -04002815
Chris Masone02119d2008-09-05 16:13:11 -04002816 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
Li Zefan33345d012011-04-20 10:31:50 +08002817 inode, dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002818 if (ret != 0 && ret != -ENOENT) {
2819 btrfs_abort_transaction(trans, root, ret);
2820 goto err;
2821 }
Chris Masone02119d2008-09-05 16:13:11 -04002822
2823 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
2824 dir, index);
Chris Mason6418c962010-10-30 07:34:24 -04002825 if (ret == -ENOENT)
2826 ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002827err:
2828 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002829 if (ret)
2830 goto out;
2831
2832 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04002833 inode_inc_iversion(inode);
2834 inode_inc_iversion(dir);
Chris Masone02119d2008-09-05 16:13:11 -04002835 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
Tsutomu Itohb9959292012-06-25 21:25:22 -06002836 ret = btrfs_update_inode(trans, root, dir);
Chris Masone02119d2008-09-05 16:13:11 -04002837out:
Chris Mason39279cc2007-06-12 06:35:45 -04002838 return ret;
2839}
2840
Al Viro92986792011-03-04 17:14:37 +00002841int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2842 struct btrfs_root *root,
2843 struct inode *dir, struct inode *inode,
2844 const char *name, int name_len)
2845{
2846 int ret;
2847 ret = __btrfs_unlink_inode(trans, root, dir, inode, name, name_len);
2848 if (!ret) {
2849 btrfs_drop_nlink(inode);
2850 ret = btrfs_update_inode(trans, root, inode);
2851 }
2852 return ret;
2853}
2854
2855
Yan, Zhenga22285a2010-05-16 10:48:46 -04002856/* helper to check if there is any shared block in the path */
2857static int check_path_shared(struct btrfs_root *root,
2858 struct btrfs_path *path)
2859{
2860 struct extent_buffer *eb;
2861 int level;
Dan Carpenter0e4dcbef2010-06-01 08:23:11 +00002862 u64 refs = 1;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002863
2864 for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
Josef Bacikdedefd72011-01-24 21:43:18 +00002865 int ret;
2866
Yan, Zhenga22285a2010-05-16 10:48:46 -04002867 if (!path->nodes[level])
2868 break;
2869 eb = path->nodes[level];
2870 if (!btrfs_block_can_be_shared(root, eb))
2871 continue;
2872 ret = btrfs_lookup_extent_info(NULL, root, eb->start, eb->len,
2873 &refs, NULL);
2874 if (refs > 1)
2875 return 1;
2876 }
Josef Bacikdedefd72011-01-24 21:43:18 +00002877 return 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002878}
2879
2880/*
2881 * helper to start transaction for unlink and rmdir.
2882 *
2883 * unlink and rmdir are special in btrfs, they do not always free space.
2884 * so in enospc case, we should make sure they will free space before
2885 * allowing them to use the global metadata reservation.
2886 */
2887static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir,
2888 struct dentry *dentry)
2889{
2890 struct btrfs_trans_handle *trans;
2891 struct btrfs_root *root = BTRFS_I(dir)->root;
2892 struct btrfs_path *path;
2893 struct btrfs_inode_ref *ref;
2894 struct btrfs_dir_item *di;
2895 struct inode *inode = dentry->d_inode;
2896 u64 index;
2897 int check_link = 1;
2898 int err = -ENOSPC;
2899 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08002900 u64 ino = btrfs_ino(inode);
2901 u64 dir_ino = btrfs_ino(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002902
Josef Bacike70bea52011-10-11 14:18:24 -04002903 /*
2904 * 1 for the possible orphan item
2905 * 1 for the dir item
2906 * 1 for the dir index
2907 * 1 for the inode ref
2908 * 1 for the inode ref in the tree log
2909 * 2 for the dir entries in the log
2910 * 1 for the inode
2911 */
2912 trans = btrfs_start_transaction(root, 8);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002913 if (!IS_ERR(trans) || PTR_ERR(trans) != -ENOSPC)
2914 return trans;
2915
Li Zefan33345d012011-04-20 10:31:50 +08002916 if (ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhenga22285a2010-05-16 10:48:46 -04002917 return ERR_PTR(-ENOSPC);
2918
2919 /* check if there is someone else holds reference */
2920 if (S_ISDIR(inode->i_mode) && atomic_read(&inode->i_count) > 1)
2921 return ERR_PTR(-ENOSPC);
2922
2923 if (atomic_read(&inode->i_count) > 2)
2924 return ERR_PTR(-ENOSPC);
2925
2926 if (xchg(&root->fs_info->enospc_unlink, 1))
2927 return ERR_PTR(-ENOSPC);
2928
2929 path = btrfs_alloc_path();
2930 if (!path) {
2931 root->fs_info->enospc_unlink = 0;
2932 return ERR_PTR(-ENOMEM);
2933 }
2934
Josef Bacik3880a1b2011-10-14 14:46:51 -04002935 /* 1 for the orphan item */
2936 trans = btrfs_start_transaction(root, 1);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002937 if (IS_ERR(trans)) {
2938 btrfs_free_path(path);
2939 root->fs_info->enospc_unlink = 0;
2940 return trans;
2941 }
2942
2943 path->skip_locking = 1;
2944 path->search_commit_root = 1;
2945
2946 ret = btrfs_lookup_inode(trans, root, path,
2947 &BTRFS_I(dir)->location, 0);
2948 if (ret < 0) {
2949 err = ret;
2950 goto out;
2951 }
2952 if (ret == 0) {
2953 if (check_path_shared(root, path))
2954 goto out;
2955 } else {
2956 check_link = 0;
2957 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002958 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002959
2960 ret = btrfs_lookup_inode(trans, root, path,
2961 &BTRFS_I(inode)->location, 0);
2962 if (ret < 0) {
2963 err = ret;
2964 goto out;
2965 }
2966 if (ret == 0) {
2967 if (check_path_shared(root, path))
2968 goto out;
2969 } else {
2970 check_link = 0;
2971 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002972 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002973
2974 if (ret == 0 && S_ISREG(inode->i_mode)) {
2975 ret = btrfs_lookup_file_extent(trans, root, path,
Li Zefan33345d012011-04-20 10:31:50 +08002976 ino, (u64)-1, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002977 if (ret < 0) {
2978 err = ret;
2979 goto out;
2980 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002981 BUG_ON(ret == 0); /* Corruption */
Yan, Zhenga22285a2010-05-16 10:48:46 -04002982 if (check_path_shared(root, path))
2983 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +02002984 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002985 }
2986
2987 if (!check_link) {
2988 err = 0;
2989 goto out;
2990 }
2991
Li Zefan33345d012011-04-20 10:31:50 +08002992 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zhenga22285a2010-05-16 10:48:46 -04002993 dentry->d_name.name, dentry->d_name.len, 0);
2994 if (IS_ERR(di)) {
2995 err = PTR_ERR(di);
2996 goto out;
2997 }
2998 if (di) {
2999 if (check_path_shared(root, path))
3000 goto out;
3001 } else {
3002 err = 0;
3003 goto out;
3004 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003005 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003006
3007 ref = btrfs_lookup_inode_ref(trans, root, path,
3008 dentry->d_name.name, dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08003009 ino, dir_ino, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003010 if (IS_ERR(ref)) {
3011 err = PTR_ERR(ref);
3012 goto out;
3013 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003014 BUG_ON(!ref); /* Logic error */
Yan, Zhenga22285a2010-05-16 10:48:46 -04003015 if (check_path_shared(root, path))
3016 goto out;
3017 index = btrfs_inode_ref_index(path->nodes[0], ref);
David Sterbab3b4aa72011-04-21 01:20:15 +02003018 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003019
Miao Xie16cdcec2011-04-22 18:12:22 +08003020 /*
3021 * This is a commit root search, if we can lookup inode item and other
3022 * relative items in the commit root, it means the transaction of
3023 * dir/file creation has been committed, and the dir index item that we
3024 * delay to insert has also been inserted into the commit root. So
3025 * we needn't worry about the delayed insertion of the dir index item
3026 * here.
3027 */
Li Zefan33345d012011-04-20 10:31:50 +08003028 di = btrfs_lookup_dir_index_item(trans, root, path, dir_ino, index,
Yan, Zhenga22285a2010-05-16 10:48:46 -04003029 dentry->d_name.name, dentry->d_name.len, 0);
3030 if (IS_ERR(di)) {
3031 err = PTR_ERR(di);
3032 goto out;
3033 }
3034 BUG_ON(ret == -ENOENT);
3035 if (check_path_shared(root, path))
3036 goto out;
3037
3038 err = 0;
3039out:
3040 btrfs_free_path(path);
Josef Bacik3880a1b2011-10-14 14:46:51 -04003041 /* Migrate the orphan reservation over */
3042 if (!err)
3043 err = btrfs_block_rsv_migrate(trans->block_rsv,
3044 &root->fs_info->global_block_rsv,
Josef Bacik5a77d762011-11-01 14:32:23 -04003045 trans->bytes_reserved);
Josef Bacik3880a1b2011-10-14 14:46:51 -04003046
Yan, Zhenga22285a2010-05-16 10:48:46 -04003047 if (err) {
3048 btrfs_end_transaction(trans, root);
3049 root->fs_info->enospc_unlink = 0;
3050 return ERR_PTR(err);
3051 }
3052
3053 trans->block_rsv = &root->fs_info->global_block_rsv;
3054 return trans;
3055}
3056
3057static void __unlink_end_trans(struct btrfs_trans_handle *trans,
3058 struct btrfs_root *root)
3059{
3060 if (trans->block_rsv == &root->fs_info->global_block_rsv) {
Josef Bacik5a77d762011-11-01 14:32:23 -04003061 btrfs_block_rsv_release(root, trans->block_rsv,
3062 trans->bytes_reserved);
3063 trans->block_rsv = &root->fs_info->trans_block_rsv;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003064 BUG_ON(!root->fs_info->enospc_unlink);
3065 root->fs_info->enospc_unlink = 0;
3066 }
Josef Bacik7ad85bb2012-01-12 19:10:12 -05003067 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003068}
3069
Chris Mason39279cc2007-06-12 06:35:45 -04003070static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
3071{
Yan, Zhenga22285a2010-05-16 10:48:46 -04003072 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003073 struct btrfs_trans_handle *trans;
Josef Bacik7b128762008-07-24 12:17:14 -04003074 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04003075 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05003076 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003077
Yan, Zhenga22285a2010-05-16 10:48:46 -04003078 trans = __unlink_start_trans(dir, dentry);
3079 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003080 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04003081
Chris Mason12fcfd22009-03-24 10:24:20 -04003082 btrfs_record_unlink_dir(trans, dir, dentry->d_inode, 0);
3083
Chris Masone02119d2008-09-05 16:13:11 -04003084 ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
3085 dentry->d_name.name, dentry->d_name.len);
Tsutomu Itohb5324022011-07-19 07:27:20 +00003086 if (ret)
3087 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003088
Yan, Zhenga22285a2010-05-16 10:48:46 -04003089 if (inode->i_nlink == 0) {
Josef Bacik7b128762008-07-24 12:17:14 -04003090 ret = btrfs_orphan_add(trans, inode);
Tsutomu Itohb5324022011-07-19 07:27:20 +00003091 if (ret)
3092 goto out;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003093 }
Josef Bacik7b128762008-07-24 12:17:14 -04003094
Tsutomu Itohb5324022011-07-19 07:27:20 +00003095out:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003096 nr = trans->blocks_used;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003097 __unlink_end_trans(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003098 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003099 return ret;
3100}
3101
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003102int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
3103 struct btrfs_root *root,
3104 struct inode *dir, u64 objectid,
3105 const char *name, int name_len)
3106{
3107 struct btrfs_path *path;
3108 struct extent_buffer *leaf;
3109 struct btrfs_dir_item *di;
3110 struct btrfs_key key;
3111 u64 index;
3112 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08003113 u64 dir_ino = btrfs_ino(dir);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003114
3115 path = btrfs_alloc_path();
3116 if (!path)
3117 return -ENOMEM;
3118
Li Zefan33345d012011-04-20 10:31:50 +08003119 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003120 name, name_len, -1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003121 if (IS_ERR_OR_NULL(di)) {
3122 if (!di)
3123 ret = -ENOENT;
3124 else
3125 ret = PTR_ERR(di);
3126 goto out;
3127 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003128
3129 leaf = path->nodes[0];
3130 btrfs_dir_item_key_to_cpu(leaf, di, &key);
3131 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
3132 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003133 if (ret) {
3134 btrfs_abort_transaction(trans, root, ret);
3135 goto out;
3136 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003137 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003138
3139 ret = btrfs_del_root_ref(trans, root->fs_info->tree_root,
3140 objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08003141 dir_ino, &index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003142 if (ret < 0) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003143 if (ret != -ENOENT) {
3144 btrfs_abort_transaction(trans, root, ret);
3145 goto out;
3146 }
Li Zefan33345d012011-04-20 10:31:50 +08003147 di = btrfs_search_dir_index_item(root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003148 name, name_len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003149 if (IS_ERR_OR_NULL(di)) {
3150 if (!di)
3151 ret = -ENOENT;
3152 else
3153 ret = PTR_ERR(di);
3154 btrfs_abort_transaction(trans, root, ret);
3155 goto out;
3156 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003157
3158 leaf = path->nodes[0];
3159 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02003160 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003161 index = key.offset;
3162 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003163 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003164
Miao Xie16cdcec2011-04-22 18:12:22 +08003165 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003166 if (ret) {
3167 btrfs_abort_transaction(trans, root, ret);
3168 goto out;
3169 }
Miao Xie16cdcec2011-04-22 18:12:22 +08003170
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003171 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04003172 inode_inc_iversion(dir);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003173 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
Josef Bacik5a24e842012-08-08 10:12:59 -06003174 ret = btrfs_update_inode_fallback(trans, root, dir);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003175 if (ret)
3176 btrfs_abort_transaction(trans, root, ret);
3177out:
Josef Bacik71d7aed2011-06-14 14:24:32 -04003178 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003179 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003180}
3181
Chris Mason39279cc2007-06-12 06:35:45 -04003182static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
3183{
3184 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05003185 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003186 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003187 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -05003188 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003189
Chris Mason3394e162008-11-17 20:42:26 -05003190 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE ||
Li Zefan33345d012011-04-20 10:31:50 +08003191 btrfs_ino(inode) == BTRFS_FIRST_FREE_OBJECTID)
Yan134d4512007-10-25 15:49:25 -04003192 return -ENOTEMPTY;
3193
Yan, Zhenga22285a2010-05-16 10:48:46 -04003194 trans = __unlink_start_trans(dir, dentry);
3195 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003196 return PTR_ERR(trans);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003197
Li Zefan33345d012011-04-20 10:31:50 +08003198 if (unlikely(btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003199 err = btrfs_unlink_subvol(trans, root, dir,
3200 BTRFS_I(inode)->location.objectid,
3201 dentry->d_name.name,
3202 dentry->d_name.len);
3203 goto out;
3204 }
3205
Josef Bacik7b128762008-07-24 12:17:14 -04003206 err = btrfs_orphan_add(trans, inode);
3207 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003208 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003209
Chris Mason39279cc2007-06-12 06:35:45 -04003210 /* now the directory is empty */
Chris Masone02119d2008-09-05 16:13:11 -04003211 err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
3212 dentry->d_name.name, dentry->d_name.len);
Chris Masond3977122009-01-05 21:25:51 -05003213 if (!err)
Chris Masondbe674a2008-07-17 12:54:05 -04003214 btrfs_i_size_write(inode, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003215out:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003216 nr = trans->blocks_used;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003217 __unlink_end_trans(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003218 btrfs_btree_balance_dirty(root, nr);
Chris Mason39544012007-12-12 14:38:19 -05003219
Chris Mason39279cc2007-06-12 06:35:45 -04003220 return err;
3221}
3222
Chris Mason323ac952008-10-01 19:05:46 -04003223/*
Chris Mason39279cc2007-06-12 06:35:45 -04003224 * this can truncate away extent items, csum items and directory items.
3225 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04003226 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04003227 *
3228 * csum items that cross the new i_size are truncated to the new size
3229 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04003230 *
3231 * min_type is the minimum key type to truncate down to. If set to 0, this
3232 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04003233 */
Yan, Zheng80825102009-11-12 09:35:36 +00003234int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
3235 struct btrfs_root *root,
3236 struct inode *inode,
3237 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003238{
Chris Mason39279cc2007-06-12 06:35:45 -04003239 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003240 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003241 struct btrfs_file_extent_item *fi;
Yan, Zheng80825102009-11-12 09:35:36 +00003242 struct btrfs_key key;
3243 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04003244 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04003245 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003246 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003247 u64 item_end = 0;
Yan, Zheng80825102009-11-12 09:35:36 +00003248 u64 mask = root->sectorsize - 1;
3249 u32 found_type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -04003250 int found_extent;
3251 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05003252 int pending_del_nr = 0;
3253 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04003254 int extent_type = -1;
Yan, Zheng80825102009-11-12 09:35:36 +00003255 int ret;
3256 int err = 0;
Li Zefan33345d012011-04-20 10:31:50 +08003257 u64 ino = btrfs_ino(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003258
3259 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04003260
Mark Fasheh0eb0e192011-07-12 16:44:10 -07003261 path = btrfs_alloc_path();
3262 if (!path)
3263 return -ENOMEM;
3264 path->reada = -1;
3265
Josef Bacik0af3d002010-06-21 14:48:16 -04003266 if (root->ref_cows || root == root->fs_info->tree_root)
Zheng Yan5b21f2e2008-09-26 10:05:38 -04003267 btrfs_drop_extent_cache(inode, new_size & (~mask), (u64)-1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003268
Miao Xie16cdcec2011-04-22 18:12:22 +08003269 /*
3270 * This function is also used to drop the items in the log tree before
3271 * we relog the inode, so if root != BTRFS_I(inode)->root, it means
3272 * it is used to drop the loged items. So we shouldn't kill the delayed
3273 * items.
3274 */
3275 if (min_type == 0 && root == BTRFS_I(inode)->root)
3276 btrfs_kill_delayed_inode_items(inode);
3277
Li Zefan33345d012011-04-20 10:31:50 +08003278 key.objectid = ino;
Chris Mason39279cc2007-06-12 06:35:45 -04003279 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04003280 key.type = (u8)-1;
3281
Chris Mason85e21ba2008-01-29 15:11:36 -05003282search_again:
Chris Masonb9473432009-03-13 11:00:37 -04003283 path->leave_spinning = 1;
Chris Mason85e21ba2008-01-29 15:11:36 -05003284 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Yan, Zheng80825102009-11-12 09:35:36 +00003285 if (ret < 0) {
3286 err = ret;
3287 goto out;
3288 }
Chris Masond3977122009-01-05 21:25:51 -05003289
Chris Mason85e21ba2008-01-29 15:11:36 -05003290 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003291 /* there are no items in the tree for us to truncate, we're
3292 * done
3293 */
Yan, Zheng80825102009-11-12 09:35:36 +00003294 if (path->slots[0] == 0)
3295 goto out;
Chris Mason85e21ba2008-01-29 15:11:36 -05003296 path->slots[0]--;
3297 }
3298
Chris Masond3977122009-01-05 21:25:51 -05003299 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04003300 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04003301 leaf = path->nodes[0];
3302 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3303 found_type = btrfs_key_type(&found_key);
Chris Mason39279cc2007-06-12 06:35:45 -04003304
Li Zefan33345d012011-04-20 10:31:50 +08003305 if (found_key.objectid != ino)
Chris Mason39279cc2007-06-12 06:35:45 -04003306 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003307
Chris Mason85e21ba2008-01-29 15:11:36 -05003308 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003309 break;
3310
Chris Mason5f39d392007-10-15 16:14:19 -04003311 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04003312 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04003313 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04003314 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04003315 extent_type = btrfs_file_extent_type(leaf, fi);
3316 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04003317 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04003318 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04003319 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04003320 item_end += btrfs_file_extent_inline_len(leaf,
Chris Masonc8b97812008-10-29 14:49:59 -04003321 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003322 }
Yan008630c2007-11-07 13:31:09 -05003323 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04003324 }
Yan, Zheng80825102009-11-12 09:35:36 +00003325 if (found_type > min_type) {
Chris Mason39279cc2007-06-12 06:35:45 -04003326 del_item = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00003327 } else {
3328 if (item_end < new_size)
3329 break;
3330 if (found_key.offset >= new_size)
3331 del_item = 1;
3332 else
3333 del_item = 0;
3334 }
Chris Mason39279cc2007-06-12 06:35:45 -04003335 found_extent = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003336 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04003337 if (found_type != BTRFS_EXTENT_DATA_KEY)
3338 goto delete;
3339
3340 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04003341 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04003342 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Miao Xief70a9a6b2012-01-12 19:10:12 -05003343 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -04003344 u64 orig_num_bytes =
3345 btrfs_file_extent_num_bytes(leaf, fi);
Chris Masone02119d2008-09-05 16:13:11 -04003346 extent_num_bytes = new_size -
Chris Mason5f39d392007-10-15 16:14:19 -04003347 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -05003348 extent_num_bytes = extent_num_bytes &
3349 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04003350 btrfs_set_file_extent_num_bytes(leaf, fi,
3351 extent_num_bytes);
3352 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05003353 extent_num_bytes);
Chris Masone02119d2008-09-05 16:13:11 -04003354 if (root->ref_cows && extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003355 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04003356 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003357 } else {
Chris Masondb945352007-10-15 16:15:53 -04003358 extent_num_bytes =
3359 btrfs_file_extent_disk_num_bytes(leaf,
3360 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003361 extent_offset = found_key.offset -
3362 btrfs_file_extent_offset(leaf, fi);
3363
Chris Mason39279cc2007-06-12 06:35:45 -04003364 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05003365 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003366 if (extent_start != 0) {
3367 found_extent = 1;
Chris Masone02119d2008-09-05 16:13:11 -04003368 if (root->ref_cows)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003369 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04003370 }
3371 }
Chris Mason90692182008-02-08 13:49:28 -05003372 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003373 /*
3374 * we can't truncate inline items that have had
3375 * special encodings
3376 */
3377 if (!del_item &&
3378 btrfs_file_extent_compression(leaf, fi) == 0 &&
3379 btrfs_file_extent_encryption(leaf, fi) == 0 &&
3380 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003381 u32 size = new_size - found_key.offset;
3382
3383 if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003384 inode_sub_bytes(inode, item_end + 1 -
3385 new_size);
Chris Masone02119d2008-09-05 16:13:11 -04003386 }
3387 size =
3388 btrfs_file_extent_calc_inline_size(size);
Jeff Mahoney143bede2012-03-01 14:56:26 +01003389 btrfs_truncate_item(trans, root, path,
3390 size, 1);
Chris Masone02119d2008-09-05 16:13:11 -04003391 } else if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003392 inode_sub_bytes(inode, item_end + 1 -
3393 found_key.offset);
Chris Mason90692182008-02-08 13:49:28 -05003394 }
Chris Mason39279cc2007-06-12 06:35:45 -04003395 }
Chris Mason179e29e2007-11-01 11:28:41 -04003396delete:
Chris Mason39279cc2007-06-12 06:35:45 -04003397 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05003398 if (!pending_del_nr) {
3399 /* no pending yet, add ourselves */
3400 pending_del_slot = path->slots[0];
3401 pending_del_nr = 1;
3402 } else if (pending_del_nr &&
3403 path->slots[0] + 1 == pending_del_slot) {
3404 /* hop on the pending chunk */
3405 pending_del_nr++;
3406 pending_del_slot = path->slots[0];
3407 } else {
Chris Masond3977122009-01-05 21:25:51 -05003408 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05003409 }
Chris Mason39279cc2007-06-12 06:35:45 -04003410 } else {
3411 break;
3412 }
Josef Bacik0af3d002010-06-21 14:48:16 -04003413 if (found_extent && (root->ref_cows ||
3414 root == root->fs_info->tree_root)) {
Chris Masonb9473432009-03-13 11:00:37 -04003415 btrfs_set_path_blocking(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003416 ret = btrfs_free_extent(trans, root, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003417 extent_num_bytes, 0,
3418 btrfs_header_owner(leaf),
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003419 ino, extent_offset, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04003420 BUG_ON(ret);
3421 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003422
Yan, Zheng80825102009-11-12 09:35:36 +00003423 if (found_type == BTRFS_INODE_ITEM_KEY)
3424 break;
3425
3426 if (path->slots[0] == 0 ||
3427 path->slots[0] != pending_del_slot) {
Li Zefan82d59022011-04-20 10:33:24 +08003428 if (root->ref_cows &&
3429 BTRFS_I(inode)->location.objectid !=
3430 BTRFS_FREE_INO_OBJECTID) {
Yan, Zheng80825102009-11-12 09:35:36 +00003431 err = -EAGAIN;
3432 goto out;
3433 }
3434 if (pending_del_nr) {
3435 ret = btrfs_del_items(trans, root, path,
3436 pending_del_slot,
3437 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003438 if (ret) {
3439 btrfs_abort_transaction(trans,
3440 root, ret);
3441 goto error;
3442 }
Yan, Zheng80825102009-11-12 09:35:36 +00003443 pending_del_nr = 0;
3444 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003445 btrfs_release_path(path);
Chris Mason85e21ba2008-01-29 15:11:36 -05003446 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00003447 } else {
3448 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05003449 }
Chris Mason39279cc2007-06-12 06:35:45 -04003450 }
Yan, Zheng80825102009-11-12 09:35:36 +00003451out:
Chris Mason85e21ba2008-01-29 15:11:36 -05003452 if (pending_del_nr) {
3453 ret = btrfs_del_items(trans, root, path, pending_del_slot,
3454 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003455 if (ret)
3456 btrfs_abort_transaction(trans, root, ret);
Chris Mason85e21ba2008-01-29 15:11:36 -05003457 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003458error:
Chris Mason39279cc2007-06-12 06:35:45 -04003459 btrfs_free_path(path);
Yan, Zheng80825102009-11-12 09:35:36 +00003460 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003461}
3462
Chris Masona52d9a82007-08-27 16:49:44 -04003463/*
3464 * taken from block_truncate_page, but does cow as it zeros out
3465 * any bytes left in the last page in the file.
3466 */
3467static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
3468{
3469 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -04003470 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003471 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
3472 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003473 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003474 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04003475 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04003476 pgoff_t index = from >> PAGE_CACHE_SHIFT;
3477 unsigned offset = from & (PAGE_CACHE_SIZE-1);
3478 struct page *page;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04003479 gfp_t mask = btrfs_alloc_write_mask(mapping);
Chris Masona52d9a82007-08-27 16:49:44 -04003480 int ret = 0;
3481 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003482 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04003483
3484 if ((offset & (blocksize - 1)) == 0)
3485 goto out;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003486 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003487 if (ret)
3488 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003489
3490 ret = -ENOMEM;
Chris Mason211c17f2008-05-15 09:13:45 -04003491again:
Josef Bacik3b16a4e2011-09-21 15:05:58 -04003492 page = find_or_create_page(mapping, index, mask);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003493 if (!page) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003494 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Masona52d9a82007-08-27 16:49:44 -04003495 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04003496 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003497
3498 page_start = page_offset(page);
3499 page_end = page_start + PAGE_CACHE_SIZE - 1;
3500
Chris Masona52d9a82007-08-27 16:49:44 -04003501 if (!PageUptodate(page)) {
3502 ret = btrfs_readpage(NULL, page);
3503 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04003504 if (page->mapping != mapping) {
3505 unlock_page(page);
3506 page_cache_release(page);
3507 goto again;
3508 }
Chris Masona52d9a82007-08-27 16:49:44 -04003509 if (!PageUptodate(page)) {
3510 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04003511 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04003512 }
3513 }
Chris Mason211c17f2008-05-15 09:13:45 -04003514 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003515
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003516 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003517 set_page_extent_mapped(page);
3518
3519 ordered = btrfs_lookup_ordered_extent(inode, page_start);
3520 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003521 unlock_extent_cached(io_tree, page_start, page_end,
3522 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003523 unlock_page(page);
3524 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04003525 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003526 btrfs_put_ordered_extent(ordered);
3527 goto again;
3528 }
3529
Josef Bacik2ac55d42010-02-03 19:33:23 +00003530 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Josef Bacik5d5e1032009-10-13 16:46:49 -04003531 EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003532 0, 0, &cached_state, GFP_NOFS);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003533
Josef Bacik2ac55d42010-02-03 19:33:23 +00003534 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
3535 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003536 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003537 unlock_extent_cached(io_tree, page_start, page_end,
3538 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003539 goto out_unlock;
3540 }
3541
Chris Masone6dcd2d2008-07-17 12:53:50 -04003542 ret = 0;
3543 if (offset != PAGE_CACHE_SIZE) {
3544 kaddr = kmap(page);
3545 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
3546 flush_dcache_page(page);
3547 kunmap(page);
3548 }
Chris Mason247e7432008-07-17 12:53:51 -04003549 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003550 set_page_dirty(page);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003551 unlock_extent_cached(io_tree, page_start, page_end, &cached_state,
3552 GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04003553
Chris Mason89642222008-07-24 09:41:53 -04003554out_unlock:
Josef Bacik5d5e1032009-10-13 16:46:49 -04003555 if (ret)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003556 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason39279cc2007-06-12 06:35:45 -04003557 unlock_page(page);
3558 page_cache_release(page);
3559out:
3560 return ret;
3561}
3562
Josef Bacik695a0d02011-03-04 15:46:53 -05003563/*
3564 * This function puts in dummy file extents for the area we're creating a hole
3565 * for. So if we are truncating this file to a larger size we need to insert
3566 * these file extents so that btrfs_get_extent will return a EXTENT_MAP_HOLE for
3567 * the range between oldsize and size
3568 */
Josef Bacika41ad392011-01-31 15:30:16 -05003569int btrfs_cont_expand(struct inode *inode, loff_t oldsize, loff_t size)
Yan Zheng9036c102008-10-30 14:19:41 -04003570{
3571 struct btrfs_trans_handle *trans;
3572 struct btrfs_root *root = BTRFS_I(inode)->root;
3573 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003574 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003575 struct extent_state *cached_state = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04003576 u64 mask = root->sectorsize - 1;
Josef Bacika41ad392011-01-31 15:30:16 -05003577 u64 hole_start = (oldsize + mask) & ~mask;
Yan Zheng9036c102008-10-30 14:19:41 -04003578 u64 block_end = (size + mask) & ~mask;
3579 u64 last_byte;
3580 u64 cur_offset;
3581 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003582 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003583
3584 if (size <= hole_start)
3585 return 0;
3586
Yan Zheng9036c102008-10-30 14:19:41 -04003587 while (1) {
3588 struct btrfs_ordered_extent *ordered;
3589 btrfs_wait_ordered_range(inode, hole_start,
3590 block_end - hole_start);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003591 lock_extent_bits(io_tree, hole_start, block_end - 1, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003592 &cached_state);
Yan Zheng9036c102008-10-30 14:19:41 -04003593 ordered = btrfs_lookup_ordered_extent(inode, hole_start);
3594 if (!ordered)
3595 break;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003596 unlock_extent_cached(io_tree, hole_start, block_end - 1,
3597 &cached_state, GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003598 btrfs_put_ordered_extent(ordered);
3599 }
3600
Yan Zheng9036c102008-10-30 14:19:41 -04003601 cur_offset = hole_start;
3602 while (1) {
3603 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
3604 block_end - cur_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003605 if (IS_ERR(em)) {
3606 err = PTR_ERR(em);
3607 break;
3608 }
Yan Zheng9036c102008-10-30 14:19:41 -04003609 last_byte = min(extent_map_end(em), block_end);
3610 last_byte = (last_byte + mask) & ~mask;
Yan, Zheng80825102009-11-12 09:35:36 +00003611 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Chris Mason771ed682008-11-06 22:02:51 -05003612 u64 hint_byte = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003613 hole_size = last_byte - cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00003614
Miao Xie36423202011-12-14 20:12:02 -05003615 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003616 if (IS_ERR(trans)) {
3617 err = PTR_ERR(trans);
Chris Mason771ed682008-11-06 22:02:51 -05003618 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003619 }
Yan, Zheng80825102009-11-12 09:35:36 +00003620
3621 err = btrfs_drop_extents(trans, inode, cur_offset,
3622 cur_offset + hole_size,
3623 &hint_byte, 1);
Miao Xie5b397372011-09-11 10:52:24 -04003624 if (err) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003625 btrfs_abort_transaction(trans, root, err);
Miao Xie5b397372011-09-11 10:52:24 -04003626 btrfs_end_transaction(trans, root);
Josef Bacik3893e332011-01-31 16:03:11 -05003627 break;
Miao Xie5b397372011-09-11 10:52:24 -04003628 }
Josef Bacik9ed74f22009-09-11 16:12:44 -04003629
Yan Zheng9036c102008-10-30 14:19:41 -04003630 err = btrfs_insert_file_extent(trans, root,
Li Zefan33345d012011-04-20 10:31:50 +08003631 btrfs_ino(inode), cur_offset, 0,
Yan Zheng9036c102008-10-30 14:19:41 -04003632 0, hole_size, 0, hole_size,
3633 0, 0, 0);
Miao Xie5b397372011-09-11 10:52:24 -04003634 if (err) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003635 btrfs_abort_transaction(trans, root, err);
Miao Xie5b397372011-09-11 10:52:24 -04003636 btrfs_end_transaction(trans, root);
Josef Bacik3893e332011-01-31 16:03:11 -05003637 break;
Miao Xie5b397372011-09-11 10:52:24 -04003638 }
Yan, Zheng80825102009-11-12 09:35:36 +00003639
Yan Zheng9036c102008-10-30 14:19:41 -04003640 btrfs_drop_extent_cache(inode, hole_start,
3641 last_byte - 1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003642
Miao Xie36423202011-12-14 20:12:02 -05003643 btrfs_update_inode(trans, root, inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003644 btrfs_end_transaction(trans, root);
Yan Zheng9036c102008-10-30 14:19:41 -04003645 }
3646 free_extent_map(em);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003647 em = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04003648 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00003649 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04003650 break;
3651 }
3652
Yan, Zhenga22285a2010-05-16 10:48:46 -04003653 free_extent_map(em);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003654 unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state,
3655 GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003656 return err;
3657}
3658
Josef Bacika41ad392011-01-31 15:30:16 -05003659static int btrfs_setsize(struct inode *inode, loff_t newsize)
Yan, Zheng80825102009-11-12 09:35:36 +00003660{
Miao Xief4a2f4c2011-12-14 20:12:01 -05003661 struct btrfs_root *root = BTRFS_I(inode)->root;
3662 struct btrfs_trans_handle *trans;
Josef Bacika41ad392011-01-31 15:30:16 -05003663 loff_t oldsize = i_size_read(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003664 int ret;
3665
Josef Bacika41ad392011-01-31 15:30:16 -05003666 if (newsize == oldsize)
Yan, Zheng80825102009-11-12 09:35:36 +00003667 return 0;
3668
Josef Bacika41ad392011-01-31 15:30:16 -05003669 if (newsize > oldsize) {
Josef Bacika41ad392011-01-31 15:30:16 -05003670 truncate_pagecache(inode, oldsize, newsize);
3671 ret = btrfs_cont_expand(inode, oldsize, newsize);
Miao Xief4a2f4c2011-12-14 20:12:01 -05003672 if (ret)
Yan, Zheng80825102009-11-12 09:35:36 +00003673 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00003674
Miao Xief4a2f4c2011-12-14 20:12:01 -05003675 trans = btrfs_start_transaction(root, 1);
3676 if (IS_ERR(trans))
3677 return PTR_ERR(trans);
3678
3679 i_size_write(inode, newsize);
3680 btrfs_ordered_update_i_size(inode, i_size_read(inode), NULL);
3681 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik7ad85bb2012-01-12 19:10:12 -05003682 btrfs_end_transaction(trans, root);
Josef Bacika41ad392011-01-31 15:30:16 -05003683 } else {
Yan, Zheng80825102009-11-12 09:35:36 +00003684
Josef Bacika41ad392011-01-31 15:30:16 -05003685 /*
3686 * We're truncating a file that used to have good data down to
3687 * zero. Make sure it gets into the ordered flush list so that
3688 * any new writes get down to disk quickly.
3689 */
3690 if (newsize == 0)
Josef Bacik72ac3c02012-05-23 14:13:11 -04003691 set_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
3692 &BTRFS_I(inode)->runtime_flags);
Yan, Zheng80825102009-11-12 09:35:36 +00003693
Josef Bacika41ad392011-01-31 15:30:16 -05003694 /* we don't support swapfiles, so vmtruncate shouldn't fail */
3695 truncate_setsize(inode, newsize);
3696 ret = btrfs_truncate(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003697 }
3698
Josef Bacika41ad392011-01-31 15:30:16 -05003699 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00003700}
3701
Chris Mason39279cc2007-06-12 06:35:45 -04003702static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
3703{
3704 struct inode *inode = dentry->d_inode;
Li Zefanb83cc962010-12-20 16:04:08 +08003705 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003706 int err;
3707
Li Zefanb83cc962010-12-20 16:04:08 +08003708 if (btrfs_root_readonly(root))
3709 return -EROFS;
3710
Chris Mason39279cc2007-06-12 06:35:45 -04003711 err = inode_change_ok(inode, attr);
3712 if (err)
3713 return err;
3714
Chris Mason5a3f23d2009-03-31 13:27:11 -04003715 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Josef Bacika41ad392011-01-31 15:30:16 -05003716 err = btrfs_setsize(inode, attr->ia_size);
Yan, Zheng80825102009-11-12 09:35:36 +00003717 if (err)
3718 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003719 }
Yan Zheng9036c102008-10-30 14:19:41 -04003720
Christoph Hellwig10257742010-06-04 11:30:02 +02003721 if (attr->ia_valid) {
3722 setattr_copy(inode, attr);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04003723 inode_inc_iversion(inode);
Josef Bacik22c44fe2011-11-30 10:45:38 -05003724 err = btrfs_dirty_inode(inode);
Josef Bacik33268ea2008-07-24 12:16:36 -04003725
Josef Bacik22c44fe2011-11-30 10:45:38 -05003726 if (!err && attr->ia_valid & ATTR_MODE)
Christoph Hellwig10257742010-06-04 11:30:02 +02003727 err = btrfs_acl_chmod(inode);
3728 }
3729
Chris Mason39279cc2007-06-12 06:35:45 -04003730 return err;
3731}
Chris Mason61295eb2008-01-14 16:24:38 -05003732
Al Virobd555972010-06-07 11:35:40 -04003733void btrfs_evict_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003734{
3735 struct btrfs_trans_handle *trans;
3736 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik726c35f2011-09-26 15:46:06 -04003737 struct btrfs_block_rsv *rsv, *global_rsv;
Josef Bacik07127182011-08-19 10:29:59 -04003738 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003739 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04003740 int ret;
3741
liubo1abe9b82011-03-24 11:18:59 +00003742 trace_btrfs_inode_evict(inode);
3743
Chris Mason39279cc2007-06-12 06:35:45 -04003744 truncate_inode_pages(&inode->i_data, 0);
Josef Bacik0af3d002010-06-21 14:48:16 -04003745 if (inode->i_nlink && (btrfs_root_refs(&root->root_item) != 0 ||
Liu Bo83eea1f2012-07-10 05:28:39 -06003746 btrfs_is_free_space_inode(inode)))
Al Virobd555972010-06-07 11:35:40 -04003747 goto no_delete;
3748
Chris Mason39279cc2007-06-12 06:35:45 -04003749 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04003750 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003751 goto no_delete;
3752 }
Al Virobd555972010-06-07 11:35:40 -04003753 /* do we really want it for ->i_nlink > 0 and zero btrfs_root_refs? */
Chris Mason4a096752008-07-21 10:29:44 -04003754 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04003755
Yan, Zhengc71bf092009-11-12 09:34:40 +00003756 if (root->fs_info->log_root_recovering) {
Liu Bo6bf02312012-06-25 21:59:09 -06003757 BUG_ON(test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
Josef Bacik8a35d952012-05-23 14:26:42 -04003758 &BTRFS_I(inode)->runtime_flags));
Yan, Zhengc71bf092009-11-12 09:34:40 +00003759 goto no_delete;
3760 }
3761
Yan, Zheng76dda932009-09-21 16:00:26 -04003762 if (inode->i_nlink > 0) {
3763 BUG_ON(btrfs_root_refs(&root->root_item) != 0);
3764 goto no_delete;
3765 }
3766
Josef Bacik4289a662011-08-05 13:22:24 -04003767 rsv = btrfs_alloc_block_rsv(root);
3768 if (!rsv) {
3769 btrfs_orphan_del(NULL, inode);
3770 goto no_delete;
3771 }
Josef Bacik4a338542011-08-29 11:01:31 -04003772 rsv->size = min_size;
Josef Bacik726c35f2011-09-26 15:46:06 -04003773 global_rsv = &root->fs_info->global_block_rsv;
Josef Bacik4289a662011-08-05 13:22:24 -04003774
Chris Masondbe674a2008-07-17 12:54:05 -04003775 btrfs_i_size_write(inode, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003776
Josef Bacik4289a662011-08-05 13:22:24 -04003777 /*
3778 * This is a bit simpler than btrfs_truncate since
3779 *
3780 * 1) We've already reserved our space for our orphan item in the
3781 * unlink.
3782 * 2) We're going to delete the inode item, so we don't need to update
3783 * it at all.
3784 *
3785 * So we just need to reserve some slack space in case we add bytes when
3786 * doing the truncate.
3787 */
Yan, Zheng80825102009-11-12 09:35:36 +00003788 while (1) {
Miao Xieaa38a712011-11-18 17:43:00 +08003789 ret = btrfs_block_rsv_refill_noflush(root, rsv, min_size);
Yan, Zheng80825102009-11-12 09:35:36 +00003790
Josef Bacik726c35f2011-09-26 15:46:06 -04003791 /*
3792 * Try and steal from the global reserve since we will
3793 * likely not use this space anyway, we want to try as
3794 * hard as possible to get this to work.
3795 */
3796 if (ret)
3797 ret = btrfs_block_rsv_migrate(global_rsv, rsv, min_size);
3798
Yan, Zhengd68fc572010-05-16 10:49:58 -04003799 if (ret) {
Josef Bacik4289a662011-08-05 13:22:24 -04003800 printk(KERN_WARNING "Could not get space for a "
Josef Bacik482e6dc2011-08-19 10:31:56 -04003801 "delete, will truncate on mount %d\n", ret);
Josef Bacik4289a662011-08-05 13:22:24 -04003802 btrfs_orphan_del(NULL, inode);
3803 btrfs_free_block_rsv(root, rsv);
3804 goto no_delete;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003805 }
3806
Josef Bacik4289a662011-08-05 13:22:24 -04003807 trans = btrfs_start_transaction(root, 0);
3808 if (IS_ERR(trans)) {
3809 btrfs_orphan_del(NULL, inode);
3810 btrfs_free_block_rsv(root, rsv);
3811 goto no_delete;
3812 }
3813
3814 trans->block_rsv = rsv;
3815
Yan, Zhengd68fc572010-05-16 10:49:58 -04003816 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003817 if (ret != -EAGAIN)
3818 break;
3819
3820 nr = trans->blocks_used;
3821 btrfs_end_transaction(trans, root);
3822 trans = NULL;
3823 btrfs_btree_balance_dirty(root, nr);
Josef Bacik7b128762008-07-24 12:17:14 -04003824 }
3825
Josef Bacik4289a662011-08-05 13:22:24 -04003826 btrfs_free_block_rsv(root, rsv);
3827
Yan, Zheng80825102009-11-12 09:35:36 +00003828 if (ret == 0) {
Josef Bacik4289a662011-08-05 13:22:24 -04003829 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00003830 ret = btrfs_orphan_del(trans, inode);
3831 BUG_ON(ret);
3832 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003833
Josef Bacik4289a662011-08-05 13:22:24 -04003834 trans->block_rsv = &root->fs_info->trans_block_rsv;
Li Zefan581bb052011-04-20 10:06:11 +08003835 if (!(root == root->fs_info->tree_root ||
3836 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID))
Li Zefan33345d012011-04-20 10:31:50 +08003837 btrfs_return_ino(root, btrfs_ino(inode));
Li Zefan581bb052011-04-20 10:06:11 +08003838
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003839 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04003840 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003841 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003842no_delete:
Jan Karadbd57682012-05-03 14:48:02 +02003843 clear_inode(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003844 return;
Chris Mason39279cc2007-06-12 06:35:45 -04003845}
3846
3847/*
3848 * this returns the key found in the dir entry in the location pointer.
3849 * If no dir entries were found, location->objectid is 0.
3850 */
3851static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
3852 struct btrfs_key *location)
3853{
3854 const char *name = dentry->d_name.name;
3855 int namelen = dentry->d_name.len;
3856 struct btrfs_dir_item *di;
3857 struct btrfs_path *path;
3858 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04003859 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003860
3861 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07003862 if (!path)
3863 return -ENOMEM;
Chris Mason39544012007-12-12 14:38:19 -05003864
Li Zefan33345d012011-04-20 10:31:50 +08003865 di = btrfs_lookup_dir_item(NULL, root, path, btrfs_ino(dir), name,
Chris Mason39279cc2007-06-12 06:35:45 -04003866 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04003867 if (IS_ERR(di))
3868 ret = PTR_ERR(di);
Chris Masond3977122009-01-05 21:25:51 -05003869
David Sterbac7040052011-04-19 18:00:01 +02003870 if (IS_ERR_OR_NULL(di))
Chris Mason39544012007-12-12 14:38:19 -05003871 goto out_err;
Chris Masond3977122009-01-05 21:25:51 -05003872
Chris Mason5f39d392007-10-15 16:14:19 -04003873 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04003874out:
Chris Mason39279cc2007-06-12 06:35:45 -04003875 btrfs_free_path(path);
3876 return ret;
Chris Mason39544012007-12-12 14:38:19 -05003877out_err:
3878 location->objectid = 0;
3879 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04003880}
3881
3882/*
3883 * when we hit a tree root in a directory, the btrfs part of the inode
3884 * needs to be changed to reflect the root directory of the tree root. This
3885 * is kind of like crossing a mount point.
3886 */
3887static int fixup_tree_root_location(struct btrfs_root *root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003888 struct inode *dir,
3889 struct dentry *dentry,
3890 struct btrfs_key *location,
3891 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04003892{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003893 struct btrfs_path *path;
3894 struct btrfs_root *new_root;
3895 struct btrfs_root_ref *ref;
3896 struct extent_buffer *leaf;
3897 int ret;
3898 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003899
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003900 path = btrfs_alloc_path();
3901 if (!path) {
3902 err = -ENOMEM;
3903 goto out;
3904 }
Chris Mason39279cc2007-06-12 06:35:45 -04003905
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003906 err = -ENOENT;
3907 ret = btrfs_find_root_ref(root->fs_info->tree_root, path,
3908 BTRFS_I(dir)->root->root_key.objectid,
3909 location->objectid);
3910 if (ret) {
3911 if (ret < 0)
3912 err = ret;
3913 goto out;
3914 }
Chris Mason39279cc2007-06-12 06:35:45 -04003915
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003916 leaf = path->nodes[0];
3917 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
Li Zefan33345d012011-04-20 10:31:50 +08003918 if (btrfs_root_ref_dirid(leaf, ref) != btrfs_ino(dir) ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003919 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
3920 goto out;
3921
3922 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
3923 (unsigned long)(ref + 1),
3924 dentry->d_name.len);
3925 if (ret)
3926 goto out;
3927
David Sterbab3b4aa72011-04-21 01:20:15 +02003928 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003929
3930 new_root = btrfs_read_fs_root_no_name(root->fs_info, location);
3931 if (IS_ERR(new_root)) {
3932 err = PTR_ERR(new_root);
3933 goto out;
3934 }
3935
3936 if (btrfs_root_refs(&new_root->root_item) == 0) {
3937 err = -ENOENT;
3938 goto out;
3939 }
3940
3941 *sub_root = new_root;
3942 location->objectid = btrfs_root_dirid(&new_root->root_item);
3943 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04003944 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003945 err = 0;
3946out:
3947 btrfs_free_path(path);
3948 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003949}
3950
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003951static void inode_tree_add(struct inode *inode)
3952{
3953 struct btrfs_root *root = BTRFS_I(inode)->root;
3954 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003955 struct rb_node **p;
3956 struct rb_node *parent;
Li Zefan33345d012011-04-20 10:31:50 +08003957 u64 ino = btrfs_ino(inode);
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003958again:
3959 p = &root->inode_tree.rb_node;
3960 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003961
Al Viro1d3382cb2010-10-23 15:19:20 -04003962 if (inode_unhashed(inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04003963 return;
3964
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003965 spin_lock(&root->inode_lock);
3966 while (*p) {
3967 parent = *p;
3968 entry = rb_entry(parent, struct btrfs_inode, rb_node);
3969
Li Zefan33345d012011-04-20 10:31:50 +08003970 if (ino < btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003971 p = &parent->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08003972 else if (ino > btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003973 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003974 else {
3975 WARN_ON(!(entry->vfs_inode.i_state &
Al Viroa4ffdde2010-06-02 17:38:30 -04003976 (I_WILL_FREE | I_FREEING)));
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003977 rb_erase(parent, &root->inode_tree);
3978 RB_CLEAR_NODE(parent);
3979 spin_unlock(&root->inode_lock);
3980 goto again;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003981 }
3982 }
3983 rb_link_node(&BTRFS_I(inode)->rb_node, parent, p);
3984 rb_insert_color(&BTRFS_I(inode)->rb_node, &root->inode_tree);
3985 spin_unlock(&root->inode_lock);
3986}
3987
3988static void inode_tree_del(struct inode *inode)
3989{
3990 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04003991 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003992
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003993 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003994 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003995 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003996 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04003997 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003998 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003999 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04004000
Josef Bacik0af3d002010-06-21 14:48:16 -04004001 /*
4002 * Free space cache has inodes in the tree root, but the tree root has a
4003 * root_refs of 0, so this could end up dropping the tree root as a
4004 * snapshot, so we need the extra !root->fs_info->tree_root check to
4005 * make sure we don't drop it.
4006 */
4007 if (empty && btrfs_root_refs(&root->root_item) == 0 &&
4008 root != root->fs_info->tree_root) {
Yan, Zheng76dda932009-09-21 16:00:26 -04004009 synchronize_srcu(&root->fs_info->subvol_srcu);
4010 spin_lock(&root->inode_lock);
4011 empty = RB_EMPTY_ROOT(&root->inode_tree);
4012 spin_unlock(&root->inode_lock);
4013 if (empty)
4014 btrfs_add_dead_root(root);
4015 }
4016}
4017
Jeff Mahoney143bede2012-03-01 14:56:26 +01004018void btrfs_invalidate_inodes(struct btrfs_root *root)
Yan, Zheng76dda932009-09-21 16:00:26 -04004019{
4020 struct rb_node *node;
4021 struct rb_node *prev;
4022 struct btrfs_inode *entry;
4023 struct inode *inode;
4024 u64 objectid = 0;
4025
4026 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
4027
4028 spin_lock(&root->inode_lock);
4029again:
4030 node = root->inode_tree.rb_node;
4031 prev = NULL;
4032 while (node) {
4033 prev = node;
4034 entry = rb_entry(node, struct btrfs_inode, rb_node);
4035
Li Zefan33345d012011-04-20 10:31:50 +08004036 if (objectid < btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04004037 node = node->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08004038 else if (objectid > btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04004039 node = node->rb_right;
4040 else
4041 break;
4042 }
4043 if (!node) {
4044 while (prev) {
4045 entry = rb_entry(prev, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08004046 if (objectid <= btrfs_ino(&entry->vfs_inode)) {
Yan, Zheng76dda932009-09-21 16:00:26 -04004047 node = prev;
4048 break;
4049 }
4050 prev = rb_next(prev);
4051 }
4052 }
4053 while (node) {
4054 entry = rb_entry(node, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08004055 objectid = btrfs_ino(&entry->vfs_inode) + 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04004056 inode = igrab(&entry->vfs_inode);
4057 if (inode) {
4058 spin_unlock(&root->inode_lock);
4059 if (atomic_read(&inode->i_count) > 1)
4060 d_prune_aliases(inode);
4061 /*
Al Viro45321ac2010-06-07 13:43:19 -04004062 * btrfs_drop_inode will have it removed from
Yan, Zheng76dda932009-09-21 16:00:26 -04004063 * the inode cache when its usage count
4064 * hits zero.
4065 */
4066 iput(inode);
4067 cond_resched();
4068 spin_lock(&root->inode_lock);
4069 goto again;
4070 }
4071
4072 if (cond_resched_lock(&root->inode_lock))
4073 goto again;
4074
4075 node = rb_next(node);
4076 }
4077 spin_unlock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004078}
4079
Chris Masone02119d2008-09-05 16:13:11 -04004080static int btrfs_init_locked_inode(struct inode *inode, void *p)
4081{
4082 struct btrfs_iget_args *args = p;
4083 inode->i_ino = args->ino;
Chris Masone02119d2008-09-05 16:13:11 -04004084 BTRFS_I(inode)->root = args->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004085 return 0;
4086}
4087
4088static int btrfs_find_actor(struct inode *inode, void *opaque)
4089{
4090 struct btrfs_iget_args *args = opaque;
Li Zefan33345d012011-04-20 10:31:50 +08004091 return args->ino == btrfs_ino(inode) &&
Chris Masond3977122009-01-05 21:25:51 -05004092 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004093}
4094
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004095static struct inode *btrfs_iget_locked(struct super_block *s,
4096 u64 objectid,
4097 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04004098{
4099 struct inode *inode;
4100 struct btrfs_iget_args args;
4101 args.ino = objectid;
4102 args.root = root;
4103
4104 inode = iget5_locked(s, objectid, btrfs_find_actor,
4105 btrfs_init_locked_inode,
4106 (void *)&args);
4107 return inode;
4108}
4109
Balaji Rao1a54ef82008-07-21 02:01:04 +05304110/* Get an inode object given its location and corresponding root.
4111 * Returns in *is_new if the inode was read from disk
4112 */
4113struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
Josef Bacik73f73412009-12-04 17:38:27 +00004114 struct btrfs_root *root, int *new)
Balaji Rao1a54ef82008-07-21 02:01:04 +05304115{
4116 struct inode *inode;
4117
4118 inode = btrfs_iget_locked(s, location->objectid, root);
4119 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004120 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05304121
4122 if (inode->i_state & I_NEW) {
4123 BTRFS_I(inode)->root = root;
4124 memcpy(&BTRFS_I(inode)->location, location, sizeof(*location));
4125 btrfs_read_locked_inode(inode);
Mark Fasheh1748f842011-07-12 11:25:31 -07004126 if (!is_bad_inode(inode)) {
4127 inode_tree_add(inode);
4128 unlock_new_inode(inode);
4129 if (new)
4130 *new = 1;
4131 } else {
Sergei Trofimoviche0b6d652011-09-11 10:52:24 -04004132 unlock_new_inode(inode);
4133 iput(inode);
4134 inode = ERR_PTR(-ESTALE);
Mark Fasheh1748f842011-07-12 11:25:31 -07004135 }
4136 }
4137
Balaji Rao1a54ef82008-07-21 02:01:04 +05304138 return inode;
4139}
4140
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004141static struct inode *new_simple_dir(struct super_block *s,
4142 struct btrfs_key *key,
4143 struct btrfs_root *root)
4144{
4145 struct inode *inode = new_inode(s);
4146
4147 if (!inode)
4148 return ERR_PTR(-ENOMEM);
4149
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004150 BTRFS_I(inode)->root = root;
4151 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
Josef Bacik72ac3c02012-05-23 14:13:11 -04004152 set_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004153
4154 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
Li Zefan848cce02012-02-21 17:04:28 +08004155 inode->i_op = &btrfs_dir_ro_inode_operations;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004156 inode->i_fop = &simple_dir_operations;
4157 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
4158 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
4159
4160 return inode;
4161}
4162
Chris Mason3de45862008-11-17 21:02:50 -05004163struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04004164{
Chris Masond3977122009-01-05 21:25:51 -05004165 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004166 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004167 struct btrfs_root *sub_root = root;
4168 struct btrfs_key location;
Yan, Zheng76dda932009-09-21 16:00:26 -04004169 int index;
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004170 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004171
4172 if (dentry->d_name.len > BTRFS_NAME_LEN)
4173 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04004174
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004175 if (unlikely(d_need_lookup(dentry))) {
4176 memcpy(&location, dentry->d_fsdata, sizeof(struct btrfs_key));
4177 kfree(dentry->d_fsdata);
4178 dentry->d_fsdata = NULL;
Josef Bacika66e7cc2011-09-18 10:34:03 -04004179 /* This thing is hashed, drop it for now */
4180 d_drop(dentry);
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004181 } else {
4182 ret = btrfs_inode_by_name(dir, dentry, &location);
4183 }
Chris Mason5f39d392007-10-15 16:14:19 -04004184
Chris Mason39279cc2007-06-12 06:35:45 -04004185 if (ret < 0)
4186 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04004187
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004188 if (location.objectid == 0)
4189 return NULL;
4190
4191 if (location.type == BTRFS_INODE_ITEM_KEY) {
Josef Bacik73f73412009-12-04 17:38:27 +00004192 inode = btrfs_iget(dir->i_sb, &location, root, NULL);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004193 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004194 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004195
4196 BUG_ON(location.type != BTRFS_ROOT_ITEM_KEY);
4197
Yan, Zheng76dda932009-09-21 16:00:26 -04004198 index = srcu_read_lock(&root->fs_info->subvol_srcu);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004199 ret = fixup_tree_root_location(root, dir, dentry,
4200 &location, &sub_root);
4201 if (ret < 0) {
4202 if (ret != -ENOENT)
4203 inode = ERR_PTR(ret);
4204 else
4205 inode = new_simple_dir(dir->i_sb, &location, sub_root);
4206 } else {
Josef Bacik73f73412009-12-04 17:38:27 +00004207 inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004208 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004209 srcu_read_unlock(&root->fs_info->subvol_srcu, index);
4210
Julia Lawall34d19ba2011-01-24 19:55:19 +00004211 if (!IS_ERR(inode) && root != sub_root) {
Yan, Zhengc71bf092009-11-12 09:34:40 +00004212 down_read(&root->fs_info->cleanup_work_sem);
4213 if (!(inode->i_sb->s_flags & MS_RDONLY))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05004214 ret = btrfs_orphan_cleanup(sub_root);
Yan, Zhengc71bf092009-11-12 09:34:40 +00004215 up_read(&root->fs_info->cleanup_work_sem);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05004216 if (ret)
4217 inode = ERR_PTR(ret);
Yan, Zhengc71bf092009-11-12 09:34:40 +00004218 }
4219
Chris Mason3de45862008-11-17 21:02:50 -05004220 return inode;
4221}
4222
Nick Pigginfe15ce42011-01-07 17:49:23 +11004223static int btrfs_dentry_delete(const struct dentry *dentry)
Yan, Zheng76dda932009-09-21 16:00:26 -04004224{
4225 struct btrfs_root *root;
Li Zefan848cce02012-02-21 17:04:28 +08004226 struct inode *inode = dentry->d_inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04004227
Li Zefan848cce02012-02-21 17:04:28 +08004228 if (!inode && !IS_ROOT(dentry))
4229 inode = dentry->d_parent->d_inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04004230
Li Zefan848cce02012-02-21 17:04:28 +08004231 if (inode) {
4232 root = BTRFS_I(inode)->root;
Yan, Zhengefefb142009-10-09 09:25:16 -04004233 if (btrfs_root_refs(&root->root_item) == 0)
4234 return 1;
Li Zefan848cce02012-02-21 17:04:28 +08004235
4236 if (btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
4237 return 1;
Yan, Zhengefefb142009-10-09 09:25:16 -04004238 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004239 return 0;
4240}
4241
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004242static void btrfs_dentry_release(struct dentry *dentry)
4243{
4244 if (dentry->d_fsdata)
4245 kfree(dentry->d_fsdata);
4246}
4247
Chris Mason3de45862008-11-17 21:02:50 -05004248static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
4249 struct nameidata *nd)
4250{
Josef Bacika66e7cc2011-09-18 10:34:03 -04004251 struct dentry *ret;
4252
4253 ret = d_splice_alias(btrfs_lookup_dentry(dir, dentry), dentry);
4254 if (unlikely(d_need_lookup(dentry))) {
4255 spin_lock(&dentry->d_lock);
4256 dentry->d_flags &= ~DCACHE_NEED_LOOKUP;
4257 spin_unlock(&dentry->d_lock);
4258 }
4259 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004260}
4261
Miao Xie16cdcec2011-04-22 18:12:22 +08004262unsigned char btrfs_filetype_table[] = {
Chris Mason39279cc2007-06-12 06:35:45 -04004263 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
4264};
4265
David Woodhousecbdf5a22008-08-06 19:42:33 +01004266static int btrfs_real_readdir(struct file *filp, void *dirent,
4267 filldir_t filldir)
Chris Mason39279cc2007-06-12 06:35:45 -04004268{
Chris Mason6da6aba2007-12-18 16:15:09 -05004269 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004270 struct btrfs_root *root = BTRFS_I(inode)->root;
4271 struct btrfs_item *item;
4272 struct btrfs_dir_item *di;
4273 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04004274 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04004275 struct btrfs_path *path;
Miao Xie16cdcec2011-04-22 18:12:22 +08004276 struct list_head ins_list;
4277 struct list_head del_list;
Chris Mason39279cc2007-06-12 06:35:45 -04004278 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04004279 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04004280 int slot;
Chris Mason39279cc2007-06-12 06:35:45 -04004281 unsigned char d_type;
4282 int over = 0;
4283 u32 di_cur;
4284 u32 di_total;
4285 u32 di_len;
4286 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004287 char tmp_name[32];
4288 char *name_ptr;
4289 int name_len;
Miao Xie16cdcec2011-04-22 18:12:22 +08004290 int is_curr = 0; /* filp->f_pos points to the current index? */
Chris Mason39279cc2007-06-12 06:35:45 -04004291
4292 /* FIXME, use a real flag for deciding about the key type */
4293 if (root->fs_info->tree_root == root)
4294 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004295
Chris Mason39544012007-12-12 14:38:19 -05004296 /* special case for "." */
4297 if (filp->f_pos == 0) {
Hidetoshi Seto3765fef2011-09-18 10:20:46 -04004298 over = filldir(dirent, ".", 1,
4299 filp->f_pos, btrfs_ino(inode), DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05004300 if (over)
4301 return 0;
4302 filp->f_pos = 1;
4303 }
Chris Mason39544012007-12-12 14:38:19 -05004304 /* special case for .., just use the back ref */
4305 if (filp->f_pos == 1) {
David Woodhouse5ecc7e52008-08-17 15:14:48 +01004306 u64 pino = parent_ino(filp->f_path.dentry);
Chris Mason39544012007-12-12 14:38:19 -05004307 over = filldir(dirent, "..", 2,
Hidetoshi Seto3765fef2011-09-18 10:20:46 -04004308 filp->f_pos, pino, DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05004309 if (over)
David Woodhouse49593bf2008-08-17 17:08:36 +01004310 return 0;
Chris Mason39544012007-12-12 14:38:19 -05004311 filp->f_pos = 2;
4312 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004313 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08004314 if (!path)
4315 return -ENOMEM;
Chris Masonff5714c2011-05-28 07:00:39 -04004316
Josef Bacik026fd312011-05-13 10:32:11 -04004317 path->reada = 1;
David Woodhouse49593bf2008-08-17 17:08:36 +01004318
Miao Xie16cdcec2011-04-22 18:12:22 +08004319 if (key_type == BTRFS_DIR_INDEX_KEY) {
4320 INIT_LIST_HEAD(&ins_list);
4321 INIT_LIST_HEAD(&del_list);
4322 btrfs_get_delayed_items(inode, &ins_list, &del_list);
4323 }
4324
Chris Mason39279cc2007-06-12 06:35:45 -04004325 btrfs_set_key_type(&key, key_type);
4326 key.offset = filp->f_pos;
Li Zefan33345d012011-04-20 10:31:50 +08004327 key.objectid = btrfs_ino(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004328
Chris Mason39279cc2007-06-12 06:35:45 -04004329 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4330 if (ret < 0)
4331 goto err;
David Woodhouse49593bf2008-08-17 17:08:36 +01004332
4333 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04004334 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -04004335 slot = path->slots[0];
Li Zefanb9e03af2011-03-23 10:43:58 +08004336 if (slot >= btrfs_header_nritems(leaf)) {
4337 ret = btrfs_next_leaf(root, path);
4338 if (ret < 0)
4339 goto err;
4340 else if (ret > 0)
4341 break;
4342 continue;
Chris Mason39279cc2007-06-12 06:35:45 -04004343 }
Chris Mason3de45862008-11-17 21:02:50 -05004344
Chris Mason5f39d392007-10-15 16:14:19 -04004345 item = btrfs_item_nr(leaf, slot);
4346 btrfs_item_key_to_cpu(leaf, &found_key, slot);
4347
4348 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04004349 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004350 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004351 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004352 if (found_key.offset < filp->f_pos)
Li Zefanb9e03af2011-03-23 10:43:58 +08004353 goto next;
Miao Xie16cdcec2011-04-22 18:12:22 +08004354 if (key_type == BTRFS_DIR_INDEX_KEY &&
4355 btrfs_should_delete_dir_index(&del_list,
4356 found_key.offset))
4357 goto next;
Chris Mason5f39d392007-10-15 16:14:19 -04004358
4359 filp->f_pos = found_key.offset;
Miao Xie16cdcec2011-04-22 18:12:22 +08004360 is_curr = 1;
David Woodhouse49593bf2008-08-17 17:08:36 +01004361
Chris Mason39279cc2007-06-12 06:35:45 -04004362 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
4363 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04004364 di_total = btrfs_item_size(leaf, item);
David Woodhouse49593bf2008-08-17 17:08:36 +01004365
4366 while (di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04004367 struct btrfs_key location;
4368
Josef Bacik22a94d42011-03-16 16:47:17 -04004369 if (verify_dir_item(root, leaf, di))
4370 break;
4371
Chris Mason5f39d392007-10-15 16:14:19 -04004372 name_len = btrfs_dir_name_len(leaf, di);
David Woodhouse49593bf2008-08-17 17:08:36 +01004373 if (name_len <= sizeof(tmp_name)) {
Chris Mason5f39d392007-10-15 16:14:19 -04004374 name_ptr = tmp_name;
4375 } else {
4376 name_ptr = kmalloc(name_len, GFP_NOFS);
David Woodhouse49593bf2008-08-17 17:08:36 +01004377 if (!name_ptr) {
4378 ret = -ENOMEM;
4379 goto err;
4380 }
Chris Mason5f39d392007-10-15 16:14:19 -04004381 }
4382 read_extent_buffer(leaf, name_ptr,
4383 (unsigned long)(di + 1), name_len);
4384
4385 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
4386 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason3de45862008-11-17 21:02:50 -05004387
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004388
Chris Mason3de45862008-11-17 21:02:50 -05004389 /* is this a reference to our own snapshot? If so
Arne Jansen8c9c2bf2012-02-25 09:09:30 +01004390 * skip it.
4391 *
4392 * In contrast to old kernels, we insert the snapshot's
4393 * dir item and dir index after it has been created, so
4394 * we won't find a reference to our own snapshot. We
4395 * still keep the following code for backward
4396 * compatibility.
Chris Mason3de45862008-11-17 21:02:50 -05004397 */
4398 if (location.type == BTRFS_ROOT_ITEM_KEY &&
4399 location.objectid == root->root_key.objectid) {
4400 over = 0;
4401 goto skip;
4402 }
Chris Mason5f39d392007-10-15 16:14:19 -04004403 over = filldir(dirent, name_ptr, name_len,
David Woodhouse49593bf2008-08-17 17:08:36 +01004404 found_key.offset, location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04004405 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04004406
Chris Mason3de45862008-11-17 21:02:50 -05004407skip:
Chris Mason5f39d392007-10-15 16:14:19 -04004408 if (name_ptr != tmp_name)
4409 kfree(name_ptr);
4410
Chris Mason39279cc2007-06-12 06:35:45 -04004411 if (over)
4412 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05004413 di_len = btrfs_dir_name_len(leaf, di) +
David Woodhouse49593bf2008-08-17 17:08:36 +01004414 btrfs_dir_data_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04004415 di_cur += di_len;
4416 di = (struct btrfs_dir_item *)((char *)di + di_len);
4417 }
Li Zefanb9e03af2011-03-23 10:43:58 +08004418next:
4419 path->slots[0]++;
Chris Mason39279cc2007-06-12 06:35:45 -04004420 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004421
Miao Xie16cdcec2011-04-22 18:12:22 +08004422 if (key_type == BTRFS_DIR_INDEX_KEY) {
4423 if (is_curr)
4424 filp->f_pos++;
4425 ret = btrfs_readdir_delayed_dir_index(filp, dirent, filldir,
4426 &ins_list);
4427 if (ret)
4428 goto nopos;
4429 }
4430
David Woodhouse49593bf2008-08-17 17:08:36 +01004431 /* Reached end of directory/root. Bump pos past the last item. */
Yan Zheng5e591a02008-02-19 11:41:02 -05004432 if (key_type == BTRFS_DIR_INDEX_KEY)
Jan Engelhardt406266a2009-12-09 22:00:38 +00004433 /*
4434 * 32-bit glibc will use getdents64, but then strtol -
4435 * so the last number we can serve is this.
4436 */
4437 filp->f_pos = 0x7fffffff;
Yan Zheng5e591a02008-02-19 11:41:02 -05004438 else
4439 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04004440nopos:
4441 ret = 0;
4442err:
Miao Xie16cdcec2011-04-22 18:12:22 +08004443 if (key_type == BTRFS_DIR_INDEX_KEY)
4444 btrfs_put_delayed_items(&ins_list, &del_list);
Chris Mason39279cc2007-06-12 06:35:45 -04004445 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004446 return ret;
4447}
4448
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004449int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc)
Chris Mason39279cc2007-06-12 06:35:45 -04004450{
4451 struct btrfs_root *root = BTRFS_I(inode)->root;
4452 struct btrfs_trans_handle *trans;
4453 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04004454 bool nolock = false;
Chris Mason39279cc2007-06-12 06:35:45 -04004455
Josef Bacik72ac3c02012-05-23 14:13:11 -04004456 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Chris Mason4ca8b412008-08-05 13:30:48 -04004457 return 0;
4458
Liu Bo83eea1f2012-07-10 05:28:39 -06004459 if (btrfs_fs_closing(root->fs_info) && btrfs_is_free_space_inode(inode))
Li Zefan82d59022011-04-20 10:33:24 +08004460 nolock = true;
Josef Bacik0af3d002010-06-21 14:48:16 -04004461
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004462 if (wbc->sync_mode == WB_SYNC_ALL) {
Josef Bacik0af3d002010-06-21 14:48:16 -04004463 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004464 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0af3d002010-06-21 14:48:16 -04004465 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004466 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00004467 if (IS_ERR(trans))
4468 return PTR_ERR(trans);
Josef Bacik0af3d002010-06-21 14:48:16 -04004469 if (nolock)
4470 ret = btrfs_end_transaction_nolock(trans, root);
4471 else
4472 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004473 }
4474 return ret;
4475}
4476
4477/*
Chris Mason54aa1f42007-06-22 14:16:25 -04004478 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04004479 * inode changes. But, it is most likely to find the inode in cache.
4480 * FIXME, needs more benchmarking...there are no reasons other than performance
4481 * to keep or drop this code.
4482 */
Josef Bacik22c44fe2011-11-30 10:45:38 -05004483int btrfs_dirty_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04004484{
4485 struct btrfs_root *root = BTRFS_I(inode)->root;
4486 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004487 int ret;
4488
Josef Bacik72ac3c02012-05-23 14:13:11 -04004489 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Josef Bacik22c44fe2011-11-30 10:45:38 -05004490 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004491
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004492 trans = btrfs_join_transaction(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004493 if (IS_ERR(trans))
4494 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004495
4496 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04004497 if (ret && ret == -ENOSPC) {
4498 /* whoops, lets try again with the full transaction */
4499 btrfs_end_transaction(trans, root);
4500 trans = btrfs_start_transaction(root, 1);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004501 if (IS_ERR(trans))
4502 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004503
Chris Mason94b60442010-05-26 11:02:00 -04004504 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04004505 }
Chris Mason39279cc2007-06-12 06:35:45 -04004506 btrfs_end_transaction(trans, root);
Miao Xie16cdcec2011-04-22 18:12:22 +08004507 if (BTRFS_I(inode)->delayed_node)
4508 btrfs_balance_delayed_items(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004509
4510 return ret;
4511}
4512
4513/*
4514 * This is a copy of file_update_time. We need this so we can return error on
4515 * ENOSPC for updating the inode in the case of file write and mmap writes.
4516 */
Josef Bacike41f9412012-03-26 09:46:47 -04004517static int btrfs_update_time(struct inode *inode, struct timespec *now,
4518 int flags)
Josef Bacik22c44fe2011-11-30 10:45:38 -05004519{
Alexander Block2bc5565282012-06-15 09:49:33 +02004520 struct btrfs_root *root = BTRFS_I(inode)->root;
4521
4522 if (btrfs_root_readonly(root))
4523 return -EROFS;
4524
Josef Bacike41f9412012-03-26 09:46:47 -04004525 if (flags & S_VERSION)
Josef Bacik22c44fe2011-11-30 10:45:38 -05004526 inode_inc_iversion(inode);
Josef Bacike41f9412012-03-26 09:46:47 -04004527 if (flags & S_CTIME)
4528 inode->i_ctime = *now;
4529 if (flags & S_MTIME)
4530 inode->i_mtime = *now;
4531 if (flags & S_ATIME)
4532 inode->i_atime = *now;
4533 return btrfs_dirty_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004534}
4535
Chris Masond352ac62008-09-29 15:18:18 -04004536/*
4537 * find the highest existing sequence number in a directory
4538 * and then set the in-memory index_cnt variable to reflect
4539 * free sequence numbers
4540 */
Josef Bacikaec74772008-07-24 12:12:38 -04004541static int btrfs_set_inode_index_count(struct inode *inode)
4542{
4543 struct btrfs_root *root = BTRFS_I(inode)->root;
4544 struct btrfs_key key, found_key;
4545 struct btrfs_path *path;
4546 struct extent_buffer *leaf;
4547 int ret;
4548
Li Zefan33345d012011-04-20 10:31:50 +08004549 key.objectid = btrfs_ino(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004550 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
4551 key.offset = (u64)-1;
4552
4553 path = btrfs_alloc_path();
4554 if (!path)
4555 return -ENOMEM;
4556
4557 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4558 if (ret < 0)
4559 goto out;
4560 /* FIXME: we should be able to handle this */
4561 if (ret == 0)
4562 goto out;
4563 ret = 0;
4564
4565 /*
4566 * MAGIC NUMBER EXPLANATION:
4567 * since we search a directory based on f_pos we have to start at 2
4568 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
4569 * else has to start at 2
4570 */
4571 if (path->slots[0] == 0) {
4572 BTRFS_I(inode)->index_cnt = 2;
4573 goto out;
4574 }
4575
4576 path->slots[0]--;
4577
4578 leaf = path->nodes[0];
4579 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4580
Li Zefan33345d012011-04-20 10:31:50 +08004581 if (found_key.objectid != btrfs_ino(inode) ||
Josef Bacikaec74772008-07-24 12:12:38 -04004582 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
4583 BTRFS_I(inode)->index_cnt = 2;
4584 goto out;
4585 }
4586
4587 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
4588out:
4589 btrfs_free_path(path);
4590 return ret;
4591}
4592
Chris Masond352ac62008-09-29 15:18:18 -04004593/*
4594 * helper to find a free sequence number in a given directory. This current
4595 * code is very simple, later versions will do smarter things in the btree
4596 */
Chris Mason3de45862008-11-17 21:02:50 -05004597int btrfs_set_inode_index(struct inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04004598{
4599 int ret = 0;
4600
4601 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
Miao Xie16cdcec2011-04-22 18:12:22 +08004602 ret = btrfs_inode_delayed_dir_index_count(dir);
4603 if (ret) {
4604 ret = btrfs_set_inode_index_count(dir);
4605 if (ret)
4606 return ret;
4607 }
Josef Bacikaec74772008-07-24 12:12:38 -04004608 }
4609
Chris Mason00e4e6b2008-08-05 11:18:09 -04004610 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04004611 BTRFS_I(dir)->index_cnt++;
4612
4613 return ret;
4614}
4615
Chris Mason39279cc2007-06-12 06:35:45 -04004616static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
4617 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04004618 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05004619 const char *name, int name_len,
Al Viro175a4eb2011-07-26 03:30:54 -04004620 u64 ref_objectid, u64 objectid,
4621 umode_t mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04004622{
4623 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004624 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04004625 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04004626 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05004627 struct btrfs_inode_ref *ref;
4628 struct btrfs_key key[2];
4629 u32 sizes[2];
4630 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04004631 int ret;
4632 int owner;
4633
Chris Mason5f39d392007-10-15 16:14:19 -04004634 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07004635 if (!path)
4636 return ERR_PTR(-ENOMEM);
Chris Mason5f39d392007-10-15 16:14:19 -04004637
Chris Mason39279cc2007-06-12 06:35:45 -04004638 inode = new_inode(root->fs_info->sb);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004639 if (!inode) {
4640 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004641 return ERR_PTR(-ENOMEM);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004642 }
Chris Mason39279cc2007-06-12 06:35:45 -04004643
Li Zefan581bb052011-04-20 10:06:11 +08004644 /*
4645 * we have to initialize this early, so we can reclaim the inode
4646 * number if we fail afterwards in this function.
4647 */
4648 inode->i_ino = objectid;
4649
Josef Bacikaec74772008-07-24 12:12:38 -04004650 if (dir) {
liubo1abe9b82011-03-24 11:18:59 +00004651 trace_btrfs_inode_request(dir);
4652
Chris Mason3de45862008-11-17 21:02:50 -05004653 ret = btrfs_set_inode_index(dir, index);
Shen Feng09771432009-04-02 16:46:06 -04004654 if (ret) {
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004655 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004656 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004657 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04004658 }
Josef Bacikaec74772008-07-24 12:12:38 -04004659 }
4660 /*
4661 * index_cnt is ignored for everything but a dir,
4662 * btrfs_get_inode_index_count has an explanation for the magic
4663 * number
4664 */
4665 BTRFS_I(inode)->index_cnt = 2;
Chris Mason39279cc2007-06-12 06:35:45 -04004666 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04004667 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik76195852010-11-19 02:18:02 +00004668 inode->i_generation = BTRFS_I(inode)->generation;
Chris Masonb888db22007-08-27 16:49:44 -04004669
Al Viro569254b2011-07-24 17:08:40 -04004670 if (S_ISDIR(mode))
Chris Mason39279cc2007-06-12 06:35:45 -04004671 owner = 0;
4672 else
4673 owner = 1;
Chris Mason9c583092008-01-29 15:15:18 -05004674
4675 key[0].objectid = objectid;
4676 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
4677 key[0].offset = 0;
4678
4679 key[1].objectid = objectid;
4680 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
4681 key[1].offset = ref_objectid;
4682
4683 sizes[0] = sizeof(struct btrfs_inode_item);
4684 sizes[1] = name_len + sizeof(*ref);
4685
Chris Masonb9473432009-03-13 11:00:37 -04004686 path->leave_spinning = 1;
Chris Mason9c583092008-01-29 15:15:18 -05004687 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
4688 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04004689 goto fail;
4690
Dmitry Monakhovecc11fab2010-03-04 17:31:47 +03004691 inode_init_owner(inode, dir, mode);
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004692 inode_set_bytes(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004693 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04004694 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
4695 struct btrfs_inode_item);
Li Zefan293f7e02012-07-10 00:58:58 -06004696 memset_extent_buffer(path->nodes[0], 0, (unsigned long)inode_item,
4697 sizeof(*inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04004698 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05004699
4700 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
4701 struct btrfs_inode_ref);
4702 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004703 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
Chris Mason9c583092008-01-29 15:15:18 -05004704 ptr = (unsigned long)(ref + 1);
4705 write_extent_buffer(path->nodes[0], name, ptr, name_len);
4706
Chris Mason5f39d392007-10-15 16:14:19 -04004707 btrfs_mark_buffer_dirty(path->nodes[0]);
4708 btrfs_free_path(path);
4709
Chris Mason39279cc2007-06-12 06:35:45 -04004710 location = &BTRFS_I(inode)->location;
4711 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04004712 location->offset = 0;
4713 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
4714
Christoph Hellwig6cbff002009-04-17 10:37:41 +02004715 btrfs_inherit_iflags(inode, dir);
4716
Al Viro569254b2011-07-24 17:08:40 -04004717 if (S_ISREG(mode)) {
Chris Mason94272162009-07-02 12:26:06 -04004718 if (btrfs_test_opt(root, NODATASUM))
4719 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
Liu Bo75e7cb72011-03-22 10:12:20 +00004720 if (btrfs_test_opt(root, NODATACOW) ||
4721 (BTRFS_I(dir)->flags & BTRFS_INODE_NODATACOW))
Chris Mason94272162009-07-02 12:26:06 -04004722 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
4723 }
4724
Chris Mason39279cc2007-06-12 06:35:45 -04004725 insert_inode_hash(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004726 inode_tree_add(inode);
liubo1abe9b82011-03-24 11:18:59 +00004727
4728 trace_btrfs_inode_new(inode);
Chris Mason1973f0f2011-06-24 13:13:29 -04004729 btrfs_set_inode_last_trans(trans, inode);
liubo1abe9b82011-03-24 11:18:59 +00004730
Alexander Block8ea05e32012-07-25 17:35:53 +02004731 btrfs_update_root_times(trans, root);
4732
Chris Mason39279cc2007-06-12 06:35:45 -04004733 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004734fail:
Josef Bacikaec74772008-07-24 12:12:38 -04004735 if (dir)
4736 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04004737 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004738 iput(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004739 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004740}
4741
4742static inline u8 btrfs_inode_type(struct inode *inode)
4743{
4744 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
4745}
4746
Chris Masond352ac62008-09-29 15:18:18 -04004747/*
4748 * utility function to add 'inode' into 'parent_inode' with
4749 * a give name and a given sequence number.
4750 * if 'add_backref' is true, also insert a backref from the
4751 * inode to the parent directory.
4752 */
Chris Masone02119d2008-09-05 16:13:11 -04004753int btrfs_add_link(struct btrfs_trans_handle *trans,
4754 struct inode *parent_inode, struct inode *inode,
4755 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004756{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004757 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004758 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04004759 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Li Zefan33345d012011-04-20 10:31:50 +08004760 u64 ino = btrfs_ino(inode);
4761 u64 parent_ino = btrfs_ino(parent_inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004762
Li Zefan33345d012011-04-20 10:31:50 +08004763 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004764 memcpy(&key, &BTRFS_I(inode)->root->root_key, sizeof(key));
4765 } else {
Li Zefan33345d012011-04-20 10:31:50 +08004766 key.objectid = ino;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004767 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
4768 key.offset = 0;
4769 }
Chris Mason39279cc2007-06-12 06:35:45 -04004770
Li Zefan33345d012011-04-20 10:31:50 +08004771 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004772 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
4773 key.objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08004774 parent_ino, index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004775 } else if (add_backref) {
Li Zefan33345d012011-04-20 10:31:50 +08004776 ret = btrfs_insert_inode_ref(trans, root, name, name_len, ino,
4777 parent_ino, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004778 }
4779
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004780 /* Nothing to clean up yet */
4781 if (ret)
4782 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004783
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004784 ret = btrfs_insert_dir_item(trans, root, name, name_len,
4785 parent_inode, &key,
4786 btrfs_inode_type(inode), index);
4787 if (ret == -EEXIST)
4788 goto fail_dir_item;
4789 else if (ret) {
4790 btrfs_abort_transaction(trans, root, ret);
4791 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004792 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004793
4794 btrfs_i_size_write(parent_inode, parent_inode->i_size +
4795 name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04004796 inode_inc_iversion(parent_inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004797 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
4798 ret = btrfs_update_inode(trans, root, parent_inode);
4799 if (ret)
4800 btrfs_abort_transaction(trans, root, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004801 return ret;
Chris Masonfe66a052012-02-20 08:40:56 -05004802
4803fail_dir_item:
4804 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
4805 u64 local_index;
4806 int err;
4807 err = btrfs_del_root_ref(trans, root->fs_info->tree_root,
4808 key.objectid, root->root_key.objectid,
4809 parent_ino, &local_index, name, name_len);
4810
4811 } else if (add_backref) {
4812 u64 local_index;
4813 int err;
4814
4815 err = btrfs_del_inode_ref(trans, root, name, name_len,
4816 ino, parent_ino, &local_index);
4817 }
4818 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004819}
4820
4821static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Josef Bacika1b075d2010-11-19 20:36:11 +00004822 struct inode *dir, struct dentry *dentry,
4823 struct inode *inode, int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004824{
Josef Bacika1b075d2010-11-19 20:36:11 +00004825 int err = btrfs_add_link(trans, dir, inode,
4826 dentry->d_name.name, dentry->d_name.len,
4827 backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004828 if (err > 0)
4829 err = -EEXIST;
4830 return err;
4831}
4832
Josef Bacik618e21d2007-07-11 10:18:17 -04004833static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -04004834 umode_t mode, dev_t rdev)
Josef Bacik618e21d2007-07-11 10:18:17 -04004835{
4836 struct btrfs_trans_handle *trans;
4837 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004838 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04004839 int err;
4840 int drop_inode = 0;
4841 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05004842 unsigned long nr = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004843 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04004844
4845 if (!new_valid_dev(rdev))
4846 return -EINVAL;
4847
Josef Bacik9ed74f22009-09-11 16:12:44 -04004848 /*
4849 * 2 for inode item and ref
4850 * 2 for dir items
4851 * 1 for xattr if selinux is on
4852 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004853 trans = btrfs_start_transaction(root, 5);
4854 if (IS_ERR(trans))
4855 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05004856
Li Zefan581bb052011-04-20 10:06:11 +08004857 err = btrfs_find_free_ino(root, &objectid);
4858 if (err)
4859 goto out_unlock;
4860
Josef Bacikaec74772008-07-24 12:12:38 -04004861 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08004862 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04004863 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004864 if (IS_ERR(inode)) {
4865 err = PTR_ERR(inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04004866 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004867 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004868
Eric Paris2a7dba32011-02-01 11:05:39 -05004869 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04004870 if (err) {
4871 drop_inode = 1;
4872 goto out_unlock;
4873 }
4874
Casey Schauflerad19db72011-12-15 10:09:07 -05004875 /*
4876 * If the active LSM wants to access the inode during
4877 * d_instantiate it needs these. Smack checks to see
4878 * if the filesystem supports xattrs by looking at the
4879 * ops vector.
4880 */
4881
4882 inode->i_op = &btrfs_special_inode_operations;
Josef Bacika1b075d2010-11-19 20:36:11 +00004883 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Josef Bacik618e21d2007-07-11 10:18:17 -04004884 if (err)
4885 drop_inode = 1;
4886 else {
Josef Bacik618e21d2007-07-11 10:18:17 -04004887 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04004888 btrfs_update_inode(trans, root, inode);
Al Viro08c422c2011-12-23 07:58:13 -05004889 d_instantiate(dentry, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04004890 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004891out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004892 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05004893 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004894 btrfs_btree_balance_dirty(root, nr);
Josef Bacik618e21d2007-07-11 10:18:17 -04004895 if (drop_inode) {
4896 inode_dec_link_count(inode);
4897 iput(inode);
4898 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004899 return err;
4900}
4901
Chris Mason39279cc2007-06-12 06:35:45 -04004902static int btrfs_create(struct inode *dir, struct dentry *dentry,
Al Viro4acdaf22011-07-26 01:42:34 -04004903 umode_t mode, struct nameidata *nd)
Chris Mason39279cc2007-06-12 06:35:45 -04004904{
4905 struct btrfs_trans_handle *trans;
4906 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004907 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004908 int drop_inode = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004909 int err;
Chris Mason1832a6d2007-12-21 16:27:21 -05004910 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004911 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004912 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004913
Josef Bacik9ed74f22009-09-11 16:12:44 -04004914 /*
4915 * 2 for inode item and ref
4916 * 2 for dir items
4917 * 1 for xattr if selinux is on
4918 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004919 trans = btrfs_start_transaction(root, 5);
4920 if (IS_ERR(trans))
4921 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004922
Li Zefan581bb052011-04-20 10:06:11 +08004923 err = btrfs_find_free_ino(root, &objectid);
4924 if (err)
4925 goto out_unlock;
4926
Josef Bacikaec74772008-07-24 12:12:38 -04004927 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08004928 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04004929 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004930 if (IS_ERR(inode)) {
4931 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004932 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004933 }
Chris Mason39279cc2007-06-12 06:35:45 -04004934
Eric Paris2a7dba32011-02-01 11:05:39 -05004935 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04004936 if (err) {
4937 drop_inode = 1;
4938 goto out_unlock;
4939 }
4940
Casey Schauflerad19db72011-12-15 10:09:07 -05004941 /*
4942 * If the active LSM wants to access the inode during
4943 * d_instantiate it needs these. Smack checks to see
4944 * if the filesystem supports xattrs by looking at the
4945 * ops vector.
4946 */
4947 inode->i_fop = &btrfs_file_operations;
4948 inode->i_op = &btrfs_file_inode_operations;
4949
Josef Bacika1b075d2010-11-19 20:36:11 +00004950 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004951 if (err)
4952 drop_inode = 1;
4953 else {
4954 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04004955 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05004956 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Al Viro08c422c2011-12-23 07:58:13 -05004957 d_instantiate(dentry, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004958 }
Chris Mason39279cc2007-06-12 06:35:45 -04004959out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004960 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05004961 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004962 if (drop_inode) {
4963 inode_dec_link_count(inode);
4964 iput(inode);
4965 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004966 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004967 return err;
4968}
4969
4970static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
4971 struct dentry *dentry)
4972{
4973 struct btrfs_trans_handle *trans;
4974 struct btrfs_root *root = BTRFS_I(dir)->root;
4975 struct inode *inode = old_dentry->d_inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004976 u64 index;
Chris Mason1832a6d2007-12-21 16:27:21 -05004977 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004978 int err;
4979 int drop_inode = 0;
4980
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00004981 /* do not allow sys_link's with other subvols of the same device */
4982 if (root->objectid != BTRFS_I(inode)->root->objectid)
Mark Fasheh3ab35642011-03-22 17:20:26 +00004983 return -EXDEV;
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00004984
Al Viroc055e992011-03-04 17:15:18 +00004985 if (inode->i_nlink == ~0U)
4986 return -EMLINK;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004987
Chris Mason3de45862008-11-17 21:02:50 -05004988 err = btrfs_set_inode_index(dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04004989 if (err)
4990 goto fail;
4991
Yan, Zhenga22285a2010-05-16 10:48:46 -04004992 /*
Miao Xie7e6b6462011-02-18 09:21:17 +00004993 * 2 items for inode and inode ref
Yan, Zhenga22285a2010-05-16 10:48:46 -04004994 * 2 items for dir items
Miao Xie7e6b6462011-02-18 09:21:17 +00004995 * 1 item for parent inode
Yan, Zhenga22285a2010-05-16 10:48:46 -04004996 */
Miao Xie7e6b6462011-02-18 09:21:17 +00004997 trans = btrfs_start_transaction(root, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004998 if (IS_ERR(trans)) {
4999 err = PTR_ERR(trans);
5000 goto fail;
5001 }
Chris Mason5f39d392007-10-15 16:14:19 -04005002
Miao Xie31534952011-04-13 13:19:21 +08005003 btrfs_inc_nlink(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04005004 inode_inc_iversion(inode);
Miao Xie31534952011-04-13 13:19:21 +08005005 inode->i_ctime = CURRENT_TIME;
Al Viro7de9c6ee2010-10-23 11:11:40 -04005006 ihold(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04005007
Josef Bacika1b075d2010-11-19 20:36:11 +00005008 err = btrfs_add_nondir(trans, dir, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04005009
Yan, Zhenga5719522009-09-24 09:17:31 -04005010 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04005011 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04005012 } else {
Al Viro10d9f302011-07-16 23:09:10 -04005013 struct dentry *parent = dentry->d_parent;
Yan, Zhenga5719522009-09-24 09:17:31 -04005014 err = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005015 if (err)
5016 goto fail;
Al Viro08c422c2011-12-23 07:58:13 -05005017 d_instantiate(dentry, inode);
Josef Bacik6a912212010-11-20 09:48:00 +00005018 btrfs_log_new_name(trans, inode, NULL, parent);
Yan, Zhenga5719522009-09-24 09:17:31 -04005019 }
Chris Mason39279cc2007-06-12 06:35:45 -04005020
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005021 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05005022 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05005023fail:
Chris Mason39279cc2007-06-12 06:35:45 -04005024 if (drop_inode) {
5025 inode_dec_link_count(inode);
5026 iput(inode);
5027 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005028 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04005029 return err;
5030}
5031
Al Viro18bb1db2011-07-26 01:41:39 -04005032static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Chris Mason39279cc2007-06-12 06:35:45 -04005033{
Chris Masonb9d86662008-05-02 16:13:49 -04005034 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04005035 struct btrfs_trans_handle *trans;
5036 struct btrfs_root *root = BTRFS_I(dir)->root;
5037 int err = 0;
5038 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04005039 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005040 u64 index = 0;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005041 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04005042
Josef Bacik9ed74f22009-09-11 16:12:44 -04005043 /*
5044 * 2 items for inode and ref
5045 * 2 items for dir items
5046 * 1 for xattr if selinux is on
5047 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04005048 trans = btrfs_start_transaction(root, 5);
5049 if (IS_ERR(trans))
5050 return PTR_ERR(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04005051
Li Zefan581bb052011-04-20 10:06:11 +08005052 err = btrfs_find_free_ino(root, &objectid);
5053 if (err)
5054 goto out_fail;
5055
Josef Bacikaec74772008-07-24 12:12:38 -04005056 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08005057 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04005058 S_IFDIR | mode, &index);
Chris Mason39279cc2007-06-12 06:35:45 -04005059 if (IS_ERR(inode)) {
5060 err = PTR_ERR(inode);
5061 goto out_fail;
5062 }
Chris Mason5f39d392007-10-15 16:14:19 -04005063
Chris Mason39279cc2007-06-12 06:35:45 -04005064 drop_on_err = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -04005065
Eric Paris2a7dba32011-02-01 11:05:39 -05005066 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04005067 if (err)
5068 goto out_fail;
5069
Chris Mason39279cc2007-06-12 06:35:45 -04005070 inode->i_op = &btrfs_dir_inode_operations;
5071 inode->i_fop = &btrfs_dir_file_operations;
Chris Mason39279cc2007-06-12 06:35:45 -04005072
Chris Masondbe674a2008-07-17 12:54:05 -04005073 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04005074 err = btrfs_update_inode(trans, root, inode);
5075 if (err)
5076 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04005077
Josef Bacika1b075d2010-11-19 20:36:11 +00005078 err = btrfs_add_link(trans, dir, inode, dentry->d_name.name,
5079 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04005080 if (err)
5081 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04005082
Chris Mason39279cc2007-06-12 06:35:45 -04005083 d_instantiate(dentry, inode);
5084 drop_on_err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005085
5086out_fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005087 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05005088 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04005089 if (drop_on_err)
5090 iput(inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005091 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04005092 return err;
5093}
5094
Chris Masond352ac62008-09-29 15:18:18 -04005095/* helper for btfs_get_extent. Given an existing extent in the tree,
5096 * and an extent that you want to insert, deal with overlap and insert
5097 * the new extent into the tree.
5098 */
Chris Mason3b951512008-04-17 11:29:12 -04005099static int merge_extent_mapping(struct extent_map_tree *em_tree,
5100 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005101 struct extent_map *em,
5102 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04005103{
5104 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04005105
Chris Masone6dcd2d2008-07-17 12:53:50 -04005106 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
5107 start_diff = map_start - em->start;
5108 em->start = map_start;
5109 em->len = map_len;
Chris Masonc8b97812008-10-29 14:49:59 -04005110 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
5111 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04005112 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04005113 em->block_len -= start_diff;
5114 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005115 return add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04005116}
5117
Chris Masonc8b97812008-10-29 14:49:59 -04005118static noinline int uncompress_inline(struct btrfs_path *path,
5119 struct inode *inode, struct page *page,
5120 size_t pg_offset, u64 extent_offset,
5121 struct btrfs_file_extent_item *item)
5122{
5123 int ret;
5124 struct extent_buffer *leaf = path->nodes[0];
5125 char *tmp;
5126 size_t max_size;
5127 unsigned long inline_size;
5128 unsigned long ptr;
Li Zefan261507a02010-12-17 14:21:50 +08005129 int compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04005130
5131 WARN_ON(pg_offset != 0);
Li Zefan261507a02010-12-17 14:21:50 +08005132 compress_type = btrfs_file_extent_compression(leaf, item);
Chris Masonc8b97812008-10-29 14:49:59 -04005133 max_size = btrfs_file_extent_ram_bytes(leaf, item);
5134 inline_size = btrfs_file_extent_inline_item_len(leaf,
5135 btrfs_item_nr(leaf, path->slots[0]));
5136 tmp = kmalloc(inline_size, GFP_NOFS);
Tsutomu Itoh8d413712011-04-25 19:43:52 -04005137 if (!tmp)
5138 return -ENOMEM;
Chris Masonc8b97812008-10-29 14:49:59 -04005139 ptr = btrfs_file_extent_inline_start(item);
5140
5141 read_extent_buffer(leaf, tmp, ptr, inline_size);
5142
Chris Mason5b050f02008-11-11 09:34:41 -05005143 max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size);
Li Zefan261507a02010-12-17 14:21:50 +08005144 ret = btrfs_decompress(compress_type, tmp, page,
5145 extent_offset, inline_size, max_size);
Chris Masonc8b97812008-10-29 14:49:59 -04005146 if (ret) {
Cong Wang7ac687d2011-11-25 23:14:28 +08005147 char *kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04005148 unsigned long copy_size = min_t(u64,
5149 PAGE_CACHE_SIZE - pg_offset,
5150 max_size - extent_offset);
5151 memset(kaddr + pg_offset, 0, copy_size);
Cong Wang7ac687d2011-11-25 23:14:28 +08005152 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -04005153 }
5154 kfree(tmp);
5155 return 0;
5156}
5157
Chris Masond352ac62008-09-29 15:18:18 -04005158/*
5159 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05005160 * the ugly parts come from merging extents from the disk with the in-ram
5161 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04005162 * where the in-ram extents might be locked pending data=ordered completion.
5163 *
5164 * This also copies inline extents directly into the page.
5165 */
Chris Masond3977122009-01-05 21:25:51 -05005166
Chris Masona52d9a82007-08-27 16:49:44 -04005167struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05005168 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04005169 int create)
5170{
5171 int ret;
5172 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04005173 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04005174 u64 extent_start = 0;
5175 u64 extent_end = 0;
Li Zefan33345d012011-04-20 10:31:50 +08005176 u64 objectid = btrfs_ino(inode);
Chris Masona52d9a82007-08-27 16:49:44 -04005177 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04005178 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04005179 struct btrfs_root *root = BTRFS_I(inode)->root;
5180 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04005181 struct extent_buffer *leaf;
5182 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04005183 struct extent_map *em = NULL;
5184 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05005185 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04005186 struct btrfs_trans_handle *trans = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08005187 int compress_type;
Chris Masona52d9a82007-08-27 16:49:44 -04005188
Chris Masona52d9a82007-08-27 16:49:44 -04005189again:
Chris Mason890871b2009-09-02 16:24:52 -04005190 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05005191 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04005192 if (em)
5193 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04005194 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05005195
Chris Masona52d9a82007-08-27 16:49:44 -04005196 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04005197 if (em->start > start || em->start + em->len <= start)
5198 free_extent_map(em);
5199 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05005200 free_extent_map(em);
5201 else
5202 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005203 }
David Sterba172ddd62011-04-21 00:48:27 +02005204 em = alloc_extent_map();
Chris Masona52d9a82007-08-27 16:49:44 -04005205 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05005206 err = -ENOMEM;
5207 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005208 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005209 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05005210 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05005211 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05005212 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04005213 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04005214
5215 if (!path) {
5216 path = btrfs_alloc_path();
Josef Bacik026fd312011-05-13 10:32:11 -04005217 if (!path) {
5218 err = -ENOMEM;
5219 goto out;
5220 }
5221 /*
5222 * Chances are we'll be called again, so go ahead and do
5223 * readahead
5224 */
5225 path->reada = 1;
Chris Masonf4219502008-07-22 11:18:09 -04005226 }
5227
Chris Mason179e29e2007-11-01 11:28:41 -04005228 ret = btrfs_lookup_file_extent(trans, root, path,
5229 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04005230 if (ret < 0) {
5231 err = ret;
5232 goto out;
5233 }
5234
5235 if (ret != 0) {
5236 if (path->slots[0] == 0)
5237 goto not_found;
5238 path->slots[0]--;
5239 }
5240
Chris Mason5f39d392007-10-15 16:14:19 -04005241 leaf = path->nodes[0];
5242 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04005243 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04005244 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04005245 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5246 found_type = btrfs_key_type(&found_key);
5247 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04005248 found_type != BTRFS_EXTENT_DATA_KEY) {
5249 goto not_found;
5250 }
5251
Chris Mason5f39d392007-10-15 16:14:19 -04005252 found_type = btrfs_file_extent_type(leaf, item);
5253 extent_start = found_key.offset;
Li Zefan261507a02010-12-17 14:21:50 +08005254 compress_type = btrfs_file_extent_compression(leaf, item);
Yan Zhengd899e052008-10-30 14:25:28 -04005255 if (found_type == BTRFS_FILE_EXTENT_REG ||
5256 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04005257 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04005258 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04005259 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
5260 size_t size;
5261 size = btrfs_file_extent_inline_len(leaf, item);
5262 extent_end = (extent_start + size + root->sectorsize - 1) &
5263 ~((u64)root->sectorsize - 1);
5264 }
5265
5266 if (start >= extent_end) {
5267 path->slots[0]++;
5268 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
5269 ret = btrfs_next_leaf(root, path);
5270 if (ret < 0) {
5271 err = ret;
5272 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005273 }
Yan Zheng9036c102008-10-30 14:19:41 -04005274 if (ret > 0)
5275 goto not_found;
5276 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04005277 }
Yan Zheng9036c102008-10-30 14:19:41 -04005278 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5279 if (found_key.objectid != objectid ||
5280 found_key.type != BTRFS_EXTENT_DATA_KEY)
5281 goto not_found;
5282 if (start + len <= found_key.offset)
5283 goto not_found;
5284 em->start = start;
5285 em->len = found_key.offset - start;
5286 goto not_found_em;
5287 }
5288
Yan Zhengd899e052008-10-30 14:25:28 -04005289 if (found_type == BTRFS_FILE_EXTENT_REG ||
5290 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng9036c102008-10-30 14:19:41 -04005291 em->start = extent_start;
5292 em->len = extent_end - extent_start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005293 em->orig_start = extent_start -
5294 btrfs_file_extent_offset(leaf, item);
Chris Masondb945352007-10-15 16:15:53 -04005295 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
5296 if (bytenr == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04005297 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04005298 goto insert;
5299 }
Li Zefan261507a02010-12-17 14:21:50 +08005300 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04005301 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08005302 em->compress_type = compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04005303 em->block_start = bytenr;
5304 em->block_len = btrfs_file_extent_disk_num_bytes(leaf,
5305 item);
5306 } else {
5307 bytenr += btrfs_file_extent_offset(leaf, item);
5308 em->block_start = bytenr;
5309 em->block_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04005310 if (found_type == BTRFS_FILE_EXTENT_PREALLOC)
5311 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -04005312 }
Chris Masona52d9a82007-08-27 16:49:44 -04005313 goto insert;
5314 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04005315 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04005316 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04005317 size_t size;
5318 size_t extent_offset;
5319 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04005320
Chris Masona52d9a82007-08-27 16:49:44 -04005321 em->block_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04005322 if (!page || create) {
Yan689f9342007-10-29 11:41:07 -04005323 em->start = extent_start;
Yan Zheng9036c102008-10-30 14:19:41 -04005324 em->len = extent_end - extent_start;
Yan689f9342007-10-29 11:41:07 -04005325 goto out;
5326 }
5327
Yan Zheng9036c102008-10-30 14:19:41 -04005328 size = btrfs_file_extent_inline_len(leaf, item);
5329 extent_offset = page_offset(page) + pg_offset - extent_start;
Chris Mason70dec802008-01-29 09:59:12 -05005330 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04005331 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04005332 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05005333 em->len = (copy_size + root->sectorsize - 1) &
5334 ~((u64)root->sectorsize - 1);
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005335 em->orig_start = EXTENT_MAP_INLINE;
Li Zefan261507a02010-12-17 14:21:50 +08005336 if (compress_type) {
Chris Masonc8b97812008-10-29 14:49:59 -04005337 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08005338 em->compress_type = compress_type;
5339 }
Yan689f9342007-10-29 11:41:07 -04005340 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04005341 if (create == 0 && !PageUptodate(page)) {
Li Zefan261507a02010-12-17 14:21:50 +08005342 if (btrfs_file_extent_compression(leaf, item) !=
5343 BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04005344 ret = uncompress_inline(path, inode, page,
5345 pg_offset,
5346 extent_offset, item);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005347 BUG_ON(ret); /* -ENOMEM */
Chris Masonc8b97812008-10-29 14:49:59 -04005348 } else {
5349 map = kmap(page);
5350 read_extent_buffer(leaf, map + pg_offset, ptr,
5351 copy_size);
Chris Mason93c82d52009-09-11 12:36:29 -04005352 if (pg_offset + copy_size < PAGE_CACHE_SIZE) {
5353 memset(map + pg_offset + copy_size, 0,
5354 PAGE_CACHE_SIZE - pg_offset -
5355 copy_size);
5356 }
Chris Masonc8b97812008-10-29 14:49:59 -04005357 kunmap(page);
5358 }
Chris Mason179e29e2007-11-01 11:28:41 -04005359 flush_dcache_page(page);
5360 } else if (create && PageUptodate(page)) {
Jan Schmidt6bf7e082011-12-01 14:35:19 +01005361 BUG();
Chris Mason179e29e2007-11-01 11:28:41 -04005362 if (!trans) {
5363 kunmap(page);
5364 free_extent_map(em);
5365 em = NULL;
Chris Masonff5714c2011-05-28 07:00:39 -04005366
David Sterbab3b4aa72011-04-21 01:20:15 +02005367 btrfs_release_path(path);
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005368 trans = btrfs_join_transaction(root);
Chris Masonff5714c2011-05-28 07:00:39 -04005369
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005370 if (IS_ERR(trans))
5371 return ERR_CAST(trans);
Chris Mason179e29e2007-11-01 11:28:41 -04005372 goto again;
5373 }
Chris Masonc8b97812008-10-29 14:49:59 -04005374 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05005375 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04005376 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04005377 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04005378 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04005379 }
Chris Masond1310b22008-01-24 16:13:08 -05005380 set_extent_uptodate(io_tree, em->start,
Arne Jansen507903b2011-04-06 10:02:20 +00005381 extent_map_end(em) - 1, NULL, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04005382 goto insert;
5383 } else {
Chris Masond3977122009-01-05 21:25:51 -05005384 printk(KERN_ERR "btrfs unknown found_type %d\n", found_type);
Chris Masona52d9a82007-08-27 16:49:44 -04005385 WARN_ON(1);
5386 }
5387not_found:
5388 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05005389 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04005390not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04005391 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04005392 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04005393insert:
David Sterbab3b4aa72011-04-21 01:20:15 +02005394 btrfs_release_path(path);
Chris Masond1310b22008-01-24 16:13:08 -05005395 if (em->start > start || extent_map_end(em) <= start) {
Chris Masond3977122009-01-05 21:25:51 -05005396 printk(KERN_ERR "Btrfs: bad extent! em: [%llu %llu] passed "
5397 "[%llu %llu]\n", (unsigned long long)em->start,
5398 (unsigned long long)em->len,
5399 (unsigned long long)start,
5400 (unsigned long long)len);
Chris Masona52d9a82007-08-27 16:49:44 -04005401 err = -EIO;
5402 goto out;
5403 }
Chris Masond1310b22008-01-24 16:13:08 -05005404
5405 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04005406 write_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005407 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04005408 /* it is possible that someone inserted the extent into the tree
5409 * while we had the lock dropped. It is also possible that
5410 * an overlapping map exists in the tree
5411 */
Chris Masona52d9a82007-08-27 16:49:44 -04005412 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04005413 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005414
5415 ret = 0;
5416
Chris Mason3b951512008-04-17 11:29:12 -04005417 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04005418 if (existing && (existing->start > start ||
5419 existing->start + existing->len <= start)) {
5420 free_extent_map(existing);
5421 existing = NULL;
5422 }
Chris Mason3b951512008-04-17 11:29:12 -04005423 if (!existing) {
5424 existing = lookup_extent_mapping(em_tree, em->start,
5425 em->len);
5426 if (existing) {
5427 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005428 em, start,
5429 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04005430 free_extent_map(existing);
5431 if (err) {
5432 free_extent_map(em);
5433 em = NULL;
5434 }
5435 } else {
5436 err = -EIO;
Chris Mason3b951512008-04-17 11:29:12 -04005437 free_extent_map(em);
5438 em = NULL;
5439 }
5440 } else {
5441 free_extent_map(em);
5442 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005443 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04005444 }
Chris Masona52d9a82007-08-27 16:49:44 -04005445 }
Chris Mason890871b2009-09-02 16:24:52 -04005446 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005447out:
liubo1abe9b82011-03-24 11:18:59 +00005448
5449 trace_btrfs_get_extent(root, em);
5450
Chris Masonf4219502008-07-22 11:18:09 -04005451 if (path)
5452 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04005453 if (trans) {
5454 ret = btrfs_end_transaction(trans, root);
Chris Masond3977122009-01-05 21:25:51 -05005455 if (!err)
Chris Masona52d9a82007-08-27 16:49:44 -04005456 err = ret;
5457 }
Chris Masona52d9a82007-08-27 16:49:44 -04005458 if (err) {
5459 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04005460 return ERR_PTR(err);
5461 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005462 BUG_ON(!em); /* Error is always set */
Chris Masona52d9a82007-08-27 16:49:44 -04005463 return em;
5464}
5465
Chris Masonec29ed52011-02-23 16:23:20 -05005466struct extent_map *btrfs_get_extent_fiemap(struct inode *inode, struct page *page,
5467 size_t pg_offset, u64 start, u64 len,
5468 int create)
5469{
5470 struct extent_map *em;
5471 struct extent_map *hole_em = NULL;
5472 u64 range_start = start;
5473 u64 end;
5474 u64 found;
5475 u64 found_end;
5476 int err = 0;
5477
5478 em = btrfs_get_extent(inode, page, pg_offset, start, len, create);
5479 if (IS_ERR(em))
5480 return em;
5481 if (em) {
5482 /*
5483 * if our em maps to a hole, there might
5484 * actually be delalloc bytes behind it
5485 */
5486 if (em->block_start != EXTENT_MAP_HOLE)
5487 return em;
5488 else
5489 hole_em = em;
5490 }
5491
5492 /* check to see if we've wrapped (len == -1 or similar) */
5493 end = start + len;
5494 if (end < start)
5495 end = (u64)-1;
5496 else
5497 end -= 1;
5498
5499 em = NULL;
5500
5501 /* ok, we didn't find anything, lets look for delalloc */
5502 found = count_range_bits(&BTRFS_I(inode)->io_tree, &range_start,
5503 end, len, EXTENT_DELALLOC, 1);
5504 found_end = range_start + found;
5505 if (found_end < range_start)
5506 found_end = (u64)-1;
5507
5508 /*
5509 * we didn't find anything useful, return
5510 * the original results from get_extent()
5511 */
5512 if (range_start > end || found_end <= start) {
5513 em = hole_em;
5514 hole_em = NULL;
5515 goto out;
5516 }
5517
5518 /* adjust the range_start to make sure it doesn't
5519 * go backwards from the start they passed in
5520 */
5521 range_start = max(start,range_start);
5522 found = found_end - range_start;
5523
5524 if (found > 0) {
5525 u64 hole_start = start;
5526 u64 hole_len = len;
5527
David Sterba172ddd62011-04-21 00:48:27 +02005528 em = alloc_extent_map();
Chris Masonec29ed52011-02-23 16:23:20 -05005529 if (!em) {
5530 err = -ENOMEM;
5531 goto out;
5532 }
5533 /*
5534 * when btrfs_get_extent can't find anything it
5535 * returns one huge hole
5536 *
5537 * make sure what it found really fits our range, and
5538 * adjust to make sure it is based on the start from
5539 * the caller
5540 */
5541 if (hole_em) {
5542 u64 calc_end = extent_map_end(hole_em);
5543
5544 if (calc_end <= start || (hole_em->start > end)) {
5545 free_extent_map(hole_em);
5546 hole_em = NULL;
5547 } else {
5548 hole_start = max(hole_em->start, start);
5549 hole_len = calc_end - hole_start;
5550 }
5551 }
5552 em->bdev = NULL;
5553 if (hole_em && range_start > hole_start) {
5554 /* our hole starts before our delalloc, so we
5555 * have to return just the parts of the hole
5556 * that go until the delalloc starts
5557 */
5558 em->len = min(hole_len,
5559 range_start - hole_start);
5560 em->start = hole_start;
5561 em->orig_start = hole_start;
5562 /*
5563 * don't adjust block start at all,
5564 * it is fixed at EXTENT_MAP_HOLE
5565 */
5566 em->block_start = hole_em->block_start;
5567 em->block_len = hole_len;
5568 } else {
5569 em->start = range_start;
5570 em->len = found;
5571 em->orig_start = range_start;
5572 em->block_start = EXTENT_MAP_DELALLOC;
5573 em->block_len = found;
5574 }
5575 } else if (hole_em) {
5576 return hole_em;
5577 }
5578out:
5579
5580 free_extent_map(hole_em);
5581 if (err) {
5582 free_extent_map(em);
5583 return ERR_PTR(err);
5584 }
5585 return em;
5586}
5587
Josef Bacik4b46fce2010-05-23 11:00:55 -04005588static struct extent_map *btrfs_new_extent_direct(struct inode *inode,
Josef Bacik16d299a2011-04-06 14:53:07 -04005589 struct extent_map *em,
Josef Bacik4b46fce2010-05-23 11:00:55 -04005590 u64 start, u64 len)
5591{
5592 struct btrfs_root *root = BTRFS_I(inode)->root;
5593 struct btrfs_trans_handle *trans;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005594 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
5595 struct btrfs_key ins;
5596 u64 alloc_hint;
5597 int ret;
Josef Bacik16d299a2011-04-06 14:53:07 -04005598 bool insert = false;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005599
Josef Bacik16d299a2011-04-06 14:53:07 -04005600 /*
5601 * Ok if the extent map we looked up is a hole and is for the exact
5602 * range we want, there is no reason to allocate a new one, however if
5603 * it is not right then we need to free this one and drop the cache for
5604 * our range.
5605 */
5606 if (em->block_start != EXTENT_MAP_HOLE || em->start != start ||
5607 em->len != len) {
5608 free_extent_map(em);
5609 em = NULL;
5610 insert = true;
5611 btrfs_drop_extent_cache(inode, start, start + len - 1, 0);
5612 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005613
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005614 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005615 if (IS_ERR(trans))
5616 return ERR_CAST(trans);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005617
Chris Mason4cb53002011-05-24 15:35:30 -04005618 if (start <= BTRFS_I(inode)->disk_i_size && len < 64 * 1024)
5619 btrfs_add_inode_defrag(trans, inode);
5620
Josef Bacik4b46fce2010-05-23 11:00:55 -04005621 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
5622
5623 alloc_hint = get_extent_allocation_hint(inode, start, len);
5624 ret = btrfs_reserve_extent(trans, root, len, root->sectorsize, 0,
Josef Bacik81c9ad22012-01-18 10:56:06 -05005625 alloc_hint, &ins, 1);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005626 if (ret) {
5627 em = ERR_PTR(ret);
5628 goto out;
5629 }
5630
Josef Bacik4b46fce2010-05-23 11:00:55 -04005631 if (!em) {
David Sterba172ddd62011-04-21 00:48:27 +02005632 em = alloc_extent_map();
Josef Bacik16d299a2011-04-06 14:53:07 -04005633 if (!em) {
5634 em = ERR_PTR(-ENOMEM);
5635 goto out;
5636 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005637 }
5638
5639 em->start = start;
5640 em->orig_start = em->start;
5641 em->len = ins.offset;
5642
5643 em->block_start = ins.objectid;
5644 em->block_len = ins.offset;
5645 em->bdev = root->fs_info->fs_devices->latest_bdev;
Josef Bacik16d299a2011-04-06 14:53:07 -04005646
5647 /*
5648 * We need to do this because if we're using the original em we searched
5649 * for, we could have EXTENT_FLAG_VACANCY set, and we don't want that.
5650 */
5651 em->flags = 0;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005652 set_bit(EXTENT_FLAG_PINNED, &em->flags);
5653
Josef Bacik16d299a2011-04-06 14:53:07 -04005654 while (insert) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04005655 write_lock(&em_tree->lock);
5656 ret = add_extent_mapping(em_tree, em);
5657 write_unlock(&em_tree->lock);
5658 if (ret != -EEXIST)
5659 break;
5660 btrfs_drop_extent_cache(inode, start, start + em->len - 1, 0);
5661 }
5662
5663 ret = btrfs_add_ordered_extent_dio(inode, start, ins.objectid,
5664 ins.offset, ins.offset, 0);
5665 if (ret) {
5666 btrfs_free_reserved_extent(root, ins.objectid, ins.offset);
5667 em = ERR_PTR(ret);
5668 }
5669out:
5670 btrfs_end_transaction(trans, root);
5671 return em;
5672}
5673
Chris Mason46bfbb52010-05-26 11:04:10 -04005674/*
5675 * returns 1 when the nocow is safe, < 1 on error, 0 if the
5676 * block must be cow'd
5677 */
5678static noinline int can_nocow_odirect(struct btrfs_trans_handle *trans,
5679 struct inode *inode, u64 offset, u64 len)
5680{
5681 struct btrfs_path *path;
5682 int ret;
5683 struct extent_buffer *leaf;
5684 struct btrfs_root *root = BTRFS_I(inode)->root;
5685 struct btrfs_file_extent_item *fi;
5686 struct btrfs_key key;
5687 u64 disk_bytenr;
5688 u64 backref_offset;
5689 u64 extent_end;
5690 u64 num_bytes;
5691 int slot;
5692 int found_type;
5693
5694 path = btrfs_alloc_path();
5695 if (!path)
5696 return -ENOMEM;
5697
Li Zefan33345d012011-04-20 10:31:50 +08005698 ret = btrfs_lookup_file_extent(trans, root, path, btrfs_ino(inode),
Chris Mason46bfbb52010-05-26 11:04:10 -04005699 offset, 0);
5700 if (ret < 0)
5701 goto out;
5702
5703 slot = path->slots[0];
5704 if (ret == 1) {
5705 if (slot == 0) {
5706 /* can't find the item, must cow */
5707 ret = 0;
5708 goto out;
5709 }
5710 slot--;
5711 }
5712 ret = 0;
5713 leaf = path->nodes[0];
5714 btrfs_item_key_to_cpu(leaf, &key, slot);
Li Zefan33345d012011-04-20 10:31:50 +08005715 if (key.objectid != btrfs_ino(inode) ||
Chris Mason46bfbb52010-05-26 11:04:10 -04005716 key.type != BTRFS_EXTENT_DATA_KEY) {
5717 /* not our file or wrong item type, must cow */
5718 goto out;
5719 }
5720
5721 if (key.offset > offset) {
5722 /* Wrong offset, must cow */
5723 goto out;
5724 }
5725
5726 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
5727 found_type = btrfs_file_extent_type(leaf, fi);
5728 if (found_type != BTRFS_FILE_EXTENT_REG &&
5729 found_type != BTRFS_FILE_EXTENT_PREALLOC) {
5730 /* not a regular extent, must cow */
5731 goto out;
5732 }
5733 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
5734 backref_offset = btrfs_file_extent_offset(leaf, fi);
5735
5736 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
5737 if (extent_end < offset + len) {
5738 /* extent doesn't include our full range, must cow */
5739 goto out;
5740 }
5741
5742 if (btrfs_extent_readonly(root, disk_bytenr))
5743 goto out;
5744
5745 /*
5746 * look for other files referencing this extent, if we
5747 * find any we must cow
5748 */
Li Zefan33345d012011-04-20 10:31:50 +08005749 if (btrfs_cross_ref_exist(trans, root, btrfs_ino(inode),
Chris Mason46bfbb52010-05-26 11:04:10 -04005750 key.offset - backref_offset, disk_bytenr))
5751 goto out;
5752
5753 /*
5754 * adjust disk_bytenr and num_bytes to cover just the bytes
5755 * in this extent we are about to write. If there
5756 * are any csums in that range we have to cow in order
5757 * to keep the csums correct
5758 */
5759 disk_bytenr += backref_offset;
5760 disk_bytenr += offset - key.offset;
5761 num_bytes = min(offset + len, extent_end) - offset;
5762 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
5763 goto out;
5764 /*
5765 * all of the above have passed, it is safe to overwrite this extent
5766 * without cow
5767 */
5768 ret = 1;
5769out:
5770 btrfs_free_path(path);
5771 return ret;
5772}
5773
Josef Bacikeb838e72012-07-31 16:28:48 -04005774static int lock_extent_direct(struct inode *inode, u64 lockstart, u64 lockend,
5775 struct extent_state **cached_state, int writing)
5776{
5777 struct btrfs_ordered_extent *ordered;
5778 int ret = 0;
5779
5780 while (1) {
5781 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
5782 0, cached_state);
5783 /*
5784 * We're concerned with the entire range that we're going to be
5785 * doing DIO to, so we need to make sure theres no ordered
5786 * extents in this range.
5787 */
5788 ordered = btrfs_lookup_ordered_range(inode, lockstart,
5789 lockend - lockstart + 1);
5790
5791 /*
5792 * We need to make sure there are no buffered pages in this
5793 * range either, we could have raced between the invalidate in
5794 * generic_file_direct_write and locking the extent. The
5795 * invalidate needs to happen so that reads after a write do not
5796 * get stale data.
5797 */
5798 if (!ordered && (!writing ||
5799 !test_range_bit(&BTRFS_I(inode)->io_tree,
5800 lockstart, lockend, EXTENT_UPTODATE, 0,
5801 *cached_state)))
5802 break;
5803
5804 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
5805 cached_state, GFP_NOFS);
5806
5807 if (ordered) {
5808 btrfs_start_ordered_extent(inode, ordered, 1);
5809 btrfs_put_ordered_extent(ordered);
5810 } else {
5811 /* Screw you mmap */
5812 ret = filemap_write_and_wait_range(inode->i_mapping,
5813 lockstart,
5814 lockend);
5815 if (ret)
5816 break;
5817
5818 /*
5819 * If we found a page that couldn't be invalidated just
5820 * fall back to buffered.
5821 */
5822 ret = invalidate_inode_pages2_range(inode->i_mapping,
5823 lockstart >> PAGE_CACHE_SHIFT,
5824 lockend >> PAGE_CACHE_SHIFT);
5825 if (ret)
5826 break;
5827 }
5828
5829 cond_resched();
5830 }
5831
5832 return ret;
5833}
5834
Josef Bacik4b46fce2010-05-23 11:00:55 -04005835static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock,
5836 struct buffer_head *bh_result, int create)
5837{
5838 struct extent_map *em;
5839 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikeb838e72012-07-31 16:28:48 -04005840 struct extent_state *cached_state = NULL;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005841 u64 start = iblock << inode->i_blkbits;
Josef Bacikeb838e72012-07-31 16:28:48 -04005842 u64 lockstart, lockend;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005843 u64 len = bh_result->b_size;
Chris Mason46bfbb52010-05-26 11:04:10 -04005844 struct btrfs_trans_handle *trans;
Josef Bacikeb838e72012-07-31 16:28:48 -04005845 int unlock_bits = EXTENT_LOCKED;
5846 int ret;
5847
Josef Bacikeb838e72012-07-31 16:28:48 -04005848 if (create) {
5849 ret = btrfs_delalloc_reserve_space(inode, len);
5850 if (ret)
5851 return ret;
5852 unlock_bits |= EXTENT_DELALLOC | EXTENT_DIRTY;
Josef Bacikc3298612012-08-03 16:49:19 -04005853 } else {
5854 len = min_t(u64, len, root->sectorsize);
Josef Bacikeb838e72012-07-31 16:28:48 -04005855 }
5856
Josef Bacikc3298612012-08-03 16:49:19 -04005857 lockstart = start;
5858 lockend = start + len - 1;
5859
Josef Bacikeb838e72012-07-31 16:28:48 -04005860 /*
5861 * If this errors out it's because we couldn't invalidate pagecache for
5862 * this range and we need to fallback to buffered.
5863 */
5864 if (lock_extent_direct(inode, lockstart, lockend, &cached_state, create))
5865 return -ENOTBLK;
5866
5867 if (create) {
5868 ret = set_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
5869 lockend, EXTENT_DELALLOC, NULL,
5870 &cached_state, GFP_NOFS);
5871 if (ret)
5872 goto unlock_err;
5873 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005874
5875 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
Josef Bacikeb838e72012-07-31 16:28:48 -04005876 if (IS_ERR(em)) {
5877 ret = PTR_ERR(em);
5878 goto unlock_err;
5879 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005880
5881 /*
5882 * Ok for INLINE and COMPRESSED extents we need to fallback on buffered
5883 * io. INLINE is special, and we could probably kludge it in here, but
5884 * it's still buffered so for safety lets just fall back to the generic
5885 * buffered path.
5886 *
5887 * For COMPRESSED we _have_ to read the entire extent in so we can
5888 * decompress it, so there will be buffering required no matter what we
5889 * do, so go ahead and fallback to buffered.
5890 *
5891 * We return -ENOTBLK because thats what makes DIO go ahead and go back
5892 * to buffered IO. Don't blame me, this is the price we pay for using
5893 * the generic code.
5894 */
5895 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) ||
5896 em->block_start == EXTENT_MAP_INLINE) {
5897 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04005898 ret = -ENOTBLK;
5899 goto unlock_err;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005900 }
5901
5902 /* Just a good old fashioned hole, return */
5903 if (!create && (em->block_start == EXTENT_MAP_HOLE ||
5904 test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
5905 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04005906 ret = 0;
5907 goto unlock_err;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005908 }
5909
5910 /*
5911 * We don't allocate a new extent in the following cases
5912 *
5913 * 1) The inode is marked as NODATACOW. In this case we'll just use the
5914 * existing extent.
5915 * 2) The extent is marked as PREALLOC. We're good to go here and can
5916 * just use the extent.
5917 *
5918 */
Chris Mason46bfbb52010-05-26 11:04:10 -04005919 if (!create) {
Josef Bacikeb838e72012-07-31 16:28:48 -04005920 len = min(len, em->len - (start - em->start));
5921 lockstart = start + len;
5922 goto unlock;
Chris Mason46bfbb52010-05-26 11:04:10 -04005923 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005924
5925 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
5926 ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
5927 em->block_start != EXTENT_MAP_HOLE)) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04005928 int type;
5929 int ret;
Chris Mason46bfbb52010-05-26 11:04:10 -04005930 u64 block_start;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005931
5932 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
5933 type = BTRFS_ORDERED_PREALLOC;
5934 else
5935 type = BTRFS_ORDERED_NOCOW;
Chris Mason46bfbb52010-05-26 11:04:10 -04005936 len = min(len, em->len - (start - em->start));
Josef Bacik4b46fce2010-05-23 11:00:55 -04005937 block_start = em->block_start + (start - em->start);
Chris Mason46bfbb52010-05-26 11:04:10 -04005938
5939 /*
5940 * we're not going to log anything, but we do need
5941 * to make sure the current transaction stays open
5942 * while we look for nocow cross refs
5943 */
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005944 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005945 if (IS_ERR(trans))
Chris Mason46bfbb52010-05-26 11:04:10 -04005946 goto must_cow;
5947
5948 if (can_nocow_odirect(trans, inode, start, len) == 1) {
5949 ret = btrfs_add_ordered_extent_dio(inode, start,
5950 block_start, len, len, type);
5951 btrfs_end_transaction(trans, root);
5952 if (ret) {
5953 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04005954 goto unlock_err;
Chris Mason46bfbb52010-05-26 11:04:10 -04005955 }
5956 goto unlock;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005957 }
Chris Mason46bfbb52010-05-26 11:04:10 -04005958 btrfs_end_transaction(trans, root);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005959 }
Chris Mason46bfbb52010-05-26 11:04:10 -04005960must_cow:
5961 /*
5962 * this will cow the extent, reset the len in case we changed
5963 * it above
5964 */
5965 len = bh_result->b_size;
Josef Bacik16d299a2011-04-06 14:53:07 -04005966 em = btrfs_new_extent_direct(inode, em, start, len);
Josef Bacikeb838e72012-07-31 16:28:48 -04005967 if (IS_ERR(em)) {
5968 ret = PTR_ERR(em);
5969 goto unlock_err;
5970 }
Chris Mason46bfbb52010-05-26 11:04:10 -04005971 len = min(len, em->len - (start - em->start));
5972unlock:
Josef Bacik4b46fce2010-05-23 11:00:55 -04005973 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
5974 inode->i_blkbits;
Chris Mason46bfbb52010-05-26 11:04:10 -04005975 bh_result->b_size = len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005976 bh_result->b_bdev = em->bdev;
5977 set_buffer_mapped(bh_result);
Josef Bacikc3473e82012-06-19 10:59:00 -04005978 if (create) {
5979 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
5980 set_buffer_new(bh_result);
5981
5982 /*
5983 * Need to update the i_size under the extent lock so buffered
5984 * readers will get the updated i_size when we unlock.
5985 */
5986 if (start + len > i_size_read(inode))
5987 i_size_write(inode, start + len);
5988 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005989
Josef Bacikeb838e72012-07-31 16:28:48 -04005990 /*
5991 * In the case of write we need to clear and unlock the entire range,
5992 * in the case of read we need to unlock only the end area that we
5993 * aren't using if there is any left over space.
5994 */
Liu Bo24c03fa2012-08-22 20:10:38 -06005995 if (lockstart < lockend) {
5996 if (create && len < lockend - lockstart) {
5997 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
5998 lockstart + len - 1, unlock_bits, 1, 0,
5999 &cached_state, GFP_NOFS);
6000 /*
6001 * Beside unlock, we also need to cleanup reserved space
6002 * for the left range by attaching EXTENT_DO_ACCOUNTING.
6003 */
6004 clear_extent_bit(&BTRFS_I(inode)->io_tree,
6005 lockstart + len, lockend,
6006 unlock_bits | EXTENT_DO_ACCOUNTING,
6007 1, 0, NULL, GFP_NOFS);
6008 } else {
6009 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
6010 lockend, unlock_bits, 1, 0,
6011 &cached_state, GFP_NOFS);
6012 }
6013 } else {
Josef Bacikeb838e72012-07-31 16:28:48 -04006014 free_extent_state(cached_state);
Liu Bo24c03fa2012-08-22 20:10:38 -06006015 }
Josef Bacikeb838e72012-07-31 16:28:48 -04006016
Josef Bacik4b46fce2010-05-23 11:00:55 -04006017 free_extent_map(em);
6018
6019 return 0;
Josef Bacikeb838e72012-07-31 16:28:48 -04006020
6021unlock_err:
6022 if (create)
6023 unlock_bits |= EXTENT_DO_ACCOUNTING;
6024
6025 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6026 unlock_bits, 1, 0, &cached_state, GFP_NOFS);
6027 return ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006028}
6029
6030struct btrfs_dio_private {
6031 struct inode *inode;
6032 u64 logical_offset;
6033 u64 disk_bytenr;
6034 u64 bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006035 void *private;
Miao Xiee65e1532010-11-22 03:04:43 +00006036
6037 /* number of bios pending for this dio */
6038 atomic_t pending_bios;
6039
6040 /* IO errors */
6041 int errors;
6042
6043 struct bio *orig_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006044};
6045
6046static void btrfs_endio_direct_read(struct bio *bio, int err)
6047{
Miao Xiee65e1532010-11-22 03:04:43 +00006048 struct btrfs_dio_private *dip = bio->bi_private;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006049 struct bio_vec *bvec_end = bio->bi_io_vec + bio->bi_vcnt - 1;
6050 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006051 struct inode *inode = dip->inode;
6052 struct btrfs_root *root = BTRFS_I(inode)->root;
6053 u64 start;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006054
6055 start = dip->logical_offset;
6056 do {
6057 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)) {
6058 struct page *page = bvec->bv_page;
6059 char *kaddr;
6060 u32 csum = ~(u32)0;
Josef Bacikc3298612012-08-03 16:49:19 -04006061 u64 private = ~(u32)0;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006062 unsigned long flags;
6063
Josef Bacikc3298612012-08-03 16:49:19 -04006064 if (get_state_private(&BTRFS_I(inode)->io_tree,
6065 start, &private))
6066 goto failed;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006067 local_irq_save(flags);
Cong Wang7ac687d2011-11-25 23:14:28 +08006068 kaddr = kmap_atomic(page);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006069 csum = btrfs_csum_data(root, kaddr + bvec->bv_offset,
6070 csum, bvec->bv_len);
6071 btrfs_csum_final(csum, (char *)&csum);
Cong Wang7ac687d2011-11-25 23:14:28 +08006072 kunmap_atomic(kaddr);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006073 local_irq_restore(flags);
6074
6075 flush_dcache_page(bvec->bv_page);
Josef Bacikc3298612012-08-03 16:49:19 -04006076 if (csum != private) {
6077failed:
Li Zefan33345d012011-04-20 10:31:50 +08006078 printk(KERN_ERR "btrfs csum failed ino %llu off"
Josef Bacik4b46fce2010-05-23 11:00:55 -04006079 " %llu csum %u private %u\n",
Li Zefan33345d012011-04-20 10:31:50 +08006080 (unsigned long long)btrfs_ino(inode),
6081 (unsigned long long)start,
Josef Bacikc3298612012-08-03 16:49:19 -04006082 csum, (unsigned)private);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006083 err = -EIO;
6084 }
6085 }
6086
6087 start += bvec->bv_len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006088 bvec++;
6089 } while (bvec <= bvec_end);
6090
6091 unlock_extent(&BTRFS_I(inode)->io_tree, dip->logical_offset,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006092 dip->logical_offset + dip->bytes - 1);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006093 bio->bi_private = dip->private;
6094
Josef Bacik4b46fce2010-05-23 11:00:55 -04006095 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04006096
6097 /* If we had a csum failure make sure to clear the uptodate flag */
6098 if (err)
6099 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006100 dio_end_io(bio, err);
6101}
6102
6103static void btrfs_endio_direct_write(struct bio *bio, int err)
6104{
6105 struct btrfs_dio_private *dip = bio->bi_private;
6106 struct inode *inode = dip->inode;
6107 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006108 struct btrfs_ordered_extent *ordered = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05006109 u64 ordered_offset = dip->logical_offset;
6110 u64 ordered_bytes = dip->bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006111 int ret;
6112
6113 if (err)
6114 goto out_done;
Chris Mason163cf092010-11-28 19:56:33 -05006115again:
6116 ret = btrfs_dec_test_first_ordered_pending(inode, &ordered,
6117 &ordered_offset,
Josef Bacik5fd02042012-05-02 14:00:54 -04006118 ordered_bytes, !err);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006119 if (!ret)
Chris Mason163cf092010-11-28 19:56:33 -05006120 goto out_test;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006121
Josef Bacik5fd02042012-05-02 14:00:54 -04006122 ordered->work.func = finish_ordered_fn;
6123 ordered->work.flags = 0;
6124 btrfs_queue_worker(&root->fs_info->endio_write_workers,
6125 &ordered->work);
Chris Mason163cf092010-11-28 19:56:33 -05006126out_test:
6127 /*
6128 * our bio might span multiple ordered extents. If we haven't
6129 * completed the accounting for the whole dio, go back and try again
6130 */
6131 if (ordered_offset < dip->logical_offset + dip->bytes) {
6132 ordered_bytes = dip->logical_offset + dip->bytes -
6133 ordered_offset;
Josef Bacik5fd02042012-05-02 14:00:54 -04006134 ordered = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05006135 goto again;
6136 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04006137out_done:
6138 bio->bi_private = dip->private;
6139
Josef Bacik4b46fce2010-05-23 11:00:55 -04006140 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04006141
6142 /* If we had an error make sure to clear the uptodate flag */
6143 if (err)
6144 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006145 dio_end_io(bio, err);
6146}
6147
Chris Masoneaf25d92010-05-25 09:48:28 -04006148static int __btrfs_submit_bio_start_direct_io(struct inode *inode, int rw,
6149 struct bio *bio, int mirror_num,
6150 unsigned long bio_flags, u64 offset)
6151{
6152 int ret;
6153 struct btrfs_root *root = BTRFS_I(inode)->root;
6154 ret = btrfs_csum_one_bio(root, inode, bio, offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006155 BUG_ON(ret); /* -ENOMEM */
Chris Masoneaf25d92010-05-25 09:48:28 -04006156 return 0;
6157}
6158
Miao Xiee65e1532010-11-22 03:04:43 +00006159static void btrfs_end_dio_bio(struct bio *bio, int err)
6160{
6161 struct btrfs_dio_private *dip = bio->bi_private;
6162
6163 if (err) {
Li Zefan33345d012011-04-20 10:31:50 +08006164 printk(KERN_ERR "btrfs direct IO failed ino %llu rw %lu "
Jan Beulich3dd14622010-12-07 14:54:09 +00006165 "sector %#Lx len %u err no %d\n",
Li Zefan33345d012011-04-20 10:31:50 +08006166 (unsigned long long)btrfs_ino(dip->inode), bio->bi_rw,
Jan Beulich3dd14622010-12-07 14:54:09 +00006167 (unsigned long long)bio->bi_sector, bio->bi_size, err);
Miao Xiee65e1532010-11-22 03:04:43 +00006168 dip->errors = 1;
6169
6170 /*
6171 * before atomic variable goto zero, we must make sure
6172 * dip->errors is perceived to be set.
6173 */
6174 smp_mb__before_atomic_dec();
6175 }
6176
6177 /* if there are more bios still pending for this dio, just exit */
6178 if (!atomic_dec_and_test(&dip->pending_bios))
6179 goto out;
6180
6181 if (dip->errors)
6182 bio_io_error(dip->orig_bio);
6183 else {
6184 set_bit(BIO_UPTODATE, &dip->orig_bio->bi_flags);
6185 bio_endio(dip->orig_bio, 0);
6186 }
6187out:
6188 bio_put(bio);
6189}
6190
6191static struct bio *btrfs_dio_bio_alloc(struct block_device *bdev,
6192 u64 first_sector, gfp_t gfp_flags)
6193{
6194 int nr_vecs = bio_get_nr_vecs(bdev);
6195 return btrfs_bio_alloc(bdev, first_sector, nr_vecs, gfp_flags);
6196}
6197
6198static inline int __btrfs_submit_dio_bio(struct bio *bio, struct inode *inode,
6199 int rw, u64 file_offset, int skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04006200 int async_submit)
Miao Xiee65e1532010-11-22 03:04:43 +00006201{
6202 int write = rw & REQ_WRITE;
6203 struct btrfs_root *root = BTRFS_I(inode)->root;
6204 int ret;
6205
6206 bio_get(bio);
Josef Bacik5fd02042012-05-02 14:00:54 -04006207
6208 if (!write) {
6209 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
6210 if (ret)
6211 goto err;
6212 }
Miao Xiee65e1532010-11-22 03:04:43 +00006213
Josef Bacik1ae39932011-04-06 14:41:34 -04006214 if (skip_sum)
6215 goto map;
6216
6217 if (write && async_submit) {
Miao Xiee65e1532010-11-22 03:04:43 +00006218 ret = btrfs_wq_submit_bio(root->fs_info,
6219 inode, rw, bio, 0, 0,
6220 file_offset,
6221 __btrfs_submit_bio_start_direct_io,
6222 __btrfs_submit_bio_done);
6223 goto err;
Josef Bacik1ae39932011-04-06 14:41:34 -04006224 } else if (write) {
6225 /*
6226 * If we aren't doing async submit, calculate the csum of the
6227 * bio now.
6228 */
6229 ret = btrfs_csum_one_bio(root, inode, bio, file_offset, 1);
6230 if (ret)
6231 goto err;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00006232 } else if (!skip_sum) {
Josef Bacikc3298612012-08-03 16:49:19 -04006233 ret = btrfs_lookup_bio_sums_dio(root, inode, bio, file_offset);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00006234 if (ret)
6235 goto err;
6236 }
Miao Xiee65e1532010-11-22 03:04:43 +00006237
Josef Bacik1ae39932011-04-06 14:41:34 -04006238map:
6239 ret = btrfs_map_bio(root, rw, bio, 0, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00006240err:
6241 bio_put(bio);
6242 return ret;
6243}
6244
6245static int btrfs_submit_direct_hook(int rw, struct btrfs_dio_private *dip,
6246 int skip_sum)
6247{
6248 struct inode *inode = dip->inode;
6249 struct btrfs_root *root = BTRFS_I(inode)->root;
6250 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
6251 struct bio *bio;
6252 struct bio *orig_bio = dip->orig_bio;
6253 struct bio_vec *bvec = orig_bio->bi_io_vec;
6254 u64 start_sector = orig_bio->bi_sector;
6255 u64 file_offset = dip->logical_offset;
6256 u64 submit_len = 0;
6257 u64 map_length;
6258 int nr_pages = 0;
Miao Xiee65e1532010-11-22 03:04:43 +00006259 int ret = 0;
Josef Bacik1ae39932011-04-06 14:41:34 -04006260 int async_submit = 0;
Miao Xiee65e1532010-11-22 03:04:43 +00006261
Miao Xiee65e1532010-11-22 03:04:43 +00006262 map_length = orig_bio->bi_size;
6263 ret = btrfs_map_block(map_tree, READ, start_sector << 9,
6264 &map_length, NULL, 0);
6265 if (ret) {
Josef Bacik64728bb2011-04-25 19:43:52 -04006266 bio_put(orig_bio);
Miao Xiee65e1532010-11-22 03:04:43 +00006267 return -EIO;
6268 }
6269
Josef Bacik02f57c72011-04-06 14:25:44 -04006270 if (map_length >= orig_bio->bi_size) {
6271 bio = orig_bio;
6272 goto submit;
6273 }
6274
Josef Bacik1ae39932011-04-06 14:41:34 -04006275 async_submit = 1;
Josef Bacik02f57c72011-04-06 14:25:44 -04006276 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev, start_sector, GFP_NOFS);
6277 if (!bio)
6278 return -ENOMEM;
6279 bio->bi_private = dip;
6280 bio->bi_end_io = btrfs_end_dio_bio;
6281 atomic_inc(&dip->pending_bios);
6282
Miao Xiee65e1532010-11-22 03:04:43 +00006283 while (bvec <= (orig_bio->bi_io_vec + orig_bio->bi_vcnt - 1)) {
6284 if (unlikely(map_length < submit_len + bvec->bv_len ||
6285 bio_add_page(bio, bvec->bv_page, bvec->bv_len,
6286 bvec->bv_offset) < bvec->bv_len)) {
6287 /*
6288 * inc the count before we submit the bio so
6289 * we know the end IO handler won't happen before
6290 * we inc the count. Otherwise, the dip might get freed
6291 * before we're done setting it up
6292 */
6293 atomic_inc(&dip->pending_bios);
6294 ret = __btrfs_submit_dio_bio(bio, inode, rw,
6295 file_offset, skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04006296 async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00006297 if (ret) {
6298 bio_put(bio);
6299 atomic_dec(&dip->pending_bios);
6300 goto out_err;
6301 }
6302
Miao Xiee65e1532010-11-22 03:04:43 +00006303 start_sector += submit_len >> 9;
6304 file_offset += submit_len;
6305
6306 submit_len = 0;
6307 nr_pages = 0;
6308
6309 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev,
6310 start_sector, GFP_NOFS);
6311 if (!bio)
6312 goto out_err;
6313 bio->bi_private = dip;
6314 bio->bi_end_io = btrfs_end_dio_bio;
6315
6316 map_length = orig_bio->bi_size;
6317 ret = btrfs_map_block(map_tree, READ, start_sector << 9,
6318 &map_length, NULL, 0);
6319 if (ret) {
6320 bio_put(bio);
6321 goto out_err;
6322 }
6323 } else {
6324 submit_len += bvec->bv_len;
6325 nr_pages ++;
6326 bvec++;
6327 }
6328 }
6329
Josef Bacik02f57c72011-04-06 14:25:44 -04006330submit:
Miao Xiee65e1532010-11-22 03:04:43 +00006331 ret = __btrfs_submit_dio_bio(bio, inode, rw, file_offset, skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04006332 async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00006333 if (!ret)
6334 return 0;
6335
6336 bio_put(bio);
6337out_err:
6338 dip->errors = 1;
6339 /*
6340 * before atomic variable goto zero, we must
6341 * make sure dip->errors is perceived to be set.
6342 */
6343 smp_mb__before_atomic_dec();
6344 if (atomic_dec_and_test(&dip->pending_bios))
6345 bio_io_error(dip->orig_bio);
6346
6347 /* bio_end_io() will handle error, so we needn't return it */
6348 return 0;
6349}
6350
Josef Bacik4b46fce2010-05-23 11:00:55 -04006351static void btrfs_submit_direct(int rw, struct bio *bio, struct inode *inode,
6352 loff_t file_offset)
6353{
6354 struct btrfs_root *root = BTRFS_I(inode)->root;
6355 struct btrfs_dio_private *dip;
6356 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006357 int skip_sum;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02006358 int write = rw & REQ_WRITE;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006359 int ret = 0;
6360
6361 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
6362
6363 dip = kmalloc(sizeof(*dip), GFP_NOFS);
6364 if (!dip) {
6365 ret = -ENOMEM;
6366 goto free_ordered;
6367 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04006368
6369 dip->private = bio->bi_private;
6370 dip->inode = inode;
6371 dip->logical_offset = file_offset;
6372
Josef Bacik4b46fce2010-05-23 11:00:55 -04006373 dip->bytes = 0;
6374 do {
6375 dip->bytes += bvec->bv_len;
6376 bvec++;
6377 } while (bvec <= (bio->bi_io_vec + bio->bi_vcnt - 1));
6378
Chris Mason46bfbb52010-05-26 11:04:10 -04006379 dip->disk_bytenr = (u64)bio->bi_sector << 9;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006380 bio->bi_private = dip;
Miao Xiee65e1532010-11-22 03:04:43 +00006381 dip->errors = 0;
6382 dip->orig_bio = bio;
6383 atomic_set(&dip->pending_bios, 0);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006384
6385 if (write)
6386 bio->bi_end_io = btrfs_endio_direct_write;
6387 else
6388 bio->bi_end_io = btrfs_endio_direct_read;
6389
Miao Xiee65e1532010-11-22 03:04:43 +00006390 ret = btrfs_submit_direct_hook(rw, dip, skip_sum);
6391 if (!ret)
Chris Masoneaf25d92010-05-25 09:48:28 -04006392 return;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006393free_ordered:
6394 /*
6395 * If this is a write, we need to clean up the reserved space and kill
6396 * the ordered extent.
6397 */
6398 if (write) {
6399 struct btrfs_ordered_extent *ordered;
Josef Bacik955256f2010-11-19 09:41:10 -05006400 ordered = btrfs_lookup_ordered_extent(inode, file_offset);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006401 if (!test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags) &&
6402 !test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags))
6403 btrfs_free_reserved_extent(root, ordered->start,
6404 ordered->disk_len);
6405 btrfs_put_ordered_extent(ordered);
6406 btrfs_put_ordered_extent(ordered);
6407 }
6408 bio_endio(bio, ret);
6409}
6410
Chris Mason5a5f79b2010-05-26 21:33:37 -04006411static ssize_t check_direct_IO(struct btrfs_root *root, int rw, struct kiocb *iocb,
6412 const struct iovec *iov, loff_t offset,
6413 unsigned long nr_segs)
6414{
6415 int seg;
Josef Bacika1b75f72011-04-08 15:51:18 +00006416 int i;
Chris Mason5a5f79b2010-05-26 21:33:37 -04006417 size_t size;
6418 unsigned long addr;
6419 unsigned blocksize_mask = root->sectorsize - 1;
6420 ssize_t retval = -EINVAL;
6421 loff_t end = offset;
6422
6423 if (offset & blocksize_mask)
6424 goto out;
6425
6426 /* Check the memory alignment. Blocks cannot straddle pages */
6427 for (seg = 0; seg < nr_segs; seg++) {
6428 addr = (unsigned long)iov[seg].iov_base;
6429 size = iov[seg].iov_len;
6430 end += size;
Josef Bacika1b75f72011-04-08 15:51:18 +00006431 if ((addr & blocksize_mask) || (size & blocksize_mask))
Chris Mason5a5f79b2010-05-26 21:33:37 -04006432 goto out;
Josef Bacika1b75f72011-04-08 15:51:18 +00006433
6434 /* If this is a write we don't need to check anymore */
6435 if (rw & WRITE)
6436 continue;
6437
6438 /*
6439 * Check to make sure we don't have duplicate iov_base's in this
6440 * iovec, if so return EINVAL, otherwise we'll get csum errors
6441 * when reading back.
6442 */
6443 for (i = seg + 1; i < nr_segs; i++) {
6444 if (iov[seg].iov_base == iov[i].iov_base)
6445 goto out;
6446 }
Chris Mason5a5f79b2010-05-26 21:33:37 -04006447 }
6448 retval = 0;
6449out:
6450 return retval;
6451}
Josef Bacikeb838e72012-07-31 16:28:48 -04006452
Chris Mason16432982008-04-10 10:23:21 -04006453static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
6454 const struct iovec *iov, loff_t offset,
6455 unsigned long nr_segs)
6456{
Josef Bacik4b46fce2010-05-23 11:00:55 -04006457 struct file *file = iocb->ki_filp;
6458 struct inode *inode = file->f_mapping->host;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006459
Chris Mason5a5f79b2010-05-26 21:33:37 -04006460 if (check_direct_IO(BTRFS_I(inode)->root, rw, iocb, iov,
Josef Bacikeb838e72012-07-31 16:28:48 -04006461 offset, nr_segs))
Chris Mason5a5f79b2010-05-26 21:33:37 -04006462 return 0;
Chris Mason5a5f79b2010-05-26 21:33:37 -04006463
Josef Bacikeb838e72012-07-31 16:28:48 -04006464 return __blockdev_direct_IO(rw, iocb, inode,
Chris Mason5a5f79b2010-05-26 21:33:37 -04006465 BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev,
6466 iov, offset, nr_segs, btrfs_get_blocks_direct, NULL,
6467 btrfs_submit_direct, 0);
Chris Mason16432982008-04-10 10:23:21 -04006468}
6469
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006470static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
6471 __u64 start, __u64 len)
6472{
Chris Masonec29ed52011-02-23 16:23:20 -05006473 return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent_fiemap);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006474}
6475
Chris Mason9ebefb182007-06-15 13:50:00 -04006476int btrfs_readpage(struct file *file, struct page *page)
6477{
Chris Masond1310b22008-01-24 16:13:08 -05006478 struct extent_io_tree *tree;
6479 tree = &BTRFS_I(page->mapping->host)->io_tree;
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02006480 return extent_read_full_page(tree, page, btrfs_get_extent, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04006481}
Chris Mason1832a6d2007-12-21 16:27:21 -05006482
Chris Mason39279cc2007-06-12 06:35:45 -04006483static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
6484{
Chris Masond1310b22008-01-24 16:13:08 -05006485 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04006486
6487
6488 if (current->flags & PF_MEMALLOC) {
6489 redirty_page_for_writepage(wbc, page);
6490 unlock_page(page);
6491 return 0;
6492 }
Chris Masond1310b22008-01-24 16:13:08 -05006493 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04006494 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
6495}
Chris Mason39279cc2007-06-12 06:35:45 -04006496
Chris Masonf4219502008-07-22 11:18:09 -04006497int btrfs_writepages(struct address_space *mapping,
6498 struct writeback_control *wbc)
Chris Masonb293f022007-11-01 19:45:34 -04006499{
Chris Masond1310b22008-01-24 16:13:08 -05006500 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05006501
Chris Masond1310b22008-01-24 16:13:08 -05006502 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04006503 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
6504}
6505
Chris Mason3ab2fb52007-11-08 10:59:22 -05006506static int
6507btrfs_readpages(struct file *file, struct address_space *mapping,
6508 struct list_head *pages, unsigned nr_pages)
6509{
Chris Masond1310b22008-01-24 16:13:08 -05006510 struct extent_io_tree *tree;
6511 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05006512 return extent_readpages(tree, mapping, pages, nr_pages,
6513 btrfs_get_extent);
6514}
Chris Masone6dcd2d2008-07-17 12:53:50 -04006515static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04006516{
Chris Masond1310b22008-01-24 16:13:08 -05006517 struct extent_io_tree *tree;
6518 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04006519 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006520
Chris Masond1310b22008-01-24 16:13:08 -05006521 tree = &BTRFS_I(page->mapping->host)->io_tree;
6522 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05006523 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04006524 if (ret == 1) {
6525 ClearPagePrivate(page);
6526 set_page_private(page, 0);
6527 page_cache_release(page);
6528 }
6529 return ret;
6530}
Chris Mason39279cc2007-06-12 06:35:45 -04006531
Chris Masone6dcd2d2008-07-17 12:53:50 -04006532static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
6533{
Chris Mason98509cf2008-09-11 15:51:43 -04006534 if (PageWriteback(page) || PageDirty(page))
6535 return 0;
Yan Zhengb335b002009-02-12 10:06:04 -05006536 return __btrfs_releasepage(page, gfp_flags & GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006537}
6538
Chris Masona52d9a82007-08-27 16:49:44 -04006539static void btrfs_invalidatepage(struct page *page, unsigned long offset)
6540{
Josef Bacik5fd02042012-05-02 14:00:54 -04006541 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05006542 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006543 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006544 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006545 u64 page_start = page_offset(page);
6546 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006547
Chris Mason8b62b722009-09-02 16:53:46 -04006548 /*
6549 * we have the page locked, so new writeback can't start,
6550 * and the dirty bit won't be cleared while we are here.
6551 *
6552 * Wait for IO on this page so that we can safely clear
6553 * the PagePrivate2 bit and do ordered accounting
6554 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006555 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04006556
Josef Bacik5fd02042012-05-02 14:00:54 -04006557 tree = &BTRFS_I(inode)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006558 if (offset) {
6559 btrfs_releasepage(page, GFP_NOFS);
6560 return;
6561 }
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006562 lock_extent_bits(tree, page_start, page_end, 0, &cached_state);
Josef Bacik5fd02042012-05-02 14:00:54 -04006563 ordered = btrfs_lookup_ordered_extent(inode,
Chris Masone6dcd2d2008-07-17 12:53:50 -04006564 page_offset(page));
6565 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04006566 /*
6567 * IO on this page will never be started, so we need
6568 * to account for any ordered extents now
6569 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006570 clear_extent_bit(tree, page_start, page_end,
6571 EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik32c00af2009-10-08 13:34:05 -04006572 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING, 1, 0,
Josef Bacik2ac55d42010-02-03 19:33:23 +00006573 &cached_state, GFP_NOFS);
Chris Mason8b62b722009-09-02 16:53:46 -04006574 /*
6575 * whoever cleared the private bit is responsible
6576 * for the finish_ordered_io
6577 */
Josef Bacik5fd02042012-05-02 14:00:54 -04006578 if (TestClearPagePrivate2(page) &&
6579 btrfs_dec_test_ordered_pending(inode, &ordered, page_start,
6580 PAGE_CACHE_SIZE, 1)) {
6581 btrfs_finish_ordered_io(ordered);
Chris Mason8b62b722009-09-02 16:53:46 -04006582 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006583 btrfs_put_ordered_extent(ordered);
Josef Bacik2ac55d42010-02-03 19:33:23 +00006584 cached_state = NULL;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006585 lock_extent_bits(tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006586 }
6587 clear_extent_bit(tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04006588 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik2ac55d42010-02-03 19:33:23 +00006589 EXTENT_DO_ACCOUNTING, 1, 1, &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006590 __btrfs_releasepage(page, GFP_NOFS);
6591
Chris Mason4a096752008-07-21 10:29:44 -04006592 ClearPageChecked(page);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04006593 if (PagePrivate(page)) {
Chris Mason9ad6b7b2008-04-18 16:11:30 -04006594 ClearPagePrivate(page);
6595 set_page_private(page, 0);
6596 page_cache_release(page);
6597 }
Chris Mason39279cc2007-06-12 06:35:45 -04006598}
6599
Chris Mason9ebefb182007-06-15 13:50:00 -04006600/*
6601 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
6602 * called from a page fault handler when a page is first dirtied. Hence we must
6603 * be careful to check for EOF conditions here. We set the page up correctly
6604 * for a written page which means we get ENOSPC checking when writing into
6605 * holes and correct delalloc and unwritten extent mapping on filesystems that
6606 * support these features.
6607 *
6608 * We are not allowed to take the i_mutex here so we have to play games to
6609 * protect against truncate races as the page could now be beyond EOF. Because
6610 * vmtruncate() writes the inode size before removing pages, once we have the
6611 * page lock we can determine safely if the page is beyond EOF. If it is not
6612 * beyond EOF, then the page is guaranteed safe against truncation until we
6613 * unlock the page.
6614 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07006615int btrfs_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04006616{
Nick Pigginc2ec1752009-03-31 15:23:21 -07006617 struct page *page = vmf->page;
Chris Mason6da6aba2007-12-18 16:15:09 -05006618 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05006619 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006620 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
6621 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006622 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006623 char *kaddr;
6624 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04006625 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05006626 int ret;
Chris Mason9998eb72012-01-25 13:47:40 -05006627 int reserved = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04006628 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006629 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04006630
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006631 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Chris Mason9998eb72012-01-25 13:47:40 -05006632 if (!ret) {
Josef Bacike41f9412012-03-26 09:46:47 -04006633 ret = file_update_time(vma->vm_file);
Chris Mason9998eb72012-01-25 13:47:40 -05006634 reserved = 1;
6635 }
Nick Piggin56a76f82009-03-31 15:23:23 -07006636 if (ret) {
6637 if (ret == -ENOMEM)
6638 ret = VM_FAULT_OOM;
6639 else /* -ENOSPC, -EIO, etc */
6640 ret = VM_FAULT_SIGBUS;
Chris Mason9998eb72012-01-25 13:47:40 -05006641 if (reserved)
6642 goto out;
6643 goto out_noreserve;
Nick Piggin56a76f82009-03-31 15:23:23 -07006644 }
Chris Mason1832a6d2007-12-21 16:27:21 -05006645
Nick Piggin56a76f82009-03-31 15:23:23 -07006646 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006647again:
Chris Mason9ebefb182007-06-15 13:50:00 -04006648 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04006649 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006650 page_start = page_offset(page);
6651 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006652
Chris Mason9ebefb182007-06-15 13:50:00 -04006653 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04006654 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04006655 /* page got truncated out from underneath us */
6656 goto out_unlock;
6657 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006658 wait_on_page_writeback(page);
6659
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006660 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006661 set_page_extent_mapped(page);
6662
Chris Masoneb84ae02008-07-17 13:53:27 -04006663 /*
6664 * we can't set the delalloc bits if there are pending ordered
6665 * extents. Drop our locks and wait for them to finish
6666 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006667 ordered = btrfs_lookup_ordered_extent(inode, page_start);
6668 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006669 unlock_extent_cached(io_tree, page_start, page_end,
6670 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006671 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04006672 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006673 btrfs_put_ordered_extent(ordered);
6674 goto again;
6675 }
6676
Josef Bacikfbf19082009-10-01 17:10:23 -04006677 /*
6678 * XXX - page_mkwrite gets called every time the page is dirtied, even
6679 * if it was already dirty, so for space accounting reasons we need to
6680 * clear any delalloc bits for the range we are fixing to save. There
6681 * is probably a better way to do this, but for now keep consistent with
6682 * prepare_pages in the normal write path.
6683 */
Josef Bacik2ac55d42010-02-03 19:33:23 +00006684 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04006685 EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00006686 0, 0, &cached_state, GFP_NOFS);
Josef Bacikfbf19082009-10-01 17:10:23 -04006687
Josef Bacik2ac55d42010-02-03 19:33:23 +00006688 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
6689 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006690 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006691 unlock_extent_cached(io_tree, page_start, page_end,
6692 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006693 ret = VM_FAULT_SIGBUS;
6694 goto out_unlock;
6695 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006696 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04006697
6698 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04006699 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04006700 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04006701 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04006702 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04006703
Chris Masone6dcd2d2008-07-17 12:53:50 -04006704 if (zero_start != PAGE_CACHE_SIZE) {
6705 kaddr = kmap(page);
6706 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
6707 flush_dcache_page(page);
6708 kunmap(page);
6709 }
Chris Mason247e7432008-07-17 12:53:51 -04006710 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006711 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04006712 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04006713
Chris Mason257c62e2009-10-13 13:21:08 -04006714 BTRFS_I(inode)->last_trans = root->fs_info->generation;
6715 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
6716
Josef Bacik2ac55d42010-02-03 19:33:23 +00006717 unlock_extent_cached(io_tree, page_start, page_end, &cached_state, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04006718
6719out_unlock:
Chris Mason50a9b212009-09-11 12:33:12 -04006720 if (!ret)
6721 return VM_FAULT_LOCKED;
Chris Mason9ebefb182007-06-15 13:50:00 -04006722 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05006723out:
Josef Bacikec39e182012-01-12 19:10:12 -05006724 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason9998eb72012-01-25 13:47:40 -05006725out_noreserve:
Chris Mason9ebefb182007-06-15 13:50:00 -04006726 return ret;
6727}
6728
Josef Bacika41ad392011-01-31 15:30:16 -05006729static int btrfs_truncate(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04006730{
6731 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikfcb80c22011-05-03 10:40:22 -04006732 struct btrfs_block_rsv *rsv;
Chris Mason39279cc2007-06-12 06:35:45 -04006733 int ret;
Josef Bacik3893e332011-01-31 16:03:11 -05006734 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006735 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04006736 unsigned long nr;
Chris Masondbe674a2008-07-17 12:54:05 -04006737 u64 mask = root->sectorsize - 1;
Josef Bacik07127182011-08-19 10:29:59 -04006738 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04006739
Josef Bacik5d5e1032009-10-13 16:46:49 -04006740 ret = btrfs_truncate_page(inode->i_mapping, inode->i_size);
6741 if (ret)
Josef Bacika41ad392011-01-31 15:30:16 -05006742 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00006743
Chris Mason4a096752008-07-21 10:29:44 -04006744 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
Yan, Zheng80825102009-11-12 09:35:36 +00006745 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006746
Josef Bacikfcb80c22011-05-03 10:40:22 -04006747 /*
6748 * Yes ladies and gentelment, this is indeed ugly. The fact is we have
6749 * 3 things going on here
6750 *
6751 * 1) We need to reserve space for our orphan item and the space to
6752 * delete our orphan item. Lord knows we don't want to have a dangling
6753 * orphan item because we didn't reserve space to remove it.
6754 *
6755 * 2) We need to reserve space to update our inode.
6756 *
6757 * 3) We need to have something to cache all the space that is going to
6758 * be free'd up by the truncate operation, but also have some slack
6759 * space reserved in case it uses space during the truncate (thank you
6760 * very much snapshotting).
6761 *
6762 * And we need these to all be seperate. The fact is we can use alot of
6763 * space doing the truncate, and we have no earthly idea how much space
6764 * we will use, so we need the truncate reservation to be seperate so it
6765 * doesn't end up using space reserved for updating the inode or
6766 * removing the orphan item. We also need to be able to stop the
6767 * transaction and start a new one, which means we need to be able to
6768 * update the inode several times, and we have no idea of knowing how
6769 * many times that will be, so we can't just reserve 1 item for the
6770 * entirety of the opration, so that has to be done seperately as well.
6771 * Then there is the orphan item, which does indeed need to be held on
6772 * to for the whole operation, and we need nobody to touch this reserved
6773 * space except the orphan code.
6774 *
6775 * So that leaves us with
6776 *
6777 * 1) root->orphan_block_rsv - for the orphan deletion.
6778 * 2) rsv - for the truncate reservation, which we will steal from the
6779 * transaction reservation.
6780 * 3) fs_info->trans_block_rsv - this will have 1 items worth left for
6781 * updating the inode.
6782 */
6783 rsv = btrfs_alloc_block_rsv(root);
6784 if (!rsv)
6785 return -ENOMEM;
Josef Bacik4a338542011-08-29 11:01:31 -04006786 rsv->size = min_size;
Josef Bacikf0cd8462011-03-04 14:37:08 -05006787
Josef Bacik907cbce2011-08-08 13:46:15 -04006788 /*
Josef Bacik07127182011-08-19 10:29:59 -04006789 * 1 for the truncate slack space
Josef Bacik907cbce2011-08-08 13:46:15 -04006790 * 1 for the orphan item we're going to add
6791 * 1 for the orphan item deletion
6792 * 1 for updating the inode.
6793 */
Josef Bacikfcb80c22011-05-03 10:40:22 -04006794 trans = btrfs_start_transaction(root, 4);
6795 if (IS_ERR(trans)) {
6796 err = PTR_ERR(trans);
6797 goto out;
6798 }
Josef Bacikf0cd8462011-03-04 14:37:08 -05006799
Josef Bacik907cbce2011-08-08 13:46:15 -04006800 /* Migrate the slack space for the truncate to our reserve */
6801 ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv, rsv,
6802 min_size);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006803 BUG_ON(ret);
Josef Bacikf0cd8462011-03-04 14:37:08 -05006804
6805 ret = btrfs_orphan_add(trans, inode);
6806 if (ret) {
6807 btrfs_end_transaction(trans, root);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006808 goto out;
Josef Bacikf0cd8462011-03-04 14:37:08 -05006809 }
6810
Chris Mason5a3f23d2009-03-31 13:27:11 -04006811 /*
6812 * setattr is responsible for setting the ordered_data_close flag,
6813 * but that is only tested during the last file release. That
6814 * could happen well after the next commit, leaving a great big
6815 * window where new writes may get lost if someone chooses to write
6816 * to this file after truncating to zero
6817 *
6818 * The inode doesn't have any dirty data here, and so if we commit
6819 * this is a noop. If someone immediately starts writing to the inode
6820 * it is very likely we'll catch some of their writes in this
6821 * transaction, and the commit will find this file on the ordered
6822 * data list with good things to send down.
6823 *
6824 * This is a best effort solution, there is still a window where
6825 * using truncate to replace the contents of the file will
6826 * end up with a zero length file after a crash.
6827 */
Josef Bacik72ac3c02012-05-23 14:13:11 -04006828 if (inode->i_size == 0 && test_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
6829 &BTRFS_I(inode)->runtime_flags))
Chris Mason5a3f23d2009-03-31 13:27:11 -04006830 btrfs_add_ordered_operation(trans, root, inode);
6831
Yan, Zheng80825102009-11-12 09:35:36 +00006832 while (1) {
Josef Bacik36ba0222011-10-18 12:15:48 -04006833 ret = btrfs_block_rsv_refill(root, rsv, min_size);
Josef Bacik907cbce2011-08-08 13:46:15 -04006834 if (ret) {
6835 /*
6836 * This can only happen with the original transaction we
6837 * started above, every other time we shouldn't have a
6838 * transaction started yet.
6839 */
6840 if (ret == -EAGAIN)
6841 goto end_trans;
6842 err = ret;
6843 break;
6844 }
6845
Yan, Zhengd68fc572010-05-16 10:49:58 -04006846 if (!trans) {
Josef Bacik907cbce2011-08-08 13:46:15 -04006847 /* Just need the 1 for updating the inode */
6848 trans = btrfs_start_transaction(root, 1);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006849 if (IS_ERR(trans)) {
Josef Bacik7041ee92011-12-09 13:26:22 -05006850 ret = err = PTR_ERR(trans);
6851 trans = NULL;
6852 break;
Josef Bacikfcb80c22011-05-03 10:40:22 -04006853 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04006854 }
6855
Josef Bacik907cbce2011-08-08 13:46:15 -04006856 trans->block_rsv = rsv;
6857
Yan, Zheng80825102009-11-12 09:35:36 +00006858 ret = btrfs_truncate_inode_items(trans, root, inode,
6859 inode->i_size,
6860 BTRFS_EXTENT_DATA_KEY);
Josef Bacik3893e332011-01-31 16:03:11 -05006861 if (ret != -EAGAIN) {
6862 err = ret;
Yan, Zheng80825102009-11-12 09:35:36 +00006863 break;
Josef Bacik3893e332011-01-31 16:03:11 -05006864 }
Chris Mason39279cc2007-06-12 06:35:45 -04006865
Josef Bacikfcb80c22011-05-03 10:40:22 -04006866 trans->block_rsv = &root->fs_info->trans_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00006867 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05006868 if (ret) {
6869 err = ret;
6870 break;
6871 }
Josef Bacik907cbce2011-08-08 13:46:15 -04006872end_trans:
Yan, Zheng80825102009-11-12 09:35:36 +00006873 nr = trans->blocks_used;
6874 btrfs_end_transaction(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -04006875 trans = NULL;
Yan, Zheng80825102009-11-12 09:35:36 +00006876 btrfs_btree_balance_dirty(root, nr);
Yan, Zheng80825102009-11-12 09:35:36 +00006877 }
6878
6879 if (ret == 0 && inode->i_nlink > 0) {
Josef Bacikfcb80c22011-05-03 10:40:22 -04006880 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00006881 ret = btrfs_orphan_del(trans, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05006882 if (ret)
6883 err = ret;
Josef Bacikded5db92011-03-04 14:09:46 -05006884 } else if (ret && inode->i_nlink > 0) {
6885 /*
6886 * Failed to do the truncate, remove us from the in memory
6887 * orphan list.
6888 */
6889 ret = btrfs_orphan_del(NULL, inode);
Yan, Zheng80825102009-11-12 09:35:36 +00006890 }
6891
Chris Mason917c16b2011-11-08 14:49:59 -05006892 if (trans) {
6893 trans->block_rsv = &root->fs_info->trans_block_rsv;
6894 ret = btrfs_update_inode(trans, root, inode);
6895 if (ret && !err)
6896 err = ret;
Josef Bacik7b128762008-07-24 12:17:14 -04006897
Chris Mason917c16b2011-11-08 14:49:59 -05006898 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05006899 ret = btrfs_end_transaction(trans, root);
Chris Mason917c16b2011-11-08 14:49:59 -05006900 btrfs_btree_balance_dirty(root, nr);
6901 }
Josef Bacikfcb80c22011-05-03 10:40:22 -04006902
6903out:
6904 btrfs_free_block_rsv(root, rsv);
6905
Josef Bacik3893e332011-01-31 16:03:11 -05006906 if (ret && !err)
6907 err = ret;
Josef Bacika41ad392011-01-31 15:30:16 -05006908
Josef Bacik3893e332011-01-31 16:03:11 -05006909 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04006910}
6911
Sven Wegener3b963622008-06-09 21:57:42 -04006912/*
Chris Masond352ac62008-09-29 15:18:18 -04006913 * create a new subvolume directory/inode (helper for the ioctl).
6914 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05006915int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Josef Bacikd82a6f12011-05-11 15:26:06 -04006916 struct btrfs_root *new_root, u64 new_dirid)
Chris Mason39279cc2007-06-12 06:35:45 -04006917{
Chris Mason39279cc2007-06-12 06:35:45 -04006918 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04006919 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006920 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006921
Florian Albrechtskirchinger12fc9d02012-02-10 22:15:54 +01006922 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2,
6923 new_dirid, new_dirid,
6924 S_IFDIR | (~current_umask() & S_IRWXUGO),
6925 &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04006926 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04006927 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006928 inode->i_op = &btrfs_dir_inode_operations;
6929 inode->i_fop = &btrfs_dir_file_operations;
6930
Miklos Szeredibfe86842011-10-28 14:13:29 +02006931 set_nlink(inode, 1);
Chris Masondbe674a2008-07-17 12:54:05 -04006932 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04006933
Yan, Zheng76dda932009-09-21 16:00:26 -04006934 err = btrfs_update_inode(trans, new_root, inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04006935
Yan, Zheng76dda932009-09-21 16:00:26 -04006936 iput(inode);
Mark Fashehce598972011-07-26 11:32:23 -07006937 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04006938}
6939
Chris Mason39279cc2007-06-12 06:35:45 -04006940struct inode *btrfs_alloc_inode(struct super_block *sb)
6941{
6942 struct btrfs_inode *ei;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006943 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04006944
6945 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
6946 if (!ei)
6947 return NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006948
6949 ei->root = NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006950 ei->generation = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04006951 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04006952 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04006953 ei->logged_trans = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006954 ei->delalloc_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006955 ei->disk_i_size = 0;
6956 ei->flags = 0;
Josef Bacik7709cde2011-08-04 10:25:02 -04006957 ei->csum_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006958 ei->index_cnt = (u64)-1;
6959 ei->last_unlink_trans = 0;
6960
Josef Bacik9e0baf62011-07-15 15:16:44 +00006961 spin_lock_init(&ei->lock);
6962 ei->outstanding_extents = 0;
6963 ei->reserved_extents = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006964
Josef Bacik72ac3c02012-05-23 14:13:11 -04006965 ei->runtime_flags = 0;
Li Zefan261507a02010-12-17 14:21:50 +08006966 ei->force_compress = BTRFS_COMPRESS_NONE;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006967
Miao Xie16cdcec2011-04-22 18:12:22 +08006968 ei->delayed_node = NULL;
6969
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006970 inode = &ei->vfs_inode;
David Sterbaa8067e02011-04-21 00:34:43 +02006971 extent_map_tree_init(&ei->extent_tree);
David Sterbaf993c882011-04-20 23:35:57 +02006972 extent_io_tree_init(&ei->io_tree, &inode->i_data);
6973 extent_io_tree_init(&ei->io_failure_tree, &inode->i_data);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04006974 ei->io_tree.track_uptodate = 1;
6975 ei->io_failure_tree.track_uptodate = 1;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006976 mutex_init(&ei->log_mutex);
Josef Bacikf2486792012-01-13 12:09:22 -05006977 mutex_init(&ei->delalloc_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006978 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006979 INIT_LIST_HEAD(&ei->delalloc_inodes);
Chris Mason5a3f23d2009-03-31 13:27:11 -04006980 INIT_LIST_HEAD(&ei->ordered_operations);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006981 RB_CLEAR_NODE(&ei->rb_node);
6982
6983 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04006984}
6985
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11006986static void btrfs_i_callback(struct rcu_head *head)
6987{
6988 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11006989 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
6990}
6991
Chris Mason39279cc2007-06-12 06:35:45 -04006992void btrfs_destroy_inode(struct inode *inode)
6993{
Chris Masone6dcd2d2008-07-17 12:53:50 -04006994 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006995 struct btrfs_root *root = BTRFS_I(inode)->root;
6996
Chris Mason39279cc2007-06-12 06:35:45 -04006997 WARN_ON(!list_empty(&inode->i_dentry));
6998 WARN_ON(inode->i_data.nrpages);
Josef Bacik9e0baf62011-07-15 15:16:44 +00006999 WARN_ON(BTRFS_I(inode)->outstanding_extents);
7000 WARN_ON(BTRFS_I(inode)->reserved_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04007001 WARN_ON(BTRFS_I(inode)->delalloc_bytes);
7002 WARN_ON(BTRFS_I(inode)->csum_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -04007003
Chris Mason5a3f23d2009-03-31 13:27:11 -04007004 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05007005 * This can happen where we create an inode, but somebody else also
7006 * created the same inode and we need to destroy the one we already
7007 * created.
7008 */
7009 if (!root)
7010 goto free;
7011
7012 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04007013 * Make sure we're properly removed from the ordered operation
7014 * lists.
7015 */
7016 smp_mb();
7017 if (!list_empty(&BTRFS_I(inode)->ordered_operations)) {
7018 spin_lock(&root->fs_info->ordered_extent_lock);
7019 list_del_init(&BTRFS_I(inode)->ordered_operations);
7020 spin_unlock(&root->fs_info->ordered_extent_lock);
7021 }
7022
Josef Bacik8a35d952012-05-23 14:26:42 -04007023 if (test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
7024 &BTRFS_I(inode)->runtime_flags)) {
Li Zefan33345d012011-04-20 10:31:50 +08007025 printk(KERN_INFO "BTRFS: inode %llu still on the orphan list\n",
7026 (unsigned long long)btrfs_ino(inode));
Josef Bacik8a35d952012-05-23 14:26:42 -04007027 atomic_dec(&root->orphan_inodes);
Josef Bacik7b128762008-07-24 12:17:14 -04007028 }
Josef Bacik7b128762008-07-24 12:17:14 -04007029
Chris Masond3977122009-01-05 21:25:51 -05007030 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04007031 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
7032 if (!ordered)
7033 break;
7034 else {
Chris Masond3977122009-01-05 21:25:51 -05007035 printk(KERN_ERR "btrfs found ordered "
7036 "extent %llu %llu on inode cleanup\n",
7037 (unsigned long long)ordered->file_offset,
7038 (unsigned long long)ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007039 btrfs_remove_ordered_extent(inode, ordered);
7040 btrfs_put_ordered_extent(ordered);
7041 btrfs_put_ordered_extent(ordered);
7042 }
7043 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007044 inode_tree_del(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007045 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
Josef Bacika6dbd422009-11-11 15:53:34 -05007046free:
Miao Xie16cdcec2011-04-22 18:12:22 +08007047 btrfs_remove_delayed_node(inode);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11007048 call_rcu(&inode->i_rcu, btrfs_i_callback);
Chris Mason39279cc2007-06-12 06:35:45 -04007049}
7050
Al Viro45321ac2010-06-07 13:43:19 -04007051int btrfs_drop_inode(struct inode *inode)
Yan, Zheng76dda932009-09-21 16:00:26 -04007052{
7053 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro45321ac2010-06-07 13:43:19 -04007054
Josef Bacik0af3d002010-06-21 14:48:16 -04007055 if (btrfs_root_refs(&root->root_item) == 0 &&
Liu Bo83eea1f2012-07-10 05:28:39 -06007056 !btrfs_is_free_space_inode(inode))
Al Viro45321ac2010-06-07 13:43:19 -04007057 return 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04007058 else
Al Viro45321ac2010-06-07 13:43:19 -04007059 return generic_drop_inode(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04007060}
7061
Sven Wegener0ee0fda2008-07-30 16:54:26 -04007062static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04007063{
7064 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
7065
7066 inode_init_once(&ei->vfs_inode);
7067}
7068
7069void btrfs_destroy_cachep(void)
7070{
7071 if (btrfs_inode_cachep)
7072 kmem_cache_destroy(btrfs_inode_cachep);
7073 if (btrfs_trans_handle_cachep)
7074 kmem_cache_destroy(btrfs_trans_handle_cachep);
7075 if (btrfs_transaction_cachep)
7076 kmem_cache_destroy(btrfs_transaction_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04007077 if (btrfs_path_cachep)
7078 kmem_cache_destroy(btrfs_path_cachep);
Josef Bacikdc89e982011-01-28 17:05:48 -05007079 if (btrfs_free_space_cachep)
7080 kmem_cache_destroy(btrfs_free_space_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04007081}
7082
7083int btrfs_init_cachep(void)
7084{
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007085 btrfs_inode_cachep = kmem_cache_create("btrfs_inode_cache",
7086 sizeof(struct btrfs_inode), 0,
7087 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04007088 if (!btrfs_inode_cachep)
7089 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007090
7091 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle_cache",
7092 sizeof(struct btrfs_trans_handle), 0,
7093 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04007094 if (!btrfs_trans_handle_cachep)
7095 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007096
7097 btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction_cache",
7098 sizeof(struct btrfs_transaction), 0,
7099 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04007100 if (!btrfs_transaction_cachep)
7101 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007102
7103 btrfs_path_cachep = kmem_cache_create("btrfs_path_cache",
7104 sizeof(struct btrfs_path), 0,
7105 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04007106 if (!btrfs_path_cachep)
7107 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007108
Josef Bacikdc89e982011-01-28 17:05:48 -05007109 btrfs_free_space_cachep = kmem_cache_create("btrfs_free_space_cache",
7110 sizeof(struct btrfs_free_space), 0,
7111 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
7112 if (!btrfs_free_space_cachep)
7113 goto fail;
7114
Chris Mason39279cc2007-06-12 06:35:45 -04007115 return 0;
7116fail:
7117 btrfs_destroy_cachep();
7118 return -ENOMEM;
7119}
7120
7121static int btrfs_getattr(struct vfsmount *mnt,
7122 struct dentry *dentry, struct kstat *stat)
7123{
7124 struct inode *inode = dentry->d_inode;
David Sterbafadc0d82011-11-20 07:33:38 -05007125 u32 blocksize = inode->i_sb->s_blocksize;
7126
Chris Mason39279cc2007-06-12 06:35:45 -04007127 generic_fillattr(inode, stat);
Al Viro0ee5dc62011-07-07 15:44:25 -04007128 stat->dev = BTRFS_I(inode)->root->anon_dev;
Chris Masond6667462008-01-03 14:51:00 -05007129 stat->blksize = PAGE_CACHE_SIZE;
David Sterbafadc0d82011-11-20 07:33:38 -05007130 stat->blocks = (ALIGN(inode_get_bytes(inode), blocksize) +
7131 ALIGN(BTRFS_I(inode)->delalloc_bytes, blocksize)) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04007132 return 0;
7133}
7134
Liu Bo75e7cb72011-03-22 10:12:20 +00007135/*
7136 * If a file is moved, it will inherit the cow and compression flags of the new
7137 * directory.
7138 */
7139static void fixup_inode_flags(struct inode *dir, struct inode *inode)
7140{
7141 struct btrfs_inode *b_dir = BTRFS_I(dir);
7142 struct btrfs_inode *b_inode = BTRFS_I(inode);
7143
7144 if (b_dir->flags & BTRFS_INODE_NODATACOW)
7145 b_inode->flags |= BTRFS_INODE_NODATACOW;
7146 else
7147 b_inode->flags &= ~BTRFS_INODE_NODATACOW;
7148
Liu Bobc178232012-06-14 02:23:18 -06007149 if (b_dir->flags & BTRFS_INODE_COMPRESS) {
Liu Bo75e7cb72011-03-22 10:12:20 +00007150 b_inode->flags |= BTRFS_INODE_COMPRESS;
Liu Bobc178232012-06-14 02:23:18 -06007151 b_inode->flags &= ~BTRFS_INODE_NOCOMPRESS;
7152 } else {
7153 b_inode->flags &= ~(BTRFS_INODE_COMPRESS |
7154 BTRFS_INODE_NOCOMPRESS);
7155 }
Liu Bo75e7cb72011-03-22 10:12:20 +00007156}
7157
Chris Masond3977122009-01-05 21:25:51 -05007158static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
7159 struct inode *new_dir, struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04007160{
7161 struct btrfs_trans_handle *trans;
7162 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007163 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04007164 struct inode *new_inode = new_dentry->d_inode;
7165 struct inode *old_inode = old_dentry->d_inode;
7166 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04007167 u64 index = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007168 u64 root_objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04007169 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08007170 u64 old_ino = btrfs_ino(old_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007171
Li Zefan33345d012011-04-20 10:31:50 +08007172 if (btrfs_ino(new_dir) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhengf679a842009-09-24 09:17:31 -04007173 return -EPERM;
7174
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007175 /* we only allow rename subvolume link between subvolumes */
Li Zefan33345d012011-04-20 10:31:50 +08007176 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05007177 return -EXDEV;
7178
Li Zefan33345d012011-04-20 10:31:50 +08007179 if (old_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
7180 (new_inode && btrfs_ino(new_inode) == BTRFS_FIRST_FREE_OBJECTID))
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007181 return -ENOTEMPTY;
7182
Chris Mason39279cc2007-06-12 06:35:45 -04007183 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007184 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04007185 return -ENOTEMPTY;
Chris Mason5a3f23d2009-03-31 13:27:11 -04007186 /*
7187 * we're using rename to replace one file with another.
7188 * and the replacement file is large. Start IO on it now so
7189 * we don't add too much work to the end of the transaction
7190 */
Bartlomiej Zolnierkiewicz4baf8c92009-08-07 13:47:08 -04007191 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size &&
Chris Mason5a3f23d2009-03-31 13:27:11 -04007192 old_inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
7193 filemap_flush(old_inode->i_mapping);
7194
Yan, Zheng76dda932009-09-21 16:00:26 -04007195 /* close the racy window with snapshot create/destroy ioctl */
Li Zefan33345d012011-04-20 10:31:50 +08007196 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04007197 down_read(&root->fs_info->subvol_sem);
Yan, Zhenga22285a2010-05-16 10:48:46 -04007198 /*
7199 * We want to reserve the absolute worst case amount of items. So if
7200 * both inodes are subvols and we need to unlink them then that would
7201 * require 4 item modifications, but if they are both normal inodes it
7202 * would require 5 item modifications, so we'll assume their normal
7203 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
7204 * should cover the worst case number of items we'll modify.
7205 */
7206 trans = btrfs_start_transaction(root, 20);
Johann Lombardib44c59a2011-03-31 13:23:47 +00007207 if (IS_ERR(trans)) {
7208 ret = PTR_ERR(trans);
7209 goto out_notrans;
7210 }
Chris Mason5f39d392007-10-15 16:14:19 -04007211
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007212 if (dest != root)
7213 btrfs_record_root_in_trans(trans, dest);
7214
Yan, Zhenga5719522009-09-24 09:17:31 -04007215 ret = btrfs_set_inode_index(new_dir, &index);
7216 if (ret)
7217 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04007218
Li Zefan33345d012011-04-20 10:31:50 +08007219 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007220 /* force full log commit if subvolume involved. */
7221 root->fs_info->last_trans_log_full_commit = trans->transid;
7222 } else {
Yan, Zhenga5719522009-09-24 09:17:31 -04007223 ret = btrfs_insert_inode_ref(trans, dest,
7224 new_dentry->d_name.name,
7225 new_dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08007226 old_ino,
7227 btrfs_ino(new_dir), index);
Yan, Zhenga5719522009-09-24 09:17:31 -04007228 if (ret)
7229 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007230 /*
7231 * this is an ugly little race, but the rename is required
7232 * to make sure that if we crash, the inode is either at the
7233 * old name or the new one. pinning the log transaction lets
7234 * us make sure we don't allow a log commit to come in after
7235 * we unlink the name but before we add the new name back in.
7236 */
7237 btrfs_pin_log_trans(root);
7238 }
Chris Mason12fcfd22009-03-24 10:24:20 -04007239 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04007240 * make sure the inode gets flushed if it is replacing
7241 * something.
7242 */
Li Zefan33345d012011-04-20 10:31:50 +08007243 if (new_inode && new_inode->i_size && S_ISREG(old_inode->i_mode))
Chris Mason5a3f23d2009-03-31 13:27:11 -04007244 btrfs_add_ordered_operation(trans, root, old_inode);
Chris Mason5a3f23d2009-03-31 13:27:11 -04007245
Josef Bacik0c4d2d92012-04-05 15:03:02 -04007246 inode_inc_iversion(old_dir);
7247 inode_inc_iversion(new_dir);
7248 inode_inc_iversion(old_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007249 old_dir->i_ctime = old_dir->i_mtime = ctime;
7250 new_dir->i_ctime = new_dir->i_mtime = ctime;
7251 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04007252
Chris Mason12fcfd22009-03-24 10:24:20 -04007253 if (old_dentry->d_parent != new_dentry->d_parent)
7254 btrfs_record_unlink_dir(trans, old_dir, old_inode, 1);
7255
Li Zefan33345d012011-04-20 10:31:50 +08007256 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007257 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
7258 ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid,
7259 old_dentry->d_name.name,
7260 old_dentry->d_name.len);
7261 } else {
Al Viro92986792011-03-04 17:14:37 +00007262 ret = __btrfs_unlink_inode(trans, root, old_dir,
7263 old_dentry->d_inode,
7264 old_dentry->d_name.name,
7265 old_dentry->d_name.len);
7266 if (!ret)
7267 ret = btrfs_update_inode(trans, root, old_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007268 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007269 if (ret) {
7270 btrfs_abort_transaction(trans, root, ret);
7271 goto out_fail;
7272 }
Chris Mason39279cc2007-06-12 06:35:45 -04007273
7274 if (new_inode) {
Josef Bacik0c4d2d92012-04-05 15:03:02 -04007275 inode_inc_iversion(new_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007276 new_inode->i_ctime = CURRENT_TIME;
Li Zefan33345d012011-04-20 10:31:50 +08007277 if (unlikely(btrfs_ino(new_inode) ==
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007278 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
7279 root_objectid = BTRFS_I(new_inode)->location.objectid;
7280 ret = btrfs_unlink_subvol(trans, dest, new_dir,
7281 root_objectid,
7282 new_dentry->d_name.name,
7283 new_dentry->d_name.len);
7284 BUG_ON(new_inode->i_nlink == 0);
7285 } else {
7286 ret = btrfs_unlink_inode(trans, dest, new_dir,
7287 new_dentry->d_inode,
7288 new_dentry->d_name.name,
7289 new_dentry->d_name.len);
7290 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007291 if (!ret && new_inode->i_nlink == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04007292 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007293 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04007294 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007295 if (ret) {
7296 btrfs_abort_transaction(trans, root, ret);
7297 goto out_fail;
7298 }
Chris Mason39279cc2007-06-12 06:35:45 -04007299 }
Josef Bacikaec74772008-07-24 12:12:38 -04007300
Liu Bo75e7cb72011-03-22 10:12:20 +00007301 fixup_inode_flags(new_dir, old_inode);
7302
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007303 ret = btrfs_add_link(trans, new_dir, old_inode,
7304 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04007305 new_dentry->d_name.len, 0, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007306 if (ret) {
7307 btrfs_abort_transaction(trans, root, ret);
7308 goto out_fail;
7309 }
Chris Mason39279cc2007-06-12 06:35:45 -04007310
Li Zefan33345d012011-04-20 10:31:50 +08007311 if (old_ino != BTRFS_FIRST_FREE_OBJECTID) {
Al Viro10d9f302011-07-16 23:09:10 -04007312 struct dentry *parent = new_dentry->d_parent;
Josef Bacik6a912212010-11-20 09:48:00 +00007313 btrfs_log_new_name(trans, old_inode, old_dir, parent);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007314 btrfs_end_log_trans(root);
7315 }
Chris Mason39279cc2007-06-12 06:35:45 -04007316out_fail:
Josef Bacik7ad85bb2012-01-12 19:10:12 -05007317 btrfs_end_transaction(trans, root);
Johann Lombardib44c59a2011-03-31 13:23:47 +00007318out_notrans:
Li Zefan33345d012011-04-20 10:31:50 +08007319 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04007320 up_read(&root->fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04007321
Chris Mason39279cc2007-06-12 06:35:45 -04007322 return ret;
7323}
7324
Chris Masond352ac62008-09-29 15:18:18 -04007325/*
7326 * some fairly slow code that needs optimization. This walks the list
7327 * of all the inodes with pending delalloc and forces them to disk.
7328 */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00007329int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput)
Chris Masonea8c2812008-08-04 23:17:27 -04007330{
7331 struct list_head *head = &root->fs_info->delalloc_inodes;
7332 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007333 struct inode *inode;
Chris Masonea8c2812008-08-04 23:17:27 -04007334
Yan Zhengc146afa2008-11-12 14:34:12 -05007335 if (root->fs_info->sb->s_flags & MS_RDONLY)
7336 return -EROFS;
7337
Chris Mason75eff682008-12-15 15:54:40 -05007338 spin_lock(&root->fs_info->delalloc_lock);
Chris Masond3977122009-01-05 21:25:51 -05007339 while (!list_empty(head)) {
Chris Masonea8c2812008-08-04 23:17:27 -04007340 binode = list_entry(head->next, struct btrfs_inode,
7341 delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007342 inode = igrab(&binode->vfs_inode);
7343 if (!inode)
7344 list_del_init(&binode->delalloc_inodes);
Chris Mason75eff682008-12-15 15:54:40 -05007345 spin_unlock(&root->fs_info->delalloc_lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007346 if (inode) {
Chris Mason8c8bee12008-09-29 11:19:10 -04007347 filemap_flush(inode->i_mapping);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00007348 if (delay_iput)
7349 btrfs_add_delayed_iput(inode);
7350 else
7351 iput(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007352 }
7353 cond_resched();
Chris Mason75eff682008-12-15 15:54:40 -05007354 spin_lock(&root->fs_info->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04007355 }
Chris Mason75eff682008-12-15 15:54:40 -05007356 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -04007357
7358 /* the filemap_flush will queue IO into the worker threads, but
7359 * we have to make sure the IO is actually started and that
7360 * ordered extents get created before we return
7361 */
7362 atomic_inc(&root->fs_info->async_submit_draining);
Chris Masond3977122009-01-05 21:25:51 -05007363 while (atomic_read(&root->fs_info->nr_async_submits) ||
Chris Mason771ed682008-11-06 22:02:51 -05007364 atomic_read(&root->fs_info->async_delalloc_pages)) {
Chris Mason8c8bee12008-09-29 11:19:10 -04007365 wait_event(root->fs_info->async_submit_wait,
Chris Mason771ed682008-11-06 22:02:51 -05007366 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
7367 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee12008-09-29 11:19:10 -04007368 }
7369 atomic_dec(&root->fs_info->async_submit_draining);
Chris Masonea8c2812008-08-04 23:17:27 -04007370 return 0;
7371}
7372
Chris Mason39279cc2007-06-12 06:35:45 -04007373static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
7374 const char *symname)
7375{
7376 struct btrfs_trans_handle *trans;
7377 struct btrfs_root *root = BTRFS_I(dir)->root;
7378 struct btrfs_path *path;
7379 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05007380 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04007381 int err;
7382 int drop_inode = 0;
7383 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04007384 u64 index = 0 ;
Chris Mason39279cc2007-06-12 06:35:45 -04007385 int name_len;
7386 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04007387 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04007388 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04007389 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05007390 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007391
7392 name_len = strlen(symname) + 1;
7393 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
7394 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05007395
Josef Bacik9ed74f22009-09-11 16:12:44 -04007396 /*
7397 * 2 items for inode item and ref
7398 * 2 items for dir items
7399 * 1 item for xattr if selinux is on
7400 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04007401 trans = btrfs_start_transaction(root, 5);
7402 if (IS_ERR(trans))
7403 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05007404
Li Zefan581bb052011-04-20 10:06:11 +08007405 err = btrfs_find_free_ino(root, &objectid);
7406 if (err)
7407 goto out_unlock;
7408
Josef Bacikaec74772008-07-24 12:12:38 -04007409 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08007410 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04007411 S_IFLNK|S_IRWXUGO, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04007412 if (IS_ERR(inode)) {
7413 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007414 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04007415 }
Chris Mason39279cc2007-06-12 06:35:45 -04007416
Eric Paris2a7dba32011-02-01 11:05:39 -05007417 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04007418 if (err) {
7419 drop_inode = 1;
7420 goto out_unlock;
7421 }
7422
Casey Schauflerad19db72011-12-15 10:09:07 -05007423 /*
7424 * If the active LSM wants to access the inode during
7425 * d_instantiate it needs these. Smack checks to see
7426 * if the filesystem supports xattrs by looking at the
7427 * ops vector.
7428 */
7429 inode->i_fop = &btrfs_file_operations;
7430 inode->i_op = &btrfs_file_inode_operations;
7431
Josef Bacika1b075d2010-11-19 20:36:11 +00007432 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04007433 if (err)
7434 drop_inode = 1;
7435 else {
7436 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04007437 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05007438 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04007439 }
Chris Mason39279cc2007-06-12 06:35:45 -04007440 if (drop_inode)
7441 goto out_unlock;
7442
7443 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07007444 if (!path) {
7445 err = -ENOMEM;
7446 drop_inode = 1;
7447 goto out_unlock;
7448 }
Li Zefan33345d012011-04-20 10:31:50 +08007449 key.objectid = btrfs_ino(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007450 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007451 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
7452 datasize = btrfs_file_extent_calc_inline_size(name_len);
7453 err = btrfs_insert_empty_item(trans, root, path, &key,
7454 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04007455 if (err) {
7456 drop_inode = 1;
Julia Lawallb0839162011-05-14 07:10:51 +00007457 btrfs_free_path(path);
Chris Mason54aa1f42007-06-22 14:16:25 -04007458 goto out_unlock;
7459 }
Chris Mason5f39d392007-10-15 16:14:19 -04007460 leaf = path->nodes[0];
7461 ei = btrfs_item_ptr(leaf, path->slots[0],
7462 struct btrfs_file_extent_item);
7463 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
7464 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04007465 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -04007466 btrfs_set_file_extent_encryption(leaf, ei, 0);
7467 btrfs_set_file_extent_compression(leaf, ei, 0);
7468 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
7469 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
7470
Chris Mason39279cc2007-06-12 06:35:45 -04007471 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04007472 write_extent_buffer(leaf, symname, ptr, name_len);
7473 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04007474 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04007475
Chris Mason39279cc2007-06-12 06:35:45 -04007476 inode->i_op = &btrfs_symlink_inode_operations;
7477 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04007478 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Yan Zhengd899e052008-10-30 14:25:28 -04007479 inode_set_bytes(inode, name_len);
Chris Masondbe674a2008-07-17 12:54:05 -04007480 btrfs_i_size_write(inode, name_len - 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04007481 err = btrfs_update_inode(trans, root, inode);
7482 if (err)
7483 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04007484
7485out_unlock:
Al Viro08c422c2011-12-23 07:58:13 -05007486 if (!err)
7487 d_instantiate(dentry, inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04007488 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05007489 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04007490 if (drop_inode) {
7491 inode_dec_link_count(inode);
7492 iput(inode);
7493 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04007494 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04007495 return err;
7496}
Chris Mason16432982008-04-10 10:23:21 -04007497
Josef Bacik0af3d002010-06-21 14:48:16 -04007498static int __btrfs_prealloc_file_range(struct inode *inode, int mode,
7499 u64 start, u64 num_bytes, u64 min_size,
7500 loff_t actual_len, u64 *alloc_hint,
7501 struct btrfs_trans_handle *trans)
Yan Zhengd899e052008-10-30 14:25:28 -04007502{
Yan Zhengd899e052008-10-30 14:25:28 -04007503 struct btrfs_root *root = BTRFS_I(inode)->root;
7504 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -04007505 u64 cur_offset = start;
Josef Bacik55a61d12010-11-22 18:50:32 +00007506 u64 i_size;
Yan Zhengd899e052008-10-30 14:25:28 -04007507 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04007508 bool own_trans = true;
Yan Zhengd899e052008-10-30 14:25:28 -04007509
Josef Bacik0af3d002010-06-21 14:48:16 -04007510 if (trans)
7511 own_trans = false;
Yan Zhengd899e052008-10-30 14:25:28 -04007512 while (num_bytes > 0) {
Josef Bacik0af3d002010-06-21 14:48:16 -04007513 if (own_trans) {
7514 trans = btrfs_start_transaction(root, 3);
7515 if (IS_ERR(trans)) {
7516 ret = PTR_ERR(trans);
7517 break;
7518 }
Yan Zhengd899e052008-10-30 14:25:28 -04007519 }
Yan, Zheng5a303d52009-11-12 09:34:52 +00007520
Yan, Zhengefa56462010-05-16 10:49:59 -04007521 ret = btrfs_reserve_extent(trans, root, num_bytes, min_size,
Josef Bacik81c9ad22012-01-18 10:56:06 -05007522 0, *alloc_hint, &ins, 1);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007523 if (ret) {
Josef Bacik0af3d002010-06-21 14:48:16 -04007524 if (own_trans)
7525 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04007526 break;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007527 }
7528
Yan Zhengd899e052008-10-30 14:25:28 -04007529 ret = insert_reserved_file_extent(trans, inode,
7530 cur_offset, ins.objectid,
7531 ins.offset, ins.offset,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00007532 ins.offset, 0, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04007533 BTRFS_FILE_EXTENT_PREALLOC);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007534 if (ret) {
7535 btrfs_abort_transaction(trans, root, ret);
7536 if (own_trans)
7537 btrfs_end_transaction(trans, root);
7538 break;
7539 }
Chris Masona1ed8352009-09-11 12:27:37 -04007540 btrfs_drop_extent_cache(inode, cur_offset,
7541 cur_offset + ins.offset -1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007542
Yan Zhengd899e052008-10-30 14:25:28 -04007543 num_bytes -= ins.offset;
7544 cur_offset += ins.offset;
Yan, Zhengefa56462010-05-16 10:49:59 -04007545 *alloc_hint = ins.objectid + ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007546
Josef Bacik0c4d2d92012-04-05 15:03:02 -04007547 inode_inc_iversion(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04007548 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +02007549 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -04007550 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
Yan, Zhengefa56462010-05-16 10:49:59 -04007551 (actual_len > inode->i_size) &&
7552 (cur_offset > inode->i_size)) {
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00007553 if (cur_offset > actual_len)
Josef Bacik55a61d12010-11-22 18:50:32 +00007554 i_size = actual_len;
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00007555 else
Josef Bacik55a61d12010-11-22 18:50:32 +00007556 i_size = cur_offset;
7557 i_size_write(inode, i_size);
7558 btrfs_ordered_update_i_size(inode, i_size, NULL);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007559 }
7560
Yan Zhengd899e052008-10-30 14:25:28 -04007561 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007562
7563 if (ret) {
7564 btrfs_abort_transaction(trans, root, ret);
7565 if (own_trans)
7566 btrfs_end_transaction(trans, root);
7567 break;
7568 }
Yan Zhengd899e052008-10-30 14:25:28 -04007569
Josef Bacik0af3d002010-06-21 14:48:16 -04007570 if (own_trans)
7571 btrfs_end_transaction(trans, root);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007572 }
Yan Zhengd899e052008-10-30 14:25:28 -04007573 return ret;
7574}
7575
Josef Bacik0af3d002010-06-21 14:48:16 -04007576int btrfs_prealloc_file_range(struct inode *inode, int mode,
7577 u64 start, u64 num_bytes, u64 min_size,
7578 loff_t actual_len, u64 *alloc_hint)
7579{
7580 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
7581 min_size, actual_len, alloc_hint,
7582 NULL);
7583}
7584
7585int btrfs_prealloc_file_range_trans(struct inode *inode,
7586 struct btrfs_trans_handle *trans, int mode,
7587 u64 start, u64 num_bytes, u64 min_size,
7588 loff_t actual_len, u64 *alloc_hint)
7589{
7590 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
7591 min_size, actual_len, alloc_hint, trans);
7592}
7593
Chris Masone6dcd2d2008-07-17 12:53:50 -04007594static int btrfs_set_page_dirty(struct page *page)
7595{
Chris Masone6dcd2d2008-07-17 12:53:50 -04007596 return __set_page_dirty_nobuffers(page);
7597}
7598
Al Viro10556cb2011-06-20 19:28:19 -04007599static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -05007600{
Li Zefanb83cc962010-12-20 16:04:08 +08007601 struct btrfs_root *root = BTRFS_I(inode)->root;
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +00007602 umode_t mode = inode->i_mode;
Li Zefanb83cc962010-12-20 16:04:08 +08007603
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +00007604 if (mask & MAY_WRITE &&
7605 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) {
7606 if (btrfs_root_readonly(root))
7607 return -EROFS;
7608 if (BTRFS_I(inode)->flags & BTRFS_INODE_READONLY)
7609 return -EACCES;
7610 }
Al Viro2830ba72011-06-20 19:16:29 -04007611 return generic_permission(inode, mask);
Yanfdebe2b2008-01-14 13:26:08 -05007612}
Chris Mason39279cc2007-06-12 06:35:45 -04007613
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007614static const struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -05007615 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -04007616 .lookup = btrfs_lookup,
7617 .create = btrfs_create,
7618 .unlink = btrfs_unlink,
7619 .link = btrfs_link,
7620 .mkdir = btrfs_mkdir,
7621 .rmdir = btrfs_rmdir,
7622 .rename = btrfs_rename,
7623 .symlink = btrfs_symlink,
7624 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04007625 .mknod = btrfs_mknod,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007626 .setxattr = btrfs_setxattr,
7627 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05007628 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007629 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05007630 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007631 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04007632};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007633static const struct inode_operations btrfs_dir_ro_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007634 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05007635 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007636 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04007637};
Yan, Zheng76dda932009-09-21 16:00:26 -04007638
Alexey Dobriyan828c0952009-10-01 15:43:56 -07007639static const struct file_operations btrfs_dir_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007640 .llseek = generic_file_llseek,
7641 .read = generic_read_dir,
David Woodhousecbdf5a22008-08-06 19:42:33 +01007642 .readdir = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04007643 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04007644#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04007645 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04007646#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04007647 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -04007648 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -04007649};
7650
Chris Masond1310b22008-01-24 16:13:08 -05007651static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04007652 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05007653 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04007654 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04007655 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04007656 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04007657 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05007658 .set_bit_hook = btrfs_set_bit_hook,
7659 .clear_bit_hook = btrfs_clear_bit_hook,
Josef Bacik9ed74f22009-09-11 16:12:44 -04007660 .merge_extent_hook = btrfs_merge_extent_hook,
7661 .split_extent_hook = btrfs_split_extent_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04007662};
7663
Chris Mason35054392009-01-21 13:11:13 -05007664/*
7665 * btrfs doesn't support the bmap operation because swapfiles
7666 * use bmap to make a mapping of extents in the file. They assume
7667 * these extents won't change over the life of the file and they
7668 * use the bmap result to do IO directly to the drive.
7669 *
7670 * the btrfs bmap call would return logical addresses that aren't
7671 * suitable for IO and they also will change frequently as COW
7672 * operations happen. So, swapfile + btrfs == corruption.
7673 *
7674 * For now we're avoiding this by dropping bmap.
7675 */
Alexey Dobriyan7f094102009-09-21 17:01:10 -07007676static const struct address_space_operations btrfs_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04007677 .readpage = btrfs_readpage,
7678 .writepage = btrfs_writepage,
Chris Masonb293f022007-11-01 19:45:34 -04007679 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05007680 .readpages = btrfs_readpages,
Chris Mason16432982008-04-10 10:23:21 -04007681 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04007682 .invalidatepage = btrfs_invalidatepage,
7683 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04007684 .set_page_dirty = btrfs_set_page_dirty,
Andi Kleen465fdd92009-09-16 11:50:18 +02007685 .error_remove_page = generic_error_remove_page,
Chris Mason39279cc2007-06-12 06:35:45 -04007686};
7687
Alexey Dobriyan7f094102009-09-21 17:01:10 -07007688static const struct address_space_operations btrfs_symlink_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04007689 .readpage = btrfs_readpage,
7690 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04007691 .invalidatepage = btrfs_invalidatepage,
7692 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04007693};
7694
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007695static const struct inode_operations btrfs_file_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007696 .getattr = btrfs_getattr,
7697 .setattr = btrfs_setattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007698 .setxattr = btrfs_setxattr,
7699 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05007700 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007701 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05007702 .permission = btrfs_permission,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05007703 .fiemap = btrfs_fiemap,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007704 .get_acl = btrfs_get_acl,
Josef Bacike41f9412012-03-26 09:46:47 -04007705 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -04007706};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007707static const struct inode_operations btrfs_special_inode_operations = {
Josef Bacik618e21d2007-07-11 10:18:17 -04007708 .getattr = btrfs_getattr,
7709 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05007710 .permission = btrfs_permission,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007711 .setxattr = btrfs_setxattr,
7712 .getxattr = btrfs_getxattr,
Josef Bacik33268ea2008-07-24 12:16:36 -04007713 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007714 .removexattr = btrfs_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007715 .get_acl = btrfs_get_acl,
Josef Bacike41f9412012-03-26 09:46:47 -04007716 .update_time = btrfs_update_time,
Josef Bacik618e21d2007-07-11 10:18:17 -04007717};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007718static const struct inode_operations btrfs_symlink_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007719 .readlink = generic_readlink,
7720 .follow_link = page_follow_link_light,
7721 .put_link = page_put_link,
Li Zefanf2095612010-11-19 02:05:24 +00007722 .getattr = btrfs_getattr,
Josef Bacik22c44fe2011-11-30 10:45:38 -05007723 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05007724 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -05007725 .setxattr = btrfs_setxattr,
7726 .getxattr = btrfs_getxattr,
7727 .listxattr = btrfs_listxattr,
7728 .removexattr = btrfs_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007729 .get_acl = btrfs_get_acl,
Josef Bacike41f9412012-03-26 09:46:47 -04007730 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -04007731};
Yan, Zheng76dda932009-09-21 16:00:26 -04007732
Alexey Dobriyan82d339d2009-10-09 09:54:36 -04007733const struct dentry_operations btrfs_dentry_operations = {
Yan, Zheng76dda932009-09-21 16:00:26 -04007734 .d_delete = btrfs_dentry_delete,
Josef Bacikb4aff1f2011-06-28 16:18:59 -04007735 .d_release = btrfs_dentry_release,
Yan, Zheng76dda932009-09-21 16:00:26 -04007736};