blob: ccd6355af73fd545a92c1e947158ca32a618b2f4 [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
Chris Mason2cf85722011-07-26 15:35:09 -0400828 BUG_ON(btrfs_is_free_space_inode(root, 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);
989 if (num_added == 0)
990 async_cow->inode = NULL;
991}
992
993/*
994 * work queue call back to submit previously compressed pages
995 */
996static noinline void async_cow_submit(struct btrfs_work *work)
997{
998 struct async_cow *async_cow;
999 struct btrfs_root *root;
1000 unsigned long nr_pages;
1001
1002 async_cow = container_of(work, struct async_cow, work);
1003
1004 root = async_cow->root;
1005 nr_pages = (async_cow->end - async_cow->start + PAGE_CACHE_SIZE) >>
1006 PAGE_CACHE_SHIFT;
1007
1008 atomic_sub(nr_pages, &root->fs_info->async_delalloc_pages);
1009
1010 if (atomic_read(&root->fs_info->async_delalloc_pages) <
1011 5 * 1042 * 1024 &&
1012 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);
1023 kfree(async_cow);
1024}
1025
1026static int cow_file_range_async(struct inode *inode, struct page *locked_page,
1027 u64 start, u64 end, int *page_started,
1028 unsigned long *nr_written)
1029{
1030 struct async_cow *async_cow;
1031 struct btrfs_root *root = BTRFS_I(inode)->root;
1032 unsigned long nr_pages;
1033 u64 cur_end;
1034 int limit = 10 * 1024 * 1042;
1035
Chris Masona3429ab2009-10-08 12:30:20 -04001036 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED,
1037 1, 0, NULL, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -05001038 while (start < end) {
Chris Mason771ed682008-11-06 22:02:51 -05001039 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001040 BUG_ON(!async_cow); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -05001041 async_cow->inode = inode;
1042 async_cow->root = root;
1043 async_cow->locked_page = locked_page;
1044 async_cow->start = start;
1045
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001046 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS)
Chris Mason771ed682008-11-06 22:02:51 -05001047 cur_end = end;
1048 else
1049 cur_end = min(end, start + 512 * 1024 - 1);
1050
1051 async_cow->end = cur_end;
1052 INIT_LIST_HEAD(&async_cow->extents);
1053
1054 async_cow->work.func = async_cow_start;
1055 async_cow->work.ordered_func = async_cow_submit;
1056 async_cow->work.ordered_free = async_cow_free;
1057 async_cow->work.flags = 0;
1058
Chris Mason771ed682008-11-06 22:02:51 -05001059 nr_pages = (cur_end - start + PAGE_CACHE_SIZE) >>
1060 PAGE_CACHE_SHIFT;
1061 atomic_add(nr_pages, &root->fs_info->async_delalloc_pages);
1062
1063 btrfs_queue_worker(&root->fs_info->delalloc_workers,
1064 &async_cow->work);
1065
1066 if (atomic_read(&root->fs_info->async_delalloc_pages) > limit) {
1067 wait_event(root->fs_info->async_submit_wait,
1068 (atomic_read(&root->fs_info->async_delalloc_pages) <
1069 limit));
1070 }
1071
Chris Masond3977122009-01-05 21:25:51 -05001072 while (atomic_read(&root->fs_info->async_submit_draining) &&
Chris Mason771ed682008-11-06 22:02:51 -05001073 atomic_read(&root->fs_info->async_delalloc_pages)) {
1074 wait_event(root->fs_info->async_submit_wait,
1075 (atomic_read(&root->fs_info->async_delalloc_pages) ==
1076 0));
1077 }
1078
1079 *nr_written += nr_pages;
1080 start = cur_end + 1;
1081 }
1082 *page_started = 1;
1083 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001084}
1085
Chris Masond3977122009-01-05 21:25:51 -05001086static noinline int csum_exist_in_range(struct btrfs_root *root,
Yan Zheng17d217f2008-12-12 10:03:38 -05001087 u64 bytenr, u64 num_bytes)
1088{
1089 int ret;
1090 struct btrfs_ordered_sum *sums;
1091 LIST_HEAD(list);
1092
Yan Zheng07d400a2009-01-06 11:42:00 -05001093 ret = btrfs_lookup_csums_range(root->fs_info->csum_root, bytenr,
Arne Jansena2de7332011-03-08 14:14:00 +01001094 bytenr + num_bytes - 1, &list, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -05001095 if (ret == 0 && list_empty(&list))
1096 return 0;
1097
1098 while (!list_empty(&list)) {
1099 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
1100 list_del(&sums->list);
1101 kfree(sums);
1102 }
1103 return 1;
1104}
1105
Chris Masond352ac62008-09-29 15:18:18 -04001106/*
1107 * when nowcow writeback call back. This checks for snapshots or COW copies
1108 * of the extents that exist in the file, and COWs the file as required.
1109 *
1110 * If no cow copies or snapshots exist, we write directly to the existing
1111 * blocks on disk
1112 */
Chris Mason7f366cf2009-03-12 20:12:45 -04001113static noinline int run_delalloc_nocow(struct inode *inode,
1114 struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001115 u64 start, u64 end, int *page_started, int force,
1116 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001117{
Chris Masonbe20aa92007-12-17 20:14:01 -05001118 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001119 struct btrfs_trans_handle *trans;
Chris Masonbe20aa92007-12-17 20:14:01 -05001120 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -05001121 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -04001122 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -05001123 struct btrfs_key found_key;
Yan Zheng80ff3852008-10-30 14:20:02 -04001124 u64 cow_start;
1125 u64 cur_offset;
1126 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001127 u64 extent_offset;
Yan Zheng80ff3852008-10-30 14:20:02 -04001128 u64 disk_bytenr;
1129 u64 num_bytes;
1130 int extent_type;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001131 int ret, err;
Yan Zhengd899e052008-10-30 14:25:28 -04001132 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -04001133 int nocow;
1134 int check_prev = 1;
Li Zefan82d59022011-04-20 10:33:24 +08001135 bool nolock;
Li Zefan33345d012011-04-20 10:31:50 +08001136 u64 ino = btrfs_ino(inode);
Chris Masonbe20aa92007-12-17 20:14:01 -05001137
1138 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07001139 if (!path)
1140 return -ENOMEM;
Li Zefan82d59022011-04-20 10:33:24 +08001141
Chris Mason2cf85722011-07-26 15:35:09 -04001142 nolock = btrfs_is_free_space_inode(root, inode);
Li Zefan82d59022011-04-20 10:33:24 +08001143
1144 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001145 trans = btrfs_join_transaction_nolock(root);
Li Zefan82d59022011-04-20 10:33:24 +08001146 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001147 trans = btrfs_join_transaction(root);
Chris Masonff5714c2011-05-28 07:00:39 -04001148
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001149 if (IS_ERR(trans)) {
1150 btrfs_free_path(path);
1151 return PTR_ERR(trans);
1152 }
1153
Josef Bacik74b21072011-04-13 12:02:53 -04001154 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Masonbe20aa92007-12-17 20:14:01 -05001155
Yan Zheng80ff3852008-10-30 14:20:02 -04001156 cow_start = (u64)-1;
1157 cur_offset = start;
1158 while (1) {
Li Zefan33345d012011-04-20 10:31:50 +08001159 ret = btrfs_lookup_file_extent(trans, root, path, ino,
Yan Zheng80ff3852008-10-30 14:20:02 -04001160 cur_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001161 if (ret < 0) {
1162 btrfs_abort_transaction(trans, root, ret);
1163 goto error;
1164 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001165 if (ret > 0 && path->slots[0] > 0 && check_prev) {
1166 leaf = path->nodes[0];
1167 btrfs_item_key_to_cpu(leaf, &found_key,
1168 path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +08001169 if (found_key.objectid == ino &&
Yan Zheng80ff3852008-10-30 14:20:02 -04001170 found_key.type == BTRFS_EXTENT_DATA_KEY)
1171 path->slots[0]--;
1172 }
1173 check_prev = 0;
1174next_slot:
1175 leaf = path->nodes[0];
1176 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1177 ret = btrfs_next_leaf(root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001178 if (ret < 0) {
1179 btrfs_abort_transaction(trans, root, ret);
1180 goto error;
1181 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001182 if (ret > 0)
1183 break;
1184 leaf = path->nodes[0];
1185 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001186
Yan Zheng80ff3852008-10-30 14:20:02 -04001187 nocow = 0;
1188 disk_bytenr = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -05001189 num_bytes = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001190 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05001191
Li Zefan33345d012011-04-20 10:31:50 +08001192 if (found_key.objectid > ino ||
Yan Zheng80ff3852008-10-30 14:20:02 -04001193 found_key.type > BTRFS_EXTENT_DATA_KEY ||
1194 found_key.offset > end)
1195 break;
Chris Masonbe20aa92007-12-17 20:14:01 -05001196
Yan Zheng80ff3852008-10-30 14:20:02 -04001197 if (found_key.offset > cur_offset) {
1198 extent_end = found_key.offset;
Chris Masone9061e22009-10-09 09:57:45 -04001199 extent_type = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001200 goto out_check;
1201 }
Chris Masonc31f8832008-01-08 15:46:31 -05001202
Yan Zheng80ff3852008-10-30 14:20:02 -04001203 fi = btrfs_item_ptr(leaf, path->slots[0],
1204 struct btrfs_file_extent_item);
1205 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -05001206
Yan Zhengd899e052008-10-30 14:25:28 -04001207 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1208 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001209 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001210 extent_offset = btrfs_file_extent_offset(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001211 extent_end = found_key.offset +
1212 btrfs_file_extent_num_bytes(leaf, fi);
1213 if (extent_end <= start) {
1214 path->slots[0]++;
1215 goto next_slot;
1216 }
Yan Zheng17d217f2008-12-12 10:03:38 -05001217 if (disk_bytenr == 0)
1218 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001219 if (btrfs_file_extent_compression(leaf, fi) ||
1220 btrfs_file_extent_encryption(leaf, fi) ||
1221 btrfs_file_extent_other_encoding(leaf, fi))
1222 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001223 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1224 goto out_check;
Yan Zhengd2fb3432008-12-11 16:30:39 -05001225 if (btrfs_extent_readonly(root, disk_bytenr))
Yan Zheng80ff3852008-10-30 14:20:02 -04001226 goto out_check;
Li Zefan33345d012011-04-20 10:31:50 +08001227 if (btrfs_cross_ref_exist(trans, root, ino,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001228 found_key.offset -
1229 extent_offset, disk_bytenr))
Yan Zheng17d217f2008-12-12 10:03:38 -05001230 goto out_check;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001231 disk_bytenr += extent_offset;
Yan Zheng17d217f2008-12-12 10:03:38 -05001232 disk_bytenr += cur_offset - found_key.offset;
1233 num_bytes = min(end + 1, extent_end) - cur_offset;
1234 /*
1235 * force cow if csum exists in the range.
1236 * this ensure that csum for a given extent are
1237 * either valid or do not exist.
1238 */
1239 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
1240 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001241 nocow = 1;
1242 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1243 extent_end = found_key.offset +
1244 btrfs_file_extent_inline_len(leaf, fi);
1245 extent_end = ALIGN(extent_end, root->sectorsize);
1246 } else {
1247 BUG_ON(1);
1248 }
1249out_check:
1250 if (extent_end <= start) {
1251 path->slots[0]++;
1252 goto next_slot;
1253 }
1254 if (!nocow) {
1255 if (cow_start == (u64)-1)
1256 cow_start = cur_offset;
1257 cur_offset = extent_end;
1258 if (cur_offset > end)
1259 break;
1260 path->slots[0]++;
1261 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001262 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001263
David Sterbab3b4aa72011-04-21 01:20:15 +02001264 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001265 if (cow_start != (u64)-1) {
1266 ret = cow_file_range(inode, locked_page, cow_start,
Chris Mason771ed682008-11-06 22:02:51 -05001267 found_key.offset - 1, page_started,
1268 nr_written, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001269 if (ret) {
1270 btrfs_abort_transaction(trans, root, ret);
1271 goto error;
1272 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001273 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001274 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001275
Yan Zhengd899e052008-10-30 14:25:28 -04001276 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1277 struct extent_map *em;
1278 struct extent_map_tree *em_tree;
1279 em_tree = &BTRFS_I(inode)->extent_tree;
David Sterba172ddd62011-04-21 00:48:27 +02001280 em = alloc_extent_map();
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001281 BUG_ON(!em); /* -ENOMEM */
Yan Zhengd899e052008-10-30 14:25:28 -04001282 em->start = cur_offset;
Chris Mason445a6942008-11-10 11:53:33 -05001283 em->orig_start = em->start;
Yan Zhengd899e052008-10-30 14:25:28 -04001284 em->len = num_bytes;
1285 em->block_len = num_bytes;
1286 em->block_start = disk_bytenr;
1287 em->bdev = root->fs_info->fs_devices->latest_bdev;
1288 set_bit(EXTENT_FLAG_PINNED, &em->flags);
1289 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04001290 write_lock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001291 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04001292 write_unlock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001293 if (ret != -EEXIST) {
1294 free_extent_map(em);
1295 break;
1296 }
1297 btrfs_drop_extent_cache(inode, em->start,
1298 em->start + em->len - 1, 0);
1299 }
1300 type = BTRFS_ORDERED_PREALLOC;
1301 } else {
1302 type = BTRFS_ORDERED_NOCOW;
1303 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001304
1305 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001306 num_bytes, num_bytes, type);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001307 BUG_ON(ret); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -05001308
Yan, Zhengefa56462010-05-16 10:49:59 -04001309 if (root->root_key.objectid ==
1310 BTRFS_DATA_RELOC_TREE_OBJECTID) {
1311 ret = btrfs_reloc_clone_csums(inode, cur_offset,
1312 num_bytes);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001313 if (ret) {
1314 btrfs_abort_transaction(trans, root, ret);
1315 goto error;
1316 }
Yan, Zhengefa56462010-05-16 10:49:59 -04001317 }
1318
Yan Zhengd899e052008-10-30 14:25:28 -04001319 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
Chris Masona791e352009-10-08 11:27:10 -04001320 cur_offset, cur_offset + num_bytes - 1,
1321 locked_page, EXTENT_CLEAR_UNLOCK_PAGE |
1322 EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
1323 EXTENT_SET_PRIVATE2);
Yan Zheng80ff3852008-10-30 14:20:02 -04001324 cur_offset = extent_end;
1325 if (cur_offset > end)
1326 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001327 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001328 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001329
1330 if (cur_offset <= end && cow_start == (u64)-1)
1331 cow_start = cur_offset;
1332 if (cow_start != (u64)-1) {
1333 ret = cow_file_range(inode, locked_page, cow_start, end,
Chris Mason771ed682008-11-06 22:02:51 -05001334 page_started, nr_written, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001335 if (ret) {
1336 btrfs_abort_transaction(trans, root, ret);
1337 goto error;
1338 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001339 }
1340
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001341error:
Josef Bacik0cb59c92010-07-02 12:14:14 -04001342 if (nolock) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001343 err = btrfs_end_transaction_nolock(trans, root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001344 } else {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001345 err = btrfs_end_transaction(trans, root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001346 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001347 if (!ret)
1348 ret = err;
1349
Yan Zheng7ea394f2008-08-05 13:05:02 -04001350 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001351 return ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05001352}
1353
Chris Masond352ac62008-09-29 15:18:18 -04001354/*
1355 * extent_io.c call back to do delayed allocation processing
1356 */
Chris Masonc8b97812008-10-29 14:49:59 -04001357static int run_delalloc_range(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001358 u64 start, u64 end, int *page_started,
1359 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001360{
Chris Masonbe20aa92007-12-17 20:14:01 -05001361 int ret;
Chris Mason7f366cf2009-03-12 20:12:45 -04001362 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masona2135012008-06-25 16:01:30 -04001363
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001364 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW)
Chris Masonc8b97812008-10-29 14:49:59 -04001365 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001366 page_started, 1, nr_written);
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001367 else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC)
Yan Zhengd899e052008-10-30 14:25:28 -04001368 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001369 page_started, 0, nr_written);
Chris Mason1e701a32010-03-11 09:42:04 -05001370 else if (!btrfs_test_opt(root, COMPRESS) &&
Liu Bo75e7cb72011-03-22 10:12:20 +00001371 !(BTRFS_I(inode)->force_compress) &&
1372 !(BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS))
Chris Mason7f366cf2009-03-12 20:12:45 -04001373 ret = cow_file_range(inode, locked_page, start, end,
1374 page_started, nr_written, 1);
Chris Masonbe20aa92007-12-17 20:14:01 -05001375 else
Chris Mason771ed682008-11-06 22:02:51 -05001376 ret = cow_file_range_async(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001377 page_started, nr_written);
Chris Masonb888db22007-08-27 16:49:44 -04001378 return ret;
1379}
1380
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001381static void btrfs_split_extent_hook(struct inode *inode,
1382 struct extent_state *orig, u64 split)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001383{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001384 /* not delalloc, ignore it */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001385 if (!(orig->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001386 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001387
Josef Bacik9e0baf62011-07-15 15:16:44 +00001388 spin_lock(&BTRFS_I(inode)->lock);
1389 BTRFS_I(inode)->outstanding_extents++;
1390 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001391}
1392
1393/*
1394 * extent_io.c merge_extent_hook, used to track merged delayed allocation
1395 * extents so we can keep track of new extents that are just merged onto old
1396 * extents, such as when we are doing sequential writes, so we can properly
1397 * account for the metadata space we'll need.
1398 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001399static void btrfs_merge_extent_hook(struct inode *inode,
1400 struct extent_state *new,
1401 struct extent_state *other)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001402{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001403 /* not delalloc, ignore it */
1404 if (!(other->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001405 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001406
Josef Bacik9e0baf62011-07-15 15:16:44 +00001407 spin_lock(&BTRFS_I(inode)->lock);
1408 BTRFS_I(inode)->outstanding_extents--;
1409 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001410}
1411
Chris Masond352ac62008-09-29 15:18:18 -04001412/*
1413 * extent_io.c set_bit_hook, used to track delayed allocation
1414 * bytes in this file, and to maintain the list of inodes that
1415 * have pending delalloc work to be done.
1416 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001417static void btrfs_set_bit_hook(struct inode *inode,
1418 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001419{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001420
Chris Mason75eff682008-12-15 15:54:40 -05001421 /*
1422 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001423 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001424 * bit, which is only set or cleared with irqs on
1425 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001426 if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001427 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001428 u64 len = state->end + 1 - state->start;
Chris Mason2cf85722011-07-26 15:35:09 -04001429 bool do_list = !btrfs_is_free_space_inode(root, inode);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001430
Josef Bacik9e0baf62011-07-15 15:16:44 +00001431 if (*bits & EXTENT_FIRST_DELALLOC) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001432 *bits &= ~EXTENT_FIRST_DELALLOC;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001433 } else {
1434 spin_lock(&BTRFS_I(inode)->lock);
1435 BTRFS_I(inode)->outstanding_extents++;
1436 spin_unlock(&BTRFS_I(inode)->lock);
1437 }
Josef Bacik287a0ab2010-03-19 18:07:23 +00001438
Chris Mason75eff682008-12-15 15:54:40 -05001439 spin_lock(&root->fs_info->delalloc_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001440 BTRFS_I(inode)->delalloc_bytes += len;
1441 root->fs_info->delalloc_bytes += len;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001442 if (do_list && list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
Chris Masonea8c2812008-08-04 23:17:27 -04001443 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1444 &root->fs_info->delalloc_inodes);
1445 }
Chris Mason75eff682008-12-15 15:54:40 -05001446 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001447 }
Chris Mason291d6732008-01-29 15:55:23 -05001448}
1449
Chris Masond352ac62008-09-29 15:18:18 -04001450/*
1451 * extent_io.c clear_bit_hook, see set_bit_hook for why
1452 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001453static void btrfs_clear_bit_hook(struct inode *inode,
1454 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001455{
Chris Mason75eff682008-12-15 15:54:40 -05001456 /*
1457 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001458 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001459 * bit, which is only set or cleared with irqs on
1460 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001461 if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001462 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001463 u64 len = state->end + 1 - state->start;
Chris Mason2cf85722011-07-26 15:35:09 -04001464 bool do_list = !btrfs_is_free_space_inode(root, inode);
Chris Masonbcbfce82008-04-22 13:26:47 -04001465
Josef Bacik9e0baf62011-07-15 15:16:44 +00001466 if (*bits & EXTENT_FIRST_DELALLOC) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001467 *bits &= ~EXTENT_FIRST_DELALLOC;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001468 } else if (!(*bits & EXTENT_DO_ACCOUNTING)) {
1469 spin_lock(&BTRFS_I(inode)->lock);
1470 BTRFS_I(inode)->outstanding_extents--;
1471 spin_unlock(&BTRFS_I(inode)->lock);
1472 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001473
1474 if (*bits & EXTENT_DO_ACCOUNTING)
1475 btrfs_delalloc_release_metadata(inode, len);
1476
Josef Bacik0cb59c92010-07-02 12:14:14 -04001477 if (root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID
1478 && do_list)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001479 btrfs_free_reserved_data_space(inode, len);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001480
Chris Mason75eff682008-12-15 15:54:40 -05001481 spin_lock(&root->fs_info->delalloc_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001482 root->fs_info->delalloc_bytes -= len;
1483 BTRFS_I(inode)->delalloc_bytes -= len;
1484
Josef Bacik0cb59c92010-07-02 12:14:14 -04001485 if (do_list && BTRFS_I(inode)->delalloc_bytes == 0 &&
Chris Masonea8c2812008-08-04 23:17:27 -04001486 !list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1487 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
1488 }
Chris Mason75eff682008-12-15 15:54:40 -05001489 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001490 }
Chris Mason291d6732008-01-29 15:55:23 -05001491}
1492
Chris Masond352ac62008-09-29 15:18:18 -04001493/*
1494 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1495 * we don't create bios that span stripes or chunks
1496 */
Chris Mason239b14b2008-03-24 15:02:07 -04001497int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001498 size_t size, struct bio *bio,
1499 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001500{
1501 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
1502 struct btrfs_mapping_tree *map_tree;
Chris Masona62b9402008-10-03 16:31:08 -04001503 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001504 u64 length = 0;
1505 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001506 int ret;
1507
Chris Mason771ed682008-11-06 22:02:51 -05001508 if (bio_flags & EXTENT_BIO_COMPRESSED)
1509 return 0;
1510
Chris Masonf2d8d742008-04-21 10:03:05 -04001511 length = bio->bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001512 map_tree = &root->fs_info->mapping_tree;
1513 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04001514 ret = btrfs_map_block(map_tree, READ, logical,
Chris Masonf1885912008-04-09 16:28:12 -04001515 &map_length, NULL, 0);
Jeff Mahoney3444a972011-10-03 23:23:13 -04001516 /* Will always return 0 or 1 with map_multi == NULL */
1517 BUG_ON(ret < 0);
Chris Masond3977122009-01-05 21:25:51 -05001518 if (map_length < length + size)
Chris Mason239b14b2008-03-24 15:02:07 -04001519 return 1;
Jeff Mahoney3444a972011-10-03 23:23:13 -04001520 return 0;
Chris Mason239b14b2008-03-24 15:02:07 -04001521}
1522
Chris Masond352ac62008-09-29 15:18:18 -04001523/*
1524 * in order to insert checksums into the metadata in large chunks,
1525 * we wait until bio submission time. All the pages in the bio are
1526 * checksummed and sums are attached onto the ordered extent record.
1527 *
1528 * At IO completion time the cums attached on the ordered extent record
1529 * are inserted into the btree
1530 */
Chris Masond3977122009-01-05 21:25:51 -05001531static int __btrfs_submit_bio_start(struct inode *inode, int rw,
1532 struct bio *bio, int mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001533 unsigned long bio_flags,
1534 u64 bio_offset)
Chris Mason065631f2008-02-20 12:07:25 -05001535{
Chris Mason065631f2008-02-20 12:07:25 -05001536 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason065631f2008-02-20 12:07:25 -05001537 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001538
Chris Masond20f7042008-12-08 16:58:54 -05001539 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001540 BUG_ON(ret); /* -ENOMEM */
Chris Mason4a69a412008-11-06 22:03:00 -05001541 return 0;
1542}
Chris Masone0156402008-04-16 11:15:20 -04001543
Chris Mason4a69a412008-11-06 22:03:00 -05001544/*
1545 * in order to insert checksums into the metadata in large chunks,
1546 * we wait until bio submission time. All the pages in the bio are
1547 * checksummed and sums are attached onto the ordered extent record.
1548 *
1549 * At IO completion time the cums attached on the ordered extent record
1550 * are inserted into the btree
1551 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001552static int __btrfs_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001553 int mirror_num, unsigned long bio_flags,
1554 u64 bio_offset)
Chris Mason4a69a412008-11-06 22:03:00 -05001555{
1556 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason8b712842008-06-11 16:50:36 -04001557 return btrfs_map_bio(root, rw, bio, mirror_num, 1);
Chris Mason44b8bd72008-04-16 11:14:51 -04001558}
1559
Chris Masond352ac62008-09-29 15:18:18 -04001560/*
Chris Masoncad321a2008-12-17 14:51:42 -05001561 * extent_io.c submission hook. This does the right thing for csum calculation
1562 * on write, or reading the csums from the tree before a read
Chris Masond352ac62008-09-29 15:18:18 -04001563 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001564static int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001565 int mirror_num, unsigned long bio_flags,
1566 u64 bio_offset)
Chris Mason44b8bd72008-04-16 11:14:51 -04001567{
1568 struct btrfs_root *root = BTRFS_I(inode)->root;
1569 int ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001570 int skip_sum;
Jeff Mahoney04173412011-10-03 23:23:12 -04001571 int metadata = 0;
Chris Mason44b8bd72008-04-16 11:14:51 -04001572
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001573 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masoncad321a2008-12-17 14:51:42 -05001574
Chris Mason2cf85722011-07-26 15:35:09 -04001575 if (btrfs_is_free_space_inode(root, inode))
Jeff Mahoney04173412011-10-03 23:23:12 -04001576 metadata = 2;
1577
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001578 if (!(rw & REQ_WRITE)) {
Josef Bacik5fd02042012-05-02 14:00:54 -04001579 ret = btrfs_bio_wq_end_io(root->fs_info, bio, metadata);
1580 if (ret)
1581 return ret;
1582
Chris Masond20f7042008-12-08 16:58:54 -05001583 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Chris Masonc8b97812008-10-29 14:49:59 -04001584 return btrfs_submit_compressed_read(inode, bio,
1585 mirror_num, bio_flags);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001586 } else if (!skip_sum) {
1587 ret = btrfs_lookup_bio_sums(root, inode, bio, NULL);
1588 if (ret)
1589 return ret;
1590 }
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001591 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001592 } else if (!skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001593 /* csum items have already been cloned */
1594 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1595 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001596 /* we're doing a write, do the async checksumming */
1597 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
Chris Mason44b8bd72008-04-16 11:14:51 -04001598 inode, rw, bio, mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001599 bio_flags, bio_offset,
1600 __btrfs_submit_bio_start,
Chris Mason4a69a412008-11-06 22:03:00 -05001601 __btrfs_submit_bio_done);
Chris Mason19b9bdb2008-10-30 14:23:13 -04001602 }
1603
Chris Mason0b86a832008-03-24 15:01:56 -04001604mapit:
Chris Mason8b712842008-06-11 16:50:36 -04001605 return btrfs_map_bio(root, rw, bio, mirror_num, 0);
Chris Mason065631f2008-02-20 12:07:25 -05001606}
Chris Mason6885f302008-02-20 16:11:05 -05001607
Chris Masond352ac62008-09-29 15:18:18 -04001608/*
1609 * given a list of ordered sums record them in the inode. This happens
1610 * at IO completion time based on sums calculated at bio submission time.
1611 */
Chris Masonba1da2f2008-07-17 12:54:15 -04001612static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -04001613 struct inode *inode, u64 file_offset,
1614 struct list_head *list)
1615{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001616 struct btrfs_ordered_sum *sum;
1617
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001618 list_for_each_entry(sum, list, list) {
Chris Masond20f7042008-12-08 16:58:54 -05001619 btrfs_csum_file_blocks(trans,
1620 BTRFS_I(inode)->root->fs_info->csum_root, sum);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001621 }
1622 return 0;
1623}
1624
Josef Bacik2ac55d42010-02-03 19:33:23 +00001625int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end,
1626 struct extent_state **cached_state)
Chris Masonea8c2812008-08-04 23:17:27 -04001627{
Chris Masond3977122009-01-05 21:25:51 -05001628 if ((end & (PAGE_CACHE_SIZE - 1)) == 0)
Chris Mason771ed682008-11-06 22:02:51 -05001629 WARN_ON(1);
Chris Masonea8c2812008-08-04 23:17:27 -04001630 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001631 cached_state, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04001632}
1633
Chris Masond352ac62008-09-29 15:18:18 -04001634/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04001635struct btrfs_writepage_fixup {
1636 struct page *page;
1637 struct btrfs_work work;
1638};
1639
Christoph Hellwigb2950862008-12-02 09:54:17 -05001640static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04001641{
1642 struct btrfs_writepage_fixup *fixup;
1643 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001644 struct extent_state *cached_state = NULL;
Chris Mason247e7432008-07-17 12:53:51 -04001645 struct page *page;
1646 struct inode *inode;
1647 u64 page_start;
1648 u64 page_end;
Jeff Mahoney87826df2012-02-15 16:23:57 +01001649 int ret;
Chris Mason247e7432008-07-17 12:53:51 -04001650
1651 fixup = container_of(work, struct btrfs_writepage_fixup, work);
1652 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04001653again:
Chris Mason247e7432008-07-17 12:53:51 -04001654 lock_page(page);
1655 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
1656 ClearPageChecked(page);
1657 goto out_page;
1658 }
1659
1660 inode = page->mapping->host;
1661 page_start = page_offset(page);
1662 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
1663
Josef Bacik2ac55d42010-02-03 19:33:23 +00001664 lock_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001665 &cached_state);
Chris Mason4a096752008-07-21 10:29:44 -04001666
1667 /* already ordered? We're done */
Chris Mason8b62b722009-09-02 16:53:46 -04001668 if (PagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001669 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04001670
1671 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1672 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00001673 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start,
1674 page_end, &cached_state, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001675 unlock_page(page);
1676 btrfs_start_ordered_extent(inode, ordered, 1);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001677 btrfs_put_ordered_extent(ordered);
Chris Mason4a096752008-07-21 10:29:44 -04001678 goto again;
1679 }
Chris Mason247e7432008-07-17 12:53:51 -04001680
Jeff Mahoney87826df2012-02-15 16:23:57 +01001681 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
1682 if (ret) {
1683 mapping_set_error(page->mapping, ret);
1684 end_extent_writepage(page, ret, page_start, page_end);
1685 ClearPageChecked(page);
1686 goto out;
1687 }
1688
Josef Bacik2ac55d42010-02-03 19:33:23 +00001689 btrfs_set_extent_delalloc(inode, page_start, page_end, &cached_state);
Chris Mason247e7432008-07-17 12:53:51 -04001690 ClearPageChecked(page);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001691 set_page_dirty(page);
Chris Mason247e7432008-07-17 12:53:51 -04001692out:
Josef Bacik2ac55d42010-02-03 19:33:23 +00001693 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, page_end,
1694 &cached_state, GFP_NOFS);
Chris Mason247e7432008-07-17 12:53:51 -04001695out_page:
1696 unlock_page(page);
1697 page_cache_release(page);
Miao Xieb897abe2011-01-26 16:19:22 +08001698 kfree(fixup);
Chris Mason247e7432008-07-17 12:53:51 -04001699}
1700
1701/*
1702 * There are a few paths in the higher layers of the kernel that directly
1703 * set the page dirty bit without asking the filesystem if it is a
1704 * good idea. This causes problems because we want to make sure COW
1705 * properly happens and the data=ordered rules are followed.
1706 *
Chris Masonc8b97812008-10-29 14:49:59 -04001707 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04001708 * hasn't been properly setup for IO. We kick off an async process
1709 * to fix it up. The async helper will wait for ordered extents, set
1710 * the delalloc bit and make it safe to write the page.
1711 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001712static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04001713{
1714 struct inode *inode = page->mapping->host;
1715 struct btrfs_writepage_fixup *fixup;
1716 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason247e7432008-07-17 12:53:51 -04001717
Chris Mason8b62b722009-09-02 16:53:46 -04001718 /* this page is properly in the ordered list */
1719 if (TestClearPagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001720 return 0;
1721
1722 if (PageChecked(page))
1723 return -EAGAIN;
1724
1725 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
1726 if (!fixup)
1727 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04001728
Chris Mason247e7432008-07-17 12:53:51 -04001729 SetPageChecked(page);
1730 page_cache_get(page);
1731 fixup->work.func = btrfs_writepage_fixup_worker;
1732 fixup->page = page;
1733 btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001734 return -EBUSY;
Chris Mason247e7432008-07-17 12:53:51 -04001735}
1736
Yan Zhengd899e052008-10-30 14:25:28 -04001737static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
1738 struct inode *inode, u64 file_pos,
1739 u64 disk_bytenr, u64 disk_num_bytes,
1740 u64 num_bytes, u64 ram_bytes,
1741 u8 compression, u8 encryption,
1742 u16 other_encoding, int extent_type)
1743{
1744 struct btrfs_root *root = BTRFS_I(inode)->root;
1745 struct btrfs_file_extent_item *fi;
1746 struct btrfs_path *path;
1747 struct extent_buffer *leaf;
1748 struct btrfs_key ins;
1749 u64 hint;
1750 int ret;
1751
1752 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07001753 if (!path)
1754 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -04001755
Chris Masonb9473432009-03-13 11:00:37 -04001756 path->leave_spinning = 1;
Chris Masona1ed8352009-09-11 12:27:37 -04001757
1758 /*
1759 * we may be replacing one extent in the tree with another.
1760 * The new extent is pinned in the extent map, and we don't want
1761 * to drop it from the cache until it is completely in the btree.
1762 *
1763 * So, tell btrfs_drop_extents to leave this extent in the cache.
1764 * the caller is expected to unpin it and allow it to be merged
1765 * with the others.
1766 */
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001767 ret = btrfs_drop_extents(trans, inode, file_pos, file_pos + num_bytes,
1768 &hint, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001769 if (ret)
1770 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04001771
Li Zefan33345d012011-04-20 10:31:50 +08001772 ins.objectid = btrfs_ino(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04001773 ins.offset = file_pos;
1774 ins.type = BTRFS_EXTENT_DATA_KEY;
1775 ret = btrfs_insert_empty_item(trans, root, path, &ins, sizeof(*fi));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001776 if (ret)
1777 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04001778 leaf = path->nodes[0];
1779 fi = btrfs_item_ptr(leaf, path->slots[0],
1780 struct btrfs_file_extent_item);
1781 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
1782 btrfs_set_file_extent_type(leaf, fi, extent_type);
1783 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
1784 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
1785 btrfs_set_file_extent_offset(leaf, fi, 0);
1786 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
1787 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
1788 btrfs_set_file_extent_compression(leaf, fi, compression);
1789 btrfs_set_file_extent_encryption(leaf, fi, encryption);
1790 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
Chris Masonb9473432009-03-13 11:00:37 -04001791
1792 btrfs_unlock_up_safe(path, 1);
1793 btrfs_set_lock_blocking(leaf);
1794
Yan Zhengd899e052008-10-30 14:25:28 -04001795 btrfs_mark_buffer_dirty(leaf);
1796
1797 inode_add_bytes(inode, num_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -04001798
1799 ins.objectid = disk_bytenr;
1800 ins.offset = disk_num_bytes;
1801 ins.type = BTRFS_EXTENT_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001802 ret = btrfs_alloc_reserved_file_extent(trans, root,
1803 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08001804 btrfs_ino(inode), file_pos, &ins);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001805out:
Yan Zhengd899e052008-10-30 14:25:28 -04001806 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04001807
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001808 return ret;
Yan Zhengd899e052008-10-30 14:25:28 -04001809}
1810
Chris Mason5d13a982009-03-13 11:41:46 -04001811/*
1812 * helper function for btrfs_finish_ordered_io, this
1813 * just reads in some of the csum leaves to prime them into ram
1814 * before we start the transaction. It limits the amount of btree
1815 * reads required while inside the transaction.
1816 */
Chris Masond352ac62008-09-29 15:18:18 -04001817/* as ordered data IO finishes, this gets called so we can finish
1818 * an ordered extent if the range of bytes in the file it covers are
1819 * fully written.
1820 */
Josef Bacik5fd02042012-05-02 14:00:54 -04001821static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001822{
Josef Bacik5fd02042012-05-02 14:00:54 -04001823 struct inode *inode = ordered_extent->inode;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001824 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001825 struct btrfs_trans_handle *trans = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001826 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001827 struct extent_state *cached_state = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08001828 int compress_type = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001829 int ret;
Li Zefan82d59022011-04-20 10:33:24 +08001830 bool nolock;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001831
Chris Mason2cf85722011-07-26 15:35:09 -04001832 nolock = btrfs_is_free_space_inode(root, inode);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001833
Josef Bacik5fd02042012-05-02 14:00:54 -04001834 if (test_bit(BTRFS_ORDERED_IOERR, &ordered_extent->flags)) {
1835 ret = -EIO;
1836 goto out;
1837 }
1838
Yan, Zhengc2167752009-11-12 09:34:21 +00001839 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001840 BUG_ON(!list_empty(&ordered_extent->list)); /* Logic error */
Yan, Zhengc2167752009-11-12 09:34:21 +00001841 ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent);
1842 if (!ret) {
Josef Bacik0cb59c92010-07-02 12:14:14 -04001843 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001844 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001845 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001846 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001847 if (IS_ERR(trans))
1848 return PTR_ERR(trans);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001849 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason21151332011-11-10 20:39:08 -05001850 ret = btrfs_update_inode_fallback(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001851 if (ret) /* -ENOMEM or corruption */
1852 btrfs_abort_transaction(trans, root, ret);
Yan, Zhengc2167752009-11-12 09:34:21 +00001853 }
1854 goto out;
1855 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001856
Josef Bacik2ac55d42010-02-03 19:33:23 +00001857 lock_extent_bits(io_tree, ordered_extent->file_offset,
1858 ordered_extent->file_offset + ordered_extent->len - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001859 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001860
Josef Bacik0cb59c92010-07-02 12:14:14 -04001861 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001862 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001863 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001864 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001865 if (IS_ERR(trans)) {
1866 ret = PTR_ERR(trans);
1867 trans = NULL;
1868 goto out_unlock;
1869 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001870 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Yan, Zhengc2167752009-11-12 09:34:21 +00001871
Chris Masonc8b97812008-10-29 14:49:59 -04001872 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Li Zefan261507a02010-12-17 14:21:50 +08001873 compress_type = ordered_extent->compress_type;
Yan Zhengd899e052008-10-30 14:25:28 -04001874 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Li Zefan261507a02010-12-17 14:21:50 +08001875 BUG_ON(compress_type);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001876 ret = btrfs_mark_extent_written(trans, inode,
Yan Zhengd899e052008-10-30 14:25:28 -04001877 ordered_extent->file_offset,
1878 ordered_extent->file_offset +
1879 ordered_extent->len);
Yan Zhengd899e052008-10-30 14:25:28 -04001880 } else {
Josef Bacik0af3d002010-06-21 14:48:16 -04001881 BUG_ON(root == root->fs_info->tree_root);
Yan Zhengd899e052008-10-30 14:25:28 -04001882 ret = insert_reserved_file_extent(trans, inode,
1883 ordered_extent->file_offset,
1884 ordered_extent->start,
1885 ordered_extent->disk_len,
1886 ordered_extent->len,
1887 ordered_extent->len,
Li Zefan261507a02010-12-17 14:21:50 +08001888 compress_type, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04001889 BTRFS_FILE_EXTENT_REG);
Chris Masona1ed8352009-09-11 12:27:37 -04001890 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
1891 ordered_extent->file_offset,
1892 ordered_extent->len);
Yan Zhengd899e052008-10-30 14:25:28 -04001893 }
Josef Bacik5fd02042012-05-02 14:00:54 -04001894
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001895 if (ret < 0) {
1896 btrfs_abort_transaction(trans, root, ret);
Josef Bacik5fd02042012-05-02 14:00:54 -04001897 goto out_unlock;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001898 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00001899
Chris Masone6dcd2d2008-07-17 12:53:50 -04001900 add_pending_csums(trans, inode, ordered_extent->file_offset,
1901 &ordered_extent->list);
1902
Josef Bacik1ef30be2011-04-05 19:25:36 -04001903 ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent);
Miao Xiea39f7522011-09-11 10:52:25 -04001904 if (!ret || !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Chris Mason21151332011-11-10 20:39:08 -05001905 ret = btrfs_update_inode_fallback(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001906 if (ret) { /* -ENOMEM or corruption */
1907 btrfs_abort_transaction(trans, root, ret);
Josef Bacik5fd02042012-05-02 14:00:54 -04001908 goto out_unlock;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001909 }
Josef Bacik1ef30be2011-04-05 19:25:36 -04001910 }
1911 ret = 0;
Josef Bacik5fd02042012-05-02 14:00:54 -04001912out_unlock:
1913 unlock_extent_cached(io_tree, ordered_extent->file_offset,
1914 ordered_extent->file_offset +
1915 ordered_extent->len - 1, &cached_state, GFP_NOFS);
Yan, Zhengc2167752009-11-12 09:34:21 +00001916out:
Josef Bacik5b0e95b2011-10-06 08:58:24 -04001917 if (root != root->fs_info->tree_root)
Josef Bacik0cb59c92010-07-02 12:14:14 -04001918 btrfs_delalloc_release_metadata(inode, ordered_extent->len);
Josef Bacik5b0e95b2011-10-06 08:58:24 -04001919 if (trans) {
1920 if (nolock)
Josef Bacik0cb59c92010-07-02 12:14:14 -04001921 btrfs_end_transaction_nolock(trans, root);
Josef Bacik5b0e95b2011-10-06 08:58:24 -04001922 else
Josef Bacik0cb59c92010-07-02 12:14:14 -04001923 btrfs_end_transaction(trans, root);
1924 }
1925
Josef Bacik5fd02042012-05-02 14:00:54 -04001926 if (ret)
1927 clear_extent_uptodate(io_tree, ordered_extent->file_offset,
1928 ordered_extent->file_offset +
1929 ordered_extent->len - 1, NULL, GFP_NOFS);
1930
1931 /*
1932 * This needs to be dont to make sure anybody waiting knows we are done
1933 * upating everything for this ordered extent.
1934 */
1935 btrfs_remove_ordered_extent(inode, ordered_extent);
1936
Chris Masone6dcd2d2008-07-17 12:53:50 -04001937 /* once for us */
1938 btrfs_put_ordered_extent(ordered_extent);
1939 /* once for the tree */
1940 btrfs_put_ordered_extent(ordered_extent);
1941
Josef Bacik5fd02042012-05-02 14:00:54 -04001942 return ret;
1943}
1944
1945static void finish_ordered_fn(struct btrfs_work *work)
1946{
1947 struct btrfs_ordered_extent *ordered_extent;
1948 ordered_extent = container_of(work, struct btrfs_ordered_extent, work);
1949 btrfs_finish_ordered_io(ordered_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001950}
1951
Christoph Hellwigb2950862008-12-02 09:54:17 -05001952static int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04001953 struct extent_state *state, int uptodate)
1954{
Josef Bacik5fd02042012-05-02 14:00:54 -04001955 struct inode *inode = page->mapping->host;
1956 struct btrfs_root *root = BTRFS_I(inode)->root;
1957 struct btrfs_ordered_extent *ordered_extent = NULL;
1958 struct btrfs_workers *workers;
1959
liubo1abe9b82011-03-24 11:18:59 +00001960 trace_btrfs_writepage_end_io_hook(page, start, end, uptodate);
1961
Chris Mason8b62b722009-09-02 16:53:46 -04001962 ClearPagePrivate2(page);
Josef Bacik5fd02042012-05-02 14:00:54 -04001963 if (!btrfs_dec_test_ordered_pending(inode, &ordered_extent, start,
1964 end - start + 1, uptodate))
1965 return 0;
1966
1967 ordered_extent->work.func = finish_ordered_fn;
1968 ordered_extent->work.flags = 0;
1969
1970 if (btrfs_is_free_space_inode(root, inode))
1971 workers = &root->fs_info->endio_freespace_worker;
1972 else
1973 workers = &root->fs_info->endio_write_workers;
1974 btrfs_queue_worker(workers, &ordered_extent->work);
1975
1976 return 0;
Chris Mason211f90e2008-07-18 11:56:15 -04001977}
1978
Chris Masond352ac62008-09-29 15:18:18 -04001979/*
Chris Masond352ac62008-09-29 15:18:18 -04001980 * when reads are done, we need to check csums to verify the data is correct
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001981 * if there's a match, we allow the bio to finish. If not, the code in
1982 * extent_io.c will try to find good copies for us.
Chris Masond352ac62008-09-29 15:18:18 -04001983 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001984static int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
Josef Bacik5cf1ab52012-04-16 09:42:26 -04001985 struct extent_state *state, int mirror)
Chris Mason07157aa2007-08-30 08:50:51 -04001986{
Chris Mason35ebb932007-10-30 16:56:53 -04001987 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -04001988 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05001989 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -04001990 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -05001991 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -04001992 int ret;
Chris Masonff79f812007-10-15 16:22:25 -04001993 struct btrfs_root *root = BTRFS_I(inode)->root;
1994 u32 csum = ~(u32)0;
Chris Masond1310b22008-01-24 16:13:08 -05001995
Chris Masond20f7042008-12-08 16:58:54 -05001996 if (PageChecked(page)) {
1997 ClearPageChecked(page);
1998 goto good;
1999 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002000
2001 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Jan Schmidt08d2f342011-05-04 16:18:50 +02002002 goto good;
Chris Masond20f7042008-12-08 16:58:54 -05002003
Yan Zheng17d217f2008-12-12 10:03:38 -05002004 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04002005 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
Yan Zheng17d217f2008-12-12 10:03:38 -05002006 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM,
2007 GFP_NOFS);
2008 return 0;
2009 }
2010
Yanc2e639f2008-02-04 08:57:25 -05002011 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -05002012 private = state->private;
2013 ret = 0;
2014 } else {
2015 ret = get_state_private(io_tree, start, &private);
2016 }
Cong Wang7ac687d2011-11-25 23:14:28 +08002017 kaddr = kmap_atomic(page);
Chris Masond3977122009-01-05 21:25:51 -05002018 if (ret)
Chris Mason07157aa2007-08-30 08:50:51 -04002019 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05002020
Chris Masonff79f812007-10-15 16:22:25 -04002021 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
2022 btrfs_csum_final(csum, (char *)&csum);
Chris Masond3977122009-01-05 21:25:51 -05002023 if (csum != private)
Chris Mason07157aa2007-08-30 08:50:51 -04002024 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05002025
Cong Wang7ac687d2011-11-25 23:14:28 +08002026 kunmap_atomic(kaddr);
Chris Masond20f7042008-12-08 16:58:54 -05002027good:
Chris Mason07157aa2007-08-30 08:50:51 -04002028 return 0;
2029
2030zeroit:
Chris Mason945d8962011-05-22 12:33:42 -04002031 printk_ratelimited(KERN_INFO "btrfs csum failed ino %llu off %llu csum %u "
Li Zefan33345d012011-04-20 10:31:50 +08002032 "private %llu\n",
2033 (unsigned long long)btrfs_ino(page->mapping->host),
Chris Mason193f2842009-04-27 07:29:05 -04002034 (unsigned long long)start, csum,
2035 (unsigned long long)private);
Chris Masondb945352007-10-15 16:15:53 -04002036 memset(kaddr + offset, 1, end - start + 1);
2037 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002038 kunmap_atomic(kaddr);
Chris Mason3b951512008-04-17 11:29:12 -04002039 if (private == 0)
2040 return 0;
Chris Mason7e383262008-04-09 16:28:12 -04002041 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -04002042}
Chris Masonb888db22007-08-27 16:49:44 -04002043
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002044struct delayed_iput {
2045 struct list_head list;
2046 struct inode *inode;
2047};
2048
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002049/* JDM: If this is fs-wide, why can't we add a pointer to
2050 * btrfs_inode instead and avoid the allocation? */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002051void btrfs_add_delayed_iput(struct inode *inode)
2052{
2053 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2054 struct delayed_iput *delayed;
2055
2056 if (atomic_add_unless(&inode->i_count, -1, 1))
2057 return;
2058
2059 delayed = kmalloc(sizeof(*delayed), GFP_NOFS | __GFP_NOFAIL);
2060 delayed->inode = inode;
2061
2062 spin_lock(&fs_info->delayed_iput_lock);
2063 list_add_tail(&delayed->list, &fs_info->delayed_iputs);
2064 spin_unlock(&fs_info->delayed_iput_lock);
2065}
2066
2067void btrfs_run_delayed_iputs(struct btrfs_root *root)
2068{
2069 LIST_HEAD(list);
2070 struct btrfs_fs_info *fs_info = root->fs_info;
2071 struct delayed_iput *delayed;
2072 int empty;
2073
2074 spin_lock(&fs_info->delayed_iput_lock);
2075 empty = list_empty(&fs_info->delayed_iputs);
2076 spin_unlock(&fs_info->delayed_iput_lock);
2077 if (empty)
2078 return;
2079
2080 down_read(&root->fs_info->cleanup_work_sem);
2081 spin_lock(&fs_info->delayed_iput_lock);
2082 list_splice_init(&fs_info->delayed_iputs, &list);
2083 spin_unlock(&fs_info->delayed_iput_lock);
2084
2085 while (!list_empty(&list)) {
2086 delayed = list_entry(list.next, struct delayed_iput, list);
2087 list_del(&delayed->list);
2088 iput(delayed->inode);
2089 kfree(delayed);
2090 }
2091 up_read(&root->fs_info->cleanup_work_sem);
2092}
2093
Yan, Zhengd68fc572010-05-16 10:49:58 -04002094enum btrfs_orphan_cleanup_state {
2095 ORPHAN_CLEANUP_STARTED = 1,
2096 ORPHAN_CLEANUP_DONE = 2,
2097};
2098
2099/*
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08002100 * This is called in transaction commit time. If there are no orphan
Yan, Zhengd68fc572010-05-16 10:49:58 -04002101 * files in the subvolume, it removes orphan item and frees block_rsv
2102 * structure.
2103 */
2104void btrfs_orphan_commit_root(struct btrfs_trans_handle *trans,
2105 struct btrfs_root *root)
2106{
Josef Bacik90290e12011-12-02 15:44:12 -05002107 struct btrfs_block_rsv *block_rsv;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002108 int ret;
2109
Josef Bacik8a35d952012-05-23 14:26:42 -04002110 if (atomic_read(&root->orphan_inodes) ||
Yan, Zhengd68fc572010-05-16 10:49:58 -04002111 root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE)
2112 return;
2113
Josef Bacik90290e12011-12-02 15:44:12 -05002114 spin_lock(&root->orphan_lock);
Josef Bacik8a35d952012-05-23 14:26:42 -04002115 if (atomic_read(&root->orphan_inodes)) {
Josef Bacik90290e12011-12-02 15:44:12 -05002116 spin_unlock(&root->orphan_lock);
2117 return;
2118 }
2119
2120 if (root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE) {
2121 spin_unlock(&root->orphan_lock);
2122 return;
2123 }
2124
2125 block_rsv = root->orphan_block_rsv;
2126 root->orphan_block_rsv = NULL;
2127 spin_unlock(&root->orphan_lock);
2128
Yan, Zhengd68fc572010-05-16 10:49:58 -04002129 if (root->orphan_item_inserted &&
2130 btrfs_root_refs(&root->root_item) > 0) {
2131 ret = btrfs_del_orphan_item(trans, root->fs_info->tree_root,
2132 root->root_key.objectid);
2133 BUG_ON(ret);
2134 root->orphan_item_inserted = 0;
2135 }
2136
Josef Bacik90290e12011-12-02 15:44:12 -05002137 if (block_rsv) {
2138 WARN_ON(block_rsv->size > 0);
2139 btrfs_free_block_rsv(root, block_rsv);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002140 }
2141}
2142
2143/*
Josef Bacik7b128762008-07-24 12:17:14 -04002144 * This creates an orphan entry for the given inode in case something goes
2145 * wrong in the middle of an unlink/truncate.
Yan, Zhengd68fc572010-05-16 10:49:58 -04002146 *
2147 * NOTE: caller of this function should reserve 5 units of metadata for
2148 * this function.
Josef Bacik7b128762008-07-24 12:17:14 -04002149 */
2150int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
2151{
2152 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002153 struct btrfs_block_rsv *block_rsv = NULL;
2154 int reserve = 0;
2155 int insert = 0;
2156 int ret;
Josef Bacik7b128762008-07-24 12:17:14 -04002157
Yan, Zhengd68fc572010-05-16 10:49:58 -04002158 if (!root->orphan_block_rsv) {
2159 block_rsv = btrfs_alloc_block_rsv(root);
Tsutomu Itohb5324022011-07-19 07:27:20 +00002160 if (!block_rsv)
2161 return -ENOMEM;
Josef Bacik7b128762008-07-24 12:17:14 -04002162 }
2163
Yan, Zhengd68fc572010-05-16 10:49:58 -04002164 spin_lock(&root->orphan_lock);
2165 if (!root->orphan_block_rsv) {
2166 root->orphan_block_rsv = block_rsv;
2167 } else if (block_rsv) {
2168 btrfs_free_block_rsv(root, block_rsv);
2169 block_rsv = NULL;
2170 }
Josef Bacik7b128762008-07-24 12:17:14 -04002171
Josef Bacik8a35d952012-05-23 14:26:42 -04002172 if (!test_and_set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2173 &BTRFS_I(inode)->runtime_flags)) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04002174#if 0
2175 /*
2176 * For proper ENOSPC handling, we should do orphan
2177 * cleanup when mounting. But this introduces backward
2178 * compatibility issue.
2179 */
2180 if (!xchg(&root->orphan_item_inserted, 1))
2181 insert = 2;
2182 else
2183 insert = 1;
2184#endif
2185 insert = 1;
Josef Bacik8a35d952012-05-23 14:26:42 -04002186 atomic_dec(&root->orphan_inodes);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002187 }
Josef Bacik7b128762008-07-24 12:17:14 -04002188
Josef Bacik72ac3c02012-05-23 14:13:11 -04002189 if (!test_and_set_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
2190 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04002191 reserve = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002192 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002193
Yan, Zhengd68fc572010-05-16 10:49:58 -04002194 /* grab metadata reservation from transaction handle */
2195 if (reserve) {
2196 ret = btrfs_orphan_reserve_metadata(trans, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002197 BUG_ON(ret); /* -ENOSPC in reservation; Logic error? JDM */
Yan, Zhengd68fc572010-05-16 10:49:58 -04002198 }
2199
2200 /* insert an orphan item to track this unlinked/truncated file */
2201 if (insert >= 1) {
Li Zefan33345d012011-04-20 10:31:50 +08002202 ret = btrfs_insert_orphan_item(trans, root, btrfs_ino(inode));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002203 if (ret && ret != -EEXIST) {
Josef Bacik8a35d952012-05-23 14:26:42 -04002204 clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2205 &BTRFS_I(inode)->runtime_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002206 btrfs_abort_transaction(trans, root, ret);
2207 return ret;
2208 }
2209 ret = 0;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002210 }
2211
2212 /* insert an orphan item to track subvolume contains orphan files */
2213 if (insert >= 2) {
2214 ret = btrfs_insert_orphan_item(trans, root->fs_info->tree_root,
2215 root->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002216 if (ret && ret != -EEXIST) {
2217 btrfs_abort_transaction(trans, root, ret);
2218 return ret;
2219 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002220 }
2221 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002222}
2223
2224/*
2225 * We have done the truncate/delete so we can go ahead and remove the orphan
2226 * item for this particular inode.
2227 */
2228int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode)
2229{
2230 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002231 int delete_item = 0;
2232 int release_rsv = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002233 int ret = 0;
2234
Yan, Zhengd68fc572010-05-16 10:49:58 -04002235 spin_lock(&root->orphan_lock);
Josef Bacik8a35d952012-05-23 14:26:42 -04002236 if (test_and_clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2237 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04002238 delete_item = 1;
Josef Bacik7b128762008-07-24 12:17:14 -04002239
Josef Bacik72ac3c02012-05-23 14:13:11 -04002240 if (test_and_clear_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
2241 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04002242 release_rsv = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002243 spin_unlock(&root->orphan_lock);
2244
2245 if (trans && delete_item) {
Li Zefan33345d012011-04-20 10:31:50 +08002246 ret = btrfs_del_orphan_item(trans, root, btrfs_ino(inode));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002247 BUG_ON(ret); /* -ENOMEM or corruption (JDM: Recheck) */
Josef Bacik7b128762008-07-24 12:17:14 -04002248 }
2249
Josef Bacik8a35d952012-05-23 14:26:42 -04002250 if (release_rsv) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04002251 btrfs_orphan_release_metadata(inode);
Josef Bacik8a35d952012-05-23 14:26:42 -04002252 atomic_dec(&root->orphan_inodes);
2253 }
Josef Bacik7b128762008-07-24 12:17:14 -04002254
Yan, Zhengd68fc572010-05-16 10:49:58 -04002255 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002256}
2257
2258/*
2259 * this cleans up any orphans that may be left on the list from the last use
2260 * of this root.
2261 */
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002262int btrfs_orphan_cleanup(struct btrfs_root *root)
Josef Bacik7b128762008-07-24 12:17:14 -04002263{
2264 struct btrfs_path *path;
2265 struct extent_buffer *leaf;
Josef Bacik7b128762008-07-24 12:17:14 -04002266 struct btrfs_key key, found_key;
2267 struct btrfs_trans_handle *trans;
2268 struct inode *inode;
Josef Bacik8f6d7f42011-09-26 15:55:20 -04002269 u64 last_objectid = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002270 int ret = 0, nr_unlink = 0, nr_truncate = 0;
2271
Yan, Zhengd68fc572010-05-16 10:49:58 -04002272 if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002273 return 0;
Yan, Zhengc71bf092009-11-12 09:34:40 +00002274
2275 path = btrfs_alloc_path();
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002276 if (!path) {
2277 ret = -ENOMEM;
2278 goto out;
2279 }
Josef Bacik7b128762008-07-24 12:17:14 -04002280 path->reada = -1;
2281
2282 key.objectid = BTRFS_ORPHAN_OBJECTID;
2283 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
2284 key.offset = (u64)-1;
2285
Josef Bacik7b128762008-07-24 12:17:14 -04002286 while (1) {
2287 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002288 if (ret < 0)
2289 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04002290
2291 /*
2292 * if ret == 0 means we found what we were searching for, which
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002293 * is weird, but possible, so only screw with path if we didn't
Josef Bacik7b128762008-07-24 12:17:14 -04002294 * find the key and see if we have stuff that matches
2295 */
2296 if (ret > 0) {
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002297 ret = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002298 if (path->slots[0] == 0)
2299 break;
2300 path->slots[0]--;
2301 }
2302
2303 /* pull out the item */
2304 leaf = path->nodes[0];
Josef Bacik7b128762008-07-24 12:17:14 -04002305 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2306
2307 /* make sure the item matches what we want */
2308 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
2309 break;
2310 if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY)
2311 break;
2312
2313 /* release the path since we're done with it */
David Sterbab3b4aa72011-04-21 01:20:15 +02002314 btrfs_release_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04002315
2316 /*
2317 * this is where we are basically btrfs_lookup, without the
2318 * crossing root thing. we store the inode number in the
2319 * offset of the orphan item.
2320 */
Josef Bacik8f6d7f42011-09-26 15:55:20 -04002321
2322 if (found_key.offset == last_objectid) {
2323 printk(KERN_ERR "btrfs: Error removing orphan entry, "
2324 "stopping orphan cleanup\n");
2325 ret = -EINVAL;
2326 goto out;
2327 }
2328
2329 last_objectid = found_key.offset;
2330
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002331 found_key.objectid = found_key.offset;
2332 found_key.type = BTRFS_INODE_ITEM_KEY;
2333 found_key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +00002334 inode = btrfs_iget(root->fs_info->sb, &found_key, root, NULL);
Josef Bacika8c9e572011-09-21 16:55:59 -04002335 ret = PTR_RET(inode);
2336 if (ret && ret != -ESTALE)
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002337 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04002338
Arne Jansenf8e9e0b2011-12-14 20:12:02 -05002339 if (ret == -ESTALE && root == root->fs_info->tree_root) {
2340 struct btrfs_root *dead_root;
2341 struct btrfs_fs_info *fs_info = root->fs_info;
2342 int is_dead_root = 0;
2343
2344 /*
2345 * this is an orphan in the tree root. Currently these
2346 * could come from 2 sources:
2347 * a) a snapshot deletion in progress
2348 * b) a free space cache inode
2349 * We need to distinguish those two, as the snapshot
2350 * orphan must not get deleted.
2351 * find_dead_roots already ran before us, so if this
2352 * is a snapshot deletion, we should find the root
2353 * in the dead_roots list
2354 */
2355 spin_lock(&fs_info->trans_lock);
2356 list_for_each_entry(dead_root, &fs_info->dead_roots,
2357 root_list) {
2358 if (dead_root->root_key.objectid ==
2359 found_key.objectid) {
2360 is_dead_root = 1;
2361 break;
2362 }
2363 }
2364 spin_unlock(&fs_info->trans_lock);
2365 if (is_dead_root) {
2366 /* prevent this orphan from being found again */
2367 key.offset = found_key.objectid - 1;
2368 continue;
2369 }
2370 }
Josef Bacika8c9e572011-09-21 16:55:59 -04002371 /*
2372 * Inode is already gone but the orphan item is still there,
2373 * kill the orphan item.
2374 */
2375 if (ret == -ESTALE) {
2376 trans = btrfs_start_transaction(root, 1);
2377 if (IS_ERR(trans)) {
2378 ret = PTR_ERR(trans);
2379 goto out;
2380 }
Josef Bacik8a35d952012-05-23 14:26:42 -04002381 printk(KERN_ERR "auto deleting %Lu\n",
2382 found_key.objectid);
Josef Bacika8c9e572011-09-21 16:55:59 -04002383 ret = btrfs_del_orphan_item(trans, root,
2384 found_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002385 BUG_ON(ret); /* -ENOMEM or corruption (JDM: Recheck) */
Josef Bacika8c9e572011-09-21 16:55:59 -04002386 btrfs_end_transaction(trans, root);
2387 continue;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002388 }
Josef Bacik7b128762008-07-24 12:17:14 -04002389
Josef Bacik7b128762008-07-24 12:17:14 -04002390 /*
2391 * add this inode to the orphan list so btrfs_orphan_del does
2392 * the proper thing when we hit it
2393 */
Josef Bacik8a35d952012-05-23 14:26:42 -04002394 set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2395 &BTRFS_I(inode)->runtime_flags);
Josef Bacik7b128762008-07-24 12:17:14 -04002396
Josef Bacik7b128762008-07-24 12:17:14 -04002397 /* if we have links, this was a truncate, lets do that */
2398 if (inode->i_nlink) {
Josef Bacika41ad392011-01-31 15:30:16 -05002399 if (!S_ISREG(inode->i_mode)) {
2400 WARN_ON(1);
2401 iput(inode);
2402 continue;
2403 }
Josef Bacik7b128762008-07-24 12:17:14 -04002404 nr_truncate++;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002405 ret = btrfs_truncate(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04002406 } else {
2407 nr_unlink++;
2408 }
2409
2410 /* this will do delete_inode and everything for us */
2411 iput(inode);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002412 if (ret)
2413 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04002414 }
Miao Xie3254c872011-11-10 20:45:05 -05002415 /* release the path since we're done with it */
2416 btrfs_release_path(path);
2417
Yan, Zhengd68fc572010-05-16 10:49:58 -04002418 root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE;
2419
2420 if (root->orphan_block_rsv)
2421 btrfs_block_rsv_release(root, root->orphan_block_rsv,
2422 (u64)-1);
2423
2424 if (root->orphan_block_rsv || root->orphan_item_inserted) {
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002425 trans = btrfs_join_transaction(root);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002426 if (!IS_ERR(trans))
2427 btrfs_end_transaction(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002428 }
Josef Bacik7b128762008-07-24 12:17:14 -04002429
2430 if (nr_unlink)
2431 printk(KERN_INFO "btrfs: unlinked %d orphans\n", nr_unlink);
2432 if (nr_truncate)
2433 printk(KERN_INFO "btrfs: truncated %d orphans\n", nr_truncate);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002434
2435out:
2436 if (ret)
2437 printk(KERN_CRIT "btrfs: could not do orphan cleanup %d\n", ret);
2438 btrfs_free_path(path);
2439 return ret;
Josef Bacik7b128762008-07-24 12:17:14 -04002440}
2441
Chris Masond352ac62008-09-29 15:18:18 -04002442/*
Chris Mason46a53cc2009-04-27 11:47:50 -04002443 * very simple check to peek ahead in the leaf looking for xattrs. If we
2444 * don't find any xattrs, we know there can't be any acls.
2445 *
2446 * slot is the slot the inode is in, objectid is the objectid of the inode
2447 */
2448static noinline int acls_after_inode_item(struct extent_buffer *leaf,
2449 int slot, u64 objectid)
2450{
2451 u32 nritems = btrfs_header_nritems(leaf);
2452 struct btrfs_key found_key;
2453 int scanned = 0;
2454
2455 slot++;
2456 while (slot < nritems) {
2457 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2458
2459 /* we found a different objectid, there must not be acls */
2460 if (found_key.objectid != objectid)
2461 return 0;
2462
2463 /* we found an xattr, assume we've got an acl */
2464 if (found_key.type == BTRFS_XATTR_ITEM_KEY)
2465 return 1;
2466
2467 /*
2468 * we found a key greater than an xattr key, there can't
2469 * be any acls later on
2470 */
2471 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
2472 return 0;
2473
2474 slot++;
2475 scanned++;
2476
2477 /*
2478 * it goes inode, inode backrefs, xattrs, extents,
2479 * so if there are a ton of hard links to an inode there can
2480 * be a lot of backrefs. Don't waste time searching too hard,
2481 * this is just an optimization
2482 */
2483 if (scanned >= 8)
2484 break;
2485 }
2486 /* we hit the end of the leaf before we found an xattr or
2487 * something larger than an xattr. We have to assume the inode
2488 * has acls
2489 */
2490 return 1;
2491}
2492
2493/*
Chris Masond352ac62008-09-29 15:18:18 -04002494 * read an inode from the btree into the in-memory inode
2495 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002496static void btrfs_read_locked_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002497{
2498 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002499 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002500 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -04002501 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -04002502 struct btrfs_root *root = BTRFS_I(inode)->root;
2503 struct btrfs_key location;
Chris Mason46a53cc2009-04-27 11:47:50 -04002504 int maybe_acls;
Josef Bacik618e21d2007-07-11 10:18:17 -04002505 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04002506 int ret;
Miao Xie2f7e33d2011-06-23 07:27:13 +00002507 bool filled = false;
2508
2509 ret = btrfs_fill_inode(inode, &rdev);
2510 if (!ret)
2511 filled = true;
Chris Mason39279cc2007-06-12 06:35:45 -04002512
2513 path = btrfs_alloc_path();
Mark Fasheh1748f842011-07-12 11:25:31 -07002514 if (!path)
2515 goto make_bad;
2516
Josef Bacikd90c7322011-05-17 09:50:54 -04002517 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002518 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05002519
Chris Mason39279cc2007-06-12 06:35:45 -04002520 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002521 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04002522 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -04002523
Chris Mason5f39d392007-10-15 16:14:19 -04002524 leaf = path->nodes[0];
Miao Xie2f7e33d2011-06-23 07:27:13 +00002525
2526 if (filled)
2527 goto cache_acl;
2528
Chris Mason5f39d392007-10-15 16:14:19 -04002529 inode_item = btrfs_item_ptr(leaf, path->slots[0],
2530 struct btrfs_inode_item);
Chris Mason5f39d392007-10-15 16:14:19 -04002531 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
Miklos Szeredibfe86842011-10-28 14:13:29 +02002532 set_nlink(inode, btrfs_inode_nlink(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002533 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
2534 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
Chris Masondbe674a2008-07-17 12:54:05 -04002535 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002536
2537 tspec = btrfs_inode_atime(inode_item);
2538 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2539 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2540
2541 tspec = btrfs_inode_mtime(inode_item);
2542 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2543 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2544
2545 tspec = btrfs_inode_ctime(inode_item);
2546 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2547 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2548
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002549 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04002550 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04002551 inode->i_version = btrfs_inode_sequence(leaf, inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04002552 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04002553 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002554 rdev = btrfs_inode_rdev(leaf, inode_item);
2555
Josef Bacikaec74772008-07-24 12:12:38 -04002556 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05002557 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Miao Xie2f7e33d2011-06-23 07:27:13 +00002558cache_acl:
Chris Mason46a53cc2009-04-27 11:47:50 -04002559 /*
2560 * try to precache a NULL acl entry for files that don't have
2561 * any xattrs or acls
2562 */
Li Zefan33345d012011-04-20 10:31:50 +08002563 maybe_acls = acls_after_inode_item(leaf, path->slots[0],
2564 btrfs_ino(inode));
Al Viro72c04902009-06-24 16:58:48 -04002565 if (!maybe_acls)
2566 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04002567
Chris Mason39279cc2007-06-12 06:35:45 -04002568 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002569
Chris Mason39279cc2007-06-12 06:35:45 -04002570 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04002571 case S_IFREG:
2572 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04002573 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05002574 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04002575 inode->i_fop = &btrfs_file_operations;
2576 inode->i_op = &btrfs_file_inode_operations;
2577 break;
2578 case S_IFDIR:
2579 inode->i_fop = &btrfs_dir_file_operations;
2580 if (root == root->fs_info->tree_root)
2581 inode->i_op = &btrfs_dir_ro_inode_operations;
2582 else
2583 inode->i_op = &btrfs_dir_inode_operations;
2584 break;
2585 case S_IFLNK:
2586 inode->i_op = &btrfs_symlink_inode_operations;
2587 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04002588 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04002589 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04002590 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05002591 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04002592 init_special_inode(inode, inode->i_mode, rdev);
2593 break;
Chris Mason39279cc2007-06-12 06:35:45 -04002594 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002595
2596 btrfs_update_iflags(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002597 return;
2598
2599make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04002600 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002601 make_bad_inode(inode);
2602}
2603
Chris Masond352ac62008-09-29 15:18:18 -04002604/*
2605 * given a leaf and an inode, copy the inode fields into the leaf
2606 */
Chris Masone02119d2008-09-05 16:13:11 -04002607static void fill_inode_item(struct btrfs_trans_handle *trans,
2608 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04002609 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04002610 struct inode *inode)
2611{
Chris Mason5f39d392007-10-15 16:14:19 -04002612 btrfs_set_inode_uid(leaf, item, inode->i_uid);
2613 btrfs_set_inode_gid(leaf, item, inode->i_gid);
Chris Masondbe674a2008-07-17 12:54:05 -04002614 btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size);
Chris Mason5f39d392007-10-15 16:14:19 -04002615 btrfs_set_inode_mode(leaf, item, inode->i_mode);
2616 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
2617
2618 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
2619 inode->i_atime.tv_sec);
2620 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
2621 inode->i_atime.tv_nsec);
2622
2623 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
2624 inode->i_mtime.tv_sec);
2625 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
2626 inode->i_mtime.tv_nsec);
2627
2628 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
2629 inode->i_ctime.tv_sec);
2630 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
2631 inode->i_ctime.tv_nsec);
2632
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002633 btrfs_set_inode_nbytes(leaf, item, inode_get_bytes(inode));
Chris Masone02119d2008-09-05 16:13:11 -04002634 btrfs_set_inode_generation(leaf, item, BTRFS_I(inode)->generation);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04002635 btrfs_set_inode_sequence(leaf, item, inode->i_version);
Chris Masone02119d2008-09-05 16:13:11 -04002636 btrfs_set_inode_transid(leaf, item, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002637 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -05002638 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Josef Bacikd82a6f12011-05-11 15:26:06 -04002639 btrfs_set_inode_block_group(leaf, item, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002640}
2641
Chris Masond352ac62008-09-29 15:18:18 -04002642/*
2643 * copy everything in the in-memory inode into the btree.
2644 */
Chris Mason21151332011-11-10 20:39:08 -05002645static noinline int btrfs_update_inode_item(struct btrfs_trans_handle *trans,
Chris Masond3977122009-01-05 21:25:51 -05002646 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002647{
2648 struct btrfs_inode_item *inode_item;
2649 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002650 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002651 int ret;
2652
2653 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08002654 if (!path)
2655 return -ENOMEM;
2656
Chris Masonb9473432009-03-13 11:00:37 -04002657 path->leave_spinning = 1;
Miao Xie16cdcec2011-04-22 18:12:22 +08002658 ret = btrfs_lookup_inode(trans, root, path, &BTRFS_I(inode)->location,
2659 1);
Chris Mason39279cc2007-06-12 06:35:45 -04002660 if (ret) {
2661 if (ret > 0)
2662 ret = -ENOENT;
2663 goto failed;
2664 }
2665
Chris Masonb4ce94d2009-02-04 09:25:08 -05002666 btrfs_unlock_up_safe(path, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002667 leaf = path->nodes[0];
2668 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Miao Xie16cdcec2011-04-22 18:12:22 +08002669 struct btrfs_inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -04002670
Chris Masone02119d2008-09-05 16:13:11 -04002671 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002672 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002673 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002674 ret = 0;
2675failed:
Chris Mason39279cc2007-06-12 06:35:45 -04002676 btrfs_free_path(path);
2677 return ret;
2678}
2679
Chris Masond352ac62008-09-29 15:18:18 -04002680/*
Chris Mason21151332011-11-10 20:39:08 -05002681 * copy everything in the in-memory inode into the btree.
2682 */
2683noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
2684 struct btrfs_root *root, struct inode *inode)
2685{
2686 int ret;
2687
2688 /*
2689 * If the inode is a free space inode, we can deadlock during commit
2690 * if we put it into the delayed code.
2691 *
2692 * The data relocation inode should also be directly updated
2693 * without delay
2694 */
2695 if (!btrfs_is_free_space_inode(root, inode)
2696 && root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID) {
2697 ret = btrfs_delayed_update_inode(trans, root, inode);
2698 if (!ret)
2699 btrfs_set_inode_last_trans(trans, inode);
2700 return ret;
2701 }
2702
2703 return btrfs_update_inode_item(trans, root, inode);
2704}
2705
2706static noinline int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans,
2707 struct btrfs_root *root, struct inode *inode)
2708{
2709 int ret;
2710
2711 ret = btrfs_update_inode(trans, root, inode);
2712 if (ret == -ENOSPC)
2713 return btrfs_update_inode_item(trans, root, inode);
2714 return ret;
2715}
2716
2717/*
Chris Masond352ac62008-09-29 15:18:18 -04002718 * unlink helper that gets used here in inode.c and in the tree logging
2719 * recovery code. It remove a link in a directory with a given name, and
2720 * also drops the back refs in the inode to the directory
2721 */
Al Viro92986792011-03-04 17:14:37 +00002722static int __btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2723 struct btrfs_root *root,
2724 struct inode *dir, struct inode *inode,
2725 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04002726{
2727 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04002728 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002729 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002730 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04002731 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04002732 u64 index;
Li Zefan33345d012011-04-20 10:31:50 +08002733 u64 ino = btrfs_ino(inode);
2734 u64 dir_ino = btrfs_ino(dir);
Chris Mason39279cc2007-06-12 06:35:45 -04002735
2736 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002737 if (!path) {
2738 ret = -ENOMEM;
Tsutomu Itoh554233a2011-02-03 03:16:25 +00002739 goto out;
Chris Mason54aa1f42007-06-22 14:16:25 -04002740 }
2741
Chris Masonb9473432009-03-13 11:00:37 -04002742 path->leave_spinning = 1;
Li Zefan33345d012011-04-20 10:31:50 +08002743 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Chris Mason39279cc2007-06-12 06:35:45 -04002744 name, name_len, -1);
2745 if (IS_ERR(di)) {
2746 ret = PTR_ERR(di);
2747 goto err;
2748 }
2749 if (!di) {
2750 ret = -ENOENT;
2751 goto err;
2752 }
Chris Mason5f39d392007-10-15 16:14:19 -04002753 leaf = path->nodes[0];
2754 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04002755 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04002756 if (ret)
2757 goto err;
David Sterbab3b4aa72011-04-21 01:20:15 +02002758 btrfs_release_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002759
Li Zefan33345d012011-04-20 10:31:50 +08002760 ret = btrfs_del_inode_ref(trans, root, name, name_len, ino,
2761 dir_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04002762 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05002763 printk(KERN_INFO "btrfs failed to delete reference to %.*s, "
Li Zefan33345d012011-04-20 10:31:50 +08002764 "inode %llu parent %llu\n", name_len, name,
2765 (unsigned long long)ino, (unsigned long long)dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002766 btrfs_abort_transaction(trans, root, ret);
Josef Bacikaec74772008-07-24 12:12:38 -04002767 goto err;
2768 }
2769
Miao Xie16cdcec2011-04-22 18:12:22 +08002770 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002771 if (ret) {
2772 btrfs_abort_transaction(trans, root, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04002773 goto err;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002774 }
Chris Mason39279cc2007-06-12 06:35:45 -04002775
Chris Masone02119d2008-09-05 16:13:11 -04002776 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
Li Zefan33345d012011-04-20 10:31:50 +08002777 inode, dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002778 if (ret != 0 && ret != -ENOENT) {
2779 btrfs_abort_transaction(trans, root, ret);
2780 goto err;
2781 }
Chris Masone02119d2008-09-05 16:13:11 -04002782
2783 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
2784 dir, index);
Chris Mason6418c962010-10-30 07:34:24 -04002785 if (ret == -ENOENT)
2786 ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002787err:
2788 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002789 if (ret)
2790 goto out;
2791
2792 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04002793 inode_inc_iversion(inode);
2794 inode_inc_iversion(dir);
Chris Masone02119d2008-09-05 16:13:11 -04002795 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
2796 btrfs_update_inode(trans, root, dir);
Chris Masone02119d2008-09-05 16:13:11 -04002797out:
Chris Mason39279cc2007-06-12 06:35:45 -04002798 return ret;
2799}
2800
Al Viro92986792011-03-04 17:14:37 +00002801int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2802 struct btrfs_root *root,
2803 struct inode *dir, struct inode *inode,
2804 const char *name, int name_len)
2805{
2806 int ret;
2807 ret = __btrfs_unlink_inode(trans, root, dir, inode, name, name_len);
2808 if (!ret) {
2809 btrfs_drop_nlink(inode);
2810 ret = btrfs_update_inode(trans, root, inode);
2811 }
2812 return ret;
2813}
2814
2815
Yan, Zhenga22285a2010-05-16 10:48:46 -04002816/* helper to check if there is any shared block in the path */
2817static int check_path_shared(struct btrfs_root *root,
2818 struct btrfs_path *path)
2819{
2820 struct extent_buffer *eb;
2821 int level;
Dan Carpenter0e4dcbef2010-06-01 08:23:11 +00002822 u64 refs = 1;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002823
2824 for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
Josef Bacikdedefd72011-01-24 21:43:18 +00002825 int ret;
2826
Yan, Zhenga22285a2010-05-16 10:48:46 -04002827 if (!path->nodes[level])
2828 break;
2829 eb = path->nodes[level];
2830 if (!btrfs_block_can_be_shared(root, eb))
2831 continue;
2832 ret = btrfs_lookup_extent_info(NULL, root, eb->start, eb->len,
2833 &refs, NULL);
2834 if (refs > 1)
2835 return 1;
2836 }
Josef Bacikdedefd72011-01-24 21:43:18 +00002837 return 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002838}
2839
2840/*
2841 * helper to start transaction for unlink and rmdir.
2842 *
2843 * unlink and rmdir are special in btrfs, they do not always free space.
2844 * so in enospc case, we should make sure they will free space before
2845 * allowing them to use the global metadata reservation.
2846 */
2847static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir,
2848 struct dentry *dentry)
2849{
2850 struct btrfs_trans_handle *trans;
2851 struct btrfs_root *root = BTRFS_I(dir)->root;
2852 struct btrfs_path *path;
2853 struct btrfs_inode_ref *ref;
2854 struct btrfs_dir_item *di;
2855 struct inode *inode = dentry->d_inode;
2856 u64 index;
2857 int check_link = 1;
2858 int err = -ENOSPC;
2859 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08002860 u64 ino = btrfs_ino(inode);
2861 u64 dir_ino = btrfs_ino(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002862
Josef Bacike70bea52011-10-11 14:18:24 -04002863 /*
2864 * 1 for the possible orphan item
2865 * 1 for the dir item
2866 * 1 for the dir index
2867 * 1 for the inode ref
2868 * 1 for the inode ref in the tree log
2869 * 2 for the dir entries in the log
2870 * 1 for the inode
2871 */
2872 trans = btrfs_start_transaction(root, 8);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002873 if (!IS_ERR(trans) || PTR_ERR(trans) != -ENOSPC)
2874 return trans;
2875
Li Zefan33345d012011-04-20 10:31:50 +08002876 if (ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhenga22285a2010-05-16 10:48:46 -04002877 return ERR_PTR(-ENOSPC);
2878
2879 /* check if there is someone else holds reference */
2880 if (S_ISDIR(inode->i_mode) && atomic_read(&inode->i_count) > 1)
2881 return ERR_PTR(-ENOSPC);
2882
2883 if (atomic_read(&inode->i_count) > 2)
2884 return ERR_PTR(-ENOSPC);
2885
2886 if (xchg(&root->fs_info->enospc_unlink, 1))
2887 return ERR_PTR(-ENOSPC);
2888
2889 path = btrfs_alloc_path();
2890 if (!path) {
2891 root->fs_info->enospc_unlink = 0;
2892 return ERR_PTR(-ENOMEM);
2893 }
2894
Josef Bacik3880a1b2011-10-14 14:46:51 -04002895 /* 1 for the orphan item */
2896 trans = btrfs_start_transaction(root, 1);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002897 if (IS_ERR(trans)) {
2898 btrfs_free_path(path);
2899 root->fs_info->enospc_unlink = 0;
2900 return trans;
2901 }
2902
2903 path->skip_locking = 1;
2904 path->search_commit_root = 1;
2905
2906 ret = btrfs_lookup_inode(trans, root, path,
2907 &BTRFS_I(dir)->location, 0);
2908 if (ret < 0) {
2909 err = ret;
2910 goto out;
2911 }
2912 if (ret == 0) {
2913 if (check_path_shared(root, path))
2914 goto out;
2915 } else {
2916 check_link = 0;
2917 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002918 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002919
2920 ret = btrfs_lookup_inode(trans, root, path,
2921 &BTRFS_I(inode)->location, 0);
2922 if (ret < 0) {
2923 err = ret;
2924 goto out;
2925 }
2926 if (ret == 0) {
2927 if (check_path_shared(root, path))
2928 goto out;
2929 } else {
2930 check_link = 0;
2931 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002932 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002933
2934 if (ret == 0 && S_ISREG(inode->i_mode)) {
2935 ret = btrfs_lookup_file_extent(trans, root, path,
Li Zefan33345d012011-04-20 10:31:50 +08002936 ino, (u64)-1, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002937 if (ret < 0) {
2938 err = ret;
2939 goto out;
2940 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002941 BUG_ON(ret == 0); /* Corruption */
Yan, Zhenga22285a2010-05-16 10:48:46 -04002942 if (check_path_shared(root, path))
2943 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +02002944 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002945 }
2946
2947 if (!check_link) {
2948 err = 0;
2949 goto out;
2950 }
2951
Li Zefan33345d012011-04-20 10:31:50 +08002952 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zhenga22285a2010-05-16 10:48:46 -04002953 dentry->d_name.name, dentry->d_name.len, 0);
2954 if (IS_ERR(di)) {
2955 err = PTR_ERR(di);
2956 goto out;
2957 }
2958 if (di) {
2959 if (check_path_shared(root, path))
2960 goto out;
2961 } else {
2962 err = 0;
2963 goto out;
2964 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002965 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002966
2967 ref = btrfs_lookup_inode_ref(trans, root, path,
2968 dentry->d_name.name, dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08002969 ino, dir_ino, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002970 if (IS_ERR(ref)) {
2971 err = PTR_ERR(ref);
2972 goto out;
2973 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002974 BUG_ON(!ref); /* Logic error */
Yan, Zhenga22285a2010-05-16 10:48:46 -04002975 if (check_path_shared(root, path))
2976 goto out;
2977 index = btrfs_inode_ref_index(path->nodes[0], ref);
David Sterbab3b4aa72011-04-21 01:20:15 +02002978 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002979
Miao Xie16cdcec2011-04-22 18:12:22 +08002980 /*
2981 * This is a commit root search, if we can lookup inode item and other
2982 * relative items in the commit root, it means the transaction of
2983 * dir/file creation has been committed, and the dir index item that we
2984 * delay to insert has also been inserted into the commit root. So
2985 * we needn't worry about the delayed insertion of the dir index item
2986 * here.
2987 */
Li Zefan33345d012011-04-20 10:31:50 +08002988 di = btrfs_lookup_dir_index_item(trans, root, path, dir_ino, index,
Yan, Zhenga22285a2010-05-16 10:48:46 -04002989 dentry->d_name.name, dentry->d_name.len, 0);
2990 if (IS_ERR(di)) {
2991 err = PTR_ERR(di);
2992 goto out;
2993 }
2994 BUG_ON(ret == -ENOENT);
2995 if (check_path_shared(root, path))
2996 goto out;
2997
2998 err = 0;
2999out:
3000 btrfs_free_path(path);
Josef Bacik3880a1b2011-10-14 14:46:51 -04003001 /* Migrate the orphan reservation over */
3002 if (!err)
3003 err = btrfs_block_rsv_migrate(trans->block_rsv,
3004 &root->fs_info->global_block_rsv,
Josef Bacik5a77d762011-11-01 14:32:23 -04003005 trans->bytes_reserved);
Josef Bacik3880a1b2011-10-14 14:46:51 -04003006
Yan, Zhenga22285a2010-05-16 10:48:46 -04003007 if (err) {
3008 btrfs_end_transaction(trans, root);
3009 root->fs_info->enospc_unlink = 0;
3010 return ERR_PTR(err);
3011 }
3012
3013 trans->block_rsv = &root->fs_info->global_block_rsv;
3014 return trans;
3015}
3016
3017static void __unlink_end_trans(struct btrfs_trans_handle *trans,
3018 struct btrfs_root *root)
3019{
3020 if (trans->block_rsv == &root->fs_info->global_block_rsv) {
Josef Bacik5a77d762011-11-01 14:32:23 -04003021 btrfs_block_rsv_release(root, trans->block_rsv,
3022 trans->bytes_reserved);
3023 trans->block_rsv = &root->fs_info->trans_block_rsv;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003024 BUG_ON(!root->fs_info->enospc_unlink);
3025 root->fs_info->enospc_unlink = 0;
3026 }
Josef Bacik7ad85bb2012-01-12 19:10:12 -05003027 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003028}
3029
Chris Mason39279cc2007-06-12 06:35:45 -04003030static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
3031{
Yan, Zhenga22285a2010-05-16 10:48:46 -04003032 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003033 struct btrfs_trans_handle *trans;
Josef Bacik7b128762008-07-24 12:17:14 -04003034 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04003035 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05003036 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003037
Yan, Zhenga22285a2010-05-16 10:48:46 -04003038 trans = __unlink_start_trans(dir, dentry);
3039 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003040 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04003041
Chris Mason12fcfd22009-03-24 10:24:20 -04003042 btrfs_record_unlink_dir(trans, dir, dentry->d_inode, 0);
3043
Chris Masone02119d2008-09-05 16:13:11 -04003044 ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
3045 dentry->d_name.name, dentry->d_name.len);
Tsutomu Itohb5324022011-07-19 07:27:20 +00003046 if (ret)
3047 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003048
Yan, Zhenga22285a2010-05-16 10:48:46 -04003049 if (inode->i_nlink == 0) {
Josef Bacik7b128762008-07-24 12:17:14 -04003050 ret = btrfs_orphan_add(trans, inode);
Tsutomu Itohb5324022011-07-19 07:27:20 +00003051 if (ret)
3052 goto out;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003053 }
Josef Bacik7b128762008-07-24 12:17:14 -04003054
Tsutomu Itohb5324022011-07-19 07:27:20 +00003055out:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003056 nr = trans->blocks_used;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003057 __unlink_end_trans(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003058 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003059 return ret;
3060}
3061
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003062int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
3063 struct btrfs_root *root,
3064 struct inode *dir, u64 objectid,
3065 const char *name, int name_len)
3066{
3067 struct btrfs_path *path;
3068 struct extent_buffer *leaf;
3069 struct btrfs_dir_item *di;
3070 struct btrfs_key key;
3071 u64 index;
3072 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08003073 u64 dir_ino = btrfs_ino(dir);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003074
3075 path = btrfs_alloc_path();
3076 if (!path)
3077 return -ENOMEM;
3078
Li Zefan33345d012011-04-20 10:31:50 +08003079 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003080 name, name_len, -1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003081 if (IS_ERR_OR_NULL(di)) {
3082 if (!di)
3083 ret = -ENOENT;
3084 else
3085 ret = PTR_ERR(di);
3086 goto out;
3087 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003088
3089 leaf = path->nodes[0];
3090 btrfs_dir_item_key_to_cpu(leaf, di, &key);
3091 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
3092 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003093 if (ret) {
3094 btrfs_abort_transaction(trans, root, ret);
3095 goto out;
3096 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003097 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003098
3099 ret = btrfs_del_root_ref(trans, root->fs_info->tree_root,
3100 objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08003101 dir_ino, &index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003102 if (ret < 0) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003103 if (ret != -ENOENT) {
3104 btrfs_abort_transaction(trans, root, ret);
3105 goto out;
3106 }
Li Zefan33345d012011-04-20 10:31:50 +08003107 di = btrfs_search_dir_index_item(root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003108 name, name_len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003109 if (IS_ERR_OR_NULL(di)) {
3110 if (!di)
3111 ret = -ENOENT;
3112 else
3113 ret = PTR_ERR(di);
3114 btrfs_abort_transaction(trans, root, ret);
3115 goto out;
3116 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003117
3118 leaf = path->nodes[0];
3119 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02003120 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003121 index = key.offset;
3122 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003123 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003124
Miao Xie16cdcec2011-04-22 18:12:22 +08003125 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003126 if (ret) {
3127 btrfs_abort_transaction(trans, root, ret);
3128 goto out;
3129 }
Miao Xie16cdcec2011-04-22 18:12:22 +08003130
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003131 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04003132 inode_inc_iversion(dir);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003133 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
3134 ret = btrfs_update_inode(trans, root, dir);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003135 if (ret)
3136 btrfs_abort_transaction(trans, root, ret);
3137out:
Josef Bacik71d7aed2011-06-14 14:24:32 -04003138 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003139 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003140}
3141
Chris Mason39279cc2007-06-12 06:35:45 -04003142static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
3143{
3144 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05003145 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003146 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003147 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -05003148 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003149
Chris Mason3394e162008-11-17 20:42:26 -05003150 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE ||
Li Zefan33345d012011-04-20 10:31:50 +08003151 btrfs_ino(inode) == BTRFS_FIRST_FREE_OBJECTID)
Yan134d4512007-10-25 15:49:25 -04003152 return -ENOTEMPTY;
3153
Yan, Zhenga22285a2010-05-16 10:48:46 -04003154 trans = __unlink_start_trans(dir, dentry);
3155 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003156 return PTR_ERR(trans);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003157
Li Zefan33345d012011-04-20 10:31:50 +08003158 if (unlikely(btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003159 err = btrfs_unlink_subvol(trans, root, dir,
3160 BTRFS_I(inode)->location.objectid,
3161 dentry->d_name.name,
3162 dentry->d_name.len);
3163 goto out;
3164 }
3165
Josef Bacik7b128762008-07-24 12:17:14 -04003166 err = btrfs_orphan_add(trans, inode);
3167 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003168 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003169
Chris Mason39279cc2007-06-12 06:35:45 -04003170 /* now the directory is empty */
Chris Masone02119d2008-09-05 16:13:11 -04003171 err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
3172 dentry->d_name.name, dentry->d_name.len);
Chris Masond3977122009-01-05 21:25:51 -05003173 if (!err)
Chris Masondbe674a2008-07-17 12:54:05 -04003174 btrfs_i_size_write(inode, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003175out:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003176 nr = trans->blocks_used;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003177 __unlink_end_trans(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003178 btrfs_btree_balance_dirty(root, nr);
Chris Mason39544012007-12-12 14:38:19 -05003179
Chris Mason39279cc2007-06-12 06:35:45 -04003180 return err;
3181}
3182
Chris Mason323ac952008-10-01 19:05:46 -04003183/*
Chris Mason39279cc2007-06-12 06:35:45 -04003184 * this can truncate away extent items, csum items and directory items.
3185 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04003186 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04003187 *
3188 * csum items that cross the new i_size are truncated to the new size
3189 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04003190 *
3191 * min_type is the minimum key type to truncate down to. If set to 0, this
3192 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04003193 */
Yan, Zheng80825102009-11-12 09:35:36 +00003194int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
3195 struct btrfs_root *root,
3196 struct inode *inode,
3197 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003198{
Chris Mason39279cc2007-06-12 06:35:45 -04003199 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003200 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003201 struct btrfs_file_extent_item *fi;
Yan, Zheng80825102009-11-12 09:35:36 +00003202 struct btrfs_key key;
3203 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04003204 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04003205 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003206 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003207 u64 item_end = 0;
Yan, Zheng80825102009-11-12 09:35:36 +00003208 u64 mask = root->sectorsize - 1;
3209 u32 found_type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -04003210 int found_extent;
3211 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05003212 int pending_del_nr = 0;
3213 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04003214 int extent_type = -1;
Yan, Zheng80825102009-11-12 09:35:36 +00003215 int ret;
3216 int err = 0;
Li Zefan33345d012011-04-20 10:31:50 +08003217 u64 ino = btrfs_ino(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003218
3219 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04003220
Mark Fasheh0eb0e192011-07-12 16:44:10 -07003221 path = btrfs_alloc_path();
3222 if (!path)
3223 return -ENOMEM;
3224 path->reada = -1;
3225
Josef Bacik0af3d002010-06-21 14:48:16 -04003226 if (root->ref_cows || root == root->fs_info->tree_root)
Zheng Yan5b21f2e2008-09-26 10:05:38 -04003227 btrfs_drop_extent_cache(inode, new_size & (~mask), (u64)-1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003228
Miao Xie16cdcec2011-04-22 18:12:22 +08003229 /*
3230 * This function is also used to drop the items in the log tree before
3231 * we relog the inode, so if root != BTRFS_I(inode)->root, it means
3232 * it is used to drop the loged items. So we shouldn't kill the delayed
3233 * items.
3234 */
3235 if (min_type == 0 && root == BTRFS_I(inode)->root)
3236 btrfs_kill_delayed_inode_items(inode);
3237
Li Zefan33345d012011-04-20 10:31:50 +08003238 key.objectid = ino;
Chris Mason39279cc2007-06-12 06:35:45 -04003239 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04003240 key.type = (u8)-1;
3241
Chris Mason85e21ba2008-01-29 15:11:36 -05003242search_again:
Chris Masonb9473432009-03-13 11:00:37 -04003243 path->leave_spinning = 1;
Chris Mason85e21ba2008-01-29 15:11:36 -05003244 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Yan, Zheng80825102009-11-12 09:35:36 +00003245 if (ret < 0) {
3246 err = ret;
3247 goto out;
3248 }
Chris Masond3977122009-01-05 21:25:51 -05003249
Chris Mason85e21ba2008-01-29 15:11:36 -05003250 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003251 /* there are no items in the tree for us to truncate, we're
3252 * done
3253 */
Yan, Zheng80825102009-11-12 09:35:36 +00003254 if (path->slots[0] == 0)
3255 goto out;
Chris Mason85e21ba2008-01-29 15:11:36 -05003256 path->slots[0]--;
3257 }
3258
Chris Masond3977122009-01-05 21:25:51 -05003259 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04003260 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04003261 leaf = path->nodes[0];
3262 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3263 found_type = btrfs_key_type(&found_key);
Chris Mason39279cc2007-06-12 06:35:45 -04003264
Li Zefan33345d012011-04-20 10:31:50 +08003265 if (found_key.objectid != ino)
Chris Mason39279cc2007-06-12 06:35:45 -04003266 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003267
Chris Mason85e21ba2008-01-29 15:11:36 -05003268 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003269 break;
3270
Chris Mason5f39d392007-10-15 16:14:19 -04003271 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04003272 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04003273 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04003274 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04003275 extent_type = btrfs_file_extent_type(leaf, fi);
3276 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04003277 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04003278 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04003279 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04003280 item_end += btrfs_file_extent_inline_len(leaf,
Chris Masonc8b97812008-10-29 14:49:59 -04003281 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003282 }
Yan008630c2007-11-07 13:31:09 -05003283 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04003284 }
Yan, Zheng80825102009-11-12 09:35:36 +00003285 if (found_type > min_type) {
Chris Mason39279cc2007-06-12 06:35:45 -04003286 del_item = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00003287 } else {
3288 if (item_end < new_size)
3289 break;
3290 if (found_key.offset >= new_size)
3291 del_item = 1;
3292 else
3293 del_item = 0;
3294 }
Chris Mason39279cc2007-06-12 06:35:45 -04003295 found_extent = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003296 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04003297 if (found_type != BTRFS_EXTENT_DATA_KEY)
3298 goto delete;
3299
3300 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04003301 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04003302 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Miao Xief70a9a6b2012-01-12 19:10:12 -05003303 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -04003304 u64 orig_num_bytes =
3305 btrfs_file_extent_num_bytes(leaf, fi);
Chris Masone02119d2008-09-05 16:13:11 -04003306 extent_num_bytes = new_size -
Chris Mason5f39d392007-10-15 16:14:19 -04003307 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -05003308 extent_num_bytes = extent_num_bytes &
3309 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04003310 btrfs_set_file_extent_num_bytes(leaf, fi,
3311 extent_num_bytes);
3312 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05003313 extent_num_bytes);
Chris Masone02119d2008-09-05 16:13:11 -04003314 if (root->ref_cows && extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003315 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04003316 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003317 } else {
Chris Masondb945352007-10-15 16:15:53 -04003318 extent_num_bytes =
3319 btrfs_file_extent_disk_num_bytes(leaf,
3320 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003321 extent_offset = found_key.offset -
3322 btrfs_file_extent_offset(leaf, fi);
3323
Chris Mason39279cc2007-06-12 06:35:45 -04003324 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05003325 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003326 if (extent_start != 0) {
3327 found_extent = 1;
Chris Masone02119d2008-09-05 16:13:11 -04003328 if (root->ref_cows)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003329 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04003330 }
3331 }
Chris Mason90692182008-02-08 13:49:28 -05003332 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003333 /*
3334 * we can't truncate inline items that have had
3335 * special encodings
3336 */
3337 if (!del_item &&
3338 btrfs_file_extent_compression(leaf, fi) == 0 &&
3339 btrfs_file_extent_encryption(leaf, fi) == 0 &&
3340 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003341 u32 size = new_size - found_key.offset;
3342
3343 if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003344 inode_sub_bytes(inode, item_end + 1 -
3345 new_size);
Chris Masone02119d2008-09-05 16:13:11 -04003346 }
3347 size =
3348 btrfs_file_extent_calc_inline_size(size);
Jeff Mahoney143bede2012-03-01 14:56:26 +01003349 btrfs_truncate_item(trans, root, path,
3350 size, 1);
Chris Masone02119d2008-09-05 16:13:11 -04003351 } else if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003352 inode_sub_bytes(inode, item_end + 1 -
3353 found_key.offset);
Chris Mason90692182008-02-08 13:49:28 -05003354 }
Chris Mason39279cc2007-06-12 06:35:45 -04003355 }
Chris Mason179e29e2007-11-01 11:28:41 -04003356delete:
Chris Mason39279cc2007-06-12 06:35:45 -04003357 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05003358 if (!pending_del_nr) {
3359 /* no pending yet, add ourselves */
3360 pending_del_slot = path->slots[0];
3361 pending_del_nr = 1;
3362 } else if (pending_del_nr &&
3363 path->slots[0] + 1 == pending_del_slot) {
3364 /* hop on the pending chunk */
3365 pending_del_nr++;
3366 pending_del_slot = path->slots[0];
3367 } else {
Chris Masond3977122009-01-05 21:25:51 -05003368 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05003369 }
Chris Mason39279cc2007-06-12 06:35:45 -04003370 } else {
3371 break;
3372 }
Josef Bacik0af3d002010-06-21 14:48:16 -04003373 if (found_extent && (root->ref_cows ||
3374 root == root->fs_info->tree_root)) {
Chris Masonb9473432009-03-13 11:00:37 -04003375 btrfs_set_path_blocking(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003376 ret = btrfs_free_extent(trans, root, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003377 extent_num_bytes, 0,
3378 btrfs_header_owner(leaf),
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003379 ino, extent_offset, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04003380 BUG_ON(ret);
3381 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003382
Yan, Zheng80825102009-11-12 09:35:36 +00003383 if (found_type == BTRFS_INODE_ITEM_KEY)
3384 break;
3385
3386 if (path->slots[0] == 0 ||
3387 path->slots[0] != pending_del_slot) {
Li Zefan82d59022011-04-20 10:33:24 +08003388 if (root->ref_cows &&
3389 BTRFS_I(inode)->location.objectid !=
3390 BTRFS_FREE_INO_OBJECTID) {
Yan, Zheng80825102009-11-12 09:35:36 +00003391 err = -EAGAIN;
3392 goto out;
3393 }
3394 if (pending_del_nr) {
3395 ret = btrfs_del_items(trans, root, path,
3396 pending_del_slot,
3397 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003398 if (ret) {
3399 btrfs_abort_transaction(trans,
3400 root, ret);
3401 goto error;
3402 }
Yan, Zheng80825102009-11-12 09:35:36 +00003403 pending_del_nr = 0;
3404 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003405 btrfs_release_path(path);
Chris Mason85e21ba2008-01-29 15:11:36 -05003406 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00003407 } else {
3408 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05003409 }
Chris Mason39279cc2007-06-12 06:35:45 -04003410 }
Yan, Zheng80825102009-11-12 09:35:36 +00003411out:
Chris Mason85e21ba2008-01-29 15:11:36 -05003412 if (pending_del_nr) {
3413 ret = btrfs_del_items(trans, root, path, pending_del_slot,
3414 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003415 if (ret)
3416 btrfs_abort_transaction(trans, root, ret);
Chris Mason85e21ba2008-01-29 15:11:36 -05003417 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003418error:
Chris Mason39279cc2007-06-12 06:35:45 -04003419 btrfs_free_path(path);
Yan, Zheng80825102009-11-12 09:35:36 +00003420 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003421}
3422
Chris Masona52d9a82007-08-27 16:49:44 -04003423/*
3424 * taken from block_truncate_page, but does cow as it zeros out
3425 * any bytes left in the last page in the file.
3426 */
3427static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
3428{
3429 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -04003430 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003431 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
3432 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003433 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003434 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04003435 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04003436 pgoff_t index = from >> PAGE_CACHE_SHIFT;
3437 unsigned offset = from & (PAGE_CACHE_SIZE-1);
3438 struct page *page;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04003439 gfp_t mask = btrfs_alloc_write_mask(mapping);
Chris Masona52d9a82007-08-27 16:49:44 -04003440 int ret = 0;
3441 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003442 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04003443
3444 if ((offset & (blocksize - 1)) == 0)
3445 goto out;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003446 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003447 if (ret)
3448 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003449
3450 ret = -ENOMEM;
Chris Mason211c17f2008-05-15 09:13:45 -04003451again:
Josef Bacik3b16a4e2011-09-21 15:05:58 -04003452 page = find_or_create_page(mapping, index, mask);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003453 if (!page) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003454 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Masona52d9a82007-08-27 16:49:44 -04003455 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04003456 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003457
3458 page_start = page_offset(page);
3459 page_end = page_start + PAGE_CACHE_SIZE - 1;
3460
Chris Masona52d9a82007-08-27 16:49:44 -04003461 if (!PageUptodate(page)) {
3462 ret = btrfs_readpage(NULL, page);
3463 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04003464 if (page->mapping != mapping) {
3465 unlock_page(page);
3466 page_cache_release(page);
3467 goto again;
3468 }
Chris Masona52d9a82007-08-27 16:49:44 -04003469 if (!PageUptodate(page)) {
3470 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04003471 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04003472 }
3473 }
Chris Mason211c17f2008-05-15 09:13:45 -04003474 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003475
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003476 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003477 set_page_extent_mapped(page);
3478
3479 ordered = btrfs_lookup_ordered_extent(inode, page_start);
3480 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003481 unlock_extent_cached(io_tree, page_start, page_end,
3482 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003483 unlock_page(page);
3484 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04003485 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003486 btrfs_put_ordered_extent(ordered);
3487 goto again;
3488 }
3489
Josef Bacik2ac55d42010-02-03 19:33:23 +00003490 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Josef Bacik5d5e1032009-10-13 16:46:49 -04003491 EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003492 0, 0, &cached_state, GFP_NOFS);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003493
Josef Bacik2ac55d42010-02-03 19:33:23 +00003494 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
3495 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003496 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003497 unlock_extent_cached(io_tree, page_start, page_end,
3498 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003499 goto out_unlock;
3500 }
3501
Chris Masone6dcd2d2008-07-17 12:53:50 -04003502 ret = 0;
3503 if (offset != PAGE_CACHE_SIZE) {
3504 kaddr = kmap(page);
3505 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
3506 flush_dcache_page(page);
3507 kunmap(page);
3508 }
Chris Mason247e7432008-07-17 12:53:51 -04003509 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003510 set_page_dirty(page);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003511 unlock_extent_cached(io_tree, page_start, page_end, &cached_state,
3512 GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04003513
Chris Mason89642222008-07-24 09:41:53 -04003514out_unlock:
Josef Bacik5d5e1032009-10-13 16:46:49 -04003515 if (ret)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003516 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason39279cc2007-06-12 06:35:45 -04003517 unlock_page(page);
3518 page_cache_release(page);
3519out:
3520 return ret;
3521}
3522
Josef Bacik695a0d02011-03-04 15:46:53 -05003523/*
3524 * This function puts in dummy file extents for the area we're creating a hole
3525 * for. So if we are truncating this file to a larger size we need to insert
3526 * these file extents so that btrfs_get_extent will return a EXTENT_MAP_HOLE for
3527 * the range between oldsize and size
3528 */
Josef Bacika41ad392011-01-31 15:30:16 -05003529int btrfs_cont_expand(struct inode *inode, loff_t oldsize, loff_t size)
Yan Zheng9036c102008-10-30 14:19:41 -04003530{
3531 struct btrfs_trans_handle *trans;
3532 struct btrfs_root *root = BTRFS_I(inode)->root;
3533 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003534 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003535 struct extent_state *cached_state = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04003536 u64 mask = root->sectorsize - 1;
Josef Bacika41ad392011-01-31 15:30:16 -05003537 u64 hole_start = (oldsize + mask) & ~mask;
Yan Zheng9036c102008-10-30 14:19:41 -04003538 u64 block_end = (size + mask) & ~mask;
3539 u64 last_byte;
3540 u64 cur_offset;
3541 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003542 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003543
3544 if (size <= hole_start)
3545 return 0;
3546
Yan Zheng9036c102008-10-30 14:19:41 -04003547 while (1) {
3548 struct btrfs_ordered_extent *ordered;
3549 btrfs_wait_ordered_range(inode, hole_start,
3550 block_end - hole_start);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003551 lock_extent_bits(io_tree, hole_start, block_end - 1, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003552 &cached_state);
Yan Zheng9036c102008-10-30 14:19:41 -04003553 ordered = btrfs_lookup_ordered_extent(inode, hole_start);
3554 if (!ordered)
3555 break;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003556 unlock_extent_cached(io_tree, hole_start, block_end - 1,
3557 &cached_state, GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003558 btrfs_put_ordered_extent(ordered);
3559 }
3560
Yan Zheng9036c102008-10-30 14:19:41 -04003561 cur_offset = hole_start;
3562 while (1) {
3563 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
3564 block_end - cur_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003565 if (IS_ERR(em)) {
3566 err = PTR_ERR(em);
3567 break;
3568 }
Yan Zheng9036c102008-10-30 14:19:41 -04003569 last_byte = min(extent_map_end(em), block_end);
3570 last_byte = (last_byte + mask) & ~mask;
Yan, Zheng80825102009-11-12 09:35:36 +00003571 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Chris Mason771ed682008-11-06 22:02:51 -05003572 u64 hint_byte = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003573 hole_size = last_byte - cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00003574
Miao Xie36423202011-12-14 20:12:02 -05003575 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003576 if (IS_ERR(trans)) {
3577 err = PTR_ERR(trans);
Chris Mason771ed682008-11-06 22:02:51 -05003578 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003579 }
Yan, Zheng80825102009-11-12 09:35:36 +00003580
3581 err = btrfs_drop_extents(trans, inode, cur_offset,
3582 cur_offset + hole_size,
3583 &hint_byte, 1);
Miao Xie5b397372011-09-11 10:52:24 -04003584 if (err) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003585 btrfs_abort_transaction(trans, root, err);
Miao Xie5b397372011-09-11 10:52:24 -04003586 btrfs_end_transaction(trans, root);
Josef Bacik3893e332011-01-31 16:03:11 -05003587 break;
Miao Xie5b397372011-09-11 10:52:24 -04003588 }
Josef Bacik9ed74f22009-09-11 16:12:44 -04003589
Yan Zheng9036c102008-10-30 14:19:41 -04003590 err = btrfs_insert_file_extent(trans, root,
Li Zefan33345d012011-04-20 10:31:50 +08003591 btrfs_ino(inode), cur_offset, 0,
Yan Zheng9036c102008-10-30 14:19:41 -04003592 0, hole_size, 0, hole_size,
3593 0, 0, 0);
Miao Xie5b397372011-09-11 10:52:24 -04003594 if (err) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003595 btrfs_abort_transaction(trans, root, err);
Miao Xie5b397372011-09-11 10:52:24 -04003596 btrfs_end_transaction(trans, root);
Josef Bacik3893e332011-01-31 16:03:11 -05003597 break;
Miao Xie5b397372011-09-11 10:52:24 -04003598 }
Yan, Zheng80825102009-11-12 09:35:36 +00003599
Yan Zheng9036c102008-10-30 14:19:41 -04003600 btrfs_drop_extent_cache(inode, hole_start,
3601 last_byte - 1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003602
Miao Xie36423202011-12-14 20:12:02 -05003603 btrfs_update_inode(trans, root, inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003604 btrfs_end_transaction(trans, root);
Yan Zheng9036c102008-10-30 14:19:41 -04003605 }
3606 free_extent_map(em);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003607 em = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04003608 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00003609 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04003610 break;
3611 }
3612
Yan, Zhenga22285a2010-05-16 10:48:46 -04003613 free_extent_map(em);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003614 unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state,
3615 GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003616 return err;
3617}
3618
Josef Bacika41ad392011-01-31 15:30:16 -05003619static int btrfs_setsize(struct inode *inode, loff_t newsize)
Yan, Zheng80825102009-11-12 09:35:36 +00003620{
Miao Xief4a2f4c2011-12-14 20:12:01 -05003621 struct btrfs_root *root = BTRFS_I(inode)->root;
3622 struct btrfs_trans_handle *trans;
Josef Bacika41ad392011-01-31 15:30:16 -05003623 loff_t oldsize = i_size_read(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003624 int ret;
3625
Josef Bacika41ad392011-01-31 15:30:16 -05003626 if (newsize == oldsize)
Yan, Zheng80825102009-11-12 09:35:36 +00003627 return 0;
3628
Josef Bacika41ad392011-01-31 15:30:16 -05003629 if (newsize > oldsize) {
Josef Bacika41ad392011-01-31 15:30:16 -05003630 truncate_pagecache(inode, oldsize, newsize);
3631 ret = btrfs_cont_expand(inode, oldsize, newsize);
Miao Xief4a2f4c2011-12-14 20:12:01 -05003632 if (ret)
Yan, Zheng80825102009-11-12 09:35:36 +00003633 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00003634
Miao Xief4a2f4c2011-12-14 20:12:01 -05003635 trans = btrfs_start_transaction(root, 1);
3636 if (IS_ERR(trans))
3637 return PTR_ERR(trans);
3638
3639 i_size_write(inode, newsize);
3640 btrfs_ordered_update_i_size(inode, i_size_read(inode), NULL);
3641 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik7ad85bb2012-01-12 19:10:12 -05003642 btrfs_end_transaction(trans, root);
Josef Bacika41ad392011-01-31 15:30:16 -05003643 } else {
Yan, Zheng80825102009-11-12 09:35:36 +00003644
Josef Bacika41ad392011-01-31 15:30:16 -05003645 /*
3646 * We're truncating a file that used to have good data down to
3647 * zero. Make sure it gets into the ordered flush list so that
3648 * any new writes get down to disk quickly.
3649 */
3650 if (newsize == 0)
Josef Bacik72ac3c02012-05-23 14:13:11 -04003651 set_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
3652 &BTRFS_I(inode)->runtime_flags);
Yan, Zheng80825102009-11-12 09:35:36 +00003653
Josef Bacika41ad392011-01-31 15:30:16 -05003654 /* we don't support swapfiles, so vmtruncate shouldn't fail */
3655 truncate_setsize(inode, newsize);
3656 ret = btrfs_truncate(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003657 }
3658
Josef Bacika41ad392011-01-31 15:30:16 -05003659 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00003660}
3661
Chris Mason39279cc2007-06-12 06:35:45 -04003662static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
3663{
3664 struct inode *inode = dentry->d_inode;
Li Zefanb83cc962010-12-20 16:04:08 +08003665 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003666 int err;
3667
Li Zefanb83cc962010-12-20 16:04:08 +08003668 if (btrfs_root_readonly(root))
3669 return -EROFS;
3670
Chris Mason39279cc2007-06-12 06:35:45 -04003671 err = inode_change_ok(inode, attr);
3672 if (err)
3673 return err;
3674
Chris Mason5a3f23d2009-03-31 13:27:11 -04003675 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Josef Bacika41ad392011-01-31 15:30:16 -05003676 err = btrfs_setsize(inode, attr->ia_size);
Yan, Zheng80825102009-11-12 09:35:36 +00003677 if (err)
3678 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003679 }
Yan Zheng9036c102008-10-30 14:19:41 -04003680
Christoph Hellwig10257742010-06-04 11:30:02 +02003681 if (attr->ia_valid) {
3682 setattr_copy(inode, attr);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04003683 inode_inc_iversion(inode);
Josef Bacik22c44fe2011-11-30 10:45:38 -05003684 err = btrfs_dirty_inode(inode);
Josef Bacik33268ea2008-07-24 12:16:36 -04003685
Josef Bacik22c44fe2011-11-30 10:45:38 -05003686 if (!err && attr->ia_valid & ATTR_MODE)
Christoph Hellwig10257742010-06-04 11:30:02 +02003687 err = btrfs_acl_chmod(inode);
3688 }
3689
Chris Mason39279cc2007-06-12 06:35:45 -04003690 return err;
3691}
Chris Mason61295eb2008-01-14 16:24:38 -05003692
Al Virobd555972010-06-07 11:35:40 -04003693void btrfs_evict_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003694{
3695 struct btrfs_trans_handle *trans;
3696 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik726c35f2011-09-26 15:46:06 -04003697 struct btrfs_block_rsv *rsv, *global_rsv;
Josef Bacik07127182011-08-19 10:29:59 -04003698 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003699 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04003700 int ret;
3701
liubo1abe9b82011-03-24 11:18:59 +00003702 trace_btrfs_inode_evict(inode);
3703
Chris Mason39279cc2007-06-12 06:35:45 -04003704 truncate_inode_pages(&inode->i_data, 0);
Josef Bacik0af3d002010-06-21 14:48:16 -04003705 if (inode->i_nlink && (btrfs_root_refs(&root->root_item) != 0 ||
Chris Mason2cf85722011-07-26 15:35:09 -04003706 btrfs_is_free_space_inode(root, inode)))
Al Virobd555972010-06-07 11:35:40 -04003707 goto no_delete;
3708
Chris Mason39279cc2007-06-12 06:35:45 -04003709 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04003710 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003711 goto no_delete;
3712 }
Al Virobd555972010-06-07 11:35:40 -04003713 /* do we really want it for ->i_nlink > 0 and zero btrfs_root_refs? */
Chris Mason4a096752008-07-21 10:29:44 -04003714 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04003715
Yan, Zhengc71bf092009-11-12 09:34:40 +00003716 if (root->fs_info->log_root_recovering) {
Josef Bacik8a35d952012-05-23 14:26:42 -04003717 BUG_ON(!test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
3718 &BTRFS_I(inode)->runtime_flags));
Yan, Zhengc71bf092009-11-12 09:34:40 +00003719 goto no_delete;
3720 }
3721
Yan, Zheng76dda932009-09-21 16:00:26 -04003722 if (inode->i_nlink > 0) {
3723 BUG_ON(btrfs_root_refs(&root->root_item) != 0);
3724 goto no_delete;
3725 }
3726
Josef Bacik4289a662011-08-05 13:22:24 -04003727 rsv = btrfs_alloc_block_rsv(root);
3728 if (!rsv) {
3729 btrfs_orphan_del(NULL, inode);
3730 goto no_delete;
3731 }
Josef Bacik4a338542011-08-29 11:01:31 -04003732 rsv->size = min_size;
Josef Bacik726c35f2011-09-26 15:46:06 -04003733 global_rsv = &root->fs_info->global_block_rsv;
Josef Bacik4289a662011-08-05 13:22:24 -04003734
Chris Masondbe674a2008-07-17 12:54:05 -04003735 btrfs_i_size_write(inode, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003736
Josef Bacik4289a662011-08-05 13:22:24 -04003737 /*
3738 * This is a bit simpler than btrfs_truncate since
3739 *
3740 * 1) We've already reserved our space for our orphan item in the
3741 * unlink.
3742 * 2) We're going to delete the inode item, so we don't need to update
3743 * it at all.
3744 *
3745 * So we just need to reserve some slack space in case we add bytes when
3746 * doing the truncate.
3747 */
Yan, Zheng80825102009-11-12 09:35:36 +00003748 while (1) {
Miao Xieaa38a712011-11-18 17:43:00 +08003749 ret = btrfs_block_rsv_refill_noflush(root, rsv, min_size);
Yan, Zheng80825102009-11-12 09:35:36 +00003750
Josef Bacik726c35f2011-09-26 15:46:06 -04003751 /*
3752 * Try and steal from the global reserve since we will
3753 * likely not use this space anyway, we want to try as
3754 * hard as possible to get this to work.
3755 */
3756 if (ret)
3757 ret = btrfs_block_rsv_migrate(global_rsv, rsv, min_size);
3758
Yan, Zhengd68fc572010-05-16 10:49:58 -04003759 if (ret) {
Josef Bacik4289a662011-08-05 13:22:24 -04003760 printk(KERN_WARNING "Could not get space for a "
Josef Bacik482e6dc2011-08-19 10:31:56 -04003761 "delete, will truncate on mount %d\n", ret);
Josef Bacik4289a662011-08-05 13:22:24 -04003762 btrfs_orphan_del(NULL, inode);
3763 btrfs_free_block_rsv(root, rsv);
3764 goto no_delete;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003765 }
3766
Josef Bacik4289a662011-08-05 13:22:24 -04003767 trans = btrfs_start_transaction(root, 0);
3768 if (IS_ERR(trans)) {
3769 btrfs_orphan_del(NULL, inode);
3770 btrfs_free_block_rsv(root, rsv);
3771 goto no_delete;
3772 }
3773
3774 trans->block_rsv = rsv;
3775
Yan, Zhengd68fc572010-05-16 10:49:58 -04003776 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003777 if (ret != -EAGAIN)
3778 break;
3779
3780 nr = trans->blocks_used;
3781 btrfs_end_transaction(trans, root);
3782 trans = NULL;
3783 btrfs_btree_balance_dirty(root, nr);
Josef Bacik7b128762008-07-24 12:17:14 -04003784 }
3785
Josef Bacik4289a662011-08-05 13:22:24 -04003786 btrfs_free_block_rsv(root, rsv);
3787
Yan, Zheng80825102009-11-12 09:35:36 +00003788 if (ret == 0) {
Josef Bacik4289a662011-08-05 13:22:24 -04003789 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00003790 ret = btrfs_orphan_del(trans, inode);
3791 BUG_ON(ret);
3792 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003793
Josef Bacik4289a662011-08-05 13:22:24 -04003794 trans->block_rsv = &root->fs_info->trans_block_rsv;
Li Zefan581bb052011-04-20 10:06:11 +08003795 if (!(root == root->fs_info->tree_root ||
3796 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID))
Li Zefan33345d012011-04-20 10:31:50 +08003797 btrfs_return_ino(root, btrfs_ino(inode));
Li Zefan581bb052011-04-20 10:06:11 +08003798
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003799 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04003800 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003801 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003802no_delete:
Al Virobd555972010-06-07 11:35:40 -04003803 end_writeback(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003804 return;
Chris Mason39279cc2007-06-12 06:35:45 -04003805}
3806
3807/*
3808 * this returns the key found in the dir entry in the location pointer.
3809 * If no dir entries were found, location->objectid is 0.
3810 */
3811static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
3812 struct btrfs_key *location)
3813{
3814 const char *name = dentry->d_name.name;
3815 int namelen = dentry->d_name.len;
3816 struct btrfs_dir_item *di;
3817 struct btrfs_path *path;
3818 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04003819 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003820
3821 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07003822 if (!path)
3823 return -ENOMEM;
Chris Mason39544012007-12-12 14:38:19 -05003824
Li Zefan33345d012011-04-20 10:31:50 +08003825 di = btrfs_lookup_dir_item(NULL, root, path, btrfs_ino(dir), name,
Chris Mason39279cc2007-06-12 06:35:45 -04003826 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04003827 if (IS_ERR(di))
3828 ret = PTR_ERR(di);
Chris Masond3977122009-01-05 21:25:51 -05003829
David Sterbac7040052011-04-19 18:00:01 +02003830 if (IS_ERR_OR_NULL(di))
Chris Mason39544012007-12-12 14:38:19 -05003831 goto out_err;
Chris Masond3977122009-01-05 21:25:51 -05003832
Chris Mason5f39d392007-10-15 16:14:19 -04003833 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04003834out:
Chris Mason39279cc2007-06-12 06:35:45 -04003835 btrfs_free_path(path);
3836 return ret;
Chris Mason39544012007-12-12 14:38:19 -05003837out_err:
3838 location->objectid = 0;
3839 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04003840}
3841
3842/*
3843 * when we hit a tree root in a directory, the btrfs part of the inode
3844 * needs to be changed to reflect the root directory of the tree root. This
3845 * is kind of like crossing a mount point.
3846 */
3847static int fixup_tree_root_location(struct btrfs_root *root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003848 struct inode *dir,
3849 struct dentry *dentry,
3850 struct btrfs_key *location,
3851 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04003852{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003853 struct btrfs_path *path;
3854 struct btrfs_root *new_root;
3855 struct btrfs_root_ref *ref;
3856 struct extent_buffer *leaf;
3857 int ret;
3858 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003859
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003860 path = btrfs_alloc_path();
3861 if (!path) {
3862 err = -ENOMEM;
3863 goto out;
3864 }
Chris Mason39279cc2007-06-12 06:35:45 -04003865
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003866 err = -ENOENT;
3867 ret = btrfs_find_root_ref(root->fs_info->tree_root, path,
3868 BTRFS_I(dir)->root->root_key.objectid,
3869 location->objectid);
3870 if (ret) {
3871 if (ret < 0)
3872 err = ret;
3873 goto out;
3874 }
Chris Mason39279cc2007-06-12 06:35:45 -04003875
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003876 leaf = path->nodes[0];
3877 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
Li Zefan33345d012011-04-20 10:31:50 +08003878 if (btrfs_root_ref_dirid(leaf, ref) != btrfs_ino(dir) ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003879 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
3880 goto out;
3881
3882 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
3883 (unsigned long)(ref + 1),
3884 dentry->d_name.len);
3885 if (ret)
3886 goto out;
3887
David Sterbab3b4aa72011-04-21 01:20:15 +02003888 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003889
3890 new_root = btrfs_read_fs_root_no_name(root->fs_info, location);
3891 if (IS_ERR(new_root)) {
3892 err = PTR_ERR(new_root);
3893 goto out;
3894 }
3895
3896 if (btrfs_root_refs(&new_root->root_item) == 0) {
3897 err = -ENOENT;
3898 goto out;
3899 }
3900
3901 *sub_root = new_root;
3902 location->objectid = btrfs_root_dirid(&new_root->root_item);
3903 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04003904 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003905 err = 0;
3906out:
3907 btrfs_free_path(path);
3908 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003909}
3910
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003911static void inode_tree_add(struct inode *inode)
3912{
3913 struct btrfs_root *root = BTRFS_I(inode)->root;
3914 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003915 struct rb_node **p;
3916 struct rb_node *parent;
Li Zefan33345d012011-04-20 10:31:50 +08003917 u64 ino = btrfs_ino(inode);
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003918again:
3919 p = &root->inode_tree.rb_node;
3920 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003921
Al Viro1d3382cb2010-10-23 15:19:20 -04003922 if (inode_unhashed(inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04003923 return;
3924
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003925 spin_lock(&root->inode_lock);
3926 while (*p) {
3927 parent = *p;
3928 entry = rb_entry(parent, struct btrfs_inode, rb_node);
3929
Li Zefan33345d012011-04-20 10:31:50 +08003930 if (ino < btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003931 p = &parent->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08003932 else if (ino > btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003933 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003934 else {
3935 WARN_ON(!(entry->vfs_inode.i_state &
Al Viroa4ffdde2010-06-02 17:38:30 -04003936 (I_WILL_FREE | I_FREEING)));
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003937 rb_erase(parent, &root->inode_tree);
3938 RB_CLEAR_NODE(parent);
3939 spin_unlock(&root->inode_lock);
3940 goto again;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003941 }
3942 }
3943 rb_link_node(&BTRFS_I(inode)->rb_node, parent, p);
3944 rb_insert_color(&BTRFS_I(inode)->rb_node, &root->inode_tree);
3945 spin_unlock(&root->inode_lock);
3946}
3947
3948static void inode_tree_del(struct inode *inode)
3949{
3950 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04003951 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003952
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003953 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003954 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003955 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003956 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04003957 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003958 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003959 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04003960
Josef Bacik0af3d002010-06-21 14:48:16 -04003961 /*
3962 * Free space cache has inodes in the tree root, but the tree root has a
3963 * root_refs of 0, so this could end up dropping the tree root as a
3964 * snapshot, so we need the extra !root->fs_info->tree_root check to
3965 * make sure we don't drop it.
3966 */
3967 if (empty && btrfs_root_refs(&root->root_item) == 0 &&
3968 root != root->fs_info->tree_root) {
Yan, Zheng76dda932009-09-21 16:00:26 -04003969 synchronize_srcu(&root->fs_info->subvol_srcu);
3970 spin_lock(&root->inode_lock);
3971 empty = RB_EMPTY_ROOT(&root->inode_tree);
3972 spin_unlock(&root->inode_lock);
3973 if (empty)
3974 btrfs_add_dead_root(root);
3975 }
3976}
3977
Jeff Mahoney143bede2012-03-01 14:56:26 +01003978void btrfs_invalidate_inodes(struct btrfs_root *root)
Yan, Zheng76dda932009-09-21 16:00:26 -04003979{
3980 struct rb_node *node;
3981 struct rb_node *prev;
3982 struct btrfs_inode *entry;
3983 struct inode *inode;
3984 u64 objectid = 0;
3985
3986 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
3987
3988 spin_lock(&root->inode_lock);
3989again:
3990 node = root->inode_tree.rb_node;
3991 prev = NULL;
3992 while (node) {
3993 prev = node;
3994 entry = rb_entry(node, struct btrfs_inode, rb_node);
3995
Li Zefan33345d012011-04-20 10:31:50 +08003996 if (objectid < btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04003997 node = node->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08003998 else if (objectid > btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04003999 node = node->rb_right;
4000 else
4001 break;
4002 }
4003 if (!node) {
4004 while (prev) {
4005 entry = rb_entry(prev, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08004006 if (objectid <= btrfs_ino(&entry->vfs_inode)) {
Yan, Zheng76dda932009-09-21 16:00:26 -04004007 node = prev;
4008 break;
4009 }
4010 prev = rb_next(prev);
4011 }
4012 }
4013 while (node) {
4014 entry = rb_entry(node, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08004015 objectid = btrfs_ino(&entry->vfs_inode) + 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04004016 inode = igrab(&entry->vfs_inode);
4017 if (inode) {
4018 spin_unlock(&root->inode_lock);
4019 if (atomic_read(&inode->i_count) > 1)
4020 d_prune_aliases(inode);
4021 /*
Al Viro45321ac2010-06-07 13:43:19 -04004022 * btrfs_drop_inode will have it removed from
Yan, Zheng76dda932009-09-21 16:00:26 -04004023 * the inode cache when its usage count
4024 * hits zero.
4025 */
4026 iput(inode);
4027 cond_resched();
4028 spin_lock(&root->inode_lock);
4029 goto again;
4030 }
4031
4032 if (cond_resched_lock(&root->inode_lock))
4033 goto again;
4034
4035 node = rb_next(node);
4036 }
4037 spin_unlock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004038}
4039
Chris Masone02119d2008-09-05 16:13:11 -04004040static int btrfs_init_locked_inode(struct inode *inode, void *p)
4041{
4042 struct btrfs_iget_args *args = p;
4043 inode->i_ino = args->ino;
Chris Masone02119d2008-09-05 16:13:11 -04004044 BTRFS_I(inode)->root = args->root;
Josef Bacik6a632092009-02-20 11:00:09 -05004045 btrfs_set_inode_space_info(args->root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004046 return 0;
4047}
4048
4049static int btrfs_find_actor(struct inode *inode, void *opaque)
4050{
4051 struct btrfs_iget_args *args = opaque;
Li Zefan33345d012011-04-20 10:31:50 +08004052 return args->ino == btrfs_ino(inode) &&
Chris Masond3977122009-01-05 21:25:51 -05004053 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004054}
4055
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004056static struct inode *btrfs_iget_locked(struct super_block *s,
4057 u64 objectid,
4058 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04004059{
4060 struct inode *inode;
4061 struct btrfs_iget_args args;
4062 args.ino = objectid;
4063 args.root = root;
4064
4065 inode = iget5_locked(s, objectid, btrfs_find_actor,
4066 btrfs_init_locked_inode,
4067 (void *)&args);
4068 return inode;
4069}
4070
Balaji Rao1a54ef82008-07-21 02:01:04 +05304071/* Get an inode object given its location and corresponding root.
4072 * Returns in *is_new if the inode was read from disk
4073 */
4074struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
Josef Bacik73f73412009-12-04 17:38:27 +00004075 struct btrfs_root *root, int *new)
Balaji Rao1a54ef82008-07-21 02:01:04 +05304076{
4077 struct inode *inode;
4078
4079 inode = btrfs_iget_locked(s, location->objectid, root);
4080 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004081 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05304082
4083 if (inode->i_state & I_NEW) {
4084 BTRFS_I(inode)->root = root;
4085 memcpy(&BTRFS_I(inode)->location, location, sizeof(*location));
4086 btrfs_read_locked_inode(inode);
Mark Fasheh1748f842011-07-12 11:25:31 -07004087 if (!is_bad_inode(inode)) {
4088 inode_tree_add(inode);
4089 unlock_new_inode(inode);
4090 if (new)
4091 *new = 1;
4092 } else {
Sergei Trofimoviche0b6d652011-09-11 10:52:24 -04004093 unlock_new_inode(inode);
4094 iput(inode);
4095 inode = ERR_PTR(-ESTALE);
Mark Fasheh1748f842011-07-12 11:25:31 -07004096 }
4097 }
4098
Balaji Rao1a54ef82008-07-21 02:01:04 +05304099 return inode;
4100}
4101
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004102static struct inode *new_simple_dir(struct super_block *s,
4103 struct btrfs_key *key,
4104 struct btrfs_root *root)
4105{
4106 struct inode *inode = new_inode(s);
4107
4108 if (!inode)
4109 return ERR_PTR(-ENOMEM);
4110
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004111 BTRFS_I(inode)->root = root;
4112 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
Josef Bacik72ac3c02012-05-23 14:13:11 -04004113 set_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004114
4115 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
Li Zefan848cce02012-02-21 17:04:28 +08004116 inode->i_op = &btrfs_dir_ro_inode_operations;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004117 inode->i_fop = &simple_dir_operations;
4118 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
4119 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
4120
4121 return inode;
4122}
4123
Chris Mason3de45862008-11-17 21:02:50 -05004124struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04004125{
Chris Masond3977122009-01-05 21:25:51 -05004126 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004127 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004128 struct btrfs_root *sub_root = root;
4129 struct btrfs_key location;
Yan, Zheng76dda932009-09-21 16:00:26 -04004130 int index;
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004131 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004132
4133 if (dentry->d_name.len > BTRFS_NAME_LEN)
4134 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04004135
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004136 if (unlikely(d_need_lookup(dentry))) {
4137 memcpy(&location, dentry->d_fsdata, sizeof(struct btrfs_key));
4138 kfree(dentry->d_fsdata);
4139 dentry->d_fsdata = NULL;
Josef Bacika66e7cc2011-09-18 10:34:03 -04004140 /* This thing is hashed, drop it for now */
4141 d_drop(dentry);
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004142 } else {
4143 ret = btrfs_inode_by_name(dir, dentry, &location);
4144 }
Chris Mason5f39d392007-10-15 16:14:19 -04004145
Chris Mason39279cc2007-06-12 06:35:45 -04004146 if (ret < 0)
4147 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04004148
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004149 if (location.objectid == 0)
4150 return NULL;
4151
4152 if (location.type == BTRFS_INODE_ITEM_KEY) {
Josef Bacik73f73412009-12-04 17:38:27 +00004153 inode = btrfs_iget(dir->i_sb, &location, root, NULL);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004154 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004155 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004156
4157 BUG_ON(location.type != BTRFS_ROOT_ITEM_KEY);
4158
Yan, Zheng76dda932009-09-21 16:00:26 -04004159 index = srcu_read_lock(&root->fs_info->subvol_srcu);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004160 ret = fixup_tree_root_location(root, dir, dentry,
4161 &location, &sub_root);
4162 if (ret < 0) {
4163 if (ret != -ENOENT)
4164 inode = ERR_PTR(ret);
4165 else
4166 inode = new_simple_dir(dir->i_sb, &location, sub_root);
4167 } else {
Josef Bacik73f73412009-12-04 17:38:27 +00004168 inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004169 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004170 srcu_read_unlock(&root->fs_info->subvol_srcu, index);
4171
Julia Lawall34d19ba2011-01-24 19:55:19 +00004172 if (!IS_ERR(inode) && root != sub_root) {
Yan, Zhengc71bf092009-11-12 09:34:40 +00004173 down_read(&root->fs_info->cleanup_work_sem);
4174 if (!(inode->i_sb->s_flags & MS_RDONLY))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05004175 ret = btrfs_orphan_cleanup(sub_root);
Yan, Zhengc71bf092009-11-12 09:34:40 +00004176 up_read(&root->fs_info->cleanup_work_sem);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05004177 if (ret)
4178 inode = ERR_PTR(ret);
Yan, Zhengc71bf092009-11-12 09:34:40 +00004179 }
4180
Chris Mason3de45862008-11-17 21:02:50 -05004181 return inode;
4182}
4183
Nick Pigginfe15ce42011-01-07 17:49:23 +11004184static int btrfs_dentry_delete(const struct dentry *dentry)
Yan, Zheng76dda932009-09-21 16:00:26 -04004185{
4186 struct btrfs_root *root;
Li Zefan848cce02012-02-21 17:04:28 +08004187 struct inode *inode = dentry->d_inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04004188
Li Zefan848cce02012-02-21 17:04:28 +08004189 if (!inode && !IS_ROOT(dentry))
4190 inode = dentry->d_parent->d_inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04004191
Li Zefan848cce02012-02-21 17:04:28 +08004192 if (inode) {
4193 root = BTRFS_I(inode)->root;
Yan, Zhengefefb142009-10-09 09:25:16 -04004194 if (btrfs_root_refs(&root->root_item) == 0)
4195 return 1;
Li Zefan848cce02012-02-21 17:04:28 +08004196
4197 if (btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
4198 return 1;
Yan, Zhengefefb142009-10-09 09:25:16 -04004199 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004200 return 0;
4201}
4202
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004203static void btrfs_dentry_release(struct dentry *dentry)
4204{
4205 if (dentry->d_fsdata)
4206 kfree(dentry->d_fsdata);
4207}
4208
Chris Mason3de45862008-11-17 21:02:50 -05004209static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
4210 struct nameidata *nd)
4211{
Josef Bacika66e7cc2011-09-18 10:34:03 -04004212 struct dentry *ret;
4213
4214 ret = d_splice_alias(btrfs_lookup_dentry(dir, dentry), dentry);
4215 if (unlikely(d_need_lookup(dentry))) {
4216 spin_lock(&dentry->d_lock);
4217 dentry->d_flags &= ~DCACHE_NEED_LOOKUP;
4218 spin_unlock(&dentry->d_lock);
4219 }
4220 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004221}
4222
Miao Xie16cdcec2011-04-22 18:12:22 +08004223unsigned char btrfs_filetype_table[] = {
Chris Mason39279cc2007-06-12 06:35:45 -04004224 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
4225};
4226
David Woodhousecbdf5a22008-08-06 19:42:33 +01004227static int btrfs_real_readdir(struct file *filp, void *dirent,
4228 filldir_t filldir)
Chris Mason39279cc2007-06-12 06:35:45 -04004229{
Chris Mason6da6aba2007-12-18 16:15:09 -05004230 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004231 struct btrfs_root *root = BTRFS_I(inode)->root;
4232 struct btrfs_item *item;
4233 struct btrfs_dir_item *di;
4234 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04004235 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04004236 struct btrfs_path *path;
Miao Xie16cdcec2011-04-22 18:12:22 +08004237 struct list_head ins_list;
4238 struct list_head del_list;
Chris Mason39279cc2007-06-12 06:35:45 -04004239 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04004240 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04004241 int slot;
Chris Mason39279cc2007-06-12 06:35:45 -04004242 unsigned char d_type;
4243 int over = 0;
4244 u32 di_cur;
4245 u32 di_total;
4246 u32 di_len;
4247 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004248 char tmp_name[32];
4249 char *name_ptr;
4250 int name_len;
Miao Xie16cdcec2011-04-22 18:12:22 +08004251 int is_curr = 0; /* filp->f_pos points to the current index? */
Chris Mason39279cc2007-06-12 06:35:45 -04004252
4253 /* FIXME, use a real flag for deciding about the key type */
4254 if (root->fs_info->tree_root == root)
4255 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004256
Chris Mason39544012007-12-12 14:38:19 -05004257 /* special case for "." */
4258 if (filp->f_pos == 0) {
Hidetoshi Seto3765fef2011-09-18 10:20:46 -04004259 over = filldir(dirent, ".", 1,
4260 filp->f_pos, btrfs_ino(inode), DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05004261 if (over)
4262 return 0;
4263 filp->f_pos = 1;
4264 }
Chris Mason39544012007-12-12 14:38:19 -05004265 /* special case for .., just use the back ref */
4266 if (filp->f_pos == 1) {
David Woodhouse5ecc7e52008-08-17 15:14:48 +01004267 u64 pino = parent_ino(filp->f_path.dentry);
Chris Mason39544012007-12-12 14:38:19 -05004268 over = filldir(dirent, "..", 2,
Hidetoshi Seto3765fef2011-09-18 10:20:46 -04004269 filp->f_pos, pino, DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05004270 if (over)
David Woodhouse49593bf2008-08-17 17:08:36 +01004271 return 0;
Chris Mason39544012007-12-12 14:38:19 -05004272 filp->f_pos = 2;
4273 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004274 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08004275 if (!path)
4276 return -ENOMEM;
Chris Masonff5714c2011-05-28 07:00:39 -04004277
Josef Bacik026fd312011-05-13 10:32:11 -04004278 path->reada = 1;
David Woodhouse49593bf2008-08-17 17:08:36 +01004279
Miao Xie16cdcec2011-04-22 18:12:22 +08004280 if (key_type == BTRFS_DIR_INDEX_KEY) {
4281 INIT_LIST_HEAD(&ins_list);
4282 INIT_LIST_HEAD(&del_list);
4283 btrfs_get_delayed_items(inode, &ins_list, &del_list);
4284 }
4285
Chris Mason39279cc2007-06-12 06:35:45 -04004286 btrfs_set_key_type(&key, key_type);
4287 key.offset = filp->f_pos;
Li Zefan33345d012011-04-20 10:31:50 +08004288 key.objectid = btrfs_ino(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004289
Chris Mason39279cc2007-06-12 06:35:45 -04004290 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4291 if (ret < 0)
4292 goto err;
David Woodhouse49593bf2008-08-17 17:08:36 +01004293
4294 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04004295 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -04004296 slot = path->slots[0];
Li Zefanb9e03af2011-03-23 10:43:58 +08004297 if (slot >= btrfs_header_nritems(leaf)) {
4298 ret = btrfs_next_leaf(root, path);
4299 if (ret < 0)
4300 goto err;
4301 else if (ret > 0)
4302 break;
4303 continue;
Chris Mason39279cc2007-06-12 06:35:45 -04004304 }
Chris Mason3de45862008-11-17 21:02:50 -05004305
Chris Mason5f39d392007-10-15 16:14:19 -04004306 item = btrfs_item_nr(leaf, slot);
4307 btrfs_item_key_to_cpu(leaf, &found_key, slot);
4308
4309 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04004310 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004311 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004312 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004313 if (found_key.offset < filp->f_pos)
Li Zefanb9e03af2011-03-23 10:43:58 +08004314 goto next;
Miao Xie16cdcec2011-04-22 18:12:22 +08004315 if (key_type == BTRFS_DIR_INDEX_KEY &&
4316 btrfs_should_delete_dir_index(&del_list,
4317 found_key.offset))
4318 goto next;
Chris Mason5f39d392007-10-15 16:14:19 -04004319
4320 filp->f_pos = found_key.offset;
Miao Xie16cdcec2011-04-22 18:12:22 +08004321 is_curr = 1;
David Woodhouse49593bf2008-08-17 17:08:36 +01004322
Chris Mason39279cc2007-06-12 06:35:45 -04004323 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
4324 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04004325 di_total = btrfs_item_size(leaf, item);
David Woodhouse49593bf2008-08-17 17:08:36 +01004326
4327 while (di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04004328 struct btrfs_key location;
4329
Josef Bacik22a94d42011-03-16 16:47:17 -04004330 if (verify_dir_item(root, leaf, di))
4331 break;
4332
Chris Mason5f39d392007-10-15 16:14:19 -04004333 name_len = btrfs_dir_name_len(leaf, di);
David Woodhouse49593bf2008-08-17 17:08:36 +01004334 if (name_len <= sizeof(tmp_name)) {
Chris Mason5f39d392007-10-15 16:14:19 -04004335 name_ptr = tmp_name;
4336 } else {
4337 name_ptr = kmalloc(name_len, GFP_NOFS);
David Woodhouse49593bf2008-08-17 17:08:36 +01004338 if (!name_ptr) {
4339 ret = -ENOMEM;
4340 goto err;
4341 }
Chris Mason5f39d392007-10-15 16:14:19 -04004342 }
4343 read_extent_buffer(leaf, name_ptr,
4344 (unsigned long)(di + 1), name_len);
4345
4346 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
4347 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason3de45862008-11-17 21:02:50 -05004348
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004349
Chris Mason3de45862008-11-17 21:02:50 -05004350 /* is this a reference to our own snapshot? If so
Arne Jansen8c9c2bf2012-02-25 09:09:30 +01004351 * skip it.
4352 *
4353 * In contrast to old kernels, we insert the snapshot's
4354 * dir item and dir index after it has been created, so
4355 * we won't find a reference to our own snapshot. We
4356 * still keep the following code for backward
4357 * compatibility.
Chris Mason3de45862008-11-17 21:02:50 -05004358 */
4359 if (location.type == BTRFS_ROOT_ITEM_KEY &&
4360 location.objectid == root->root_key.objectid) {
4361 over = 0;
4362 goto skip;
4363 }
Chris Mason5f39d392007-10-15 16:14:19 -04004364 over = filldir(dirent, name_ptr, name_len,
David Woodhouse49593bf2008-08-17 17:08:36 +01004365 found_key.offset, location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04004366 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04004367
Chris Mason3de45862008-11-17 21:02:50 -05004368skip:
Chris Mason5f39d392007-10-15 16:14:19 -04004369 if (name_ptr != tmp_name)
4370 kfree(name_ptr);
4371
Chris Mason39279cc2007-06-12 06:35:45 -04004372 if (over)
4373 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05004374 di_len = btrfs_dir_name_len(leaf, di) +
David Woodhouse49593bf2008-08-17 17:08:36 +01004375 btrfs_dir_data_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04004376 di_cur += di_len;
4377 di = (struct btrfs_dir_item *)((char *)di + di_len);
4378 }
Li Zefanb9e03af2011-03-23 10:43:58 +08004379next:
4380 path->slots[0]++;
Chris Mason39279cc2007-06-12 06:35:45 -04004381 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004382
Miao Xie16cdcec2011-04-22 18:12:22 +08004383 if (key_type == BTRFS_DIR_INDEX_KEY) {
4384 if (is_curr)
4385 filp->f_pos++;
4386 ret = btrfs_readdir_delayed_dir_index(filp, dirent, filldir,
4387 &ins_list);
4388 if (ret)
4389 goto nopos;
4390 }
4391
David Woodhouse49593bf2008-08-17 17:08:36 +01004392 /* Reached end of directory/root. Bump pos past the last item. */
Yan Zheng5e591a02008-02-19 11:41:02 -05004393 if (key_type == BTRFS_DIR_INDEX_KEY)
Jan Engelhardt406266a2009-12-09 22:00:38 +00004394 /*
4395 * 32-bit glibc will use getdents64, but then strtol -
4396 * so the last number we can serve is this.
4397 */
4398 filp->f_pos = 0x7fffffff;
Yan Zheng5e591a02008-02-19 11:41:02 -05004399 else
4400 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04004401nopos:
4402 ret = 0;
4403err:
Miao Xie16cdcec2011-04-22 18:12:22 +08004404 if (key_type == BTRFS_DIR_INDEX_KEY)
4405 btrfs_put_delayed_items(&ins_list, &del_list);
Chris Mason39279cc2007-06-12 06:35:45 -04004406 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004407 return ret;
4408}
4409
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004410int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc)
Chris Mason39279cc2007-06-12 06:35:45 -04004411{
4412 struct btrfs_root *root = BTRFS_I(inode)->root;
4413 struct btrfs_trans_handle *trans;
4414 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04004415 bool nolock = false;
Chris Mason39279cc2007-06-12 06:35:45 -04004416
Josef Bacik72ac3c02012-05-23 14:13:11 -04004417 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Chris Mason4ca8b412008-08-05 13:30:48 -04004418 return 0;
4419
Chris Mason2cf85722011-07-26 15:35:09 -04004420 if (btrfs_fs_closing(root->fs_info) && btrfs_is_free_space_inode(root, inode))
Li Zefan82d59022011-04-20 10:33:24 +08004421 nolock = true;
Josef Bacik0af3d002010-06-21 14:48:16 -04004422
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004423 if (wbc->sync_mode == WB_SYNC_ALL) {
Josef Bacik0af3d002010-06-21 14:48:16 -04004424 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004425 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0af3d002010-06-21 14:48:16 -04004426 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004427 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00004428 if (IS_ERR(trans))
4429 return PTR_ERR(trans);
Josef Bacik0af3d002010-06-21 14:48:16 -04004430 if (nolock)
4431 ret = btrfs_end_transaction_nolock(trans, root);
4432 else
4433 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004434 }
4435 return ret;
4436}
4437
4438/*
Chris Mason54aa1f42007-06-22 14:16:25 -04004439 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04004440 * inode changes. But, it is most likely to find the inode in cache.
4441 * FIXME, needs more benchmarking...there are no reasons other than performance
4442 * to keep or drop this code.
4443 */
Josef Bacik22c44fe2011-11-30 10:45:38 -05004444int btrfs_dirty_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04004445{
4446 struct btrfs_root *root = BTRFS_I(inode)->root;
4447 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004448 int ret;
4449
Josef Bacik72ac3c02012-05-23 14:13:11 -04004450 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Josef Bacik22c44fe2011-11-30 10:45:38 -05004451 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004452
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004453 trans = btrfs_join_transaction(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004454 if (IS_ERR(trans))
4455 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004456
4457 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04004458 if (ret && ret == -ENOSPC) {
4459 /* whoops, lets try again with the full transaction */
4460 btrfs_end_transaction(trans, root);
4461 trans = btrfs_start_transaction(root, 1);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004462 if (IS_ERR(trans))
4463 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004464
Chris Mason94b60442010-05-26 11:02:00 -04004465 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04004466 }
Chris Mason39279cc2007-06-12 06:35:45 -04004467 btrfs_end_transaction(trans, root);
Miao Xie16cdcec2011-04-22 18:12:22 +08004468 if (BTRFS_I(inode)->delayed_node)
4469 btrfs_balance_delayed_items(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004470
4471 return ret;
4472}
4473
4474/*
4475 * This is a copy of file_update_time. We need this so we can return error on
4476 * ENOSPC for updating the inode in the case of file write and mmap writes.
4477 */
4478int btrfs_update_time(struct file *file)
4479{
4480 struct inode *inode = file->f_path.dentry->d_inode;
4481 struct timespec now;
4482 int ret;
4483 enum { S_MTIME = 1, S_CTIME = 2, S_VERSION = 4 } sync_it = 0;
4484
4485 /* First try to exhaust all avenues to not sync */
4486 if (IS_NOCMTIME(inode))
4487 return 0;
4488
4489 now = current_fs_time(inode->i_sb);
4490 if (!timespec_equal(&inode->i_mtime, &now))
4491 sync_it = S_MTIME;
4492
4493 if (!timespec_equal(&inode->i_ctime, &now))
4494 sync_it |= S_CTIME;
4495
4496 if (IS_I_VERSION(inode))
4497 sync_it |= S_VERSION;
4498
4499 if (!sync_it)
4500 return 0;
4501
4502 /* Finally allowed to write? Takes lock. */
4503 if (mnt_want_write_file(file))
4504 return 0;
4505
4506 /* Only change inode inside the lock region */
4507 if (sync_it & S_VERSION)
4508 inode_inc_iversion(inode);
4509 if (sync_it & S_CTIME)
4510 inode->i_ctime = now;
4511 if (sync_it & S_MTIME)
4512 inode->i_mtime = now;
4513 ret = btrfs_dirty_inode(inode);
4514 if (!ret)
4515 mark_inode_dirty_sync(inode);
4516 mnt_drop_write(file->f_path.mnt);
4517 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004518}
4519
Chris Masond352ac62008-09-29 15:18:18 -04004520/*
4521 * find the highest existing sequence number in a directory
4522 * and then set the in-memory index_cnt variable to reflect
4523 * free sequence numbers
4524 */
Josef Bacikaec74772008-07-24 12:12:38 -04004525static int btrfs_set_inode_index_count(struct inode *inode)
4526{
4527 struct btrfs_root *root = BTRFS_I(inode)->root;
4528 struct btrfs_key key, found_key;
4529 struct btrfs_path *path;
4530 struct extent_buffer *leaf;
4531 int ret;
4532
Li Zefan33345d012011-04-20 10:31:50 +08004533 key.objectid = btrfs_ino(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004534 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
4535 key.offset = (u64)-1;
4536
4537 path = btrfs_alloc_path();
4538 if (!path)
4539 return -ENOMEM;
4540
4541 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4542 if (ret < 0)
4543 goto out;
4544 /* FIXME: we should be able to handle this */
4545 if (ret == 0)
4546 goto out;
4547 ret = 0;
4548
4549 /*
4550 * MAGIC NUMBER EXPLANATION:
4551 * since we search a directory based on f_pos we have to start at 2
4552 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
4553 * else has to start at 2
4554 */
4555 if (path->slots[0] == 0) {
4556 BTRFS_I(inode)->index_cnt = 2;
4557 goto out;
4558 }
4559
4560 path->slots[0]--;
4561
4562 leaf = path->nodes[0];
4563 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4564
Li Zefan33345d012011-04-20 10:31:50 +08004565 if (found_key.objectid != btrfs_ino(inode) ||
Josef Bacikaec74772008-07-24 12:12:38 -04004566 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
4567 BTRFS_I(inode)->index_cnt = 2;
4568 goto out;
4569 }
4570
4571 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
4572out:
4573 btrfs_free_path(path);
4574 return ret;
4575}
4576
Chris Masond352ac62008-09-29 15:18:18 -04004577/*
4578 * helper to find a free sequence number in a given directory. This current
4579 * code is very simple, later versions will do smarter things in the btree
4580 */
Chris Mason3de45862008-11-17 21:02:50 -05004581int btrfs_set_inode_index(struct inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04004582{
4583 int ret = 0;
4584
4585 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
Miao Xie16cdcec2011-04-22 18:12:22 +08004586 ret = btrfs_inode_delayed_dir_index_count(dir);
4587 if (ret) {
4588 ret = btrfs_set_inode_index_count(dir);
4589 if (ret)
4590 return ret;
4591 }
Josef Bacikaec74772008-07-24 12:12:38 -04004592 }
4593
Chris Mason00e4e6b2008-08-05 11:18:09 -04004594 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04004595 BTRFS_I(dir)->index_cnt++;
4596
4597 return ret;
4598}
4599
Chris Mason39279cc2007-06-12 06:35:45 -04004600static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
4601 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04004602 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05004603 const char *name, int name_len,
Al Viro175a4eb2011-07-26 03:30:54 -04004604 u64 ref_objectid, u64 objectid,
4605 umode_t mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04004606{
4607 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004608 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04004609 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04004610 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05004611 struct btrfs_inode_ref *ref;
4612 struct btrfs_key key[2];
4613 u32 sizes[2];
4614 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04004615 int ret;
4616 int owner;
4617
Chris Mason5f39d392007-10-15 16:14:19 -04004618 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07004619 if (!path)
4620 return ERR_PTR(-ENOMEM);
Chris Mason5f39d392007-10-15 16:14:19 -04004621
Chris Mason39279cc2007-06-12 06:35:45 -04004622 inode = new_inode(root->fs_info->sb);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004623 if (!inode) {
4624 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004625 return ERR_PTR(-ENOMEM);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004626 }
Chris Mason39279cc2007-06-12 06:35:45 -04004627
Li Zefan581bb052011-04-20 10:06:11 +08004628 /*
4629 * we have to initialize this early, so we can reclaim the inode
4630 * number if we fail afterwards in this function.
4631 */
4632 inode->i_ino = objectid;
4633
Josef Bacikaec74772008-07-24 12:12:38 -04004634 if (dir) {
liubo1abe9b82011-03-24 11:18:59 +00004635 trace_btrfs_inode_request(dir);
4636
Chris Mason3de45862008-11-17 21:02:50 -05004637 ret = btrfs_set_inode_index(dir, index);
Shen Feng09771432009-04-02 16:46:06 -04004638 if (ret) {
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004639 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004640 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004641 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04004642 }
Josef Bacikaec74772008-07-24 12:12:38 -04004643 }
4644 /*
4645 * index_cnt is ignored for everything but a dir,
4646 * btrfs_get_inode_index_count has an explanation for the magic
4647 * number
4648 */
4649 BTRFS_I(inode)->index_cnt = 2;
Chris Mason39279cc2007-06-12 06:35:45 -04004650 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04004651 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik76195852010-11-19 02:18:02 +00004652 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik6a632092009-02-20 11:00:09 -05004653 btrfs_set_inode_space_info(root, inode);
Chris Masonb888db22007-08-27 16:49:44 -04004654
Al Viro569254b2011-07-24 17:08:40 -04004655 if (S_ISDIR(mode))
Chris Mason39279cc2007-06-12 06:35:45 -04004656 owner = 0;
4657 else
4658 owner = 1;
Chris Mason9c583092008-01-29 15:15:18 -05004659
4660 key[0].objectid = objectid;
4661 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
4662 key[0].offset = 0;
4663
4664 key[1].objectid = objectid;
4665 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
4666 key[1].offset = ref_objectid;
4667
4668 sizes[0] = sizeof(struct btrfs_inode_item);
4669 sizes[1] = name_len + sizeof(*ref);
4670
Chris Masonb9473432009-03-13 11:00:37 -04004671 path->leave_spinning = 1;
Chris Mason9c583092008-01-29 15:15:18 -05004672 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
4673 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04004674 goto fail;
4675
Dmitry Monakhovecc11fab2010-03-04 17:31:47 +03004676 inode_init_owner(inode, dir, mode);
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004677 inode_set_bytes(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004678 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04004679 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
4680 struct btrfs_inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04004681 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05004682
4683 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
4684 struct btrfs_inode_ref);
4685 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004686 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
Chris Mason9c583092008-01-29 15:15:18 -05004687 ptr = (unsigned long)(ref + 1);
4688 write_extent_buffer(path->nodes[0], name, ptr, name_len);
4689
Chris Mason5f39d392007-10-15 16:14:19 -04004690 btrfs_mark_buffer_dirty(path->nodes[0]);
4691 btrfs_free_path(path);
4692
Chris Mason39279cc2007-06-12 06:35:45 -04004693 location = &BTRFS_I(inode)->location;
4694 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04004695 location->offset = 0;
4696 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
4697
Christoph Hellwig6cbff002009-04-17 10:37:41 +02004698 btrfs_inherit_iflags(inode, dir);
4699
Al Viro569254b2011-07-24 17:08:40 -04004700 if (S_ISREG(mode)) {
Chris Mason94272162009-07-02 12:26:06 -04004701 if (btrfs_test_opt(root, NODATASUM))
4702 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
Liu Bo75e7cb72011-03-22 10:12:20 +00004703 if (btrfs_test_opt(root, NODATACOW) ||
4704 (BTRFS_I(dir)->flags & BTRFS_INODE_NODATACOW))
Chris Mason94272162009-07-02 12:26:06 -04004705 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
4706 }
4707
Chris Mason39279cc2007-06-12 06:35:45 -04004708 insert_inode_hash(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004709 inode_tree_add(inode);
liubo1abe9b82011-03-24 11:18:59 +00004710
4711 trace_btrfs_inode_new(inode);
Chris Mason1973f0f2011-06-24 13:13:29 -04004712 btrfs_set_inode_last_trans(trans, inode);
liubo1abe9b82011-03-24 11:18:59 +00004713
Chris Mason39279cc2007-06-12 06:35:45 -04004714 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004715fail:
Josef Bacikaec74772008-07-24 12:12:38 -04004716 if (dir)
4717 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04004718 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004719 iput(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004720 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004721}
4722
4723static inline u8 btrfs_inode_type(struct inode *inode)
4724{
4725 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
4726}
4727
Chris Masond352ac62008-09-29 15:18:18 -04004728/*
4729 * utility function to add 'inode' into 'parent_inode' with
4730 * a give name and a given sequence number.
4731 * if 'add_backref' is true, also insert a backref from the
4732 * inode to the parent directory.
4733 */
Chris Masone02119d2008-09-05 16:13:11 -04004734int btrfs_add_link(struct btrfs_trans_handle *trans,
4735 struct inode *parent_inode, struct inode *inode,
4736 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004737{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004738 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004739 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04004740 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Li Zefan33345d012011-04-20 10:31:50 +08004741 u64 ino = btrfs_ino(inode);
4742 u64 parent_ino = btrfs_ino(parent_inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004743
Li Zefan33345d012011-04-20 10:31:50 +08004744 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004745 memcpy(&key, &BTRFS_I(inode)->root->root_key, sizeof(key));
4746 } else {
Li Zefan33345d012011-04-20 10:31:50 +08004747 key.objectid = ino;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004748 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
4749 key.offset = 0;
4750 }
Chris Mason39279cc2007-06-12 06:35:45 -04004751
Li Zefan33345d012011-04-20 10:31:50 +08004752 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004753 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
4754 key.objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08004755 parent_ino, index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004756 } else if (add_backref) {
Li Zefan33345d012011-04-20 10:31:50 +08004757 ret = btrfs_insert_inode_ref(trans, root, name, name_len, ino,
4758 parent_ino, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004759 }
4760
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004761 /* Nothing to clean up yet */
4762 if (ret)
4763 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004764
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004765 ret = btrfs_insert_dir_item(trans, root, name, name_len,
4766 parent_inode, &key,
4767 btrfs_inode_type(inode), index);
4768 if (ret == -EEXIST)
4769 goto fail_dir_item;
4770 else if (ret) {
4771 btrfs_abort_transaction(trans, root, ret);
4772 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004773 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004774
4775 btrfs_i_size_write(parent_inode, parent_inode->i_size +
4776 name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04004777 inode_inc_iversion(parent_inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004778 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
4779 ret = btrfs_update_inode(trans, root, parent_inode);
4780 if (ret)
4781 btrfs_abort_transaction(trans, root, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004782 return ret;
Chris Masonfe66a052012-02-20 08:40:56 -05004783
4784fail_dir_item:
4785 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
4786 u64 local_index;
4787 int err;
4788 err = btrfs_del_root_ref(trans, root->fs_info->tree_root,
4789 key.objectid, root->root_key.objectid,
4790 parent_ino, &local_index, name, name_len);
4791
4792 } else if (add_backref) {
4793 u64 local_index;
4794 int err;
4795
4796 err = btrfs_del_inode_ref(trans, root, name, name_len,
4797 ino, parent_ino, &local_index);
4798 }
4799 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004800}
4801
4802static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Josef Bacika1b075d2010-11-19 20:36:11 +00004803 struct inode *dir, struct dentry *dentry,
4804 struct inode *inode, int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004805{
Josef Bacika1b075d2010-11-19 20:36:11 +00004806 int err = btrfs_add_link(trans, dir, inode,
4807 dentry->d_name.name, dentry->d_name.len,
4808 backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004809 if (err > 0)
4810 err = -EEXIST;
4811 return err;
4812}
4813
Josef Bacik618e21d2007-07-11 10:18:17 -04004814static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -04004815 umode_t mode, dev_t rdev)
Josef Bacik618e21d2007-07-11 10:18:17 -04004816{
4817 struct btrfs_trans_handle *trans;
4818 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004819 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04004820 int err;
4821 int drop_inode = 0;
4822 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05004823 unsigned long nr = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004824 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04004825
4826 if (!new_valid_dev(rdev))
4827 return -EINVAL;
4828
Josef Bacik9ed74f22009-09-11 16:12:44 -04004829 /*
4830 * 2 for inode item and ref
4831 * 2 for dir items
4832 * 1 for xattr if selinux is on
4833 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004834 trans = btrfs_start_transaction(root, 5);
4835 if (IS_ERR(trans))
4836 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05004837
Li Zefan581bb052011-04-20 10:06:11 +08004838 err = btrfs_find_free_ino(root, &objectid);
4839 if (err)
4840 goto out_unlock;
4841
Josef Bacikaec74772008-07-24 12:12:38 -04004842 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08004843 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04004844 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004845 if (IS_ERR(inode)) {
4846 err = PTR_ERR(inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04004847 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004848 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004849
Eric Paris2a7dba32011-02-01 11:05:39 -05004850 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04004851 if (err) {
4852 drop_inode = 1;
4853 goto out_unlock;
4854 }
4855
Casey Schauflerad19db72011-12-15 10:09:07 -05004856 /*
4857 * If the active LSM wants to access the inode during
4858 * d_instantiate it needs these. Smack checks to see
4859 * if the filesystem supports xattrs by looking at the
4860 * ops vector.
4861 */
4862
4863 inode->i_op = &btrfs_special_inode_operations;
Josef Bacika1b075d2010-11-19 20:36:11 +00004864 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Josef Bacik618e21d2007-07-11 10:18:17 -04004865 if (err)
4866 drop_inode = 1;
4867 else {
Josef Bacik618e21d2007-07-11 10:18:17 -04004868 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04004869 btrfs_update_inode(trans, root, inode);
Al Viro08c422c2011-12-23 07:58:13 -05004870 d_instantiate(dentry, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04004871 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004872out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004873 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05004874 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004875 btrfs_btree_balance_dirty(root, nr);
Josef Bacik618e21d2007-07-11 10:18:17 -04004876 if (drop_inode) {
4877 inode_dec_link_count(inode);
4878 iput(inode);
4879 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004880 return err;
4881}
4882
Chris Mason39279cc2007-06-12 06:35:45 -04004883static int btrfs_create(struct inode *dir, struct dentry *dentry,
Al Viro4acdaf22011-07-26 01:42:34 -04004884 umode_t mode, struct nameidata *nd)
Chris Mason39279cc2007-06-12 06:35:45 -04004885{
4886 struct btrfs_trans_handle *trans;
4887 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004888 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004889 int drop_inode = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004890 int err;
Chris Mason1832a6d2007-12-21 16:27:21 -05004891 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004892 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004893 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004894
Josef Bacik9ed74f22009-09-11 16:12:44 -04004895 /*
4896 * 2 for inode item and ref
4897 * 2 for dir items
4898 * 1 for xattr if selinux is on
4899 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004900 trans = btrfs_start_transaction(root, 5);
4901 if (IS_ERR(trans))
4902 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004903
Li Zefan581bb052011-04-20 10:06:11 +08004904 err = btrfs_find_free_ino(root, &objectid);
4905 if (err)
4906 goto out_unlock;
4907
Josef Bacikaec74772008-07-24 12:12:38 -04004908 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08004909 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04004910 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004911 if (IS_ERR(inode)) {
4912 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004913 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004914 }
Chris Mason39279cc2007-06-12 06:35:45 -04004915
Eric Paris2a7dba32011-02-01 11:05:39 -05004916 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04004917 if (err) {
4918 drop_inode = 1;
4919 goto out_unlock;
4920 }
4921
Casey Schauflerad19db72011-12-15 10:09:07 -05004922 /*
4923 * If the active LSM wants to access the inode during
4924 * d_instantiate it needs these. Smack checks to see
4925 * if the filesystem supports xattrs by looking at the
4926 * ops vector.
4927 */
4928 inode->i_fop = &btrfs_file_operations;
4929 inode->i_op = &btrfs_file_inode_operations;
4930
Josef Bacika1b075d2010-11-19 20:36:11 +00004931 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004932 if (err)
4933 drop_inode = 1;
4934 else {
4935 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04004936 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05004937 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Al Viro08c422c2011-12-23 07:58:13 -05004938 d_instantiate(dentry, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004939 }
Chris Mason39279cc2007-06-12 06:35:45 -04004940out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004941 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05004942 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004943 if (drop_inode) {
4944 inode_dec_link_count(inode);
4945 iput(inode);
4946 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004947 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004948 return err;
4949}
4950
4951static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
4952 struct dentry *dentry)
4953{
4954 struct btrfs_trans_handle *trans;
4955 struct btrfs_root *root = BTRFS_I(dir)->root;
4956 struct inode *inode = old_dentry->d_inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004957 u64 index;
Chris Mason1832a6d2007-12-21 16:27:21 -05004958 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004959 int err;
4960 int drop_inode = 0;
4961
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00004962 /* do not allow sys_link's with other subvols of the same device */
4963 if (root->objectid != BTRFS_I(inode)->root->objectid)
Mark Fasheh3ab35642011-03-22 17:20:26 +00004964 return -EXDEV;
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00004965
Al Viroc055e992011-03-04 17:15:18 +00004966 if (inode->i_nlink == ~0U)
4967 return -EMLINK;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004968
Chris Mason3de45862008-11-17 21:02:50 -05004969 err = btrfs_set_inode_index(dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04004970 if (err)
4971 goto fail;
4972
Yan, Zhenga22285a2010-05-16 10:48:46 -04004973 /*
Miao Xie7e6b6462011-02-18 09:21:17 +00004974 * 2 items for inode and inode ref
Yan, Zhenga22285a2010-05-16 10:48:46 -04004975 * 2 items for dir items
Miao Xie7e6b6462011-02-18 09:21:17 +00004976 * 1 item for parent inode
Yan, Zhenga22285a2010-05-16 10:48:46 -04004977 */
Miao Xie7e6b6462011-02-18 09:21:17 +00004978 trans = btrfs_start_transaction(root, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004979 if (IS_ERR(trans)) {
4980 err = PTR_ERR(trans);
4981 goto fail;
4982 }
Chris Mason5f39d392007-10-15 16:14:19 -04004983
Miao Xie31534952011-04-13 13:19:21 +08004984 btrfs_inc_nlink(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04004985 inode_inc_iversion(inode);
Miao Xie31534952011-04-13 13:19:21 +08004986 inode->i_ctime = CURRENT_TIME;
Al Viro7de9c6ee2010-10-23 11:11:40 -04004987 ihold(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004988
Josef Bacika1b075d2010-11-19 20:36:11 +00004989 err = btrfs_add_nondir(trans, dir, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04004990
Yan, Zhenga5719522009-09-24 09:17:31 -04004991 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04004992 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04004993 } else {
Al Viro10d9f302011-07-16 23:09:10 -04004994 struct dentry *parent = dentry->d_parent;
Yan, Zhenga5719522009-09-24 09:17:31 -04004995 err = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004996 if (err)
4997 goto fail;
Al Viro08c422c2011-12-23 07:58:13 -05004998 d_instantiate(dentry, inode);
Josef Bacik6a912212010-11-20 09:48:00 +00004999 btrfs_log_new_name(trans, inode, NULL, parent);
Yan, Zhenga5719522009-09-24 09:17:31 -04005000 }
Chris Mason39279cc2007-06-12 06:35:45 -04005001
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005002 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05005003 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05005004fail:
Chris Mason39279cc2007-06-12 06:35:45 -04005005 if (drop_inode) {
5006 inode_dec_link_count(inode);
5007 iput(inode);
5008 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005009 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04005010 return err;
5011}
5012
Al Viro18bb1db2011-07-26 01:41:39 -04005013static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Chris Mason39279cc2007-06-12 06:35:45 -04005014{
Chris Masonb9d86662008-05-02 16:13:49 -04005015 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04005016 struct btrfs_trans_handle *trans;
5017 struct btrfs_root *root = BTRFS_I(dir)->root;
5018 int err = 0;
5019 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04005020 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005021 u64 index = 0;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005022 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04005023
Josef Bacik9ed74f22009-09-11 16:12:44 -04005024 /*
5025 * 2 items for inode and ref
5026 * 2 items for dir items
5027 * 1 for xattr if selinux is on
5028 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04005029 trans = btrfs_start_transaction(root, 5);
5030 if (IS_ERR(trans))
5031 return PTR_ERR(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04005032
Li Zefan581bb052011-04-20 10:06:11 +08005033 err = btrfs_find_free_ino(root, &objectid);
5034 if (err)
5035 goto out_fail;
5036
Josef Bacikaec74772008-07-24 12:12:38 -04005037 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08005038 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04005039 S_IFDIR | mode, &index);
Chris Mason39279cc2007-06-12 06:35:45 -04005040 if (IS_ERR(inode)) {
5041 err = PTR_ERR(inode);
5042 goto out_fail;
5043 }
Chris Mason5f39d392007-10-15 16:14:19 -04005044
Chris Mason39279cc2007-06-12 06:35:45 -04005045 drop_on_err = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -04005046
Eric Paris2a7dba32011-02-01 11:05:39 -05005047 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04005048 if (err)
5049 goto out_fail;
5050
Chris Mason39279cc2007-06-12 06:35:45 -04005051 inode->i_op = &btrfs_dir_inode_operations;
5052 inode->i_fop = &btrfs_dir_file_operations;
Chris Mason39279cc2007-06-12 06:35:45 -04005053
Chris Masondbe674a2008-07-17 12:54:05 -04005054 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04005055 err = btrfs_update_inode(trans, root, inode);
5056 if (err)
5057 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04005058
Josef Bacika1b075d2010-11-19 20:36:11 +00005059 err = btrfs_add_link(trans, dir, inode, dentry->d_name.name,
5060 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04005061 if (err)
5062 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04005063
Chris Mason39279cc2007-06-12 06:35:45 -04005064 d_instantiate(dentry, inode);
5065 drop_on_err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005066
5067out_fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005068 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05005069 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04005070 if (drop_on_err)
5071 iput(inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005072 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04005073 return err;
5074}
5075
Chris Masond352ac62008-09-29 15:18:18 -04005076/* helper for btfs_get_extent. Given an existing extent in the tree,
5077 * and an extent that you want to insert, deal with overlap and insert
5078 * the new extent into the tree.
5079 */
Chris Mason3b951512008-04-17 11:29:12 -04005080static int merge_extent_mapping(struct extent_map_tree *em_tree,
5081 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005082 struct extent_map *em,
5083 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04005084{
5085 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04005086
Chris Masone6dcd2d2008-07-17 12:53:50 -04005087 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
5088 start_diff = map_start - em->start;
5089 em->start = map_start;
5090 em->len = map_len;
Chris Masonc8b97812008-10-29 14:49:59 -04005091 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
5092 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04005093 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04005094 em->block_len -= start_diff;
5095 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005096 return add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04005097}
5098
Chris Masonc8b97812008-10-29 14:49:59 -04005099static noinline int uncompress_inline(struct btrfs_path *path,
5100 struct inode *inode, struct page *page,
5101 size_t pg_offset, u64 extent_offset,
5102 struct btrfs_file_extent_item *item)
5103{
5104 int ret;
5105 struct extent_buffer *leaf = path->nodes[0];
5106 char *tmp;
5107 size_t max_size;
5108 unsigned long inline_size;
5109 unsigned long ptr;
Li Zefan261507a02010-12-17 14:21:50 +08005110 int compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04005111
5112 WARN_ON(pg_offset != 0);
Li Zefan261507a02010-12-17 14:21:50 +08005113 compress_type = btrfs_file_extent_compression(leaf, item);
Chris Masonc8b97812008-10-29 14:49:59 -04005114 max_size = btrfs_file_extent_ram_bytes(leaf, item);
5115 inline_size = btrfs_file_extent_inline_item_len(leaf,
5116 btrfs_item_nr(leaf, path->slots[0]));
5117 tmp = kmalloc(inline_size, GFP_NOFS);
Tsutomu Itoh8d413712011-04-25 19:43:52 -04005118 if (!tmp)
5119 return -ENOMEM;
Chris Masonc8b97812008-10-29 14:49:59 -04005120 ptr = btrfs_file_extent_inline_start(item);
5121
5122 read_extent_buffer(leaf, tmp, ptr, inline_size);
5123
Chris Mason5b050f02008-11-11 09:34:41 -05005124 max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size);
Li Zefan261507a02010-12-17 14:21:50 +08005125 ret = btrfs_decompress(compress_type, tmp, page,
5126 extent_offset, inline_size, max_size);
Chris Masonc8b97812008-10-29 14:49:59 -04005127 if (ret) {
Cong Wang7ac687d2011-11-25 23:14:28 +08005128 char *kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04005129 unsigned long copy_size = min_t(u64,
5130 PAGE_CACHE_SIZE - pg_offset,
5131 max_size - extent_offset);
5132 memset(kaddr + pg_offset, 0, copy_size);
Cong Wang7ac687d2011-11-25 23:14:28 +08005133 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -04005134 }
5135 kfree(tmp);
5136 return 0;
5137}
5138
Chris Masond352ac62008-09-29 15:18:18 -04005139/*
5140 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05005141 * the ugly parts come from merging extents from the disk with the in-ram
5142 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04005143 * where the in-ram extents might be locked pending data=ordered completion.
5144 *
5145 * This also copies inline extents directly into the page.
5146 */
Chris Masond3977122009-01-05 21:25:51 -05005147
Chris Masona52d9a82007-08-27 16:49:44 -04005148struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05005149 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04005150 int create)
5151{
5152 int ret;
5153 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04005154 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04005155 u64 extent_start = 0;
5156 u64 extent_end = 0;
Li Zefan33345d012011-04-20 10:31:50 +08005157 u64 objectid = btrfs_ino(inode);
Chris Masona52d9a82007-08-27 16:49:44 -04005158 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04005159 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04005160 struct btrfs_root *root = BTRFS_I(inode)->root;
5161 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04005162 struct extent_buffer *leaf;
5163 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04005164 struct extent_map *em = NULL;
5165 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05005166 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04005167 struct btrfs_trans_handle *trans = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08005168 int compress_type;
Chris Masona52d9a82007-08-27 16:49:44 -04005169
Chris Masona52d9a82007-08-27 16:49:44 -04005170again:
Chris Mason890871b2009-09-02 16:24:52 -04005171 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05005172 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04005173 if (em)
5174 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04005175 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05005176
Chris Masona52d9a82007-08-27 16:49:44 -04005177 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04005178 if (em->start > start || em->start + em->len <= start)
5179 free_extent_map(em);
5180 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05005181 free_extent_map(em);
5182 else
5183 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005184 }
David Sterba172ddd62011-04-21 00:48:27 +02005185 em = alloc_extent_map();
Chris Masona52d9a82007-08-27 16:49:44 -04005186 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05005187 err = -ENOMEM;
5188 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005189 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005190 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05005191 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05005192 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05005193 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04005194 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04005195
5196 if (!path) {
5197 path = btrfs_alloc_path();
Josef Bacik026fd312011-05-13 10:32:11 -04005198 if (!path) {
5199 err = -ENOMEM;
5200 goto out;
5201 }
5202 /*
5203 * Chances are we'll be called again, so go ahead and do
5204 * readahead
5205 */
5206 path->reada = 1;
Chris Masonf4219502008-07-22 11:18:09 -04005207 }
5208
Chris Mason179e29e2007-11-01 11:28:41 -04005209 ret = btrfs_lookup_file_extent(trans, root, path,
5210 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04005211 if (ret < 0) {
5212 err = ret;
5213 goto out;
5214 }
5215
5216 if (ret != 0) {
5217 if (path->slots[0] == 0)
5218 goto not_found;
5219 path->slots[0]--;
5220 }
5221
Chris Mason5f39d392007-10-15 16:14:19 -04005222 leaf = path->nodes[0];
5223 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04005224 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04005225 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04005226 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5227 found_type = btrfs_key_type(&found_key);
5228 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04005229 found_type != BTRFS_EXTENT_DATA_KEY) {
5230 goto not_found;
5231 }
5232
Chris Mason5f39d392007-10-15 16:14:19 -04005233 found_type = btrfs_file_extent_type(leaf, item);
5234 extent_start = found_key.offset;
Li Zefan261507a02010-12-17 14:21:50 +08005235 compress_type = btrfs_file_extent_compression(leaf, item);
Yan Zhengd899e052008-10-30 14:25:28 -04005236 if (found_type == BTRFS_FILE_EXTENT_REG ||
5237 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04005238 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04005239 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04005240 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
5241 size_t size;
5242 size = btrfs_file_extent_inline_len(leaf, item);
5243 extent_end = (extent_start + size + root->sectorsize - 1) &
5244 ~((u64)root->sectorsize - 1);
5245 }
5246
5247 if (start >= extent_end) {
5248 path->slots[0]++;
5249 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
5250 ret = btrfs_next_leaf(root, path);
5251 if (ret < 0) {
5252 err = ret;
5253 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005254 }
Yan Zheng9036c102008-10-30 14:19:41 -04005255 if (ret > 0)
5256 goto not_found;
5257 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04005258 }
Yan Zheng9036c102008-10-30 14:19:41 -04005259 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5260 if (found_key.objectid != objectid ||
5261 found_key.type != BTRFS_EXTENT_DATA_KEY)
5262 goto not_found;
5263 if (start + len <= found_key.offset)
5264 goto not_found;
5265 em->start = start;
5266 em->len = found_key.offset - start;
5267 goto not_found_em;
5268 }
5269
Yan Zhengd899e052008-10-30 14:25:28 -04005270 if (found_type == BTRFS_FILE_EXTENT_REG ||
5271 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng9036c102008-10-30 14:19:41 -04005272 em->start = extent_start;
5273 em->len = extent_end - extent_start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005274 em->orig_start = extent_start -
5275 btrfs_file_extent_offset(leaf, item);
Chris Masondb945352007-10-15 16:15:53 -04005276 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
5277 if (bytenr == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04005278 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04005279 goto insert;
5280 }
Li Zefan261507a02010-12-17 14:21:50 +08005281 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04005282 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08005283 em->compress_type = compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04005284 em->block_start = bytenr;
5285 em->block_len = btrfs_file_extent_disk_num_bytes(leaf,
5286 item);
5287 } else {
5288 bytenr += btrfs_file_extent_offset(leaf, item);
5289 em->block_start = bytenr;
5290 em->block_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04005291 if (found_type == BTRFS_FILE_EXTENT_PREALLOC)
5292 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -04005293 }
Chris Masona52d9a82007-08-27 16:49:44 -04005294 goto insert;
5295 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04005296 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04005297 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04005298 size_t size;
5299 size_t extent_offset;
5300 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04005301
Chris Masona52d9a82007-08-27 16:49:44 -04005302 em->block_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04005303 if (!page || create) {
Yan689f9342007-10-29 11:41:07 -04005304 em->start = extent_start;
Yan Zheng9036c102008-10-30 14:19:41 -04005305 em->len = extent_end - extent_start;
Yan689f9342007-10-29 11:41:07 -04005306 goto out;
5307 }
5308
Yan Zheng9036c102008-10-30 14:19:41 -04005309 size = btrfs_file_extent_inline_len(leaf, item);
5310 extent_offset = page_offset(page) + pg_offset - extent_start;
Chris Mason70dec802008-01-29 09:59:12 -05005311 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04005312 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04005313 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05005314 em->len = (copy_size + root->sectorsize - 1) &
5315 ~((u64)root->sectorsize - 1);
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005316 em->orig_start = EXTENT_MAP_INLINE;
Li Zefan261507a02010-12-17 14:21:50 +08005317 if (compress_type) {
Chris Masonc8b97812008-10-29 14:49:59 -04005318 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08005319 em->compress_type = compress_type;
5320 }
Yan689f9342007-10-29 11:41:07 -04005321 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04005322 if (create == 0 && !PageUptodate(page)) {
Li Zefan261507a02010-12-17 14:21:50 +08005323 if (btrfs_file_extent_compression(leaf, item) !=
5324 BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04005325 ret = uncompress_inline(path, inode, page,
5326 pg_offset,
5327 extent_offset, item);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005328 BUG_ON(ret); /* -ENOMEM */
Chris Masonc8b97812008-10-29 14:49:59 -04005329 } else {
5330 map = kmap(page);
5331 read_extent_buffer(leaf, map + pg_offset, ptr,
5332 copy_size);
Chris Mason93c82d52009-09-11 12:36:29 -04005333 if (pg_offset + copy_size < PAGE_CACHE_SIZE) {
5334 memset(map + pg_offset + copy_size, 0,
5335 PAGE_CACHE_SIZE - pg_offset -
5336 copy_size);
5337 }
Chris Masonc8b97812008-10-29 14:49:59 -04005338 kunmap(page);
5339 }
Chris Mason179e29e2007-11-01 11:28:41 -04005340 flush_dcache_page(page);
5341 } else if (create && PageUptodate(page)) {
Jan Schmidt6bf7e082011-12-01 14:35:19 +01005342 BUG();
Chris Mason179e29e2007-11-01 11:28:41 -04005343 if (!trans) {
5344 kunmap(page);
5345 free_extent_map(em);
5346 em = NULL;
Chris Masonff5714c2011-05-28 07:00:39 -04005347
David Sterbab3b4aa72011-04-21 01:20:15 +02005348 btrfs_release_path(path);
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005349 trans = btrfs_join_transaction(root);
Chris Masonff5714c2011-05-28 07:00:39 -04005350
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005351 if (IS_ERR(trans))
5352 return ERR_CAST(trans);
Chris Mason179e29e2007-11-01 11:28:41 -04005353 goto again;
5354 }
Chris Masonc8b97812008-10-29 14:49:59 -04005355 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05005356 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04005357 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04005358 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04005359 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04005360 }
Chris Masond1310b22008-01-24 16:13:08 -05005361 set_extent_uptodate(io_tree, em->start,
Arne Jansen507903b2011-04-06 10:02:20 +00005362 extent_map_end(em) - 1, NULL, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04005363 goto insert;
5364 } else {
Chris Masond3977122009-01-05 21:25:51 -05005365 printk(KERN_ERR "btrfs unknown found_type %d\n", found_type);
Chris Masona52d9a82007-08-27 16:49:44 -04005366 WARN_ON(1);
5367 }
5368not_found:
5369 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05005370 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04005371not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04005372 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04005373 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04005374insert:
David Sterbab3b4aa72011-04-21 01:20:15 +02005375 btrfs_release_path(path);
Chris Masond1310b22008-01-24 16:13:08 -05005376 if (em->start > start || extent_map_end(em) <= start) {
Chris Masond3977122009-01-05 21:25:51 -05005377 printk(KERN_ERR "Btrfs: bad extent! em: [%llu %llu] passed "
5378 "[%llu %llu]\n", (unsigned long long)em->start,
5379 (unsigned long long)em->len,
5380 (unsigned long long)start,
5381 (unsigned long long)len);
Chris Masona52d9a82007-08-27 16:49:44 -04005382 err = -EIO;
5383 goto out;
5384 }
Chris Masond1310b22008-01-24 16:13:08 -05005385
5386 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04005387 write_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005388 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04005389 /* it is possible that someone inserted the extent into the tree
5390 * while we had the lock dropped. It is also possible that
5391 * an overlapping map exists in the tree
5392 */
Chris Masona52d9a82007-08-27 16:49:44 -04005393 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04005394 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005395
5396 ret = 0;
5397
Chris Mason3b951512008-04-17 11:29:12 -04005398 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04005399 if (existing && (existing->start > start ||
5400 existing->start + existing->len <= start)) {
5401 free_extent_map(existing);
5402 existing = NULL;
5403 }
Chris Mason3b951512008-04-17 11:29:12 -04005404 if (!existing) {
5405 existing = lookup_extent_mapping(em_tree, em->start,
5406 em->len);
5407 if (existing) {
5408 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005409 em, start,
5410 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04005411 free_extent_map(existing);
5412 if (err) {
5413 free_extent_map(em);
5414 em = NULL;
5415 }
5416 } else {
5417 err = -EIO;
Chris Mason3b951512008-04-17 11:29:12 -04005418 free_extent_map(em);
5419 em = NULL;
5420 }
5421 } else {
5422 free_extent_map(em);
5423 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005424 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04005425 }
Chris Masona52d9a82007-08-27 16:49:44 -04005426 }
Chris Mason890871b2009-09-02 16:24:52 -04005427 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005428out:
liubo1abe9b82011-03-24 11:18:59 +00005429
5430 trace_btrfs_get_extent(root, em);
5431
Chris Masonf4219502008-07-22 11:18:09 -04005432 if (path)
5433 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04005434 if (trans) {
5435 ret = btrfs_end_transaction(trans, root);
Chris Masond3977122009-01-05 21:25:51 -05005436 if (!err)
Chris Masona52d9a82007-08-27 16:49:44 -04005437 err = ret;
5438 }
Chris Masona52d9a82007-08-27 16:49:44 -04005439 if (err) {
5440 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04005441 return ERR_PTR(err);
5442 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005443 BUG_ON(!em); /* Error is always set */
Chris Masona52d9a82007-08-27 16:49:44 -04005444 return em;
5445}
5446
Chris Masonec29ed52011-02-23 16:23:20 -05005447struct extent_map *btrfs_get_extent_fiemap(struct inode *inode, struct page *page,
5448 size_t pg_offset, u64 start, u64 len,
5449 int create)
5450{
5451 struct extent_map *em;
5452 struct extent_map *hole_em = NULL;
5453 u64 range_start = start;
5454 u64 end;
5455 u64 found;
5456 u64 found_end;
5457 int err = 0;
5458
5459 em = btrfs_get_extent(inode, page, pg_offset, start, len, create);
5460 if (IS_ERR(em))
5461 return em;
5462 if (em) {
5463 /*
5464 * if our em maps to a hole, there might
5465 * actually be delalloc bytes behind it
5466 */
5467 if (em->block_start != EXTENT_MAP_HOLE)
5468 return em;
5469 else
5470 hole_em = em;
5471 }
5472
5473 /* check to see if we've wrapped (len == -1 or similar) */
5474 end = start + len;
5475 if (end < start)
5476 end = (u64)-1;
5477 else
5478 end -= 1;
5479
5480 em = NULL;
5481
5482 /* ok, we didn't find anything, lets look for delalloc */
5483 found = count_range_bits(&BTRFS_I(inode)->io_tree, &range_start,
5484 end, len, EXTENT_DELALLOC, 1);
5485 found_end = range_start + found;
5486 if (found_end < range_start)
5487 found_end = (u64)-1;
5488
5489 /*
5490 * we didn't find anything useful, return
5491 * the original results from get_extent()
5492 */
5493 if (range_start > end || found_end <= start) {
5494 em = hole_em;
5495 hole_em = NULL;
5496 goto out;
5497 }
5498
5499 /* adjust the range_start to make sure it doesn't
5500 * go backwards from the start they passed in
5501 */
5502 range_start = max(start,range_start);
5503 found = found_end - range_start;
5504
5505 if (found > 0) {
5506 u64 hole_start = start;
5507 u64 hole_len = len;
5508
David Sterba172ddd62011-04-21 00:48:27 +02005509 em = alloc_extent_map();
Chris Masonec29ed52011-02-23 16:23:20 -05005510 if (!em) {
5511 err = -ENOMEM;
5512 goto out;
5513 }
5514 /*
5515 * when btrfs_get_extent can't find anything it
5516 * returns one huge hole
5517 *
5518 * make sure what it found really fits our range, and
5519 * adjust to make sure it is based on the start from
5520 * the caller
5521 */
5522 if (hole_em) {
5523 u64 calc_end = extent_map_end(hole_em);
5524
5525 if (calc_end <= start || (hole_em->start > end)) {
5526 free_extent_map(hole_em);
5527 hole_em = NULL;
5528 } else {
5529 hole_start = max(hole_em->start, start);
5530 hole_len = calc_end - hole_start;
5531 }
5532 }
5533 em->bdev = NULL;
5534 if (hole_em && range_start > hole_start) {
5535 /* our hole starts before our delalloc, so we
5536 * have to return just the parts of the hole
5537 * that go until the delalloc starts
5538 */
5539 em->len = min(hole_len,
5540 range_start - hole_start);
5541 em->start = hole_start;
5542 em->orig_start = hole_start;
5543 /*
5544 * don't adjust block start at all,
5545 * it is fixed at EXTENT_MAP_HOLE
5546 */
5547 em->block_start = hole_em->block_start;
5548 em->block_len = hole_len;
5549 } else {
5550 em->start = range_start;
5551 em->len = found;
5552 em->orig_start = range_start;
5553 em->block_start = EXTENT_MAP_DELALLOC;
5554 em->block_len = found;
5555 }
5556 } else if (hole_em) {
5557 return hole_em;
5558 }
5559out:
5560
5561 free_extent_map(hole_em);
5562 if (err) {
5563 free_extent_map(em);
5564 return ERR_PTR(err);
5565 }
5566 return em;
5567}
5568
Josef Bacik4b46fce2010-05-23 11:00:55 -04005569static struct extent_map *btrfs_new_extent_direct(struct inode *inode,
Josef Bacik16d299a2011-04-06 14:53:07 -04005570 struct extent_map *em,
Josef Bacik4b46fce2010-05-23 11:00:55 -04005571 u64 start, u64 len)
5572{
5573 struct btrfs_root *root = BTRFS_I(inode)->root;
5574 struct btrfs_trans_handle *trans;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005575 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
5576 struct btrfs_key ins;
5577 u64 alloc_hint;
5578 int ret;
Josef Bacik16d299a2011-04-06 14:53:07 -04005579 bool insert = false;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005580
Josef Bacik16d299a2011-04-06 14:53:07 -04005581 /*
5582 * Ok if the extent map we looked up is a hole and is for the exact
5583 * range we want, there is no reason to allocate a new one, however if
5584 * it is not right then we need to free this one and drop the cache for
5585 * our range.
5586 */
5587 if (em->block_start != EXTENT_MAP_HOLE || em->start != start ||
5588 em->len != len) {
5589 free_extent_map(em);
5590 em = NULL;
5591 insert = true;
5592 btrfs_drop_extent_cache(inode, start, start + len - 1, 0);
5593 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005594
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005595 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005596 if (IS_ERR(trans))
5597 return ERR_CAST(trans);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005598
Chris Mason4cb53002011-05-24 15:35:30 -04005599 if (start <= BTRFS_I(inode)->disk_i_size && len < 64 * 1024)
5600 btrfs_add_inode_defrag(trans, inode);
5601
Josef Bacik4b46fce2010-05-23 11:00:55 -04005602 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
5603
5604 alloc_hint = get_extent_allocation_hint(inode, start, len);
5605 ret = btrfs_reserve_extent(trans, root, len, root->sectorsize, 0,
Josef Bacik81c9ad22012-01-18 10:56:06 -05005606 alloc_hint, &ins, 1);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005607 if (ret) {
5608 em = ERR_PTR(ret);
5609 goto out;
5610 }
5611
Josef Bacik4b46fce2010-05-23 11:00:55 -04005612 if (!em) {
David Sterba172ddd62011-04-21 00:48:27 +02005613 em = alloc_extent_map();
Josef Bacik16d299a2011-04-06 14:53:07 -04005614 if (!em) {
5615 em = ERR_PTR(-ENOMEM);
5616 goto out;
5617 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005618 }
5619
5620 em->start = start;
5621 em->orig_start = em->start;
5622 em->len = ins.offset;
5623
5624 em->block_start = ins.objectid;
5625 em->block_len = ins.offset;
5626 em->bdev = root->fs_info->fs_devices->latest_bdev;
Josef Bacik16d299a2011-04-06 14:53:07 -04005627
5628 /*
5629 * We need to do this because if we're using the original em we searched
5630 * for, we could have EXTENT_FLAG_VACANCY set, and we don't want that.
5631 */
5632 em->flags = 0;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005633 set_bit(EXTENT_FLAG_PINNED, &em->flags);
5634
Josef Bacik16d299a2011-04-06 14:53:07 -04005635 while (insert) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04005636 write_lock(&em_tree->lock);
5637 ret = add_extent_mapping(em_tree, em);
5638 write_unlock(&em_tree->lock);
5639 if (ret != -EEXIST)
5640 break;
5641 btrfs_drop_extent_cache(inode, start, start + em->len - 1, 0);
5642 }
5643
5644 ret = btrfs_add_ordered_extent_dio(inode, start, ins.objectid,
5645 ins.offset, ins.offset, 0);
5646 if (ret) {
5647 btrfs_free_reserved_extent(root, ins.objectid, ins.offset);
5648 em = ERR_PTR(ret);
5649 }
5650out:
5651 btrfs_end_transaction(trans, root);
5652 return em;
5653}
5654
Chris Mason46bfbb52010-05-26 11:04:10 -04005655/*
5656 * returns 1 when the nocow is safe, < 1 on error, 0 if the
5657 * block must be cow'd
5658 */
5659static noinline int can_nocow_odirect(struct btrfs_trans_handle *trans,
5660 struct inode *inode, u64 offset, u64 len)
5661{
5662 struct btrfs_path *path;
5663 int ret;
5664 struct extent_buffer *leaf;
5665 struct btrfs_root *root = BTRFS_I(inode)->root;
5666 struct btrfs_file_extent_item *fi;
5667 struct btrfs_key key;
5668 u64 disk_bytenr;
5669 u64 backref_offset;
5670 u64 extent_end;
5671 u64 num_bytes;
5672 int slot;
5673 int found_type;
5674
5675 path = btrfs_alloc_path();
5676 if (!path)
5677 return -ENOMEM;
5678
Li Zefan33345d012011-04-20 10:31:50 +08005679 ret = btrfs_lookup_file_extent(trans, root, path, btrfs_ino(inode),
Chris Mason46bfbb52010-05-26 11:04:10 -04005680 offset, 0);
5681 if (ret < 0)
5682 goto out;
5683
5684 slot = path->slots[0];
5685 if (ret == 1) {
5686 if (slot == 0) {
5687 /* can't find the item, must cow */
5688 ret = 0;
5689 goto out;
5690 }
5691 slot--;
5692 }
5693 ret = 0;
5694 leaf = path->nodes[0];
5695 btrfs_item_key_to_cpu(leaf, &key, slot);
Li Zefan33345d012011-04-20 10:31:50 +08005696 if (key.objectid != btrfs_ino(inode) ||
Chris Mason46bfbb52010-05-26 11:04:10 -04005697 key.type != BTRFS_EXTENT_DATA_KEY) {
5698 /* not our file or wrong item type, must cow */
5699 goto out;
5700 }
5701
5702 if (key.offset > offset) {
5703 /* Wrong offset, must cow */
5704 goto out;
5705 }
5706
5707 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
5708 found_type = btrfs_file_extent_type(leaf, fi);
5709 if (found_type != BTRFS_FILE_EXTENT_REG &&
5710 found_type != BTRFS_FILE_EXTENT_PREALLOC) {
5711 /* not a regular extent, must cow */
5712 goto out;
5713 }
5714 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
5715 backref_offset = btrfs_file_extent_offset(leaf, fi);
5716
5717 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
5718 if (extent_end < offset + len) {
5719 /* extent doesn't include our full range, must cow */
5720 goto out;
5721 }
5722
5723 if (btrfs_extent_readonly(root, disk_bytenr))
5724 goto out;
5725
5726 /*
5727 * look for other files referencing this extent, if we
5728 * find any we must cow
5729 */
Li Zefan33345d012011-04-20 10:31:50 +08005730 if (btrfs_cross_ref_exist(trans, root, btrfs_ino(inode),
Chris Mason46bfbb52010-05-26 11:04:10 -04005731 key.offset - backref_offset, disk_bytenr))
5732 goto out;
5733
5734 /*
5735 * adjust disk_bytenr and num_bytes to cover just the bytes
5736 * in this extent we are about to write. If there
5737 * are any csums in that range we have to cow in order
5738 * to keep the csums correct
5739 */
5740 disk_bytenr += backref_offset;
5741 disk_bytenr += offset - key.offset;
5742 num_bytes = min(offset + len, extent_end) - offset;
5743 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
5744 goto out;
5745 /*
5746 * all of the above have passed, it is safe to overwrite this extent
5747 * without cow
5748 */
5749 ret = 1;
5750out:
5751 btrfs_free_path(path);
5752 return ret;
5753}
5754
Josef Bacik4b46fce2010-05-23 11:00:55 -04005755static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock,
5756 struct buffer_head *bh_result, int create)
5757{
5758 struct extent_map *em;
5759 struct btrfs_root *root = BTRFS_I(inode)->root;
5760 u64 start = iblock << inode->i_blkbits;
5761 u64 len = bh_result->b_size;
Chris Mason46bfbb52010-05-26 11:04:10 -04005762 struct btrfs_trans_handle *trans;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005763
5764 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
5765 if (IS_ERR(em))
5766 return PTR_ERR(em);
5767
5768 /*
5769 * Ok for INLINE and COMPRESSED extents we need to fallback on buffered
5770 * io. INLINE is special, and we could probably kludge it in here, but
5771 * it's still buffered so for safety lets just fall back to the generic
5772 * buffered path.
5773 *
5774 * For COMPRESSED we _have_ to read the entire extent in so we can
5775 * decompress it, so there will be buffering required no matter what we
5776 * do, so go ahead and fallback to buffered.
5777 *
5778 * We return -ENOTBLK because thats what makes DIO go ahead and go back
5779 * to buffered IO. Don't blame me, this is the price we pay for using
5780 * the generic code.
5781 */
5782 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) ||
5783 em->block_start == EXTENT_MAP_INLINE) {
5784 free_extent_map(em);
5785 return -ENOTBLK;
5786 }
5787
5788 /* Just a good old fashioned hole, return */
5789 if (!create && (em->block_start == EXTENT_MAP_HOLE ||
5790 test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
5791 free_extent_map(em);
5792 /* DIO will do one hole at a time, so just unlock a sector */
5793 unlock_extent(&BTRFS_I(inode)->io_tree, start,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01005794 start + root->sectorsize - 1);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005795 return 0;
5796 }
5797
5798 /*
5799 * We don't allocate a new extent in the following cases
5800 *
5801 * 1) The inode is marked as NODATACOW. In this case we'll just use the
5802 * existing extent.
5803 * 2) The extent is marked as PREALLOC. We're good to go here and can
5804 * just use the extent.
5805 *
5806 */
Chris Mason46bfbb52010-05-26 11:04:10 -04005807 if (!create) {
5808 len = em->len - (start - em->start);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005809 goto map;
Chris Mason46bfbb52010-05-26 11:04:10 -04005810 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005811
5812 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
5813 ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
5814 em->block_start != EXTENT_MAP_HOLE)) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04005815 int type;
5816 int ret;
Chris Mason46bfbb52010-05-26 11:04:10 -04005817 u64 block_start;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005818
5819 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
5820 type = BTRFS_ORDERED_PREALLOC;
5821 else
5822 type = BTRFS_ORDERED_NOCOW;
Chris Mason46bfbb52010-05-26 11:04:10 -04005823 len = min(len, em->len - (start - em->start));
Josef Bacik4b46fce2010-05-23 11:00:55 -04005824 block_start = em->block_start + (start - em->start);
Chris Mason46bfbb52010-05-26 11:04:10 -04005825
5826 /*
5827 * we're not going to log anything, but we do need
5828 * to make sure the current transaction stays open
5829 * while we look for nocow cross refs
5830 */
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005831 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005832 if (IS_ERR(trans))
Chris Mason46bfbb52010-05-26 11:04:10 -04005833 goto must_cow;
5834
5835 if (can_nocow_odirect(trans, inode, start, len) == 1) {
5836 ret = btrfs_add_ordered_extent_dio(inode, start,
5837 block_start, len, len, type);
5838 btrfs_end_transaction(trans, root);
5839 if (ret) {
5840 free_extent_map(em);
5841 return ret;
5842 }
5843 goto unlock;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005844 }
Chris Mason46bfbb52010-05-26 11:04:10 -04005845 btrfs_end_transaction(trans, root);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005846 }
Chris Mason46bfbb52010-05-26 11:04:10 -04005847must_cow:
5848 /*
5849 * this will cow the extent, reset the len in case we changed
5850 * it above
5851 */
5852 len = bh_result->b_size;
Josef Bacik16d299a2011-04-06 14:53:07 -04005853 em = btrfs_new_extent_direct(inode, em, start, len);
Chris Mason46bfbb52010-05-26 11:04:10 -04005854 if (IS_ERR(em))
5855 return PTR_ERR(em);
5856 len = min(len, em->len - (start - em->start));
5857unlock:
Chris Mason4845e442010-05-25 20:56:50 -04005858 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, start + len - 1,
5859 EXTENT_LOCKED | EXTENT_DELALLOC | EXTENT_DIRTY, 1,
5860 0, NULL, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005861map:
5862 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
5863 inode->i_blkbits;
Chris Mason46bfbb52010-05-26 11:04:10 -04005864 bh_result->b_size = len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005865 bh_result->b_bdev = em->bdev;
5866 set_buffer_mapped(bh_result);
5867 if (create && !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
5868 set_buffer_new(bh_result);
5869
5870 free_extent_map(em);
5871
5872 return 0;
5873}
5874
5875struct btrfs_dio_private {
5876 struct inode *inode;
5877 u64 logical_offset;
5878 u64 disk_bytenr;
5879 u64 bytes;
5880 u32 *csums;
5881 void *private;
Miao Xiee65e1532010-11-22 03:04:43 +00005882
5883 /* number of bios pending for this dio */
5884 atomic_t pending_bios;
5885
5886 /* IO errors */
5887 int errors;
5888
5889 struct bio *orig_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005890};
5891
5892static void btrfs_endio_direct_read(struct bio *bio, int err)
5893{
Miao Xiee65e1532010-11-22 03:04:43 +00005894 struct btrfs_dio_private *dip = bio->bi_private;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005895 struct bio_vec *bvec_end = bio->bi_io_vec + bio->bi_vcnt - 1;
5896 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005897 struct inode *inode = dip->inode;
5898 struct btrfs_root *root = BTRFS_I(inode)->root;
5899 u64 start;
5900 u32 *private = dip->csums;
5901
5902 start = dip->logical_offset;
5903 do {
5904 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)) {
5905 struct page *page = bvec->bv_page;
5906 char *kaddr;
5907 u32 csum = ~(u32)0;
5908 unsigned long flags;
5909
5910 local_irq_save(flags);
Cong Wang7ac687d2011-11-25 23:14:28 +08005911 kaddr = kmap_atomic(page);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005912 csum = btrfs_csum_data(root, kaddr + bvec->bv_offset,
5913 csum, bvec->bv_len);
5914 btrfs_csum_final(csum, (char *)&csum);
Cong Wang7ac687d2011-11-25 23:14:28 +08005915 kunmap_atomic(kaddr);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005916 local_irq_restore(flags);
5917
5918 flush_dcache_page(bvec->bv_page);
5919 if (csum != *private) {
Li Zefan33345d012011-04-20 10:31:50 +08005920 printk(KERN_ERR "btrfs csum failed ino %llu off"
Josef Bacik4b46fce2010-05-23 11:00:55 -04005921 " %llu csum %u private %u\n",
Li Zefan33345d012011-04-20 10:31:50 +08005922 (unsigned long long)btrfs_ino(inode),
5923 (unsigned long long)start,
Josef Bacik4b46fce2010-05-23 11:00:55 -04005924 csum, *private);
5925 err = -EIO;
5926 }
5927 }
5928
5929 start += bvec->bv_len;
5930 private++;
5931 bvec++;
5932 } while (bvec <= bvec_end);
5933
5934 unlock_extent(&BTRFS_I(inode)->io_tree, dip->logical_offset,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01005935 dip->logical_offset + dip->bytes - 1);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005936 bio->bi_private = dip->private;
5937
5938 kfree(dip->csums);
5939 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04005940
5941 /* If we had a csum failure make sure to clear the uptodate flag */
5942 if (err)
5943 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005944 dio_end_io(bio, err);
5945}
5946
5947static void btrfs_endio_direct_write(struct bio *bio, int err)
5948{
5949 struct btrfs_dio_private *dip = bio->bi_private;
5950 struct inode *inode = dip->inode;
5951 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005952 struct btrfs_ordered_extent *ordered = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05005953 u64 ordered_offset = dip->logical_offset;
5954 u64 ordered_bytes = dip->bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005955 int ret;
5956
5957 if (err)
5958 goto out_done;
Chris Mason163cf092010-11-28 19:56:33 -05005959again:
5960 ret = btrfs_dec_test_first_ordered_pending(inode, &ordered,
5961 &ordered_offset,
Josef Bacik5fd02042012-05-02 14:00:54 -04005962 ordered_bytes, !err);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005963 if (!ret)
Chris Mason163cf092010-11-28 19:56:33 -05005964 goto out_test;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005965
Josef Bacik5fd02042012-05-02 14:00:54 -04005966 ordered->work.func = finish_ordered_fn;
5967 ordered->work.flags = 0;
5968 btrfs_queue_worker(&root->fs_info->endio_write_workers,
5969 &ordered->work);
Chris Mason163cf092010-11-28 19:56:33 -05005970out_test:
5971 /*
5972 * our bio might span multiple ordered extents. If we haven't
5973 * completed the accounting for the whole dio, go back and try again
5974 */
5975 if (ordered_offset < dip->logical_offset + dip->bytes) {
5976 ordered_bytes = dip->logical_offset + dip->bytes -
5977 ordered_offset;
Josef Bacik5fd02042012-05-02 14:00:54 -04005978 ordered = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05005979 goto again;
5980 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005981out_done:
5982 bio->bi_private = dip->private;
5983
Josef Bacik4b46fce2010-05-23 11:00:55 -04005984 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04005985
5986 /* If we had an error make sure to clear the uptodate flag */
5987 if (err)
5988 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005989 dio_end_io(bio, err);
5990}
5991
Chris Masoneaf25d92010-05-25 09:48:28 -04005992static int __btrfs_submit_bio_start_direct_io(struct inode *inode, int rw,
5993 struct bio *bio, int mirror_num,
5994 unsigned long bio_flags, u64 offset)
5995{
5996 int ret;
5997 struct btrfs_root *root = BTRFS_I(inode)->root;
5998 ret = btrfs_csum_one_bio(root, inode, bio, offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005999 BUG_ON(ret); /* -ENOMEM */
Chris Masoneaf25d92010-05-25 09:48:28 -04006000 return 0;
6001}
6002
Miao Xiee65e1532010-11-22 03:04:43 +00006003static void btrfs_end_dio_bio(struct bio *bio, int err)
6004{
6005 struct btrfs_dio_private *dip = bio->bi_private;
6006
6007 if (err) {
Li Zefan33345d012011-04-20 10:31:50 +08006008 printk(KERN_ERR "btrfs direct IO failed ino %llu rw %lu "
Jan Beulich3dd14622010-12-07 14:54:09 +00006009 "sector %#Lx len %u err no %d\n",
Li Zefan33345d012011-04-20 10:31:50 +08006010 (unsigned long long)btrfs_ino(dip->inode), bio->bi_rw,
Jan Beulich3dd14622010-12-07 14:54:09 +00006011 (unsigned long long)bio->bi_sector, bio->bi_size, err);
Miao Xiee65e1532010-11-22 03:04:43 +00006012 dip->errors = 1;
6013
6014 /*
6015 * before atomic variable goto zero, we must make sure
6016 * dip->errors is perceived to be set.
6017 */
6018 smp_mb__before_atomic_dec();
6019 }
6020
6021 /* if there are more bios still pending for this dio, just exit */
6022 if (!atomic_dec_and_test(&dip->pending_bios))
6023 goto out;
6024
6025 if (dip->errors)
6026 bio_io_error(dip->orig_bio);
6027 else {
6028 set_bit(BIO_UPTODATE, &dip->orig_bio->bi_flags);
6029 bio_endio(dip->orig_bio, 0);
6030 }
6031out:
6032 bio_put(bio);
6033}
6034
6035static struct bio *btrfs_dio_bio_alloc(struct block_device *bdev,
6036 u64 first_sector, gfp_t gfp_flags)
6037{
6038 int nr_vecs = bio_get_nr_vecs(bdev);
6039 return btrfs_bio_alloc(bdev, first_sector, nr_vecs, gfp_flags);
6040}
6041
6042static inline int __btrfs_submit_dio_bio(struct bio *bio, struct inode *inode,
6043 int rw, u64 file_offset, int skip_sum,
Josef Bacik1ae39932011-04-06 14:41:34 -04006044 u32 *csums, int async_submit)
Miao Xiee65e1532010-11-22 03:04:43 +00006045{
6046 int write = rw & REQ_WRITE;
6047 struct btrfs_root *root = BTRFS_I(inode)->root;
6048 int ret;
6049
6050 bio_get(bio);
Josef Bacik5fd02042012-05-02 14:00:54 -04006051
6052 if (!write) {
6053 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
6054 if (ret)
6055 goto err;
6056 }
Miao Xiee65e1532010-11-22 03:04:43 +00006057
Josef Bacik1ae39932011-04-06 14:41:34 -04006058 if (skip_sum)
6059 goto map;
6060
6061 if (write && async_submit) {
Miao Xiee65e1532010-11-22 03:04:43 +00006062 ret = btrfs_wq_submit_bio(root->fs_info,
6063 inode, rw, bio, 0, 0,
6064 file_offset,
6065 __btrfs_submit_bio_start_direct_io,
6066 __btrfs_submit_bio_done);
6067 goto err;
Josef Bacik1ae39932011-04-06 14:41:34 -04006068 } else if (write) {
6069 /*
6070 * If we aren't doing async submit, calculate the csum of the
6071 * bio now.
6072 */
6073 ret = btrfs_csum_one_bio(root, inode, bio, file_offset, 1);
6074 if (ret)
6075 goto err;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00006076 } else if (!skip_sum) {
6077 ret = btrfs_lookup_bio_sums_dio(root, inode, bio,
Miao Xiee65e1532010-11-22 03:04:43 +00006078 file_offset, csums);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00006079 if (ret)
6080 goto err;
6081 }
Miao Xiee65e1532010-11-22 03:04:43 +00006082
Josef Bacik1ae39932011-04-06 14:41:34 -04006083map:
6084 ret = btrfs_map_bio(root, rw, bio, 0, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00006085err:
6086 bio_put(bio);
6087 return ret;
6088}
6089
6090static int btrfs_submit_direct_hook(int rw, struct btrfs_dio_private *dip,
6091 int skip_sum)
6092{
6093 struct inode *inode = dip->inode;
6094 struct btrfs_root *root = BTRFS_I(inode)->root;
6095 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
6096 struct bio *bio;
6097 struct bio *orig_bio = dip->orig_bio;
6098 struct bio_vec *bvec = orig_bio->bi_io_vec;
6099 u64 start_sector = orig_bio->bi_sector;
6100 u64 file_offset = dip->logical_offset;
6101 u64 submit_len = 0;
6102 u64 map_length;
6103 int nr_pages = 0;
6104 u32 *csums = dip->csums;
6105 int ret = 0;
Josef Bacik1ae39932011-04-06 14:41:34 -04006106 int async_submit = 0;
Josef Bacik98bc3142011-03-22 11:00:46 -04006107 int write = rw & REQ_WRITE;
Miao Xiee65e1532010-11-22 03:04:43 +00006108
Miao Xiee65e1532010-11-22 03:04:43 +00006109 map_length = orig_bio->bi_size;
6110 ret = btrfs_map_block(map_tree, READ, start_sector << 9,
6111 &map_length, NULL, 0);
6112 if (ret) {
Josef Bacik64728bb2011-04-25 19:43:52 -04006113 bio_put(orig_bio);
Miao Xiee65e1532010-11-22 03:04:43 +00006114 return -EIO;
6115 }
6116
Josef Bacik02f57c72011-04-06 14:25:44 -04006117 if (map_length >= orig_bio->bi_size) {
6118 bio = orig_bio;
6119 goto submit;
6120 }
6121
Josef Bacik1ae39932011-04-06 14:41:34 -04006122 async_submit = 1;
Josef Bacik02f57c72011-04-06 14:25:44 -04006123 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev, start_sector, GFP_NOFS);
6124 if (!bio)
6125 return -ENOMEM;
6126 bio->bi_private = dip;
6127 bio->bi_end_io = btrfs_end_dio_bio;
6128 atomic_inc(&dip->pending_bios);
6129
Miao Xiee65e1532010-11-22 03:04:43 +00006130 while (bvec <= (orig_bio->bi_io_vec + orig_bio->bi_vcnt - 1)) {
6131 if (unlikely(map_length < submit_len + bvec->bv_len ||
6132 bio_add_page(bio, bvec->bv_page, bvec->bv_len,
6133 bvec->bv_offset) < bvec->bv_len)) {
6134 /*
6135 * inc the count before we submit the bio so
6136 * we know the end IO handler won't happen before
6137 * we inc the count. Otherwise, the dip might get freed
6138 * before we're done setting it up
6139 */
6140 atomic_inc(&dip->pending_bios);
6141 ret = __btrfs_submit_dio_bio(bio, inode, rw,
6142 file_offset, skip_sum,
Josef Bacik1ae39932011-04-06 14:41:34 -04006143 csums, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00006144 if (ret) {
6145 bio_put(bio);
6146 atomic_dec(&dip->pending_bios);
6147 goto out_err;
6148 }
6149
Josef Bacik98bc3142011-03-22 11:00:46 -04006150 /* Write's use the ordered csums */
6151 if (!write && !skip_sum)
Miao Xiee65e1532010-11-22 03:04:43 +00006152 csums = csums + nr_pages;
6153 start_sector += submit_len >> 9;
6154 file_offset += submit_len;
6155
6156 submit_len = 0;
6157 nr_pages = 0;
6158
6159 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev,
6160 start_sector, GFP_NOFS);
6161 if (!bio)
6162 goto out_err;
6163 bio->bi_private = dip;
6164 bio->bi_end_io = btrfs_end_dio_bio;
6165
6166 map_length = orig_bio->bi_size;
6167 ret = btrfs_map_block(map_tree, READ, start_sector << 9,
6168 &map_length, NULL, 0);
6169 if (ret) {
6170 bio_put(bio);
6171 goto out_err;
6172 }
6173 } else {
6174 submit_len += bvec->bv_len;
6175 nr_pages ++;
6176 bvec++;
6177 }
6178 }
6179
Josef Bacik02f57c72011-04-06 14:25:44 -04006180submit:
Miao Xiee65e1532010-11-22 03:04:43 +00006181 ret = __btrfs_submit_dio_bio(bio, inode, rw, file_offset, skip_sum,
Josef Bacik1ae39932011-04-06 14:41:34 -04006182 csums, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00006183 if (!ret)
6184 return 0;
6185
6186 bio_put(bio);
6187out_err:
6188 dip->errors = 1;
6189 /*
6190 * before atomic variable goto zero, we must
6191 * make sure dip->errors is perceived to be set.
6192 */
6193 smp_mb__before_atomic_dec();
6194 if (atomic_dec_and_test(&dip->pending_bios))
6195 bio_io_error(dip->orig_bio);
6196
6197 /* bio_end_io() will handle error, so we needn't return it */
6198 return 0;
6199}
6200
Josef Bacik4b46fce2010-05-23 11:00:55 -04006201static void btrfs_submit_direct(int rw, struct bio *bio, struct inode *inode,
6202 loff_t file_offset)
6203{
6204 struct btrfs_root *root = BTRFS_I(inode)->root;
6205 struct btrfs_dio_private *dip;
6206 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006207 int skip_sum;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02006208 int write = rw & REQ_WRITE;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006209 int ret = 0;
6210
6211 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
6212
6213 dip = kmalloc(sizeof(*dip), GFP_NOFS);
6214 if (!dip) {
6215 ret = -ENOMEM;
6216 goto free_ordered;
6217 }
6218 dip->csums = NULL;
6219
Josef Bacik98bc3142011-03-22 11:00:46 -04006220 /* Write's use the ordered csum stuff, so we don't need dip->csums */
6221 if (!write && !skip_sum) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04006222 dip->csums = kmalloc(sizeof(u32) * bio->bi_vcnt, GFP_NOFS);
6223 if (!dip->csums) {
Daniel J Bluemanb4966b72011-03-09 16:46:42 +00006224 kfree(dip);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006225 ret = -ENOMEM;
6226 goto free_ordered;
6227 }
6228 }
6229
6230 dip->private = bio->bi_private;
6231 dip->inode = inode;
6232 dip->logical_offset = file_offset;
6233
Josef Bacik4b46fce2010-05-23 11:00:55 -04006234 dip->bytes = 0;
6235 do {
6236 dip->bytes += bvec->bv_len;
6237 bvec++;
6238 } while (bvec <= (bio->bi_io_vec + bio->bi_vcnt - 1));
6239
Chris Mason46bfbb52010-05-26 11:04:10 -04006240 dip->disk_bytenr = (u64)bio->bi_sector << 9;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006241 bio->bi_private = dip;
Miao Xiee65e1532010-11-22 03:04:43 +00006242 dip->errors = 0;
6243 dip->orig_bio = bio;
6244 atomic_set(&dip->pending_bios, 0);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006245
6246 if (write)
6247 bio->bi_end_io = btrfs_endio_direct_write;
6248 else
6249 bio->bi_end_io = btrfs_endio_direct_read;
6250
Miao Xiee65e1532010-11-22 03:04:43 +00006251 ret = btrfs_submit_direct_hook(rw, dip, skip_sum);
6252 if (!ret)
Chris Masoneaf25d92010-05-25 09:48:28 -04006253 return;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006254free_ordered:
6255 /*
6256 * If this is a write, we need to clean up the reserved space and kill
6257 * the ordered extent.
6258 */
6259 if (write) {
6260 struct btrfs_ordered_extent *ordered;
Josef Bacik955256f2010-11-19 09:41:10 -05006261 ordered = btrfs_lookup_ordered_extent(inode, file_offset);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006262 if (!test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags) &&
6263 !test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags))
6264 btrfs_free_reserved_extent(root, ordered->start,
6265 ordered->disk_len);
6266 btrfs_put_ordered_extent(ordered);
6267 btrfs_put_ordered_extent(ordered);
6268 }
6269 bio_endio(bio, ret);
6270}
6271
Chris Mason5a5f79b2010-05-26 21:33:37 -04006272static ssize_t check_direct_IO(struct btrfs_root *root, int rw, struct kiocb *iocb,
6273 const struct iovec *iov, loff_t offset,
6274 unsigned long nr_segs)
6275{
6276 int seg;
Josef Bacika1b75f72011-04-08 15:51:18 +00006277 int i;
Chris Mason5a5f79b2010-05-26 21:33:37 -04006278 size_t size;
6279 unsigned long addr;
6280 unsigned blocksize_mask = root->sectorsize - 1;
6281 ssize_t retval = -EINVAL;
6282 loff_t end = offset;
6283
6284 if (offset & blocksize_mask)
6285 goto out;
6286
6287 /* Check the memory alignment. Blocks cannot straddle pages */
6288 for (seg = 0; seg < nr_segs; seg++) {
6289 addr = (unsigned long)iov[seg].iov_base;
6290 size = iov[seg].iov_len;
6291 end += size;
Josef Bacika1b75f72011-04-08 15:51:18 +00006292 if ((addr & blocksize_mask) || (size & blocksize_mask))
Chris Mason5a5f79b2010-05-26 21:33:37 -04006293 goto out;
Josef Bacika1b75f72011-04-08 15:51:18 +00006294
6295 /* If this is a write we don't need to check anymore */
6296 if (rw & WRITE)
6297 continue;
6298
6299 /*
6300 * Check to make sure we don't have duplicate iov_base's in this
6301 * iovec, if so return EINVAL, otherwise we'll get csum errors
6302 * when reading back.
6303 */
6304 for (i = seg + 1; i < nr_segs; i++) {
6305 if (iov[seg].iov_base == iov[i].iov_base)
6306 goto out;
6307 }
Chris Mason5a5f79b2010-05-26 21:33:37 -04006308 }
6309 retval = 0;
6310out:
6311 return retval;
6312}
Chris Mason16432982008-04-10 10:23:21 -04006313static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
6314 const struct iovec *iov, loff_t offset,
6315 unsigned long nr_segs)
6316{
Josef Bacik4b46fce2010-05-23 11:00:55 -04006317 struct file *file = iocb->ki_filp;
6318 struct inode *inode = file->f_mapping->host;
6319 struct btrfs_ordered_extent *ordered;
Chris Mason4845e442010-05-25 20:56:50 -04006320 struct extent_state *cached_state = NULL;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006321 u64 lockstart, lockend;
6322 ssize_t ret;
Chris Mason4845e442010-05-25 20:56:50 -04006323 int writing = rw & WRITE;
6324 int write_bits = 0;
Chris Mason3f7c5792010-05-26 10:59:53 -04006325 size_t count = iov_length(iov, nr_segs);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006326
Chris Mason5a5f79b2010-05-26 21:33:37 -04006327 if (check_direct_IO(BTRFS_I(inode)->root, rw, iocb, iov,
6328 offset, nr_segs)) {
6329 return 0;
6330 }
6331
Josef Bacik4b46fce2010-05-23 11:00:55 -04006332 lockstart = offset;
Chris Mason3f7c5792010-05-26 10:59:53 -04006333 lockend = offset + count - 1;
6334
6335 if (writing) {
6336 ret = btrfs_delalloc_reserve_space(inode, count);
6337 if (ret)
6338 goto out;
6339 }
Chris Mason4845e442010-05-25 20:56:50 -04006340
Josef Bacik4b46fce2010-05-23 11:00:55 -04006341 while (1) {
Chris Mason4845e442010-05-25 20:56:50 -04006342 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006343 0, &cached_state);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006344 /*
6345 * We're concerned with the entire range that we're going to be
6346 * doing DIO to, so we need to make sure theres no ordered
6347 * extents in this range.
6348 */
6349 ordered = btrfs_lookup_ordered_range(inode, lockstart,
6350 lockend - lockstart + 1);
6351 if (!ordered)
6352 break;
Chris Mason4845e442010-05-25 20:56:50 -04006353 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6354 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006355 btrfs_start_ordered_extent(inode, ordered, 1);
6356 btrfs_put_ordered_extent(ordered);
6357 cond_resched();
6358 }
6359
Chris Mason4845e442010-05-25 20:56:50 -04006360 /*
6361 * we don't use btrfs_set_extent_delalloc because we don't want
6362 * the dirty or uptodate bits
6363 */
6364 if (writing) {
6365 write_bits = EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING;
6366 ret = set_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01006367 EXTENT_DELALLOC, NULL, &cached_state,
Chris Mason4845e442010-05-25 20:56:50 -04006368 GFP_NOFS);
6369 if (ret) {
6370 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
6371 lockend, EXTENT_LOCKED | write_bits,
6372 1, 0, &cached_state, GFP_NOFS);
6373 goto out;
6374 }
6375 }
6376
6377 free_extent_state(cached_state);
6378 cached_state = NULL;
6379
Chris Mason5a5f79b2010-05-26 21:33:37 -04006380 ret = __blockdev_direct_IO(rw, iocb, inode,
6381 BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev,
6382 iov, offset, nr_segs, btrfs_get_blocks_direct, NULL,
6383 btrfs_submit_direct, 0);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006384
6385 if (ret < 0 && ret != -EIOCBQUEUED) {
Chris Mason4845e442010-05-25 20:56:50 -04006386 clear_extent_bit(&BTRFS_I(inode)->io_tree, offset,
6387 offset + iov_length(iov, nr_segs) - 1,
6388 EXTENT_LOCKED | write_bits, 1, 0,
6389 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006390 } else if (ret >= 0 && ret < iov_length(iov, nr_segs)) {
6391 /*
6392 * We're falling back to buffered, unlock the section we didn't
6393 * do IO on.
6394 */
Chris Mason4845e442010-05-25 20:56:50 -04006395 clear_extent_bit(&BTRFS_I(inode)->io_tree, offset + ret,
6396 offset + iov_length(iov, nr_segs) - 1,
6397 EXTENT_LOCKED | write_bits, 1, 0,
6398 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006399 }
Chris Mason4845e442010-05-25 20:56:50 -04006400out:
6401 free_extent_state(cached_state);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006402 return ret;
Chris Mason16432982008-04-10 10:23:21 -04006403}
6404
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006405static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
6406 __u64 start, __u64 len)
6407{
Chris Masonec29ed52011-02-23 16:23:20 -05006408 return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent_fiemap);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006409}
6410
Chris Mason9ebefb182007-06-15 13:50:00 -04006411int btrfs_readpage(struct file *file, struct page *page)
6412{
Chris Masond1310b22008-01-24 16:13:08 -05006413 struct extent_io_tree *tree;
6414 tree = &BTRFS_I(page->mapping->host)->io_tree;
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02006415 return extent_read_full_page(tree, page, btrfs_get_extent, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04006416}
Chris Mason1832a6d2007-12-21 16:27:21 -05006417
Chris Mason39279cc2007-06-12 06:35:45 -04006418static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
6419{
Chris Masond1310b22008-01-24 16:13:08 -05006420 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04006421
6422
6423 if (current->flags & PF_MEMALLOC) {
6424 redirty_page_for_writepage(wbc, page);
6425 unlock_page(page);
6426 return 0;
6427 }
Chris Masond1310b22008-01-24 16:13:08 -05006428 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04006429 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
6430}
Chris Mason39279cc2007-06-12 06:35:45 -04006431
Chris Masonf4219502008-07-22 11:18:09 -04006432int btrfs_writepages(struct address_space *mapping,
6433 struct writeback_control *wbc)
Chris Masonb293f022007-11-01 19:45:34 -04006434{
Chris Masond1310b22008-01-24 16:13:08 -05006435 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05006436
Chris Masond1310b22008-01-24 16:13:08 -05006437 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04006438 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
6439}
6440
Chris Mason3ab2fb52007-11-08 10:59:22 -05006441static int
6442btrfs_readpages(struct file *file, struct address_space *mapping,
6443 struct list_head *pages, unsigned nr_pages)
6444{
Chris Masond1310b22008-01-24 16:13:08 -05006445 struct extent_io_tree *tree;
6446 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05006447 return extent_readpages(tree, mapping, pages, nr_pages,
6448 btrfs_get_extent);
6449}
Chris Masone6dcd2d2008-07-17 12:53:50 -04006450static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04006451{
Chris Masond1310b22008-01-24 16:13:08 -05006452 struct extent_io_tree *tree;
6453 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04006454 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006455
Chris Masond1310b22008-01-24 16:13:08 -05006456 tree = &BTRFS_I(page->mapping->host)->io_tree;
6457 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05006458 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04006459 if (ret == 1) {
6460 ClearPagePrivate(page);
6461 set_page_private(page, 0);
6462 page_cache_release(page);
6463 }
6464 return ret;
6465}
Chris Mason39279cc2007-06-12 06:35:45 -04006466
Chris Masone6dcd2d2008-07-17 12:53:50 -04006467static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
6468{
Chris Mason98509cf2008-09-11 15:51:43 -04006469 if (PageWriteback(page) || PageDirty(page))
6470 return 0;
Yan Zhengb335b002009-02-12 10:06:04 -05006471 return __btrfs_releasepage(page, gfp_flags & GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006472}
6473
Chris Masona52d9a82007-08-27 16:49:44 -04006474static void btrfs_invalidatepage(struct page *page, unsigned long offset)
6475{
Josef Bacik5fd02042012-05-02 14:00:54 -04006476 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05006477 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006478 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006479 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006480 u64 page_start = page_offset(page);
6481 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006482
Chris Mason8b62b722009-09-02 16:53:46 -04006483 /*
6484 * we have the page locked, so new writeback can't start,
6485 * and the dirty bit won't be cleared while we are here.
6486 *
6487 * Wait for IO on this page so that we can safely clear
6488 * the PagePrivate2 bit and do ordered accounting
6489 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006490 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04006491
Josef Bacik5fd02042012-05-02 14:00:54 -04006492 tree = &BTRFS_I(inode)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006493 if (offset) {
6494 btrfs_releasepage(page, GFP_NOFS);
6495 return;
6496 }
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006497 lock_extent_bits(tree, page_start, page_end, 0, &cached_state);
Josef Bacik5fd02042012-05-02 14:00:54 -04006498 ordered = btrfs_lookup_ordered_extent(inode,
Chris Masone6dcd2d2008-07-17 12:53:50 -04006499 page_offset(page));
6500 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04006501 /*
6502 * IO on this page will never be started, so we need
6503 * to account for any ordered extents now
6504 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006505 clear_extent_bit(tree, page_start, page_end,
6506 EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik32c00af2009-10-08 13:34:05 -04006507 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING, 1, 0,
Josef Bacik2ac55d42010-02-03 19:33:23 +00006508 &cached_state, GFP_NOFS);
Chris Mason8b62b722009-09-02 16:53:46 -04006509 /*
6510 * whoever cleared the private bit is responsible
6511 * for the finish_ordered_io
6512 */
Josef Bacik5fd02042012-05-02 14:00:54 -04006513 if (TestClearPagePrivate2(page) &&
6514 btrfs_dec_test_ordered_pending(inode, &ordered, page_start,
6515 PAGE_CACHE_SIZE, 1)) {
6516 btrfs_finish_ordered_io(ordered);
Chris Mason8b62b722009-09-02 16:53:46 -04006517 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006518 btrfs_put_ordered_extent(ordered);
Josef Bacik2ac55d42010-02-03 19:33:23 +00006519 cached_state = NULL;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006520 lock_extent_bits(tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006521 }
6522 clear_extent_bit(tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04006523 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik2ac55d42010-02-03 19:33:23 +00006524 EXTENT_DO_ACCOUNTING, 1, 1, &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006525 __btrfs_releasepage(page, GFP_NOFS);
6526
Chris Mason4a096752008-07-21 10:29:44 -04006527 ClearPageChecked(page);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04006528 if (PagePrivate(page)) {
Chris Mason9ad6b7b2008-04-18 16:11:30 -04006529 ClearPagePrivate(page);
6530 set_page_private(page, 0);
6531 page_cache_release(page);
6532 }
Chris Mason39279cc2007-06-12 06:35:45 -04006533}
6534
Chris Mason9ebefb182007-06-15 13:50:00 -04006535/*
6536 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
6537 * called from a page fault handler when a page is first dirtied. Hence we must
6538 * be careful to check for EOF conditions here. We set the page up correctly
6539 * for a written page which means we get ENOSPC checking when writing into
6540 * holes and correct delalloc and unwritten extent mapping on filesystems that
6541 * support these features.
6542 *
6543 * We are not allowed to take the i_mutex here so we have to play games to
6544 * protect against truncate races as the page could now be beyond EOF. Because
6545 * vmtruncate() writes the inode size before removing pages, once we have the
6546 * page lock we can determine safely if the page is beyond EOF. If it is not
6547 * beyond EOF, then the page is guaranteed safe against truncation until we
6548 * unlock the page.
6549 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07006550int btrfs_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04006551{
Nick Pigginc2ec1752009-03-31 15:23:21 -07006552 struct page *page = vmf->page;
Chris Mason6da6aba2007-12-18 16:15:09 -05006553 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05006554 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006555 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
6556 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006557 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006558 char *kaddr;
6559 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04006560 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05006561 int ret;
Chris Mason9998eb72012-01-25 13:47:40 -05006562 int reserved = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04006563 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006564 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04006565
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006566 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Chris Mason9998eb72012-01-25 13:47:40 -05006567 if (!ret) {
Josef Bacik22c44fe2011-11-30 10:45:38 -05006568 ret = btrfs_update_time(vma->vm_file);
Chris Mason9998eb72012-01-25 13:47:40 -05006569 reserved = 1;
6570 }
Nick Piggin56a76f82009-03-31 15:23:23 -07006571 if (ret) {
6572 if (ret == -ENOMEM)
6573 ret = VM_FAULT_OOM;
6574 else /* -ENOSPC, -EIO, etc */
6575 ret = VM_FAULT_SIGBUS;
Chris Mason9998eb72012-01-25 13:47:40 -05006576 if (reserved)
6577 goto out;
6578 goto out_noreserve;
Nick Piggin56a76f82009-03-31 15:23:23 -07006579 }
Chris Mason1832a6d2007-12-21 16:27:21 -05006580
Nick Piggin56a76f82009-03-31 15:23:23 -07006581 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006582again:
Chris Mason9ebefb182007-06-15 13:50:00 -04006583 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04006584 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006585 page_start = page_offset(page);
6586 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006587
Chris Mason9ebefb182007-06-15 13:50:00 -04006588 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04006589 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04006590 /* page got truncated out from underneath us */
6591 goto out_unlock;
6592 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006593 wait_on_page_writeback(page);
6594
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006595 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006596 set_page_extent_mapped(page);
6597
Chris Masoneb84ae02008-07-17 13:53:27 -04006598 /*
6599 * we can't set the delalloc bits if there are pending ordered
6600 * extents. Drop our locks and wait for them to finish
6601 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006602 ordered = btrfs_lookup_ordered_extent(inode, page_start);
6603 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006604 unlock_extent_cached(io_tree, page_start, page_end,
6605 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006606 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04006607 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006608 btrfs_put_ordered_extent(ordered);
6609 goto again;
6610 }
6611
Josef Bacikfbf19082009-10-01 17:10:23 -04006612 /*
6613 * XXX - page_mkwrite gets called every time the page is dirtied, even
6614 * if it was already dirty, so for space accounting reasons we need to
6615 * clear any delalloc bits for the range we are fixing to save. There
6616 * is probably a better way to do this, but for now keep consistent with
6617 * prepare_pages in the normal write path.
6618 */
Josef Bacik2ac55d42010-02-03 19:33:23 +00006619 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04006620 EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00006621 0, 0, &cached_state, GFP_NOFS);
Josef Bacikfbf19082009-10-01 17:10:23 -04006622
Josef Bacik2ac55d42010-02-03 19:33:23 +00006623 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
6624 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006625 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006626 unlock_extent_cached(io_tree, page_start, page_end,
6627 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006628 ret = VM_FAULT_SIGBUS;
6629 goto out_unlock;
6630 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006631 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04006632
6633 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04006634 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04006635 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04006636 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04006637 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04006638
Chris Masone6dcd2d2008-07-17 12:53:50 -04006639 if (zero_start != PAGE_CACHE_SIZE) {
6640 kaddr = kmap(page);
6641 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
6642 flush_dcache_page(page);
6643 kunmap(page);
6644 }
Chris Mason247e7432008-07-17 12:53:51 -04006645 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006646 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04006647 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04006648
Chris Mason257c62e2009-10-13 13:21:08 -04006649 BTRFS_I(inode)->last_trans = root->fs_info->generation;
6650 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
6651
Josef Bacik2ac55d42010-02-03 19:33:23 +00006652 unlock_extent_cached(io_tree, page_start, page_end, &cached_state, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04006653
6654out_unlock:
Chris Mason50a9b212009-09-11 12:33:12 -04006655 if (!ret)
6656 return VM_FAULT_LOCKED;
Chris Mason9ebefb182007-06-15 13:50:00 -04006657 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05006658out:
Josef Bacikec39e182012-01-12 19:10:12 -05006659 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason9998eb72012-01-25 13:47:40 -05006660out_noreserve:
Chris Mason9ebefb182007-06-15 13:50:00 -04006661 return ret;
6662}
6663
Josef Bacika41ad392011-01-31 15:30:16 -05006664static int btrfs_truncate(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04006665{
6666 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikfcb80c22011-05-03 10:40:22 -04006667 struct btrfs_block_rsv *rsv;
Chris Mason39279cc2007-06-12 06:35:45 -04006668 int ret;
Josef Bacik3893e332011-01-31 16:03:11 -05006669 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006670 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04006671 unsigned long nr;
Chris Masondbe674a2008-07-17 12:54:05 -04006672 u64 mask = root->sectorsize - 1;
Josef Bacik07127182011-08-19 10:29:59 -04006673 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04006674
Josef Bacik5d5e1032009-10-13 16:46:49 -04006675 ret = btrfs_truncate_page(inode->i_mapping, inode->i_size);
6676 if (ret)
Josef Bacika41ad392011-01-31 15:30:16 -05006677 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00006678
Chris Mason4a096752008-07-21 10:29:44 -04006679 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
Yan, Zheng80825102009-11-12 09:35:36 +00006680 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006681
Josef Bacikfcb80c22011-05-03 10:40:22 -04006682 /*
6683 * Yes ladies and gentelment, this is indeed ugly. The fact is we have
6684 * 3 things going on here
6685 *
6686 * 1) We need to reserve space for our orphan item and the space to
6687 * delete our orphan item. Lord knows we don't want to have a dangling
6688 * orphan item because we didn't reserve space to remove it.
6689 *
6690 * 2) We need to reserve space to update our inode.
6691 *
6692 * 3) We need to have something to cache all the space that is going to
6693 * be free'd up by the truncate operation, but also have some slack
6694 * space reserved in case it uses space during the truncate (thank you
6695 * very much snapshotting).
6696 *
6697 * And we need these to all be seperate. The fact is we can use alot of
6698 * space doing the truncate, and we have no earthly idea how much space
6699 * we will use, so we need the truncate reservation to be seperate so it
6700 * doesn't end up using space reserved for updating the inode or
6701 * removing the orphan item. We also need to be able to stop the
6702 * transaction and start a new one, which means we need to be able to
6703 * update the inode several times, and we have no idea of knowing how
6704 * many times that will be, so we can't just reserve 1 item for the
6705 * entirety of the opration, so that has to be done seperately as well.
6706 * Then there is the orphan item, which does indeed need to be held on
6707 * to for the whole operation, and we need nobody to touch this reserved
6708 * space except the orphan code.
6709 *
6710 * So that leaves us with
6711 *
6712 * 1) root->orphan_block_rsv - for the orphan deletion.
6713 * 2) rsv - for the truncate reservation, which we will steal from the
6714 * transaction reservation.
6715 * 3) fs_info->trans_block_rsv - this will have 1 items worth left for
6716 * updating the inode.
6717 */
6718 rsv = btrfs_alloc_block_rsv(root);
6719 if (!rsv)
6720 return -ENOMEM;
Josef Bacik4a338542011-08-29 11:01:31 -04006721 rsv->size = min_size;
Josef Bacikf0cd8462011-03-04 14:37:08 -05006722
Josef Bacik907cbce2011-08-08 13:46:15 -04006723 /*
Josef Bacik07127182011-08-19 10:29:59 -04006724 * 1 for the truncate slack space
Josef Bacik907cbce2011-08-08 13:46:15 -04006725 * 1 for the orphan item we're going to add
6726 * 1 for the orphan item deletion
6727 * 1 for updating the inode.
6728 */
Josef Bacikfcb80c22011-05-03 10:40:22 -04006729 trans = btrfs_start_transaction(root, 4);
6730 if (IS_ERR(trans)) {
6731 err = PTR_ERR(trans);
6732 goto out;
6733 }
Josef Bacikf0cd8462011-03-04 14:37:08 -05006734
Josef Bacik907cbce2011-08-08 13:46:15 -04006735 /* Migrate the slack space for the truncate to our reserve */
6736 ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv, rsv,
6737 min_size);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006738 BUG_ON(ret);
Josef Bacikf0cd8462011-03-04 14:37:08 -05006739
6740 ret = btrfs_orphan_add(trans, inode);
6741 if (ret) {
6742 btrfs_end_transaction(trans, root);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006743 goto out;
Josef Bacikf0cd8462011-03-04 14:37:08 -05006744 }
6745
Chris Mason5a3f23d2009-03-31 13:27:11 -04006746 /*
6747 * setattr is responsible for setting the ordered_data_close flag,
6748 * but that is only tested during the last file release. That
6749 * could happen well after the next commit, leaving a great big
6750 * window where new writes may get lost if someone chooses to write
6751 * to this file after truncating to zero
6752 *
6753 * The inode doesn't have any dirty data here, and so if we commit
6754 * this is a noop. If someone immediately starts writing to the inode
6755 * it is very likely we'll catch some of their writes in this
6756 * transaction, and the commit will find this file on the ordered
6757 * data list with good things to send down.
6758 *
6759 * This is a best effort solution, there is still a window where
6760 * using truncate to replace the contents of the file will
6761 * end up with a zero length file after a crash.
6762 */
Josef Bacik72ac3c02012-05-23 14:13:11 -04006763 if (inode->i_size == 0 && test_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
6764 &BTRFS_I(inode)->runtime_flags))
Chris Mason5a3f23d2009-03-31 13:27:11 -04006765 btrfs_add_ordered_operation(trans, root, inode);
6766
Yan, Zheng80825102009-11-12 09:35:36 +00006767 while (1) {
Josef Bacik36ba0222011-10-18 12:15:48 -04006768 ret = btrfs_block_rsv_refill(root, rsv, min_size);
Josef Bacik907cbce2011-08-08 13:46:15 -04006769 if (ret) {
6770 /*
6771 * This can only happen with the original transaction we
6772 * started above, every other time we shouldn't have a
6773 * transaction started yet.
6774 */
6775 if (ret == -EAGAIN)
6776 goto end_trans;
6777 err = ret;
6778 break;
6779 }
6780
Yan, Zhengd68fc572010-05-16 10:49:58 -04006781 if (!trans) {
Josef Bacik907cbce2011-08-08 13:46:15 -04006782 /* Just need the 1 for updating the inode */
6783 trans = btrfs_start_transaction(root, 1);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006784 if (IS_ERR(trans)) {
Josef Bacik7041ee92011-12-09 13:26:22 -05006785 ret = err = PTR_ERR(trans);
6786 trans = NULL;
6787 break;
Josef Bacikfcb80c22011-05-03 10:40:22 -04006788 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04006789 }
6790
Josef Bacik907cbce2011-08-08 13:46:15 -04006791 trans->block_rsv = rsv;
6792
Yan, Zheng80825102009-11-12 09:35:36 +00006793 ret = btrfs_truncate_inode_items(trans, root, inode,
6794 inode->i_size,
6795 BTRFS_EXTENT_DATA_KEY);
Josef Bacik3893e332011-01-31 16:03:11 -05006796 if (ret != -EAGAIN) {
6797 err = ret;
Yan, Zheng80825102009-11-12 09:35:36 +00006798 break;
Josef Bacik3893e332011-01-31 16:03:11 -05006799 }
Chris Mason39279cc2007-06-12 06:35:45 -04006800
Josef Bacikfcb80c22011-05-03 10:40:22 -04006801 trans->block_rsv = &root->fs_info->trans_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00006802 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05006803 if (ret) {
6804 err = ret;
6805 break;
6806 }
Josef Bacik907cbce2011-08-08 13:46:15 -04006807end_trans:
Yan, Zheng80825102009-11-12 09:35:36 +00006808 nr = trans->blocks_used;
6809 btrfs_end_transaction(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -04006810 trans = NULL;
Yan, Zheng80825102009-11-12 09:35:36 +00006811 btrfs_btree_balance_dirty(root, nr);
Yan, Zheng80825102009-11-12 09:35:36 +00006812 }
6813
6814 if (ret == 0 && inode->i_nlink > 0) {
Josef Bacikfcb80c22011-05-03 10:40:22 -04006815 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00006816 ret = btrfs_orphan_del(trans, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05006817 if (ret)
6818 err = ret;
Josef Bacikded5db92011-03-04 14:09:46 -05006819 } else if (ret && inode->i_nlink > 0) {
6820 /*
6821 * Failed to do the truncate, remove us from the in memory
6822 * orphan list.
6823 */
6824 ret = btrfs_orphan_del(NULL, inode);
Yan, Zheng80825102009-11-12 09:35:36 +00006825 }
6826
Chris Mason917c16b2011-11-08 14:49:59 -05006827 if (trans) {
6828 trans->block_rsv = &root->fs_info->trans_block_rsv;
6829 ret = btrfs_update_inode(trans, root, inode);
6830 if (ret && !err)
6831 err = ret;
Josef Bacik7b128762008-07-24 12:17:14 -04006832
Chris Mason917c16b2011-11-08 14:49:59 -05006833 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05006834 ret = btrfs_end_transaction(trans, root);
Chris Mason917c16b2011-11-08 14:49:59 -05006835 btrfs_btree_balance_dirty(root, nr);
6836 }
Josef Bacikfcb80c22011-05-03 10:40:22 -04006837
6838out:
6839 btrfs_free_block_rsv(root, rsv);
6840
Josef Bacik3893e332011-01-31 16:03:11 -05006841 if (ret && !err)
6842 err = ret;
Josef Bacika41ad392011-01-31 15:30:16 -05006843
Josef Bacik3893e332011-01-31 16:03:11 -05006844 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04006845}
6846
Sven Wegener3b963622008-06-09 21:57:42 -04006847/*
Chris Masond352ac62008-09-29 15:18:18 -04006848 * create a new subvolume directory/inode (helper for the ioctl).
6849 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05006850int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Josef Bacikd82a6f12011-05-11 15:26:06 -04006851 struct btrfs_root *new_root, u64 new_dirid)
Chris Mason39279cc2007-06-12 06:35:45 -04006852{
Chris Mason39279cc2007-06-12 06:35:45 -04006853 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04006854 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006855 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006856
Florian Albrechtskirchinger12fc9d02012-02-10 22:15:54 +01006857 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2,
6858 new_dirid, new_dirid,
6859 S_IFDIR | (~current_umask() & S_IRWXUGO),
6860 &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04006861 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04006862 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006863 inode->i_op = &btrfs_dir_inode_operations;
6864 inode->i_fop = &btrfs_dir_file_operations;
6865
Miklos Szeredibfe86842011-10-28 14:13:29 +02006866 set_nlink(inode, 1);
Chris Masondbe674a2008-07-17 12:54:05 -04006867 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04006868
Yan, Zheng76dda932009-09-21 16:00:26 -04006869 err = btrfs_update_inode(trans, new_root, inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04006870
Yan, Zheng76dda932009-09-21 16:00:26 -04006871 iput(inode);
Mark Fashehce598972011-07-26 11:32:23 -07006872 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04006873}
6874
Chris Mason39279cc2007-06-12 06:35:45 -04006875struct inode *btrfs_alloc_inode(struct super_block *sb)
6876{
6877 struct btrfs_inode *ei;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006878 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04006879
6880 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
6881 if (!ei)
6882 return NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006883
6884 ei->root = NULL;
6885 ei->space_info = NULL;
6886 ei->generation = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04006887 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04006888 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04006889 ei->logged_trans = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006890 ei->delalloc_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006891 ei->disk_i_size = 0;
6892 ei->flags = 0;
Josef Bacik7709cde2011-08-04 10:25:02 -04006893 ei->csum_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006894 ei->index_cnt = (u64)-1;
6895 ei->last_unlink_trans = 0;
6896
Josef Bacik9e0baf62011-07-15 15:16:44 +00006897 spin_lock_init(&ei->lock);
6898 ei->outstanding_extents = 0;
6899 ei->reserved_extents = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006900
Josef Bacik72ac3c02012-05-23 14:13:11 -04006901 ei->runtime_flags = 0;
Li Zefan261507a02010-12-17 14:21:50 +08006902 ei->force_compress = BTRFS_COMPRESS_NONE;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006903
Miao Xie16cdcec2011-04-22 18:12:22 +08006904 ei->delayed_node = NULL;
6905
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006906 inode = &ei->vfs_inode;
David Sterbaa8067e02011-04-21 00:34:43 +02006907 extent_map_tree_init(&ei->extent_tree);
David Sterbaf993c882011-04-20 23:35:57 +02006908 extent_io_tree_init(&ei->io_tree, &inode->i_data);
6909 extent_io_tree_init(&ei->io_failure_tree, &inode->i_data);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04006910 ei->io_tree.track_uptodate = 1;
6911 ei->io_failure_tree.track_uptodate = 1;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006912 mutex_init(&ei->log_mutex);
Josef Bacikf2486792012-01-13 12:09:22 -05006913 mutex_init(&ei->delalloc_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006914 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006915 INIT_LIST_HEAD(&ei->delalloc_inodes);
Chris Mason5a3f23d2009-03-31 13:27:11 -04006916 INIT_LIST_HEAD(&ei->ordered_operations);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006917 RB_CLEAR_NODE(&ei->rb_node);
6918
6919 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04006920}
6921
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11006922static void btrfs_i_callback(struct rcu_head *head)
6923{
6924 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11006925 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
6926}
6927
Chris Mason39279cc2007-06-12 06:35:45 -04006928void btrfs_destroy_inode(struct inode *inode)
6929{
Chris Masone6dcd2d2008-07-17 12:53:50 -04006930 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006931 struct btrfs_root *root = BTRFS_I(inode)->root;
6932
Chris Mason39279cc2007-06-12 06:35:45 -04006933 WARN_ON(!list_empty(&inode->i_dentry));
6934 WARN_ON(inode->i_data.nrpages);
Josef Bacik9e0baf62011-07-15 15:16:44 +00006935 WARN_ON(BTRFS_I(inode)->outstanding_extents);
6936 WARN_ON(BTRFS_I(inode)->reserved_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04006937 WARN_ON(BTRFS_I(inode)->delalloc_bytes);
6938 WARN_ON(BTRFS_I(inode)->csum_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -04006939
Chris Mason5a3f23d2009-03-31 13:27:11 -04006940 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05006941 * This can happen where we create an inode, but somebody else also
6942 * created the same inode and we need to destroy the one we already
6943 * created.
6944 */
6945 if (!root)
6946 goto free;
6947
6948 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04006949 * Make sure we're properly removed from the ordered operation
6950 * lists.
6951 */
6952 smp_mb();
6953 if (!list_empty(&BTRFS_I(inode)->ordered_operations)) {
6954 spin_lock(&root->fs_info->ordered_extent_lock);
6955 list_del_init(&BTRFS_I(inode)->ordered_operations);
6956 spin_unlock(&root->fs_info->ordered_extent_lock);
6957 }
6958
Josef Bacik8a35d952012-05-23 14:26:42 -04006959 if (test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
6960 &BTRFS_I(inode)->runtime_flags)) {
Li Zefan33345d012011-04-20 10:31:50 +08006961 printk(KERN_INFO "BTRFS: inode %llu still on the orphan list\n",
6962 (unsigned long long)btrfs_ino(inode));
Josef Bacik8a35d952012-05-23 14:26:42 -04006963 atomic_dec(&root->orphan_inodes);
Josef Bacik7b128762008-07-24 12:17:14 -04006964 }
Josef Bacik7b128762008-07-24 12:17:14 -04006965
Chris Masond3977122009-01-05 21:25:51 -05006966 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04006967 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
6968 if (!ordered)
6969 break;
6970 else {
Chris Masond3977122009-01-05 21:25:51 -05006971 printk(KERN_ERR "btrfs found ordered "
6972 "extent %llu %llu on inode cleanup\n",
6973 (unsigned long long)ordered->file_offset,
6974 (unsigned long long)ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006975 btrfs_remove_ordered_extent(inode, ordered);
6976 btrfs_put_ordered_extent(ordered);
6977 btrfs_put_ordered_extent(ordered);
6978 }
6979 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006980 inode_tree_del(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04006981 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
Josef Bacika6dbd422009-11-11 15:53:34 -05006982free:
Miao Xie16cdcec2011-04-22 18:12:22 +08006983 btrfs_remove_delayed_node(inode);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11006984 call_rcu(&inode->i_rcu, btrfs_i_callback);
Chris Mason39279cc2007-06-12 06:35:45 -04006985}
6986
Al Viro45321ac2010-06-07 13:43:19 -04006987int btrfs_drop_inode(struct inode *inode)
Yan, Zheng76dda932009-09-21 16:00:26 -04006988{
6989 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro45321ac2010-06-07 13:43:19 -04006990
Josef Bacik0af3d002010-06-21 14:48:16 -04006991 if (btrfs_root_refs(&root->root_item) == 0 &&
Chris Mason2cf85722011-07-26 15:35:09 -04006992 !btrfs_is_free_space_inode(root, inode))
Al Viro45321ac2010-06-07 13:43:19 -04006993 return 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04006994 else
Al Viro45321ac2010-06-07 13:43:19 -04006995 return generic_drop_inode(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04006996}
6997
Sven Wegener0ee0fda2008-07-30 16:54:26 -04006998static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04006999{
7000 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
7001
7002 inode_init_once(&ei->vfs_inode);
7003}
7004
7005void btrfs_destroy_cachep(void)
7006{
7007 if (btrfs_inode_cachep)
7008 kmem_cache_destroy(btrfs_inode_cachep);
7009 if (btrfs_trans_handle_cachep)
7010 kmem_cache_destroy(btrfs_trans_handle_cachep);
7011 if (btrfs_transaction_cachep)
7012 kmem_cache_destroy(btrfs_transaction_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04007013 if (btrfs_path_cachep)
7014 kmem_cache_destroy(btrfs_path_cachep);
Josef Bacikdc89e982011-01-28 17:05:48 -05007015 if (btrfs_free_space_cachep)
7016 kmem_cache_destroy(btrfs_free_space_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04007017}
7018
7019int btrfs_init_cachep(void)
7020{
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007021 btrfs_inode_cachep = kmem_cache_create("btrfs_inode_cache",
7022 sizeof(struct btrfs_inode), 0,
7023 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04007024 if (!btrfs_inode_cachep)
7025 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007026
7027 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle_cache",
7028 sizeof(struct btrfs_trans_handle), 0,
7029 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04007030 if (!btrfs_trans_handle_cachep)
7031 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007032
7033 btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction_cache",
7034 sizeof(struct btrfs_transaction), 0,
7035 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04007036 if (!btrfs_transaction_cachep)
7037 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007038
7039 btrfs_path_cachep = kmem_cache_create("btrfs_path_cache",
7040 sizeof(struct btrfs_path), 0,
7041 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04007042 if (!btrfs_path_cachep)
7043 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007044
Josef Bacikdc89e982011-01-28 17:05:48 -05007045 btrfs_free_space_cachep = kmem_cache_create("btrfs_free_space_cache",
7046 sizeof(struct btrfs_free_space), 0,
7047 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
7048 if (!btrfs_free_space_cachep)
7049 goto fail;
7050
Chris Mason39279cc2007-06-12 06:35:45 -04007051 return 0;
7052fail:
7053 btrfs_destroy_cachep();
7054 return -ENOMEM;
7055}
7056
7057static int btrfs_getattr(struct vfsmount *mnt,
7058 struct dentry *dentry, struct kstat *stat)
7059{
7060 struct inode *inode = dentry->d_inode;
David Sterbafadc0d82011-11-20 07:33:38 -05007061 u32 blocksize = inode->i_sb->s_blocksize;
7062
Chris Mason39279cc2007-06-12 06:35:45 -04007063 generic_fillattr(inode, stat);
Al Viro0ee5dc62011-07-07 15:44:25 -04007064 stat->dev = BTRFS_I(inode)->root->anon_dev;
Chris Masond6667462008-01-03 14:51:00 -05007065 stat->blksize = PAGE_CACHE_SIZE;
David Sterbafadc0d82011-11-20 07:33:38 -05007066 stat->blocks = (ALIGN(inode_get_bytes(inode), blocksize) +
7067 ALIGN(BTRFS_I(inode)->delalloc_bytes, blocksize)) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04007068 return 0;
7069}
7070
Liu Bo75e7cb72011-03-22 10:12:20 +00007071/*
7072 * If a file is moved, it will inherit the cow and compression flags of the new
7073 * directory.
7074 */
7075static void fixup_inode_flags(struct inode *dir, struct inode *inode)
7076{
7077 struct btrfs_inode *b_dir = BTRFS_I(dir);
7078 struct btrfs_inode *b_inode = BTRFS_I(inode);
7079
7080 if (b_dir->flags & BTRFS_INODE_NODATACOW)
7081 b_inode->flags |= BTRFS_INODE_NODATACOW;
7082 else
7083 b_inode->flags &= ~BTRFS_INODE_NODATACOW;
7084
7085 if (b_dir->flags & BTRFS_INODE_COMPRESS)
7086 b_inode->flags |= BTRFS_INODE_COMPRESS;
7087 else
7088 b_inode->flags &= ~BTRFS_INODE_COMPRESS;
7089}
7090
Chris Masond3977122009-01-05 21:25:51 -05007091static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
7092 struct inode *new_dir, struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04007093{
7094 struct btrfs_trans_handle *trans;
7095 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007096 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04007097 struct inode *new_inode = new_dentry->d_inode;
7098 struct inode *old_inode = old_dentry->d_inode;
7099 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04007100 u64 index = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007101 u64 root_objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04007102 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08007103 u64 old_ino = btrfs_ino(old_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007104
Li Zefan33345d012011-04-20 10:31:50 +08007105 if (btrfs_ino(new_dir) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhengf679a842009-09-24 09:17:31 -04007106 return -EPERM;
7107
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007108 /* we only allow rename subvolume link between subvolumes */
Li Zefan33345d012011-04-20 10:31:50 +08007109 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05007110 return -EXDEV;
7111
Li Zefan33345d012011-04-20 10:31:50 +08007112 if (old_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
7113 (new_inode && btrfs_ino(new_inode) == BTRFS_FIRST_FREE_OBJECTID))
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007114 return -ENOTEMPTY;
7115
Chris Mason39279cc2007-06-12 06:35:45 -04007116 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007117 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04007118 return -ENOTEMPTY;
Chris Mason5a3f23d2009-03-31 13:27:11 -04007119 /*
7120 * we're using rename to replace one file with another.
7121 * and the replacement file is large. Start IO on it now so
7122 * we don't add too much work to the end of the transaction
7123 */
Bartlomiej Zolnierkiewicz4baf8c92009-08-07 13:47:08 -04007124 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size &&
Chris Mason5a3f23d2009-03-31 13:27:11 -04007125 old_inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
7126 filemap_flush(old_inode->i_mapping);
7127
Yan, Zheng76dda932009-09-21 16:00:26 -04007128 /* close the racy window with snapshot create/destroy ioctl */
Li Zefan33345d012011-04-20 10:31:50 +08007129 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04007130 down_read(&root->fs_info->subvol_sem);
Yan, Zhenga22285a2010-05-16 10:48:46 -04007131 /*
7132 * We want to reserve the absolute worst case amount of items. So if
7133 * both inodes are subvols and we need to unlink them then that would
7134 * require 4 item modifications, but if they are both normal inodes it
7135 * would require 5 item modifications, so we'll assume their normal
7136 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
7137 * should cover the worst case number of items we'll modify.
7138 */
7139 trans = btrfs_start_transaction(root, 20);
Johann Lombardib44c59a2011-03-31 13:23:47 +00007140 if (IS_ERR(trans)) {
7141 ret = PTR_ERR(trans);
7142 goto out_notrans;
7143 }
Chris Mason5f39d392007-10-15 16:14:19 -04007144
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007145 if (dest != root)
7146 btrfs_record_root_in_trans(trans, dest);
7147
Yan, Zhenga5719522009-09-24 09:17:31 -04007148 ret = btrfs_set_inode_index(new_dir, &index);
7149 if (ret)
7150 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04007151
Li Zefan33345d012011-04-20 10:31:50 +08007152 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007153 /* force full log commit if subvolume involved. */
7154 root->fs_info->last_trans_log_full_commit = trans->transid;
7155 } else {
Yan, Zhenga5719522009-09-24 09:17:31 -04007156 ret = btrfs_insert_inode_ref(trans, dest,
7157 new_dentry->d_name.name,
7158 new_dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08007159 old_ino,
7160 btrfs_ino(new_dir), index);
Yan, Zhenga5719522009-09-24 09:17:31 -04007161 if (ret)
7162 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007163 /*
7164 * this is an ugly little race, but the rename is required
7165 * to make sure that if we crash, the inode is either at the
7166 * old name or the new one. pinning the log transaction lets
7167 * us make sure we don't allow a log commit to come in after
7168 * we unlink the name but before we add the new name back in.
7169 */
7170 btrfs_pin_log_trans(root);
7171 }
Chris Mason12fcfd22009-03-24 10:24:20 -04007172 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04007173 * make sure the inode gets flushed if it is replacing
7174 * something.
7175 */
Li Zefan33345d012011-04-20 10:31:50 +08007176 if (new_inode && new_inode->i_size && S_ISREG(old_inode->i_mode))
Chris Mason5a3f23d2009-03-31 13:27:11 -04007177 btrfs_add_ordered_operation(trans, root, old_inode);
Chris Mason5a3f23d2009-03-31 13:27:11 -04007178
Josef Bacik0c4d2d92012-04-05 15:03:02 -04007179 inode_inc_iversion(old_dir);
7180 inode_inc_iversion(new_dir);
7181 inode_inc_iversion(old_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007182 old_dir->i_ctime = old_dir->i_mtime = ctime;
7183 new_dir->i_ctime = new_dir->i_mtime = ctime;
7184 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04007185
Chris Mason12fcfd22009-03-24 10:24:20 -04007186 if (old_dentry->d_parent != new_dentry->d_parent)
7187 btrfs_record_unlink_dir(trans, old_dir, old_inode, 1);
7188
Li Zefan33345d012011-04-20 10:31:50 +08007189 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007190 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
7191 ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid,
7192 old_dentry->d_name.name,
7193 old_dentry->d_name.len);
7194 } else {
Al Viro92986792011-03-04 17:14:37 +00007195 ret = __btrfs_unlink_inode(trans, root, old_dir,
7196 old_dentry->d_inode,
7197 old_dentry->d_name.name,
7198 old_dentry->d_name.len);
7199 if (!ret)
7200 ret = btrfs_update_inode(trans, root, old_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007201 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007202 if (ret) {
7203 btrfs_abort_transaction(trans, root, ret);
7204 goto out_fail;
7205 }
Chris Mason39279cc2007-06-12 06:35:45 -04007206
7207 if (new_inode) {
Josef Bacik0c4d2d92012-04-05 15:03:02 -04007208 inode_inc_iversion(new_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007209 new_inode->i_ctime = CURRENT_TIME;
Li Zefan33345d012011-04-20 10:31:50 +08007210 if (unlikely(btrfs_ino(new_inode) ==
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007211 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
7212 root_objectid = BTRFS_I(new_inode)->location.objectid;
7213 ret = btrfs_unlink_subvol(trans, dest, new_dir,
7214 root_objectid,
7215 new_dentry->d_name.name,
7216 new_dentry->d_name.len);
7217 BUG_ON(new_inode->i_nlink == 0);
7218 } else {
7219 ret = btrfs_unlink_inode(trans, dest, new_dir,
7220 new_dentry->d_inode,
7221 new_dentry->d_name.name,
7222 new_dentry->d_name.len);
7223 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007224 if (!ret && new_inode->i_nlink == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04007225 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007226 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04007227 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007228 if (ret) {
7229 btrfs_abort_transaction(trans, root, ret);
7230 goto out_fail;
7231 }
Chris Mason39279cc2007-06-12 06:35:45 -04007232 }
Josef Bacikaec74772008-07-24 12:12:38 -04007233
Liu Bo75e7cb72011-03-22 10:12:20 +00007234 fixup_inode_flags(new_dir, old_inode);
7235
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007236 ret = btrfs_add_link(trans, new_dir, old_inode,
7237 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04007238 new_dentry->d_name.len, 0, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007239 if (ret) {
7240 btrfs_abort_transaction(trans, root, ret);
7241 goto out_fail;
7242 }
Chris Mason39279cc2007-06-12 06:35:45 -04007243
Li Zefan33345d012011-04-20 10:31:50 +08007244 if (old_ino != BTRFS_FIRST_FREE_OBJECTID) {
Al Viro10d9f302011-07-16 23:09:10 -04007245 struct dentry *parent = new_dentry->d_parent;
Josef Bacik6a912212010-11-20 09:48:00 +00007246 btrfs_log_new_name(trans, old_inode, old_dir, parent);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007247 btrfs_end_log_trans(root);
7248 }
Chris Mason39279cc2007-06-12 06:35:45 -04007249out_fail:
Josef Bacik7ad85bb2012-01-12 19:10:12 -05007250 btrfs_end_transaction(trans, root);
Johann Lombardib44c59a2011-03-31 13:23:47 +00007251out_notrans:
Li Zefan33345d012011-04-20 10:31:50 +08007252 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04007253 up_read(&root->fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04007254
Chris Mason39279cc2007-06-12 06:35:45 -04007255 return ret;
7256}
7257
Chris Masond352ac62008-09-29 15:18:18 -04007258/*
7259 * some fairly slow code that needs optimization. This walks the list
7260 * of all the inodes with pending delalloc and forces them to disk.
7261 */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00007262int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput)
Chris Masonea8c2812008-08-04 23:17:27 -04007263{
7264 struct list_head *head = &root->fs_info->delalloc_inodes;
7265 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007266 struct inode *inode;
Chris Masonea8c2812008-08-04 23:17:27 -04007267
Yan Zhengc146afa2008-11-12 14:34:12 -05007268 if (root->fs_info->sb->s_flags & MS_RDONLY)
7269 return -EROFS;
7270
Chris Mason75eff682008-12-15 15:54:40 -05007271 spin_lock(&root->fs_info->delalloc_lock);
Chris Masond3977122009-01-05 21:25:51 -05007272 while (!list_empty(head)) {
Chris Masonea8c2812008-08-04 23:17:27 -04007273 binode = list_entry(head->next, struct btrfs_inode,
7274 delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007275 inode = igrab(&binode->vfs_inode);
7276 if (!inode)
7277 list_del_init(&binode->delalloc_inodes);
Chris Mason75eff682008-12-15 15:54:40 -05007278 spin_unlock(&root->fs_info->delalloc_lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007279 if (inode) {
Chris Mason8c8bee12008-09-29 11:19:10 -04007280 filemap_flush(inode->i_mapping);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00007281 if (delay_iput)
7282 btrfs_add_delayed_iput(inode);
7283 else
7284 iput(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007285 }
7286 cond_resched();
Chris Mason75eff682008-12-15 15:54:40 -05007287 spin_lock(&root->fs_info->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04007288 }
Chris Mason75eff682008-12-15 15:54:40 -05007289 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -04007290
7291 /* the filemap_flush will queue IO into the worker threads, but
7292 * we have to make sure the IO is actually started and that
7293 * ordered extents get created before we return
7294 */
7295 atomic_inc(&root->fs_info->async_submit_draining);
Chris Masond3977122009-01-05 21:25:51 -05007296 while (atomic_read(&root->fs_info->nr_async_submits) ||
Chris Mason771ed682008-11-06 22:02:51 -05007297 atomic_read(&root->fs_info->async_delalloc_pages)) {
Chris Mason8c8bee12008-09-29 11:19:10 -04007298 wait_event(root->fs_info->async_submit_wait,
Chris Mason771ed682008-11-06 22:02:51 -05007299 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
7300 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee12008-09-29 11:19:10 -04007301 }
7302 atomic_dec(&root->fs_info->async_submit_draining);
Chris Masonea8c2812008-08-04 23:17:27 -04007303 return 0;
7304}
7305
Chris Mason39279cc2007-06-12 06:35:45 -04007306static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
7307 const char *symname)
7308{
7309 struct btrfs_trans_handle *trans;
7310 struct btrfs_root *root = BTRFS_I(dir)->root;
7311 struct btrfs_path *path;
7312 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05007313 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04007314 int err;
7315 int drop_inode = 0;
7316 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04007317 u64 index = 0 ;
Chris Mason39279cc2007-06-12 06:35:45 -04007318 int name_len;
7319 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04007320 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04007321 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04007322 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05007323 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007324
7325 name_len = strlen(symname) + 1;
7326 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
7327 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05007328
Josef Bacik9ed74f22009-09-11 16:12:44 -04007329 /*
7330 * 2 items for inode item and ref
7331 * 2 items for dir items
7332 * 1 item for xattr if selinux is on
7333 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04007334 trans = btrfs_start_transaction(root, 5);
7335 if (IS_ERR(trans))
7336 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05007337
Li Zefan581bb052011-04-20 10:06:11 +08007338 err = btrfs_find_free_ino(root, &objectid);
7339 if (err)
7340 goto out_unlock;
7341
Josef Bacikaec74772008-07-24 12:12:38 -04007342 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08007343 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04007344 S_IFLNK|S_IRWXUGO, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04007345 if (IS_ERR(inode)) {
7346 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007347 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04007348 }
Chris Mason39279cc2007-06-12 06:35:45 -04007349
Eric Paris2a7dba32011-02-01 11:05:39 -05007350 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04007351 if (err) {
7352 drop_inode = 1;
7353 goto out_unlock;
7354 }
7355
Casey Schauflerad19db72011-12-15 10:09:07 -05007356 /*
7357 * If the active LSM wants to access the inode during
7358 * d_instantiate it needs these. Smack checks to see
7359 * if the filesystem supports xattrs by looking at the
7360 * ops vector.
7361 */
7362 inode->i_fop = &btrfs_file_operations;
7363 inode->i_op = &btrfs_file_inode_operations;
7364
Josef Bacika1b075d2010-11-19 20:36:11 +00007365 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04007366 if (err)
7367 drop_inode = 1;
7368 else {
7369 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04007370 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05007371 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04007372 }
Chris Mason39279cc2007-06-12 06:35:45 -04007373 if (drop_inode)
7374 goto out_unlock;
7375
7376 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07007377 if (!path) {
7378 err = -ENOMEM;
7379 drop_inode = 1;
7380 goto out_unlock;
7381 }
Li Zefan33345d012011-04-20 10:31:50 +08007382 key.objectid = btrfs_ino(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007383 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007384 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
7385 datasize = btrfs_file_extent_calc_inline_size(name_len);
7386 err = btrfs_insert_empty_item(trans, root, path, &key,
7387 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04007388 if (err) {
7389 drop_inode = 1;
Julia Lawallb0839162011-05-14 07:10:51 +00007390 btrfs_free_path(path);
Chris Mason54aa1f42007-06-22 14:16:25 -04007391 goto out_unlock;
7392 }
Chris Mason5f39d392007-10-15 16:14:19 -04007393 leaf = path->nodes[0];
7394 ei = btrfs_item_ptr(leaf, path->slots[0],
7395 struct btrfs_file_extent_item);
7396 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
7397 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04007398 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -04007399 btrfs_set_file_extent_encryption(leaf, ei, 0);
7400 btrfs_set_file_extent_compression(leaf, ei, 0);
7401 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
7402 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
7403
Chris Mason39279cc2007-06-12 06:35:45 -04007404 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04007405 write_extent_buffer(leaf, symname, ptr, name_len);
7406 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04007407 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04007408
Chris Mason39279cc2007-06-12 06:35:45 -04007409 inode->i_op = &btrfs_symlink_inode_operations;
7410 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04007411 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Yan Zhengd899e052008-10-30 14:25:28 -04007412 inode_set_bytes(inode, name_len);
Chris Masondbe674a2008-07-17 12:54:05 -04007413 btrfs_i_size_write(inode, name_len - 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04007414 err = btrfs_update_inode(trans, root, inode);
7415 if (err)
7416 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04007417
7418out_unlock:
Al Viro08c422c2011-12-23 07:58:13 -05007419 if (!err)
7420 d_instantiate(dentry, inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04007421 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05007422 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04007423 if (drop_inode) {
7424 inode_dec_link_count(inode);
7425 iput(inode);
7426 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04007427 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04007428 return err;
7429}
Chris Mason16432982008-04-10 10:23:21 -04007430
Josef Bacik0af3d002010-06-21 14:48:16 -04007431static int __btrfs_prealloc_file_range(struct inode *inode, int mode,
7432 u64 start, u64 num_bytes, u64 min_size,
7433 loff_t actual_len, u64 *alloc_hint,
7434 struct btrfs_trans_handle *trans)
Yan Zhengd899e052008-10-30 14:25:28 -04007435{
Yan Zhengd899e052008-10-30 14:25:28 -04007436 struct btrfs_root *root = BTRFS_I(inode)->root;
7437 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -04007438 u64 cur_offset = start;
Josef Bacik55a61d12010-11-22 18:50:32 +00007439 u64 i_size;
Yan Zhengd899e052008-10-30 14:25:28 -04007440 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04007441 bool own_trans = true;
Yan Zhengd899e052008-10-30 14:25:28 -04007442
Josef Bacik0af3d002010-06-21 14:48:16 -04007443 if (trans)
7444 own_trans = false;
Yan Zhengd899e052008-10-30 14:25:28 -04007445 while (num_bytes > 0) {
Josef Bacik0af3d002010-06-21 14:48:16 -04007446 if (own_trans) {
7447 trans = btrfs_start_transaction(root, 3);
7448 if (IS_ERR(trans)) {
7449 ret = PTR_ERR(trans);
7450 break;
7451 }
Yan Zhengd899e052008-10-30 14:25:28 -04007452 }
Yan, Zheng5a303d52009-11-12 09:34:52 +00007453
Yan, Zhengefa56462010-05-16 10:49:59 -04007454 ret = btrfs_reserve_extent(trans, root, num_bytes, min_size,
Josef Bacik81c9ad22012-01-18 10:56:06 -05007455 0, *alloc_hint, &ins, 1);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007456 if (ret) {
Josef Bacik0af3d002010-06-21 14:48:16 -04007457 if (own_trans)
7458 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04007459 break;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007460 }
7461
Yan Zhengd899e052008-10-30 14:25:28 -04007462 ret = insert_reserved_file_extent(trans, inode,
7463 cur_offset, ins.objectid,
7464 ins.offset, ins.offset,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00007465 ins.offset, 0, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04007466 BTRFS_FILE_EXTENT_PREALLOC);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007467 if (ret) {
7468 btrfs_abort_transaction(trans, root, ret);
7469 if (own_trans)
7470 btrfs_end_transaction(trans, root);
7471 break;
7472 }
Chris Masona1ed8352009-09-11 12:27:37 -04007473 btrfs_drop_extent_cache(inode, cur_offset,
7474 cur_offset + ins.offset -1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007475
Yan Zhengd899e052008-10-30 14:25:28 -04007476 num_bytes -= ins.offset;
7477 cur_offset += ins.offset;
Yan, Zhengefa56462010-05-16 10:49:59 -04007478 *alloc_hint = ins.objectid + ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007479
Josef Bacik0c4d2d92012-04-05 15:03:02 -04007480 inode_inc_iversion(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04007481 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +02007482 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -04007483 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
Yan, Zhengefa56462010-05-16 10:49:59 -04007484 (actual_len > inode->i_size) &&
7485 (cur_offset > inode->i_size)) {
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00007486 if (cur_offset > actual_len)
Josef Bacik55a61d12010-11-22 18:50:32 +00007487 i_size = actual_len;
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00007488 else
Josef Bacik55a61d12010-11-22 18:50:32 +00007489 i_size = cur_offset;
7490 i_size_write(inode, i_size);
7491 btrfs_ordered_update_i_size(inode, i_size, NULL);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007492 }
7493
Yan Zhengd899e052008-10-30 14:25:28 -04007494 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007495
7496 if (ret) {
7497 btrfs_abort_transaction(trans, root, ret);
7498 if (own_trans)
7499 btrfs_end_transaction(trans, root);
7500 break;
7501 }
Yan Zhengd899e052008-10-30 14:25:28 -04007502
Josef Bacik0af3d002010-06-21 14:48:16 -04007503 if (own_trans)
7504 btrfs_end_transaction(trans, root);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007505 }
Yan Zhengd899e052008-10-30 14:25:28 -04007506 return ret;
7507}
7508
Josef Bacik0af3d002010-06-21 14:48:16 -04007509int btrfs_prealloc_file_range(struct inode *inode, int mode,
7510 u64 start, u64 num_bytes, u64 min_size,
7511 loff_t actual_len, u64 *alloc_hint)
7512{
7513 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
7514 min_size, actual_len, alloc_hint,
7515 NULL);
7516}
7517
7518int btrfs_prealloc_file_range_trans(struct inode *inode,
7519 struct btrfs_trans_handle *trans, int mode,
7520 u64 start, u64 num_bytes, u64 min_size,
7521 loff_t actual_len, u64 *alloc_hint)
7522{
7523 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
7524 min_size, actual_len, alloc_hint, trans);
7525}
7526
Chris Masone6dcd2d2008-07-17 12:53:50 -04007527static int btrfs_set_page_dirty(struct page *page)
7528{
Chris Masone6dcd2d2008-07-17 12:53:50 -04007529 return __set_page_dirty_nobuffers(page);
7530}
7531
Al Viro10556cb2011-06-20 19:28:19 -04007532static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -05007533{
Li Zefanb83cc962010-12-20 16:04:08 +08007534 struct btrfs_root *root = BTRFS_I(inode)->root;
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +00007535 umode_t mode = inode->i_mode;
Li Zefanb83cc962010-12-20 16:04:08 +08007536
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +00007537 if (mask & MAY_WRITE &&
7538 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) {
7539 if (btrfs_root_readonly(root))
7540 return -EROFS;
7541 if (BTRFS_I(inode)->flags & BTRFS_INODE_READONLY)
7542 return -EACCES;
7543 }
Al Viro2830ba72011-06-20 19:16:29 -04007544 return generic_permission(inode, mask);
Yanfdebe2b2008-01-14 13:26:08 -05007545}
Chris Mason39279cc2007-06-12 06:35:45 -04007546
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007547static const struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -05007548 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -04007549 .lookup = btrfs_lookup,
7550 .create = btrfs_create,
7551 .unlink = btrfs_unlink,
7552 .link = btrfs_link,
7553 .mkdir = btrfs_mkdir,
7554 .rmdir = btrfs_rmdir,
7555 .rename = btrfs_rename,
7556 .symlink = btrfs_symlink,
7557 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04007558 .mknod = btrfs_mknod,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007559 .setxattr = btrfs_setxattr,
7560 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05007561 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007562 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05007563 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007564 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04007565};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007566static const struct inode_operations btrfs_dir_ro_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007567 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05007568 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007569 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04007570};
Yan, Zheng76dda932009-09-21 16:00:26 -04007571
Alexey Dobriyan828c0952009-10-01 15:43:56 -07007572static const struct file_operations btrfs_dir_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007573 .llseek = generic_file_llseek,
7574 .read = generic_read_dir,
David Woodhousecbdf5a22008-08-06 19:42:33 +01007575 .readdir = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04007576 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04007577#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04007578 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04007579#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04007580 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -04007581 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -04007582};
7583
Chris Masond1310b22008-01-24 16:13:08 -05007584static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04007585 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05007586 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04007587 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04007588 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04007589 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04007590 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05007591 .set_bit_hook = btrfs_set_bit_hook,
7592 .clear_bit_hook = btrfs_clear_bit_hook,
Josef Bacik9ed74f22009-09-11 16:12:44 -04007593 .merge_extent_hook = btrfs_merge_extent_hook,
7594 .split_extent_hook = btrfs_split_extent_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04007595};
7596
Chris Mason35054392009-01-21 13:11:13 -05007597/*
7598 * btrfs doesn't support the bmap operation because swapfiles
7599 * use bmap to make a mapping of extents in the file. They assume
7600 * these extents won't change over the life of the file and they
7601 * use the bmap result to do IO directly to the drive.
7602 *
7603 * the btrfs bmap call would return logical addresses that aren't
7604 * suitable for IO and they also will change frequently as COW
7605 * operations happen. So, swapfile + btrfs == corruption.
7606 *
7607 * For now we're avoiding this by dropping bmap.
7608 */
Alexey Dobriyan7f094102009-09-21 17:01:10 -07007609static const struct address_space_operations btrfs_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04007610 .readpage = btrfs_readpage,
7611 .writepage = btrfs_writepage,
Chris Masonb293f022007-11-01 19:45:34 -04007612 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05007613 .readpages = btrfs_readpages,
Chris Mason16432982008-04-10 10:23:21 -04007614 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04007615 .invalidatepage = btrfs_invalidatepage,
7616 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04007617 .set_page_dirty = btrfs_set_page_dirty,
Andi Kleen465fdd92009-09-16 11:50:18 +02007618 .error_remove_page = generic_error_remove_page,
Chris Mason39279cc2007-06-12 06:35:45 -04007619};
7620
Alexey Dobriyan7f094102009-09-21 17:01:10 -07007621static const struct address_space_operations btrfs_symlink_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04007622 .readpage = btrfs_readpage,
7623 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04007624 .invalidatepage = btrfs_invalidatepage,
7625 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04007626};
7627
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007628static const struct inode_operations btrfs_file_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007629 .getattr = btrfs_getattr,
7630 .setattr = btrfs_setattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007631 .setxattr = btrfs_setxattr,
7632 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05007633 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007634 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05007635 .permission = btrfs_permission,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05007636 .fiemap = btrfs_fiemap,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007637 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04007638};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007639static const struct inode_operations btrfs_special_inode_operations = {
Josef Bacik618e21d2007-07-11 10:18:17 -04007640 .getattr = btrfs_getattr,
7641 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05007642 .permission = btrfs_permission,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007643 .setxattr = btrfs_setxattr,
7644 .getxattr = btrfs_getxattr,
Josef Bacik33268ea2008-07-24 12:16:36 -04007645 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007646 .removexattr = btrfs_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007647 .get_acl = btrfs_get_acl,
Josef Bacik618e21d2007-07-11 10:18:17 -04007648};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007649static const struct inode_operations btrfs_symlink_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007650 .readlink = generic_readlink,
7651 .follow_link = page_follow_link_light,
7652 .put_link = page_put_link,
Li Zefanf2095612010-11-19 02:05:24 +00007653 .getattr = btrfs_getattr,
Josef Bacik22c44fe2011-11-30 10:45:38 -05007654 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05007655 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -05007656 .setxattr = btrfs_setxattr,
7657 .getxattr = btrfs_getxattr,
7658 .listxattr = btrfs_listxattr,
7659 .removexattr = btrfs_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007660 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04007661};
Yan, Zheng76dda932009-09-21 16:00:26 -04007662
Alexey Dobriyan82d339d2009-10-09 09:54:36 -04007663const struct dentry_operations btrfs_dentry_operations = {
Yan, Zheng76dda932009-09-21 16:00:26 -04007664 .d_delete = btrfs_dentry_delete,
Josef Bacikb4aff1f2011-06-28 16:18:59 -04007665 .d_release = btrfs_dentry_release,
Yan, Zheng76dda932009-09-21 16:00:26 -04007666};