blob: 4ffc8738954557c0317e9a425623f08dfb6497b9 [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 Masonf03d9301f2009-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 Masonf03d9301f2009-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);
Josef Bacik8180ef82012-06-08 15:16:12 -0400989 if (num_added == 0) {
Josef Bacikcb77fcd2012-06-15 12:19:48 -0600990 btrfs_add_delayed_iput(async_cow->inode);
Chris Mason771ed682008-11-06 22:02:51 -0500991 async_cow->inode = NULL;
Josef Bacik8180ef82012-06-08 15:16:12 -0400992 }
Chris Mason771ed682008-11-06 22:02:51 -0500993}
994
995/*
996 * work queue call back to submit previously compressed pages
997 */
998static noinline void async_cow_submit(struct btrfs_work *work)
999{
1000 struct async_cow *async_cow;
1001 struct btrfs_root *root;
1002 unsigned long nr_pages;
1003
1004 async_cow = container_of(work, struct async_cow, work);
1005
1006 root = async_cow->root;
1007 nr_pages = (async_cow->end - async_cow->start + PAGE_CACHE_SIZE) >>
1008 PAGE_CACHE_SHIFT;
1009
1010 atomic_sub(nr_pages, &root->fs_info->async_delalloc_pages);
1011
1012 if (atomic_read(&root->fs_info->async_delalloc_pages) <
1013 5 * 1042 * 1024 &&
1014 waitqueue_active(&root->fs_info->async_submit_wait))
1015 wake_up(&root->fs_info->async_submit_wait);
1016
Chris Masond3977122009-01-05 21:25:51 -05001017 if (async_cow->inode)
Chris Mason771ed682008-11-06 22:02:51 -05001018 submit_compressed_extents(async_cow->inode, async_cow);
Chris Mason771ed682008-11-06 22:02:51 -05001019}
Chris Masonc8b97812008-10-29 14:49:59 -04001020
Chris Mason771ed682008-11-06 22:02:51 -05001021static noinline void async_cow_free(struct btrfs_work *work)
1022{
1023 struct async_cow *async_cow;
1024 async_cow = container_of(work, struct async_cow, work);
Josef Bacik8180ef82012-06-08 15:16:12 -04001025 if (async_cow->inode)
Josef Bacikcb77fcd2012-06-15 12:19:48 -06001026 btrfs_add_delayed_iput(async_cow->inode);
Chris Mason771ed682008-11-06 22:02:51 -05001027 kfree(async_cow);
1028}
1029
1030static int cow_file_range_async(struct inode *inode, struct page *locked_page,
1031 u64 start, u64 end, int *page_started,
1032 unsigned long *nr_written)
1033{
1034 struct async_cow *async_cow;
1035 struct btrfs_root *root = BTRFS_I(inode)->root;
1036 unsigned long nr_pages;
1037 u64 cur_end;
1038 int limit = 10 * 1024 * 1042;
1039
Chris Masona3429ab2009-10-08 12:30:20 -04001040 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED,
1041 1, 0, NULL, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -05001042 while (start < end) {
Chris Mason771ed682008-11-06 22:02:51 -05001043 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001044 BUG_ON(!async_cow); /* -ENOMEM */
Josef Bacik8180ef82012-06-08 15:16:12 -04001045 async_cow->inode = igrab(inode);
Chris Mason771ed682008-11-06 22:02:51 -05001046 async_cow->root = root;
1047 async_cow->locked_page = locked_page;
1048 async_cow->start = start;
1049
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001050 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS)
Chris Mason771ed682008-11-06 22:02:51 -05001051 cur_end = end;
1052 else
1053 cur_end = min(end, start + 512 * 1024 - 1);
1054
1055 async_cow->end = cur_end;
1056 INIT_LIST_HEAD(&async_cow->extents);
1057
1058 async_cow->work.func = async_cow_start;
1059 async_cow->work.ordered_func = async_cow_submit;
1060 async_cow->work.ordered_free = async_cow_free;
1061 async_cow->work.flags = 0;
1062
Chris Mason771ed682008-11-06 22:02:51 -05001063 nr_pages = (cur_end - start + PAGE_CACHE_SIZE) >>
1064 PAGE_CACHE_SHIFT;
1065 atomic_add(nr_pages, &root->fs_info->async_delalloc_pages);
1066
1067 btrfs_queue_worker(&root->fs_info->delalloc_workers,
1068 &async_cow->work);
1069
1070 if (atomic_read(&root->fs_info->async_delalloc_pages) > limit) {
1071 wait_event(root->fs_info->async_submit_wait,
1072 (atomic_read(&root->fs_info->async_delalloc_pages) <
1073 limit));
1074 }
1075
Chris Masond3977122009-01-05 21:25:51 -05001076 while (atomic_read(&root->fs_info->async_submit_draining) &&
Chris Mason771ed682008-11-06 22:02:51 -05001077 atomic_read(&root->fs_info->async_delalloc_pages)) {
1078 wait_event(root->fs_info->async_submit_wait,
1079 (atomic_read(&root->fs_info->async_delalloc_pages) ==
1080 0));
1081 }
1082
1083 *nr_written += nr_pages;
1084 start = cur_end + 1;
1085 }
1086 *page_started = 1;
1087 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001088}
1089
Chris Masond3977122009-01-05 21:25:51 -05001090static noinline int csum_exist_in_range(struct btrfs_root *root,
Yan Zheng17d217f2008-12-12 10:03:38 -05001091 u64 bytenr, u64 num_bytes)
1092{
1093 int ret;
1094 struct btrfs_ordered_sum *sums;
1095 LIST_HEAD(list);
1096
Yan Zheng07d400a2009-01-06 11:42:00 -05001097 ret = btrfs_lookup_csums_range(root->fs_info->csum_root, bytenr,
Arne Jansena2de7332011-03-08 14:14:00 +01001098 bytenr + num_bytes - 1, &list, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -05001099 if (ret == 0 && list_empty(&list))
1100 return 0;
1101
1102 while (!list_empty(&list)) {
1103 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
1104 list_del(&sums->list);
1105 kfree(sums);
1106 }
1107 return 1;
1108}
1109
Chris Masond352ac62008-09-29 15:18:18 -04001110/*
1111 * when nowcow writeback call back. This checks for snapshots or COW copies
1112 * of the extents that exist in the file, and COWs the file as required.
1113 *
1114 * If no cow copies or snapshots exist, we write directly to the existing
1115 * blocks on disk
1116 */
Chris Mason7f366cf2009-03-12 20:12:45 -04001117static noinline int run_delalloc_nocow(struct inode *inode,
1118 struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001119 u64 start, u64 end, int *page_started, int force,
1120 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001121{
Chris Masonbe20aa92007-12-17 20:14:01 -05001122 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001123 struct btrfs_trans_handle *trans;
Chris Masonbe20aa92007-12-17 20:14:01 -05001124 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -05001125 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -04001126 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -05001127 struct btrfs_key found_key;
Yan Zheng80ff3852008-10-30 14:20:02 -04001128 u64 cow_start;
1129 u64 cur_offset;
1130 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001131 u64 extent_offset;
Yan Zheng80ff3852008-10-30 14:20:02 -04001132 u64 disk_bytenr;
1133 u64 num_bytes;
1134 int extent_type;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001135 int ret, err;
Yan Zhengd899e052008-10-30 14:25:28 -04001136 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -04001137 int nocow;
1138 int check_prev = 1;
Li Zefan82d59022011-04-20 10:33:24 +08001139 bool nolock;
Li Zefan33345d012011-04-20 10:31:50 +08001140 u64 ino = btrfs_ino(inode);
Chris Masonbe20aa92007-12-17 20:14:01 -05001141
1142 path = btrfs_alloc_path();
Josef Bacik17ca04a2012-05-31 15:58:55 -04001143 if (!path) {
1144 extent_clear_unlock_delalloc(inode,
1145 &BTRFS_I(inode)->io_tree,
1146 start, end, locked_page,
1147 EXTENT_CLEAR_UNLOCK_PAGE |
1148 EXTENT_CLEAR_UNLOCK |
1149 EXTENT_CLEAR_DELALLOC |
1150 EXTENT_CLEAR_DIRTY |
1151 EXTENT_SET_WRITEBACK |
1152 EXTENT_END_WRITEBACK);
Mark Fashehd8926bb2011-07-13 10:38:47 -07001153 return -ENOMEM;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001154 }
Li Zefan82d59022011-04-20 10:33:24 +08001155
Chris Mason2cf85722011-07-26 15:35:09 -04001156 nolock = btrfs_is_free_space_inode(root, inode);
Li Zefan82d59022011-04-20 10:33:24 +08001157
1158 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001159 trans = btrfs_join_transaction_nolock(root);
Li Zefan82d59022011-04-20 10:33:24 +08001160 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001161 trans = btrfs_join_transaction(root);
Chris Masonff5714c2011-05-28 07:00:39 -04001162
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001163 if (IS_ERR(trans)) {
Josef Bacik17ca04a2012-05-31 15:58:55 -04001164 extent_clear_unlock_delalloc(inode,
1165 &BTRFS_I(inode)->io_tree,
1166 start, end, locked_page,
1167 EXTENT_CLEAR_UNLOCK_PAGE |
1168 EXTENT_CLEAR_UNLOCK |
1169 EXTENT_CLEAR_DELALLOC |
1170 EXTENT_CLEAR_DIRTY |
1171 EXTENT_SET_WRITEBACK |
1172 EXTENT_END_WRITEBACK);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001173 btrfs_free_path(path);
1174 return PTR_ERR(trans);
1175 }
1176
Josef Bacik74b21072011-04-13 12:02:53 -04001177 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Masonbe20aa92007-12-17 20:14:01 -05001178
Yan Zheng80ff3852008-10-30 14:20:02 -04001179 cow_start = (u64)-1;
1180 cur_offset = start;
1181 while (1) {
Li Zefan33345d012011-04-20 10:31:50 +08001182 ret = btrfs_lookup_file_extent(trans, root, path, ino,
Yan Zheng80ff3852008-10-30 14:20:02 -04001183 cur_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001184 if (ret < 0) {
1185 btrfs_abort_transaction(trans, root, ret);
1186 goto error;
1187 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001188 if (ret > 0 && path->slots[0] > 0 && check_prev) {
1189 leaf = path->nodes[0];
1190 btrfs_item_key_to_cpu(leaf, &found_key,
1191 path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +08001192 if (found_key.objectid == ino &&
Yan Zheng80ff3852008-10-30 14:20:02 -04001193 found_key.type == BTRFS_EXTENT_DATA_KEY)
1194 path->slots[0]--;
1195 }
1196 check_prev = 0;
1197next_slot:
1198 leaf = path->nodes[0];
1199 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1200 ret = btrfs_next_leaf(root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001201 if (ret < 0) {
1202 btrfs_abort_transaction(trans, root, ret);
1203 goto error;
1204 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001205 if (ret > 0)
1206 break;
1207 leaf = path->nodes[0];
1208 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001209
Yan Zheng80ff3852008-10-30 14:20:02 -04001210 nocow = 0;
1211 disk_bytenr = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -05001212 num_bytes = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001213 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05001214
Li Zefan33345d012011-04-20 10:31:50 +08001215 if (found_key.objectid > ino ||
Yan Zheng80ff3852008-10-30 14:20:02 -04001216 found_key.type > BTRFS_EXTENT_DATA_KEY ||
1217 found_key.offset > end)
1218 break;
Chris Masonbe20aa92007-12-17 20:14:01 -05001219
Yan Zheng80ff3852008-10-30 14:20:02 -04001220 if (found_key.offset > cur_offset) {
1221 extent_end = found_key.offset;
Chris Masone9061e22009-10-09 09:57:45 -04001222 extent_type = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001223 goto out_check;
1224 }
Chris Masonc31f8832008-01-08 15:46:31 -05001225
Yan Zheng80ff3852008-10-30 14:20:02 -04001226 fi = btrfs_item_ptr(leaf, path->slots[0],
1227 struct btrfs_file_extent_item);
1228 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -05001229
Yan Zhengd899e052008-10-30 14:25:28 -04001230 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1231 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001232 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001233 extent_offset = btrfs_file_extent_offset(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001234 extent_end = found_key.offset +
1235 btrfs_file_extent_num_bytes(leaf, fi);
1236 if (extent_end <= start) {
1237 path->slots[0]++;
1238 goto next_slot;
1239 }
Yan Zheng17d217f2008-12-12 10:03:38 -05001240 if (disk_bytenr == 0)
1241 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001242 if (btrfs_file_extent_compression(leaf, fi) ||
1243 btrfs_file_extent_encryption(leaf, fi) ||
1244 btrfs_file_extent_other_encoding(leaf, fi))
1245 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001246 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1247 goto out_check;
Yan Zhengd2fb3432008-12-11 16:30:39 -05001248 if (btrfs_extent_readonly(root, disk_bytenr))
Yan Zheng80ff3852008-10-30 14:20:02 -04001249 goto out_check;
Li Zefan33345d012011-04-20 10:31:50 +08001250 if (btrfs_cross_ref_exist(trans, root, ino,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001251 found_key.offset -
1252 extent_offset, disk_bytenr))
Yan Zheng17d217f2008-12-12 10:03:38 -05001253 goto out_check;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001254 disk_bytenr += extent_offset;
Yan Zheng17d217f2008-12-12 10:03:38 -05001255 disk_bytenr += cur_offset - found_key.offset;
1256 num_bytes = min(end + 1, extent_end) - cur_offset;
1257 /*
1258 * force cow if csum exists in the range.
1259 * this ensure that csum for a given extent are
1260 * either valid or do not exist.
1261 */
1262 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
1263 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001264 nocow = 1;
1265 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1266 extent_end = found_key.offset +
1267 btrfs_file_extent_inline_len(leaf, fi);
1268 extent_end = ALIGN(extent_end, root->sectorsize);
1269 } else {
1270 BUG_ON(1);
1271 }
1272out_check:
1273 if (extent_end <= start) {
1274 path->slots[0]++;
1275 goto next_slot;
1276 }
1277 if (!nocow) {
1278 if (cow_start == (u64)-1)
1279 cow_start = cur_offset;
1280 cur_offset = extent_end;
1281 if (cur_offset > end)
1282 break;
1283 path->slots[0]++;
1284 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001285 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001286
David Sterbab3b4aa72011-04-21 01:20:15 +02001287 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001288 if (cow_start != (u64)-1) {
1289 ret = cow_file_range(inode, locked_page, cow_start,
Chris Mason771ed682008-11-06 22:02:51 -05001290 found_key.offset - 1, page_started,
1291 nr_written, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001292 if (ret) {
1293 btrfs_abort_transaction(trans, root, ret);
1294 goto error;
1295 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001296 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001297 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001298
Yan Zhengd899e052008-10-30 14:25:28 -04001299 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1300 struct extent_map *em;
1301 struct extent_map_tree *em_tree;
1302 em_tree = &BTRFS_I(inode)->extent_tree;
David Sterba172ddd62011-04-21 00:48:27 +02001303 em = alloc_extent_map();
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001304 BUG_ON(!em); /* -ENOMEM */
Yan Zhengd899e052008-10-30 14:25:28 -04001305 em->start = cur_offset;
Chris Mason445a6942008-11-10 11:53:33 -05001306 em->orig_start = em->start;
Yan Zhengd899e052008-10-30 14:25:28 -04001307 em->len = num_bytes;
1308 em->block_len = num_bytes;
1309 em->block_start = disk_bytenr;
1310 em->bdev = root->fs_info->fs_devices->latest_bdev;
1311 set_bit(EXTENT_FLAG_PINNED, &em->flags);
1312 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04001313 write_lock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001314 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04001315 write_unlock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001316 if (ret != -EEXIST) {
1317 free_extent_map(em);
1318 break;
1319 }
1320 btrfs_drop_extent_cache(inode, em->start,
1321 em->start + em->len - 1, 0);
1322 }
1323 type = BTRFS_ORDERED_PREALLOC;
1324 } else {
1325 type = BTRFS_ORDERED_NOCOW;
1326 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001327
1328 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001329 num_bytes, num_bytes, type);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001330 BUG_ON(ret); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -05001331
Yan, Zhengefa56462010-05-16 10:49:59 -04001332 if (root->root_key.objectid ==
1333 BTRFS_DATA_RELOC_TREE_OBJECTID) {
1334 ret = btrfs_reloc_clone_csums(inode, cur_offset,
1335 num_bytes);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001336 if (ret) {
1337 btrfs_abort_transaction(trans, root, ret);
1338 goto error;
1339 }
Yan, Zhengefa56462010-05-16 10:49:59 -04001340 }
1341
Yan Zhengd899e052008-10-30 14:25:28 -04001342 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
Chris Masona791e352009-10-08 11:27:10 -04001343 cur_offset, cur_offset + num_bytes - 1,
1344 locked_page, EXTENT_CLEAR_UNLOCK_PAGE |
1345 EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
1346 EXTENT_SET_PRIVATE2);
Yan Zheng80ff3852008-10-30 14:20:02 -04001347 cur_offset = extent_end;
1348 if (cur_offset > end)
1349 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001350 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001351 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001352
Josef Bacik17ca04a2012-05-31 15:58:55 -04001353 if (cur_offset <= end && cow_start == (u64)-1) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001354 cow_start = cur_offset;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001355 cur_offset = end;
1356 }
1357
Yan Zheng80ff3852008-10-30 14:20:02 -04001358 if (cow_start != (u64)-1) {
1359 ret = cow_file_range(inode, locked_page, cow_start, end,
Chris Mason771ed682008-11-06 22:02:51 -05001360 page_started, nr_written, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001361 if (ret) {
1362 btrfs_abort_transaction(trans, root, ret);
1363 goto error;
1364 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001365 }
1366
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001367error:
Josef Bacik0cb59c92010-07-02 12:14:14 -04001368 if (nolock) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001369 err = btrfs_end_transaction_nolock(trans, root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001370 } else {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001371 err = btrfs_end_transaction(trans, root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001372 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001373 if (!ret)
1374 ret = err;
1375
Josef Bacik17ca04a2012-05-31 15:58:55 -04001376 if (ret && cur_offset < end)
1377 extent_clear_unlock_delalloc(inode,
1378 &BTRFS_I(inode)->io_tree,
1379 cur_offset, end, locked_page,
1380 EXTENT_CLEAR_UNLOCK_PAGE |
1381 EXTENT_CLEAR_UNLOCK |
1382 EXTENT_CLEAR_DELALLOC |
1383 EXTENT_CLEAR_DIRTY |
1384 EXTENT_SET_WRITEBACK |
1385 EXTENT_END_WRITEBACK);
1386
Yan Zheng7ea394f2008-08-05 13:05:02 -04001387 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001388 return ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05001389}
1390
Chris Masond352ac62008-09-29 15:18:18 -04001391/*
1392 * extent_io.c call back to do delayed allocation processing
1393 */
Chris Masonc8b97812008-10-29 14:49:59 -04001394static int run_delalloc_range(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001395 u64 start, u64 end, int *page_started,
1396 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001397{
Chris Masonbe20aa92007-12-17 20:14:01 -05001398 int ret;
Chris Mason7f366cf2009-03-12 20:12:45 -04001399 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masona2135012008-06-25 16:01:30 -04001400
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001401 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) {
Chris Masonc8b97812008-10-29 14:49:59 -04001402 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001403 page_started, 1, nr_written);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001404 } else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC) {
Yan Zhengd899e052008-10-30 14:25:28 -04001405 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001406 page_started, 0, nr_written);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001407 } else if (!btrfs_test_opt(root, COMPRESS) &&
1408 !(BTRFS_I(inode)->force_compress) &&
1409 !(BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS)) {
Chris Mason7f366cf2009-03-12 20:12:45 -04001410 ret = cow_file_range(inode, locked_page, start, end,
1411 page_started, nr_written, 1);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001412 } else {
1413 set_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1414 &BTRFS_I(inode)->runtime_flags);
Chris Mason771ed682008-11-06 22:02:51 -05001415 ret = cow_file_range_async(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001416 page_started, nr_written);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001417 }
Chris Masonb888db22007-08-27 16:49:44 -04001418 return ret;
1419}
1420
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001421static void btrfs_split_extent_hook(struct inode *inode,
1422 struct extent_state *orig, u64 split)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001423{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001424 /* not delalloc, ignore it */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001425 if (!(orig->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001426 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001427
Josef Bacik9e0baf62011-07-15 15:16:44 +00001428 spin_lock(&BTRFS_I(inode)->lock);
1429 BTRFS_I(inode)->outstanding_extents++;
1430 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001431}
1432
1433/*
1434 * extent_io.c merge_extent_hook, used to track merged delayed allocation
1435 * extents so we can keep track of new extents that are just merged onto old
1436 * extents, such as when we are doing sequential writes, so we can properly
1437 * account for the metadata space we'll need.
1438 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001439static void btrfs_merge_extent_hook(struct inode *inode,
1440 struct extent_state *new,
1441 struct extent_state *other)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001442{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001443 /* not delalloc, ignore it */
1444 if (!(other->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001445 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001446
Josef Bacik9e0baf62011-07-15 15:16:44 +00001447 spin_lock(&BTRFS_I(inode)->lock);
1448 BTRFS_I(inode)->outstanding_extents--;
1449 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001450}
1451
Chris Masond352ac62008-09-29 15:18:18 -04001452/*
1453 * extent_io.c set_bit_hook, used to track delayed allocation
1454 * bytes in this file, and to maintain the list of inodes that
1455 * have pending delalloc work to be done.
1456 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001457static void btrfs_set_bit_hook(struct inode *inode,
1458 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001459{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001460
Chris Mason75eff682008-12-15 15:54:40 -05001461 /*
1462 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001463 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001464 * bit, which is only set or cleared with irqs on
1465 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001466 if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001467 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001468 u64 len = state->end + 1 - state->start;
Chris Mason2cf85722011-07-26 15:35:09 -04001469 bool do_list = !btrfs_is_free_space_inode(root, inode);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001470
Josef Bacik9e0baf62011-07-15 15:16:44 +00001471 if (*bits & EXTENT_FIRST_DELALLOC) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001472 *bits &= ~EXTENT_FIRST_DELALLOC;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001473 } else {
1474 spin_lock(&BTRFS_I(inode)->lock);
1475 BTRFS_I(inode)->outstanding_extents++;
1476 spin_unlock(&BTRFS_I(inode)->lock);
1477 }
Josef Bacik287a0ab2010-03-19 18:07:23 +00001478
Chris Mason75eff682008-12-15 15:54:40 -05001479 spin_lock(&root->fs_info->delalloc_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001480 BTRFS_I(inode)->delalloc_bytes += len;
1481 root->fs_info->delalloc_bytes += len;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001482 if (do_list && list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
Chris Masonea8c2812008-08-04 23:17:27 -04001483 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1484 &root->fs_info->delalloc_inodes);
1485 }
Chris Mason75eff682008-12-15 15:54:40 -05001486 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001487 }
Chris Mason291d6732008-01-29 15:55:23 -05001488}
1489
Chris Masond352ac62008-09-29 15:18:18 -04001490/*
1491 * extent_io.c clear_bit_hook, see set_bit_hook for why
1492 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001493static void btrfs_clear_bit_hook(struct inode *inode,
1494 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001495{
Chris Mason75eff682008-12-15 15:54:40 -05001496 /*
1497 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001498 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001499 * bit, which is only set or cleared with irqs on
1500 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001501 if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001502 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001503 u64 len = state->end + 1 - state->start;
Chris Mason2cf85722011-07-26 15:35:09 -04001504 bool do_list = !btrfs_is_free_space_inode(root, inode);
Chris Masonbcbfce82008-04-22 13:26:47 -04001505
Josef Bacik9e0baf62011-07-15 15:16:44 +00001506 if (*bits & EXTENT_FIRST_DELALLOC) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001507 *bits &= ~EXTENT_FIRST_DELALLOC;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001508 } else if (!(*bits & EXTENT_DO_ACCOUNTING)) {
1509 spin_lock(&BTRFS_I(inode)->lock);
1510 BTRFS_I(inode)->outstanding_extents--;
1511 spin_unlock(&BTRFS_I(inode)->lock);
1512 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001513
1514 if (*bits & EXTENT_DO_ACCOUNTING)
1515 btrfs_delalloc_release_metadata(inode, len);
1516
Josef Bacik0cb59c92010-07-02 12:14:14 -04001517 if (root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID
1518 && do_list)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001519 btrfs_free_reserved_data_space(inode, len);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001520
Chris Mason75eff682008-12-15 15:54:40 -05001521 spin_lock(&root->fs_info->delalloc_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001522 root->fs_info->delalloc_bytes -= len;
1523 BTRFS_I(inode)->delalloc_bytes -= len;
1524
Josef Bacik0cb59c92010-07-02 12:14:14 -04001525 if (do_list && BTRFS_I(inode)->delalloc_bytes == 0 &&
Chris Masonea8c2812008-08-04 23:17:27 -04001526 !list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1527 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
1528 }
Chris Mason75eff682008-12-15 15:54:40 -05001529 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001530 }
Chris Mason291d6732008-01-29 15:55:23 -05001531}
1532
Chris Masond352ac62008-09-29 15:18:18 -04001533/*
1534 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1535 * we don't create bios that span stripes or chunks
1536 */
Chris Mason239b14b2008-03-24 15:02:07 -04001537int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001538 size_t size, struct bio *bio,
1539 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001540{
1541 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
1542 struct btrfs_mapping_tree *map_tree;
Chris Masona62b9402008-10-03 16:31:08 -04001543 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001544 u64 length = 0;
1545 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001546 int ret;
1547
Chris Mason771ed682008-11-06 22:02:51 -05001548 if (bio_flags & EXTENT_BIO_COMPRESSED)
1549 return 0;
1550
Chris Masonf2d8d742008-04-21 10:03:05 -04001551 length = bio->bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001552 map_tree = &root->fs_info->mapping_tree;
1553 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04001554 ret = btrfs_map_block(map_tree, READ, logical,
Chris Masonf1885912008-04-09 16:28:12 -04001555 &map_length, NULL, 0);
Jeff Mahoney3444a972011-10-03 23:23:13 -04001556 /* Will always return 0 or 1 with map_multi == NULL */
1557 BUG_ON(ret < 0);
Chris Masond3977122009-01-05 21:25:51 -05001558 if (map_length < length + size)
Chris Mason239b14b2008-03-24 15:02:07 -04001559 return 1;
Jeff Mahoney3444a972011-10-03 23:23:13 -04001560 return 0;
Chris Mason239b14b2008-03-24 15:02:07 -04001561}
1562
Chris Masond352ac62008-09-29 15:18:18 -04001563/*
1564 * in order to insert checksums into the metadata in large chunks,
1565 * we wait until bio submission time. All the pages in the bio are
1566 * checksummed and sums are attached onto the ordered extent record.
1567 *
1568 * At IO completion time the cums attached on the ordered extent record
1569 * are inserted into the btree
1570 */
Chris Masond3977122009-01-05 21:25:51 -05001571static int __btrfs_submit_bio_start(struct inode *inode, int rw,
1572 struct bio *bio, int mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001573 unsigned long bio_flags,
1574 u64 bio_offset)
Chris Mason065631f2008-02-20 12:07:25 -05001575{
Chris Mason065631f2008-02-20 12:07:25 -05001576 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason065631f2008-02-20 12:07:25 -05001577 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001578
Chris Masond20f7042008-12-08 16:58:54 -05001579 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001580 BUG_ON(ret); /* -ENOMEM */
Chris Mason4a69a412008-11-06 22:03:00 -05001581 return 0;
1582}
Chris Masone0156402008-04-16 11:15:20 -04001583
Chris Mason4a69a412008-11-06 22:03:00 -05001584/*
1585 * in order to insert checksums into the metadata in large chunks,
1586 * we wait until bio submission time. All the pages in the bio are
1587 * checksummed and sums are attached onto the ordered extent record.
1588 *
1589 * At IO completion time the cums attached on the ordered extent record
1590 * are inserted into the btree
1591 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001592static int __btrfs_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001593 int mirror_num, unsigned long bio_flags,
1594 u64 bio_offset)
Chris Mason4a69a412008-11-06 22:03:00 -05001595{
1596 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason8b712842008-06-11 16:50:36 -04001597 return btrfs_map_bio(root, rw, bio, mirror_num, 1);
Chris Mason44b8bd72008-04-16 11:14:51 -04001598}
1599
Chris Masond352ac62008-09-29 15:18:18 -04001600/*
Chris Masoncad321a2008-12-17 14:51:42 -05001601 * extent_io.c submission hook. This does the right thing for csum calculation
1602 * on write, or reading the csums from the tree before a read
Chris Masond352ac62008-09-29 15:18:18 -04001603 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001604static int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001605 int mirror_num, unsigned long bio_flags,
1606 u64 bio_offset)
Chris Mason44b8bd72008-04-16 11:14:51 -04001607{
1608 struct btrfs_root *root = BTRFS_I(inode)->root;
1609 int ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001610 int skip_sum;
Jeff Mahoney04173412011-10-03 23:23:12 -04001611 int metadata = 0;
Chris Mason44b8bd72008-04-16 11:14:51 -04001612
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001613 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masoncad321a2008-12-17 14:51:42 -05001614
Chris Mason2cf85722011-07-26 15:35:09 -04001615 if (btrfs_is_free_space_inode(root, inode))
Jeff Mahoney04173412011-10-03 23:23:12 -04001616 metadata = 2;
1617
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001618 if (!(rw & REQ_WRITE)) {
Josef Bacik5fd02042012-05-02 14:00:54 -04001619 ret = btrfs_bio_wq_end_io(root->fs_info, bio, metadata);
1620 if (ret)
1621 return ret;
1622
Chris Masond20f7042008-12-08 16:58:54 -05001623 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Chris Masonc8b97812008-10-29 14:49:59 -04001624 return btrfs_submit_compressed_read(inode, bio,
1625 mirror_num, bio_flags);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001626 } else if (!skip_sum) {
1627 ret = btrfs_lookup_bio_sums(root, inode, bio, NULL);
1628 if (ret)
1629 return ret;
1630 }
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001631 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001632 } else if (!skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001633 /* csum items have already been cloned */
1634 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1635 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001636 /* we're doing a write, do the async checksumming */
1637 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
Chris Mason44b8bd72008-04-16 11:14:51 -04001638 inode, rw, bio, mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001639 bio_flags, bio_offset,
1640 __btrfs_submit_bio_start,
Chris Mason4a69a412008-11-06 22:03:00 -05001641 __btrfs_submit_bio_done);
Chris Mason19b9bdb2008-10-30 14:23:13 -04001642 }
1643
Chris Mason0b86a832008-03-24 15:01:56 -04001644mapit:
Chris Mason8b712842008-06-11 16:50:36 -04001645 return btrfs_map_bio(root, rw, bio, mirror_num, 0);
Chris Mason065631f2008-02-20 12:07:25 -05001646}
Chris Mason6885f302008-02-20 16:11:05 -05001647
Chris Masond352ac62008-09-29 15:18:18 -04001648/*
1649 * given a list of ordered sums record them in the inode. This happens
1650 * at IO completion time based on sums calculated at bio submission time.
1651 */
Chris Masonba1da2f2008-07-17 12:54:15 -04001652static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -04001653 struct inode *inode, u64 file_offset,
1654 struct list_head *list)
1655{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001656 struct btrfs_ordered_sum *sum;
1657
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001658 list_for_each_entry(sum, list, list) {
Chris Masond20f7042008-12-08 16:58:54 -05001659 btrfs_csum_file_blocks(trans,
1660 BTRFS_I(inode)->root->fs_info->csum_root, sum);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001661 }
1662 return 0;
1663}
1664
Josef Bacik2ac55d42010-02-03 19:33:23 +00001665int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end,
1666 struct extent_state **cached_state)
Chris Masonea8c2812008-08-04 23:17:27 -04001667{
Chris Masond3977122009-01-05 21:25:51 -05001668 if ((end & (PAGE_CACHE_SIZE - 1)) == 0)
Chris Mason771ed682008-11-06 22:02:51 -05001669 WARN_ON(1);
Chris Masonea8c2812008-08-04 23:17:27 -04001670 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001671 cached_state, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04001672}
1673
Chris Masond352ac62008-09-29 15:18:18 -04001674/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04001675struct btrfs_writepage_fixup {
1676 struct page *page;
1677 struct btrfs_work work;
1678};
1679
Christoph Hellwigb2950862008-12-02 09:54:17 -05001680static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04001681{
1682 struct btrfs_writepage_fixup *fixup;
1683 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001684 struct extent_state *cached_state = NULL;
Chris Mason247e7432008-07-17 12:53:51 -04001685 struct page *page;
1686 struct inode *inode;
1687 u64 page_start;
1688 u64 page_end;
Jeff Mahoney87826df2012-02-15 16:23:57 +01001689 int ret;
Chris Mason247e7432008-07-17 12:53:51 -04001690
1691 fixup = container_of(work, struct btrfs_writepage_fixup, work);
1692 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04001693again:
Chris Mason247e7432008-07-17 12:53:51 -04001694 lock_page(page);
1695 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
1696 ClearPageChecked(page);
1697 goto out_page;
1698 }
1699
1700 inode = page->mapping->host;
1701 page_start = page_offset(page);
1702 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
1703
Josef Bacik2ac55d42010-02-03 19:33:23 +00001704 lock_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001705 &cached_state);
Chris Mason4a096752008-07-21 10:29:44 -04001706
1707 /* already ordered? We're done */
Chris Mason8b62b722009-09-02 16:53:46 -04001708 if (PagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001709 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04001710
1711 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1712 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00001713 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start,
1714 page_end, &cached_state, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001715 unlock_page(page);
1716 btrfs_start_ordered_extent(inode, ordered, 1);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001717 btrfs_put_ordered_extent(ordered);
Chris Mason4a096752008-07-21 10:29:44 -04001718 goto again;
1719 }
Chris Mason247e7432008-07-17 12:53:51 -04001720
Jeff Mahoney87826df2012-02-15 16:23:57 +01001721 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
1722 if (ret) {
1723 mapping_set_error(page->mapping, ret);
1724 end_extent_writepage(page, ret, page_start, page_end);
1725 ClearPageChecked(page);
1726 goto out;
1727 }
1728
Josef Bacik2ac55d42010-02-03 19:33:23 +00001729 btrfs_set_extent_delalloc(inode, page_start, page_end, &cached_state);
Chris Mason247e7432008-07-17 12:53:51 -04001730 ClearPageChecked(page);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001731 set_page_dirty(page);
Chris Mason247e7432008-07-17 12:53:51 -04001732out:
Josef Bacik2ac55d42010-02-03 19:33:23 +00001733 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, page_end,
1734 &cached_state, GFP_NOFS);
Chris Mason247e7432008-07-17 12:53:51 -04001735out_page:
1736 unlock_page(page);
1737 page_cache_release(page);
Miao Xieb897abe2011-01-26 16:19:22 +08001738 kfree(fixup);
Chris Mason247e7432008-07-17 12:53:51 -04001739}
1740
1741/*
1742 * There are a few paths in the higher layers of the kernel that directly
1743 * set the page dirty bit without asking the filesystem if it is a
1744 * good idea. This causes problems because we want to make sure COW
1745 * properly happens and the data=ordered rules are followed.
1746 *
Chris Masonc8b97812008-10-29 14:49:59 -04001747 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04001748 * hasn't been properly setup for IO. We kick off an async process
1749 * to fix it up. The async helper will wait for ordered extents, set
1750 * the delalloc bit and make it safe to write the page.
1751 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001752static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04001753{
1754 struct inode *inode = page->mapping->host;
1755 struct btrfs_writepage_fixup *fixup;
1756 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason247e7432008-07-17 12:53:51 -04001757
Chris Mason8b62b722009-09-02 16:53:46 -04001758 /* this page is properly in the ordered list */
1759 if (TestClearPagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001760 return 0;
1761
1762 if (PageChecked(page))
1763 return -EAGAIN;
1764
1765 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
1766 if (!fixup)
1767 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04001768
Chris Mason247e7432008-07-17 12:53:51 -04001769 SetPageChecked(page);
1770 page_cache_get(page);
1771 fixup->work.func = btrfs_writepage_fixup_worker;
1772 fixup->page = page;
1773 btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001774 return -EBUSY;
Chris Mason247e7432008-07-17 12:53:51 -04001775}
1776
Yan Zhengd899e052008-10-30 14:25:28 -04001777static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
1778 struct inode *inode, u64 file_pos,
1779 u64 disk_bytenr, u64 disk_num_bytes,
1780 u64 num_bytes, u64 ram_bytes,
1781 u8 compression, u8 encryption,
1782 u16 other_encoding, int extent_type)
1783{
1784 struct btrfs_root *root = BTRFS_I(inode)->root;
1785 struct btrfs_file_extent_item *fi;
1786 struct btrfs_path *path;
1787 struct extent_buffer *leaf;
1788 struct btrfs_key ins;
1789 u64 hint;
1790 int ret;
1791
1792 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07001793 if (!path)
1794 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -04001795
Chris Masonb9473432009-03-13 11:00:37 -04001796 path->leave_spinning = 1;
Chris Masona1ed8352009-09-11 12:27:37 -04001797
1798 /*
1799 * we may be replacing one extent in the tree with another.
1800 * The new extent is pinned in the extent map, and we don't want
1801 * to drop it from the cache until it is completely in the btree.
1802 *
1803 * So, tell btrfs_drop_extents to leave this extent in the cache.
1804 * the caller is expected to unpin it and allow it to be merged
1805 * with the others.
1806 */
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001807 ret = btrfs_drop_extents(trans, inode, file_pos, file_pos + num_bytes,
1808 &hint, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001809 if (ret)
1810 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04001811
Li Zefan33345d012011-04-20 10:31:50 +08001812 ins.objectid = btrfs_ino(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04001813 ins.offset = file_pos;
1814 ins.type = BTRFS_EXTENT_DATA_KEY;
1815 ret = btrfs_insert_empty_item(trans, root, path, &ins, sizeof(*fi));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001816 if (ret)
1817 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04001818 leaf = path->nodes[0];
1819 fi = btrfs_item_ptr(leaf, path->slots[0],
1820 struct btrfs_file_extent_item);
1821 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
1822 btrfs_set_file_extent_type(leaf, fi, extent_type);
1823 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
1824 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
1825 btrfs_set_file_extent_offset(leaf, fi, 0);
1826 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
1827 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
1828 btrfs_set_file_extent_compression(leaf, fi, compression);
1829 btrfs_set_file_extent_encryption(leaf, fi, encryption);
1830 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
Chris Masonb9473432009-03-13 11:00:37 -04001831
1832 btrfs_unlock_up_safe(path, 1);
1833 btrfs_set_lock_blocking(leaf);
1834
Yan Zhengd899e052008-10-30 14:25:28 -04001835 btrfs_mark_buffer_dirty(leaf);
1836
1837 inode_add_bytes(inode, num_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -04001838
1839 ins.objectid = disk_bytenr;
1840 ins.offset = disk_num_bytes;
1841 ins.type = BTRFS_EXTENT_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001842 ret = btrfs_alloc_reserved_file_extent(trans, root,
1843 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08001844 btrfs_ino(inode), file_pos, &ins);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001845out:
Yan Zhengd899e052008-10-30 14:25:28 -04001846 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04001847
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001848 return ret;
Yan Zhengd899e052008-10-30 14:25:28 -04001849}
1850
Chris Mason5d13a982009-03-13 11:41:46 -04001851/*
1852 * helper function for btrfs_finish_ordered_io, this
1853 * just reads in some of the csum leaves to prime them into ram
1854 * before we start the transaction. It limits the amount of btree
1855 * reads required while inside the transaction.
1856 */
Chris Masond352ac62008-09-29 15:18:18 -04001857/* as ordered data IO finishes, this gets called so we can finish
1858 * an ordered extent if the range of bytes in the file it covers are
1859 * fully written.
1860 */
Josef Bacik5fd02042012-05-02 14:00:54 -04001861static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001862{
Josef Bacik5fd02042012-05-02 14:00:54 -04001863 struct inode *inode = ordered_extent->inode;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001864 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001865 struct btrfs_trans_handle *trans = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001866 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001867 struct extent_state *cached_state = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08001868 int compress_type = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001869 int ret;
Li Zefan82d59022011-04-20 10:33:24 +08001870 bool nolock;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001871
Chris Mason2cf85722011-07-26 15:35:09 -04001872 nolock = btrfs_is_free_space_inode(root, inode);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001873
Josef Bacik5fd02042012-05-02 14:00:54 -04001874 if (test_bit(BTRFS_ORDERED_IOERR, &ordered_extent->flags)) {
1875 ret = -EIO;
1876 goto out;
1877 }
1878
Yan, Zhengc2167752009-11-12 09:34:21 +00001879 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001880 BUG_ON(!list_empty(&ordered_extent->list)); /* Logic error */
Yan, Zhengc2167752009-11-12 09:34:21 +00001881 ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent);
1882 if (!ret) {
Josef Bacik0cb59c92010-07-02 12:14:14 -04001883 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001884 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001885 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001886 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001887 if (IS_ERR(trans))
1888 return PTR_ERR(trans);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001889 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason21151332011-11-10 20:39:08 -05001890 ret = btrfs_update_inode_fallback(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001891 if (ret) /* -ENOMEM or corruption */
1892 btrfs_abort_transaction(trans, root, ret);
Yan, Zhengc2167752009-11-12 09:34:21 +00001893 }
1894 goto out;
1895 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001896
Josef Bacik2ac55d42010-02-03 19:33:23 +00001897 lock_extent_bits(io_tree, ordered_extent->file_offset,
1898 ordered_extent->file_offset + ordered_extent->len - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001899 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001900
Josef Bacik0cb59c92010-07-02 12:14:14 -04001901 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001902 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001903 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001904 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001905 if (IS_ERR(trans)) {
1906 ret = PTR_ERR(trans);
1907 trans = NULL;
1908 goto out_unlock;
1909 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001910 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Yan, Zhengc2167752009-11-12 09:34:21 +00001911
Chris Masonc8b97812008-10-29 14:49:59 -04001912 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Li Zefan261507a02010-12-17 14:21:50 +08001913 compress_type = ordered_extent->compress_type;
Yan Zhengd899e052008-10-30 14:25:28 -04001914 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Li Zefan261507a02010-12-17 14:21:50 +08001915 BUG_ON(compress_type);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001916 ret = btrfs_mark_extent_written(trans, inode,
Yan Zhengd899e052008-10-30 14:25:28 -04001917 ordered_extent->file_offset,
1918 ordered_extent->file_offset +
1919 ordered_extent->len);
Yan Zhengd899e052008-10-30 14:25:28 -04001920 } else {
Josef Bacik0af3d002010-06-21 14:48:16 -04001921 BUG_ON(root == root->fs_info->tree_root);
Yan Zhengd899e052008-10-30 14:25:28 -04001922 ret = insert_reserved_file_extent(trans, inode,
1923 ordered_extent->file_offset,
1924 ordered_extent->start,
1925 ordered_extent->disk_len,
1926 ordered_extent->len,
1927 ordered_extent->len,
Li Zefan261507a02010-12-17 14:21:50 +08001928 compress_type, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04001929 BTRFS_FILE_EXTENT_REG);
Chris Masona1ed8352009-09-11 12:27:37 -04001930 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
1931 ordered_extent->file_offset,
1932 ordered_extent->len);
Yan Zhengd899e052008-10-30 14:25:28 -04001933 }
Josef Bacik5fd02042012-05-02 14:00:54 -04001934
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001935 if (ret < 0) {
1936 btrfs_abort_transaction(trans, root, ret);
Josef Bacik5fd02042012-05-02 14:00:54 -04001937 goto out_unlock;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001938 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00001939
Chris Masone6dcd2d2008-07-17 12:53:50 -04001940 add_pending_csums(trans, inode, ordered_extent->file_offset,
1941 &ordered_extent->list);
1942
Josef Bacik1ef30be2011-04-05 19:25:36 -04001943 ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent);
Miao Xiea39f7522011-09-11 10:52:25 -04001944 if (!ret || !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Chris Mason21151332011-11-10 20:39:08 -05001945 ret = btrfs_update_inode_fallback(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001946 if (ret) { /* -ENOMEM or corruption */
1947 btrfs_abort_transaction(trans, root, ret);
Josef Bacik5fd02042012-05-02 14:00:54 -04001948 goto out_unlock;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001949 }
Josef Bacik1ef30be2011-04-05 19:25:36 -04001950 }
1951 ret = 0;
Josef Bacik5fd02042012-05-02 14:00:54 -04001952out_unlock:
1953 unlock_extent_cached(io_tree, ordered_extent->file_offset,
1954 ordered_extent->file_offset +
1955 ordered_extent->len - 1, &cached_state, GFP_NOFS);
Yan, Zhengc2167752009-11-12 09:34:21 +00001956out:
Josef Bacik5b0e95b2011-10-06 08:58:24 -04001957 if (root != root->fs_info->tree_root)
Josef Bacik0cb59c92010-07-02 12:14:14 -04001958 btrfs_delalloc_release_metadata(inode, ordered_extent->len);
Josef Bacik5b0e95b2011-10-06 08:58:24 -04001959 if (trans) {
1960 if (nolock)
Josef Bacik0cb59c92010-07-02 12:14:14 -04001961 btrfs_end_transaction_nolock(trans, root);
Josef Bacik5b0e95b2011-10-06 08:58:24 -04001962 else
Josef Bacik0cb59c92010-07-02 12:14:14 -04001963 btrfs_end_transaction(trans, root);
1964 }
1965
Josef Bacik5fd02042012-05-02 14:00:54 -04001966 if (ret)
1967 clear_extent_uptodate(io_tree, ordered_extent->file_offset,
1968 ordered_extent->file_offset +
1969 ordered_extent->len - 1, NULL, GFP_NOFS);
1970
1971 /*
1972 * This needs to be dont to make sure anybody waiting knows we are done
1973 * upating everything for this ordered extent.
1974 */
1975 btrfs_remove_ordered_extent(inode, ordered_extent);
1976
Chris Masone6dcd2d2008-07-17 12:53:50 -04001977 /* once for us */
1978 btrfs_put_ordered_extent(ordered_extent);
1979 /* once for the tree */
1980 btrfs_put_ordered_extent(ordered_extent);
1981
Josef Bacik5fd02042012-05-02 14:00:54 -04001982 return ret;
1983}
1984
1985static void finish_ordered_fn(struct btrfs_work *work)
1986{
1987 struct btrfs_ordered_extent *ordered_extent;
1988 ordered_extent = container_of(work, struct btrfs_ordered_extent, work);
1989 btrfs_finish_ordered_io(ordered_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001990}
1991
Christoph Hellwigb2950862008-12-02 09:54:17 -05001992static int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04001993 struct extent_state *state, int uptodate)
1994{
Josef Bacik5fd02042012-05-02 14:00:54 -04001995 struct inode *inode = page->mapping->host;
1996 struct btrfs_root *root = BTRFS_I(inode)->root;
1997 struct btrfs_ordered_extent *ordered_extent = NULL;
1998 struct btrfs_workers *workers;
1999
liubo1abe9b82011-03-24 11:18:59 +00002000 trace_btrfs_writepage_end_io_hook(page, start, end, uptodate);
2001
Chris Mason8b62b722009-09-02 16:53:46 -04002002 ClearPagePrivate2(page);
Josef Bacik5fd02042012-05-02 14:00:54 -04002003 if (!btrfs_dec_test_ordered_pending(inode, &ordered_extent, start,
2004 end - start + 1, uptodate))
2005 return 0;
2006
2007 ordered_extent->work.func = finish_ordered_fn;
2008 ordered_extent->work.flags = 0;
2009
2010 if (btrfs_is_free_space_inode(root, inode))
2011 workers = &root->fs_info->endio_freespace_worker;
2012 else
2013 workers = &root->fs_info->endio_write_workers;
2014 btrfs_queue_worker(workers, &ordered_extent->work);
2015
2016 return 0;
Chris Mason211f90e2008-07-18 11:56:15 -04002017}
2018
Chris Masond352ac62008-09-29 15:18:18 -04002019/*
Chris Masond352ac62008-09-29 15:18:18 -04002020 * when reads are done, we need to check csums to verify the data is correct
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002021 * if there's a match, we allow the bio to finish. If not, the code in
2022 * extent_io.c will try to find good copies for us.
Chris Masond352ac62008-09-29 15:18:18 -04002023 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05002024static int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002025 struct extent_state *state, int mirror)
Chris Mason07157aa2007-08-30 08:50:51 -04002026{
Chris Mason35ebb932007-10-30 16:56:53 -04002027 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -04002028 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05002029 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -04002030 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -05002031 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -04002032 int ret;
Chris Masonff79f812007-10-15 16:22:25 -04002033 struct btrfs_root *root = BTRFS_I(inode)->root;
2034 u32 csum = ~(u32)0;
Chris Masond1310b22008-01-24 16:13:08 -05002035
Chris Masond20f7042008-12-08 16:58:54 -05002036 if (PageChecked(page)) {
2037 ClearPageChecked(page);
2038 goto good;
2039 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002040
2041 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Jan Schmidt08d2f342011-05-04 16:18:50 +02002042 goto good;
Chris Masond20f7042008-12-08 16:58:54 -05002043
Yan Zheng17d217f2008-12-12 10:03:38 -05002044 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04002045 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
Yan Zheng17d217f2008-12-12 10:03:38 -05002046 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM,
2047 GFP_NOFS);
2048 return 0;
2049 }
2050
Yanc2e639f2008-02-04 08:57:25 -05002051 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -05002052 private = state->private;
2053 ret = 0;
2054 } else {
2055 ret = get_state_private(io_tree, start, &private);
2056 }
Cong Wang7ac687d2011-11-25 23:14:28 +08002057 kaddr = kmap_atomic(page);
Chris Masond3977122009-01-05 21:25:51 -05002058 if (ret)
Chris Mason07157aa2007-08-30 08:50:51 -04002059 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05002060
Chris Masonff79f812007-10-15 16:22:25 -04002061 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
2062 btrfs_csum_final(csum, (char *)&csum);
Chris Masond3977122009-01-05 21:25:51 -05002063 if (csum != private)
Chris Mason07157aa2007-08-30 08:50:51 -04002064 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05002065
Cong Wang7ac687d2011-11-25 23:14:28 +08002066 kunmap_atomic(kaddr);
Chris Masond20f7042008-12-08 16:58:54 -05002067good:
Chris Mason07157aa2007-08-30 08:50:51 -04002068 return 0;
2069
2070zeroit:
Chris Mason945d8962011-05-22 12:33:42 -04002071 printk_ratelimited(KERN_INFO "btrfs csum failed ino %llu off %llu csum %u "
Li Zefan33345d012011-04-20 10:31:50 +08002072 "private %llu\n",
2073 (unsigned long long)btrfs_ino(page->mapping->host),
Chris Mason193f2842009-04-27 07:29:05 -04002074 (unsigned long long)start, csum,
2075 (unsigned long long)private);
Chris Masondb945352007-10-15 16:15:53 -04002076 memset(kaddr + offset, 1, end - start + 1);
2077 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002078 kunmap_atomic(kaddr);
Chris Mason3b951512008-04-17 11:29:12 -04002079 if (private == 0)
2080 return 0;
Chris Mason7e383262008-04-09 16:28:12 -04002081 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -04002082}
Chris Masonb888db22007-08-27 16:49:44 -04002083
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002084struct delayed_iput {
2085 struct list_head list;
2086 struct inode *inode;
2087};
2088
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002089/* JDM: If this is fs-wide, why can't we add a pointer to
2090 * btrfs_inode instead and avoid the allocation? */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002091void btrfs_add_delayed_iput(struct inode *inode)
2092{
2093 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2094 struct delayed_iput *delayed;
2095
2096 if (atomic_add_unless(&inode->i_count, -1, 1))
2097 return;
2098
2099 delayed = kmalloc(sizeof(*delayed), GFP_NOFS | __GFP_NOFAIL);
2100 delayed->inode = inode;
2101
2102 spin_lock(&fs_info->delayed_iput_lock);
2103 list_add_tail(&delayed->list, &fs_info->delayed_iputs);
2104 spin_unlock(&fs_info->delayed_iput_lock);
2105}
2106
2107void btrfs_run_delayed_iputs(struct btrfs_root *root)
2108{
2109 LIST_HEAD(list);
2110 struct btrfs_fs_info *fs_info = root->fs_info;
2111 struct delayed_iput *delayed;
2112 int empty;
2113
2114 spin_lock(&fs_info->delayed_iput_lock);
2115 empty = list_empty(&fs_info->delayed_iputs);
2116 spin_unlock(&fs_info->delayed_iput_lock);
2117 if (empty)
2118 return;
2119
2120 down_read(&root->fs_info->cleanup_work_sem);
2121 spin_lock(&fs_info->delayed_iput_lock);
2122 list_splice_init(&fs_info->delayed_iputs, &list);
2123 spin_unlock(&fs_info->delayed_iput_lock);
2124
2125 while (!list_empty(&list)) {
2126 delayed = list_entry(list.next, struct delayed_iput, list);
2127 list_del(&delayed->list);
2128 iput(delayed->inode);
2129 kfree(delayed);
2130 }
2131 up_read(&root->fs_info->cleanup_work_sem);
2132}
2133
Yan, Zhengd68fc572010-05-16 10:49:58 -04002134enum btrfs_orphan_cleanup_state {
2135 ORPHAN_CLEANUP_STARTED = 1,
2136 ORPHAN_CLEANUP_DONE = 2,
2137};
2138
2139/*
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08002140 * This is called in transaction commit time. If there are no orphan
Yan, Zhengd68fc572010-05-16 10:49:58 -04002141 * files in the subvolume, it removes orphan item and frees block_rsv
2142 * structure.
2143 */
2144void btrfs_orphan_commit_root(struct btrfs_trans_handle *trans,
2145 struct btrfs_root *root)
2146{
Josef Bacik90290e12011-12-02 15:44:12 -05002147 struct btrfs_block_rsv *block_rsv;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002148 int ret;
2149
Josef Bacik8a35d952012-05-23 14:26:42 -04002150 if (atomic_read(&root->orphan_inodes) ||
Yan, Zhengd68fc572010-05-16 10:49:58 -04002151 root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE)
2152 return;
2153
Josef Bacik90290e12011-12-02 15:44:12 -05002154 spin_lock(&root->orphan_lock);
Josef Bacik8a35d952012-05-23 14:26:42 -04002155 if (atomic_read(&root->orphan_inodes)) {
Josef Bacik90290e12011-12-02 15:44:12 -05002156 spin_unlock(&root->orphan_lock);
2157 return;
2158 }
2159
2160 if (root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE) {
2161 spin_unlock(&root->orphan_lock);
2162 return;
2163 }
2164
2165 block_rsv = root->orphan_block_rsv;
2166 root->orphan_block_rsv = NULL;
2167 spin_unlock(&root->orphan_lock);
2168
Yan, Zhengd68fc572010-05-16 10:49:58 -04002169 if (root->orphan_item_inserted &&
2170 btrfs_root_refs(&root->root_item) > 0) {
2171 ret = btrfs_del_orphan_item(trans, root->fs_info->tree_root,
2172 root->root_key.objectid);
2173 BUG_ON(ret);
2174 root->orphan_item_inserted = 0;
2175 }
2176
Josef Bacik90290e12011-12-02 15:44:12 -05002177 if (block_rsv) {
2178 WARN_ON(block_rsv->size > 0);
2179 btrfs_free_block_rsv(root, block_rsv);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002180 }
2181}
2182
2183/*
Josef Bacik7b128762008-07-24 12:17:14 -04002184 * This creates an orphan entry for the given inode in case something goes
2185 * wrong in the middle of an unlink/truncate.
Yan, Zhengd68fc572010-05-16 10:49:58 -04002186 *
2187 * NOTE: caller of this function should reserve 5 units of metadata for
2188 * this function.
Josef Bacik7b128762008-07-24 12:17:14 -04002189 */
2190int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
2191{
2192 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002193 struct btrfs_block_rsv *block_rsv = NULL;
2194 int reserve = 0;
2195 int insert = 0;
2196 int ret;
Josef Bacik7b128762008-07-24 12:17:14 -04002197
Yan, Zhengd68fc572010-05-16 10:49:58 -04002198 if (!root->orphan_block_rsv) {
2199 block_rsv = btrfs_alloc_block_rsv(root);
Tsutomu Itohb5324022011-07-19 07:27:20 +00002200 if (!block_rsv)
2201 return -ENOMEM;
Josef Bacik7b128762008-07-24 12:17:14 -04002202 }
2203
Yan, Zhengd68fc572010-05-16 10:49:58 -04002204 spin_lock(&root->orphan_lock);
2205 if (!root->orphan_block_rsv) {
2206 root->orphan_block_rsv = block_rsv;
2207 } else if (block_rsv) {
2208 btrfs_free_block_rsv(root, block_rsv);
2209 block_rsv = NULL;
2210 }
Josef Bacik7b128762008-07-24 12:17:14 -04002211
Josef Bacik8a35d952012-05-23 14:26:42 -04002212 if (!test_and_set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2213 &BTRFS_I(inode)->runtime_flags)) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04002214#if 0
2215 /*
2216 * For proper ENOSPC handling, we should do orphan
2217 * cleanup when mounting. But this introduces backward
2218 * compatibility issue.
2219 */
2220 if (!xchg(&root->orphan_item_inserted, 1))
2221 insert = 2;
2222 else
2223 insert = 1;
2224#endif
2225 insert = 1;
Josef Bacik8a35d952012-05-23 14:26:42 -04002226 atomic_dec(&root->orphan_inodes);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002227 }
Josef Bacik7b128762008-07-24 12:17:14 -04002228
Josef Bacik72ac3c02012-05-23 14:13:11 -04002229 if (!test_and_set_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
2230 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04002231 reserve = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002232 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002233
Yan, Zhengd68fc572010-05-16 10:49:58 -04002234 /* grab metadata reservation from transaction handle */
2235 if (reserve) {
2236 ret = btrfs_orphan_reserve_metadata(trans, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002237 BUG_ON(ret); /* -ENOSPC in reservation; Logic error? JDM */
Yan, Zhengd68fc572010-05-16 10:49:58 -04002238 }
2239
2240 /* insert an orphan item to track this unlinked/truncated file */
2241 if (insert >= 1) {
Li Zefan33345d012011-04-20 10:31:50 +08002242 ret = btrfs_insert_orphan_item(trans, root, btrfs_ino(inode));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002243 if (ret && ret != -EEXIST) {
Josef Bacik8a35d952012-05-23 14:26:42 -04002244 clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2245 &BTRFS_I(inode)->runtime_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002246 btrfs_abort_transaction(trans, root, ret);
2247 return ret;
2248 }
2249 ret = 0;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002250 }
2251
2252 /* insert an orphan item to track subvolume contains orphan files */
2253 if (insert >= 2) {
2254 ret = btrfs_insert_orphan_item(trans, root->fs_info->tree_root,
2255 root->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002256 if (ret && ret != -EEXIST) {
2257 btrfs_abort_transaction(trans, root, ret);
2258 return ret;
2259 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002260 }
2261 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002262}
2263
2264/*
2265 * We have done the truncate/delete so we can go ahead and remove the orphan
2266 * item for this particular inode.
2267 */
2268int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode)
2269{
2270 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002271 int delete_item = 0;
2272 int release_rsv = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002273 int ret = 0;
2274
Yan, Zhengd68fc572010-05-16 10:49:58 -04002275 spin_lock(&root->orphan_lock);
Josef Bacik8a35d952012-05-23 14:26:42 -04002276 if (test_and_clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2277 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04002278 delete_item = 1;
Josef Bacik7b128762008-07-24 12:17:14 -04002279
Josef Bacik72ac3c02012-05-23 14:13:11 -04002280 if (test_and_clear_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
2281 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04002282 release_rsv = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002283 spin_unlock(&root->orphan_lock);
2284
2285 if (trans && delete_item) {
Li Zefan33345d012011-04-20 10:31:50 +08002286 ret = btrfs_del_orphan_item(trans, root, btrfs_ino(inode));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002287 BUG_ON(ret); /* -ENOMEM or corruption (JDM: Recheck) */
Josef Bacik7b128762008-07-24 12:17:14 -04002288 }
2289
Josef Bacik8a35d952012-05-23 14:26:42 -04002290 if (release_rsv) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04002291 btrfs_orphan_release_metadata(inode);
Josef Bacik8a35d952012-05-23 14:26:42 -04002292 atomic_dec(&root->orphan_inodes);
2293 }
Josef Bacik7b128762008-07-24 12:17:14 -04002294
Yan, Zhengd68fc572010-05-16 10:49:58 -04002295 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002296}
2297
2298/*
2299 * this cleans up any orphans that may be left on the list from the last use
2300 * of this root.
2301 */
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002302int btrfs_orphan_cleanup(struct btrfs_root *root)
Josef Bacik7b128762008-07-24 12:17:14 -04002303{
2304 struct btrfs_path *path;
2305 struct extent_buffer *leaf;
Josef Bacik7b128762008-07-24 12:17:14 -04002306 struct btrfs_key key, found_key;
2307 struct btrfs_trans_handle *trans;
2308 struct inode *inode;
Josef Bacik8f6d7f42011-09-26 15:55:20 -04002309 u64 last_objectid = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002310 int ret = 0, nr_unlink = 0, nr_truncate = 0;
2311
Yan, Zhengd68fc572010-05-16 10:49:58 -04002312 if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002313 return 0;
Yan, Zhengc71bf092009-11-12 09:34:40 +00002314
2315 path = btrfs_alloc_path();
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002316 if (!path) {
2317 ret = -ENOMEM;
2318 goto out;
2319 }
Josef Bacik7b128762008-07-24 12:17:14 -04002320 path->reada = -1;
2321
2322 key.objectid = BTRFS_ORPHAN_OBJECTID;
2323 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
2324 key.offset = (u64)-1;
2325
Josef Bacik7b128762008-07-24 12:17:14 -04002326 while (1) {
2327 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002328 if (ret < 0)
2329 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04002330
2331 /*
2332 * if ret == 0 means we found what we were searching for, which
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002333 * is weird, but possible, so only screw with path if we didn't
Josef Bacik7b128762008-07-24 12:17:14 -04002334 * find the key and see if we have stuff that matches
2335 */
2336 if (ret > 0) {
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002337 ret = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002338 if (path->slots[0] == 0)
2339 break;
2340 path->slots[0]--;
2341 }
2342
2343 /* pull out the item */
2344 leaf = path->nodes[0];
Josef Bacik7b128762008-07-24 12:17:14 -04002345 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2346
2347 /* make sure the item matches what we want */
2348 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
2349 break;
2350 if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY)
2351 break;
2352
2353 /* release the path since we're done with it */
David Sterbab3b4aa72011-04-21 01:20:15 +02002354 btrfs_release_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04002355
2356 /*
2357 * this is where we are basically btrfs_lookup, without the
2358 * crossing root thing. we store the inode number in the
2359 * offset of the orphan item.
2360 */
Josef Bacik8f6d7f42011-09-26 15:55:20 -04002361
2362 if (found_key.offset == last_objectid) {
2363 printk(KERN_ERR "btrfs: Error removing orphan entry, "
2364 "stopping orphan cleanup\n");
2365 ret = -EINVAL;
2366 goto out;
2367 }
2368
2369 last_objectid = found_key.offset;
2370
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002371 found_key.objectid = found_key.offset;
2372 found_key.type = BTRFS_INODE_ITEM_KEY;
2373 found_key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +00002374 inode = btrfs_iget(root->fs_info->sb, &found_key, root, NULL);
Josef Bacika8c9e572011-09-21 16:55:59 -04002375 ret = PTR_RET(inode);
2376 if (ret && ret != -ESTALE)
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002377 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04002378
Arne Jansenf8e9e0b2011-12-14 20:12:02 -05002379 if (ret == -ESTALE && root == root->fs_info->tree_root) {
2380 struct btrfs_root *dead_root;
2381 struct btrfs_fs_info *fs_info = root->fs_info;
2382 int is_dead_root = 0;
2383
2384 /*
2385 * this is an orphan in the tree root. Currently these
2386 * could come from 2 sources:
2387 * a) a snapshot deletion in progress
2388 * b) a free space cache inode
2389 * We need to distinguish those two, as the snapshot
2390 * orphan must not get deleted.
2391 * find_dead_roots already ran before us, so if this
2392 * is a snapshot deletion, we should find the root
2393 * in the dead_roots list
2394 */
2395 spin_lock(&fs_info->trans_lock);
2396 list_for_each_entry(dead_root, &fs_info->dead_roots,
2397 root_list) {
2398 if (dead_root->root_key.objectid ==
2399 found_key.objectid) {
2400 is_dead_root = 1;
2401 break;
2402 }
2403 }
2404 spin_unlock(&fs_info->trans_lock);
2405 if (is_dead_root) {
2406 /* prevent this orphan from being found again */
2407 key.offset = found_key.objectid - 1;
2408 continue;
2409 }
2410 }
Josef Bacika8c9e572011-09-21 16:55:59 -04002411 /*
2412 * Inode is already gone but the orphan item is still there,
2413 * kill the orphan item.
2414 */
2415 if (ret == -ESTALE) {
2416 trans = btrfs_start_transaction(root, 1);
2417 if (IS_ERR(trans)) {
2418 ret = PTR_ERR(trans);
2419 goto out;
2420 }
Josef Bacik8a35d952012-05-23 14:26:42 -04002421 printk(KERN_ERR "auto deleting %Lu\n",
2422 found_key.objectid);
Josef Bacika8c9e572011-09-21 16:55:59 -04002423 ret = btrfs_del_orphan_item(trans, root,
2424 found_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002425 BUG_ON(ret); /* -ENOMEM or corruption (JDM: Recheck) */
Josef Bacika8c9e572011-09-21 16:55:59 -04002426 btrfs_end_transaction(trans, root);
2427 continue;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002428 }
Josef Bacik7b128762008-07-24 12:17:14 -04002429
Josef Bacik7b128762008-07-24 12:17:14 -04002430 /*
2431 * add this inode to the orphan list so btrfs_orphan_del does
2432 * the proper thing when we hit it
2433 */
Josef Bacik8a35d952012-05-23 14:26:42 -04002434 set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2435 &BTRFS_I(inode)->runtime_flags);
Josef Bacik7b128762008-07-24 12:17:14 -04002436
Josef Bacik7b128762008-07-24 12:17:14 -04002437 /* if we have links, this was a truncate, lets do that */
2438 if (inode->i_nlink) {
Josef Bacika41ad392011-01-31 15:30:16 -05002439 if (!S_ISREG(inode->i_mode)) {
2440 WARN_ON(1);
2441 iput(inode);
2442 continue;
2443 }
Josef Bacik7b128762008-07-24 12:17:14 -04002444 nr_truncate++;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002445 ret = btrfs_truncate(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04002446 } else {
2447 nr_unlink++;
2448 }
2449
2450 /* this will do delete_inode and everything for us */
2451 iput(inode);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002452 if (ret)
2453 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04002454 }
Miao Xie3254c872011-11-10 20:45:05 -05002455 /* release the path since we're done with it */
2456 btrfs_release_path(path);
2457
Yan, Zhengd68fc572010-05-16 10:49:58 -04002458 root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE;
2459
2460 if (root->orphan_block_rsv)
2461 btrfs_block_rsv_release(root, root->orphan_block_rsv,
2462 (u64)-1);
2463
2464 if (root->orphan_block_rsv || root->orphan_item_inserted) {
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002465 trans = btrfs_join_transaction(root);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002466 if (!IS_ERR(trans))
2467 btrfs_end_transaction(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002468 }
Josef Bacik7b128762008-07-24 12:17:14 -04002469
2470 if (nr_unlink)
2471 printk(KERN_INFO "btrfs: unlinked %d orphans\n", nr_unlink);
2472 if (nr_truncate)
2473 printk(KERN_INFO "btrfs: truncated %d orphans\n", nr_truncate);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002474
2475out:
2476 if (ret)
2477 printk(KERN_CRIT "btrfs: could not do orphan cleanup %d\n", ret);
2478 btrfs_free_path(path);
2479 return ret;
Josef Bacik7b128762008-07-24 12:17:14 -04002480}
2481
Chris Masond352ac62008-09-29 15:18:18 -04002482/*
Chris Mason46a53cc2009-04-27 11:47:50 -04002483 * very simple check to peek ahead in the leaf looking for xattrs. If we
2484 * don't find any xattrs, we know there can't be any acls.
2485 *
2486 * slot is the slot the inode is in, objectid is the objectid of the inode
2487 */
2488static noinline int acls_after_inode_item(struct extent_buffer *leaf,
2489 int slot, u64 objectid)
2490{
2491 u32 nritems = btrfs_header_nritems(leaf);
2492 struct btrfs_key found_key;
2493 int scanned = 0;
2494
2495 slot++;
2496 while (slot < nritems) {
2497 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2498
2499 /* we found a different objectid, there must not be acls */
2500 if (found_key.objectid != objectid)
2501 return 0;
2502
2503 /* we found an xattr, assume we've got an acl */
2504 if (found_key.type == BTRFS_XATTR_ITEM_KEY)
2505 return 1;
2506
2507 /*
2508 * we found a key greater than an xattr key, there can't
2509 * be any acls later on
2510 */
2511 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
2512 return 0;
2513
2514 slot++;
2515 scanned++;
2516
2517 /*
2518 * it goes inode, inode backrefs, xattrs, extents,
2519 * so if there are a ton of hard links to an inode there can
2520 * be a lot of backrefs. Don't waste time searching too hard,
2521 * this is just an optimization
2522 */
2523 if (scanned >= 8)
2524 break;
2525 }
2526 /* we hit the end of the leaf before we found an xattr or
2527 * something larger than an xattr. We have to assume the inode
2528 * has acls
2529 */
2530 return 1;
2531}
2532
2533/*
Chris Masond352ac62008-09-29 15:18:18 -04002534 * read an inode from the btree into the in-memory inode
2535 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002536static void btrfs_read_locked_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002537{
2538 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002539 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002540 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -04002541 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -04002542 struct btrfs_root *root = BTRFS_I(inode)->root;
2543 struct btrfs_key location;
Chris Mason46a53cc2009-04-27 11:47:50 -04002544 int maybe_acls;
Josef Bacik618e21d2007-07-11 10:18:17 -04002545 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04002546 int ret;
Miao Xie2f7e33d2011-06-23 07:27:13 +00002547 bool filled = false;
2548
2549 ret = btrfs_fill_inode(inode, &rdev);
2550 if (!ret)
2551 filled = true;
Chris Mason39279cc2007-06-12 06:35:45 -04002552
2553 path = btrfs_alloc_path();
Mark Fasheh1748f842011-07-12 11:25:31 -07002554 if (!path)
2555 goto make_bad;
2556
Josef Bacikd90c7322011-05-17 09:50:54 -04002557 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002558 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05002559
Chris Mason39279cc2007-06-12 06:35:45 -04002560 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002561 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04002562 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -04002563
Chris Mason5f39d392007-10-15 16:14:19 -04002564 leaf = path->nodes[0];
Miao Xie2f7e33d2011-06-23 07:27:13 +00002565
2566 if (filled)
2567 goto cache_acl;
2568
Chris Mason5f39d392007-10-15 16:14:19 -04002569 inode_item = btrfs_item_ptr(leaf, path->slots[0],
2570 struct btrfs_inode_item);
Chris Mason5f39d392007-10-15 16:14:19 -04002571 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
Miklos Szeredibfe86842011-10-28 14:13:29 +02002572 set_nlink(inode, btrfs_inode_nlink(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002573 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
2574 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
Chris Masondbe674a2008-07-17 12:54:05 -04002575 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002576
2577 tspec = btrfs_inode_atime(inode_item);
2578 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2579 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2580
2581 tspec = btrfs_inode_mtime(inode_item);
2582 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2583 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2584
2585 tspec = btrfs_inode_ctime(inode_item);
2586 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2587 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2588
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002589 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04002590 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04002591 inode->i_version = btrfs_inode_sequence(leaf, inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04002592 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04002593 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002594 rdev = btrfs_inode_rdev(leaf, inode_item);
2595
Josef Bacikaec74772008-07-24 12:12:38 -04002596 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05002597 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Miao Xie2f7e33d2011-06-23 07:27:13 +00002598cache_acl:
Chris Mason46a53cc2009-04-27 11:47:50 -04002599 /*
2600 * try to precache a NULL acl entry for files that don't have
2601 * any xattrs or acls
2602 */
Li Zefan33345d012011-04-20 10:31:50 +08002603 maybe_acls = acls_after_inode_item(leaf, path->slots[0],
2604 btrfs_ino(inode));
Al Viro72c04902009-06-24 16:58:48 -04002605 if (!maybe_acls)
2606 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04002607
Chris Mason39279cc2007-06-12 06:35:45 -04002608 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002609
Chris Mason39279cc2007-06-12 06:35:45 -04002610 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04002611 case S_IFREG:
2612 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04002613 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05002614 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04002615 inode->i_fop = &btrfs_file_operations;
2616 inode->i_op = &btrfs_file_inode_operations;
2617 break;
2618 case S_IFDIR:
2619 inode->i_fop = &btrfs_dir_file_operations;
2620 if (root == root->fs_info->tree_root)
2621 inode->i_op = &btrfs_dir_ro_inode_operations;
2622 else
2623 inode->i_op = &btrfs_dir_inode_operations;
2624 break;
2625 case S_IFLNK:
2626 inode->i_op = &btrfs_symlink_inode_operations;
2627 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04002628 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04002629 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04002630 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05002631 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04002632 init_special_inode(inode, inode->i_mode, rdev);
2633 break;
Chris Mason39279cc2007-06-12 06:35:45 -04002634 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002635
2636 btrfs_update_iflags(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002637 return;
2638
2639make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04002640 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002641 make_bad_inode(inode);
2642}
2643
Chris Masond352ac62008-09-29 15:18:18 -04002644/*
2645 * given a leaf and an inode, copy the inode fields into the leaf
2646 */
Chris Masone02119d2008-09-05 16:13:11 -04002647static void fill_inode_item(struct btrfs_trans_handle *trans,
2648 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04002649 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04002650 struct inode *inode)
2651{
Chris Mason5f39d392007-10-15 16:14:19 -04002652 btrfs_set_inode_uid(leaf, item, inode->i_uid);
2653 btrfs_set_inode_gid(leaf, item, inode->i_gid);
Chris Masondbe674a2008-07-17 12:54:05 -04002654 btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size);
Chris Mason5f39d392007-10-15 16:14:19 -04002655 btrfs_set_inode_mode(leaf, item, inode->i_mode);
2656 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
2657
2658 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
2659 inode->i_atime.tv_sec);
2660 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
2661 inode->i_atime.tv_nsec);
2662
2663 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
2664 inode->i_mtime.tv_sec);
2665 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
2666 inode->i_mtime.tv_nsec);
2667
2668 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
2669 inode->i_ctime.tv_sec);
2670 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
2671 inode->i_ctime.tv_nsec);
2672
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002673 btrfs_set_inode_nbytes(leaf, item, inode_get_bytes(inode));
Chris Masone02119d2008-09-05 16:13:11 -04002674 btrfs_set_inode_generation(leaf, item, BTRFS_I(inode)->generation);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04002675 btrfs_set_inode_sequence(leaf, item, inode->i_version);
Chris Masone02119d2008-09-05 16:13:11 -04002676 btrfs_set_inode_transid(leaf, item, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002677 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -05002678 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Josef Bacikd82a6f12011-05-11 15:26:06 -04002679 btrfs_set_inode_block_group(leaf, item, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002680}
2681
Chris Masond352ac62008-09-29 15:18:18 -04002682/*
2683 * copy everything in the in-memory inode into the btree.
2684 */
Chris Mason21151332011-11-10 20:39:08 -05002685static noinline int btrfs_update_inode_item(struct btrfs_trans_handle *trans,
Chris Masond3977122009-01-05 21:25:51 -05002686 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002687{
2688 struct btrfs_inode_item *inode_item;
2689 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002690 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002691 int ret;
2692
2693 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08002694 if (!path)
2695 return -ENOMEM;
2696
Chris Masonb9473432009-03-13 11:00:37 -04002697 path->leave_spinning = 1;
Miao Xie16cdcec2011-04-22 18:12:22 +08002698 ret = btrfs_lookup_inode(trans, root, path, &BTRFS_I(inode)->location,
2699 1);
Chris Mason39279cc2007-06-12 06:35:45 -04002700 if (ret) {
2701 if (ret > 0)
2702 ret = -ENOENT;
2703 goto failed;
2704 }
2705
Chris Masonb4ce94d2009-02-04 09:25:08 -05002706 btrfs_unlock_up_safe(path, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002707 leaf = path->nodes[0];
2708 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Miao Xie16cdcec2011-04-22 18:12:22 +08002709 struct btrfs_inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -04002710
Chris Masone02119d2008-09-05 16:13:11 -04002711 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002712 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002713 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002714 ret = 0;
2715failed:
Chris Mason39279cc2007-06-12 06:35:45 -04002716 btrfs_free_path(path);
2717 return ret;
2718}
2719
Chris Masond352ac62008-09-29 15:18:18 -04002720/*
Chris Mason21151332011-11-10 20:39:08 -05002721 * copy everything in the in-memory inode into the btree.
2722 */
2723noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
2724 struct btrfs_root *root, struct inode *inode)
2725{
2726 int ret;
2727
2728 /*
2729 * If the inode is a free space inode, we can deadlock during commit
2730 * if we put it into the delayed code.
2731 *
2732 * The data relocation inode should also be directly updated
2733 * without delay
2734 */
2735 if (!btrfs_is_free_space_inode(root, inode)
2736 && root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID) {
Alexander Block8ea05e32012-07-25 17:35:53 +02002737 btrfs_update_root_times(trans, root);
2738
Chris Mason21151332011-11-10 20:39:08 -05002739 ret = btrfs_delayed_update_inode(trans, root, inode);
2740 if (!ret)
2741 btrfs_set_inode_last_trans(trans, inode);
2742 return ret;
2743 }
2744
2745 return btrfs_update_inode_item(trans, root, inode);
2746}
2747
2748static noinline int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans,
2749 struct btrfs_root *root, struct inode *inode)
2750{
2751 int ret;
2752
2753 ret = btrfs_update_inode(trans, root, inode);
2754 if (ret == -ENOSPC)
2755 return btrfs_update_inode_item(trans, root, inode);
2756 return ret;
2757}
2758
2759/*
Chris Masond352ac62008-09-29 15:18:18 -04002760 * unlink helper that gets used here in inode.c and in the tree logging
2761 * recovery code. It remove a link in a directory with a given name, and
2762 * also drops the back refs in the inode to the directory
2763 */
Al Viro92986792011-03-04 17:14:37 +00002764static int __btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2765 struct btrfs_root *root,
2766 struct inode *dir, struct inode *inode,
2767 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04002768{
2769 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04002770 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002771 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002772 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04002773 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04002774 u64 index;
Li Zefan33345d012011-04-20 10:31:50 +08002775 u64 ino = btrfs_ino(inode);
2776 u64 dir_ino = btrfs_ino(dir);
Chris Mason39279cc2007-06-12 06:35:45 -04002777
2778 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002779 if (!path) {
2780 ret = -ENOMEM;
Tsutomu Itoh554233a2011-02-03 03:16:25 +00002781 goto out;
Chris Mason54aa1f42007-06-22 14:16:25 -04002782 }
2783
Chris Masonb9473432009-03-13 11:00:37 -04002784 path->leave_spinning = 1;
Li Zefan33345d012011-04-20 10:31:50 +08002785 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Chris Mason39279cc2007-06-12 06:35:45 -04002786 name, name_len, -1);
2787 if (IS_ERR(di)) {
2788 ret = PTR_ERR(di);
2789 goto err;
2790 }
2791 if (!di) {
2792 ret = -ENOENT;
2793 goto err;
2794 }
Chris Mason5f39d392007-10-15 16:14:19 -04002795 leaf = path->nodes[0];
2796 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04002797 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04002798 if (ret)
2799 goto err;
David Sterbab3b4aa72011-04-21 01:20:15 +02002800 btrfs_release_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002801
Li Zefan33345d012011-04-20 10:31:50 +08002802 ret = btrfs_del_inode_ref(trans, root, name, name_len, ino,
2803 dir_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04002804 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05002805 printk(KERN_INFO "btrfs failed to delete reference to %.*s, "
Li Zefan33345d012011-04-20 10:31:50 +08002806 "inode %llu parent %llu\n", name_len, name,
2807 (unsigned long long)ino, (unsigned long long)dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002808 btrfs_abort_transaction(trans, root, ret);
Josef Bacikaec74772008-07-24 12:12:38 -04002809 goto err;
2810 }
2811
Miao Xie16cdcec2011-04-22 18:12:22 +08002812 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002813 if (ret) {
2814 btrfs_abort_transaction(trans, root, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04002815 goto err;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002816 }
Chris Mason39279cc2007-06-12 06:35:45 -04002817
Chris Masone02119d2008-09-05 16:13:11 -04002818 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
Li Zefan33345d012011-04-20 10:31:50 +08002819 inode, dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002820 if (ret != 0 && ret != -ENOENT) {
2821 btrfs_abort_transaction(trans, root, ret);
2822 goto err;
2823 }
Chris Masone02119d2008-09-05 16:13:11 -04002824
2825 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
2826 dir, index);
Chris Mason6418c962010-10-30 07:34:24 -04002827 if (ret == -ENOENT)
2828 ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002829err:
2830 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002831 if (ret)
2832 goto out;
2833
2834 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04002835 inode_inc_iversion(inode);
2836 inode_inc_iversion(dir);
Chris Masone02119d2008-09-05 16:13:11 -04002837 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
2838 btrfs_update_inode(trans, root, dir);
Chris Masone02119d2008-09-05 16:13:11 -04002839out:
Chris Mason39279cc2007-06-12 06:35:45 -04002840 return ret;
2841}
2842
Al Viro92986792011-03-04 17:14:37 +00002843int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2844 struct btrfs_root *root,
2845 struct inode *dir, struct inode *inode,
2846 const char *name, int name_len)
2847{
2848 int ret;
2849 ret = __btrfs_unlink_inode(trans, root, dir, inode, name, name_len);
2850 if (!ret) {
2851 btrfs_drop_nlink(inode);
2852 ret = btrfs_update_inode(trans, root, inode);
2853 }
2854 return ret;
2855}
2856
2857
Yan, Zhenga22285a2010-05-16 10:48:46 -04002858/* helper to check if there is any shared block in the path */
2859static int check_path_shared(struct btrfs_root *root,
2860 struct btrfs_path *path)
2861{
2862 struct extent_buffer *eb;
2863 int level;
Dan Carpenter0e4dcbef2010-06-01 08:23:11 +00002864 u64 refs = 1;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002865
2866 for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
Josef Bacikdedefd72011-01-24 21:43:18 +00002867 int ret;
2868
Yan, Zhenga22285a2010-05-16 10:48:46 -04002869 if (!path->nodes[level])
2870 break;
2871 eb = path->nodes[level];
2872 if (!btrfs_block_can_be_shared(root, eb))
2873 continue;
2874 ret = btrfs_lookup_extent_info(NULL, root, eb->start, eb->len,
2875 &refs, NULL);
2876 if (refs > 1)
2877 return 1;
2878 }
Josef Bacikdedefd72011-01-24 21:43:18 +00002879 return 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002880}
2881
2882/*
2883 * helper to start transaction for unlink and rmdir.
2884 *
2885 * unlink and rmdir are special in btrfs, they do not always free space.
2886 * so in enospc case, we should make sure they will free space before
2887 * allowing them to use the global metadata reservation.
2888 */
2889static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir,
2890 struct dentry *dentry)
2891{
2892 struct btrfs_trans_handle *trans;
2893 struct btrfs_root *root = BTRFS_I(dir)->root;
2894 struct btrfs_path *path;
2895 struct btrfs_inode_ref *ref;
2896 struct btrfs_dir_item *di;
2897 struct inode *inode = dentry->d_inode;
2898 u64 index;
2899 int check_link = 1;
2900 int err = -ENOSPC;
2901 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08002902 u64 ino = btrfs_ino(inode);
2903 u64 dir_ino = btrfs_ino(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002904
Josef Bacike70bea52011-10-11 14:18:24 -04002905 /*
2906 * 1 for the possible orphan item
2907 * 1 for the dir item
2908 * 1 for the dir index
2909 * 1 for the inode ref
2910 * 1 for the inode ref in the tree log
2911 * 2 for the dir entries in the log
2912 * 1 for the inode
2913 */
2914 trans = btrfs_start_transaction(root, 8);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002915 if (!IS_ERR(trans) || PTR_ERR(trans) != -ENOSPC)
2916 return trans;
2917
Li Zefan33345d012011-04-20 10:31:50 +08002918 if (ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhenga22285a2010-05-16 10:48:46 -04002919 return ERR_PTR(-ENOSPC);
2920
2921 /* check if there is someone else holds reference */
2922 if (S_ISDIR(inode->i_mode) && atomic_read(&inode->i_count) > 1)
2923 return ERR_PTR(-ENOSPC);
2924
2925 if (atomic_read(&inode->i_count) > 2)
2926 return ERR_PTR(-ENOSPC);
2927
2928 if (xchg(&root->fs_info->enospc_unlink, 1))
2929 return ERR_PTR(-ENOSPC);
2930
2931 path = btrfs_alloc_path();
2932 if (!path) {
2933 root->fs_info->enospc_unlink = 0;
2934 return ERR_PTR(-ENOMEM);
2935 }
2936
Josef Bacik3880a1b2011-10-14 14:46:51 -04002937 /* 1 for the orphan item */
2938 trans = btrfs_start_transaction(root, 1);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002939 if (IS_ERR(trans)) {
2940 btrfs_free_path(path);
2941 root->fs_info->enospc_unlink = 0;
2942 return trans;
2943 }
2944
2945 path->skip_locking = 1;
2946 path->search_commit_root = 1;
2947
2948 ret = btrfs_lookup_inode(trans, root, path,
2949 &BTRFS_I(dir)->location, 0);
2950 if (ret < 0) {
2951 err = ret;
2952 goto out;
2953 }
2954 if (ret == 0) {
2955 if (check_path_shared(root, path))
2956 goto out;
2957 } else {
2958 check_link = 0;
2959 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002960 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002961
2962 ret = btrfs_lookup_inode(trans, root, path,
2963 &BTRFS_I(inode)->location, 0);
2964 if (ret < 0) {
2965 err = ret;
2966 goto out;
2967 }
2968 if (ret == 0) {
2969 if (check_path_shared(root, path))
2970 goto out;
2971 } else {
2972 check_link = 0;
2973 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002974 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002975
2976 if (ret == 0 && S_ISREG(inode->i_mode)) {
2977 ret = btrfs_lookup_file_extent(trans, root, path,
Li Zefan33345d012011-04-20 10:31:50 +08002978 ino, (u64)-1, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002979 if (ret < 0) {
2980 err = ret;
2981 goto out;
2982 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002983 BUG_ON(ret == 0); /* Corruption */
Yan, Zhenga22285a2010-05-16 10:48:46 -04002984 if (check_path_shared(root, path))
2985 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +02002986 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002987 }
2988
2989 if (!check_link) {
2990 err = 0;
2991 goto out;
2992 }
2993
Li Zefan33345d012011-04-20 10:31:50 +08002994 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zhenga22285a2010-05-16 10:48:46 -04002995 dentry->d_name.name, dentry->d_name.len, 0);
2996 if (IS_ERR(di)) {
2997 err = PTR_ERR(di);
2998 goto out;
2999 }
3000 if (di) {
3001 if (check_path_shared(root, path))
3002 goto out;
3003 } else {
3004 err = 0;
3005 goto out;
3006 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003007 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003008
3009 ref = btrfs_lookup_inode_ref(trans, root, path,
3010 dentry->d_name.name, dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08003011 ino, dir_ino, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003012 if (IS_ERR(ref)) {
3013 err = PTR_ERR(ref);
3014 goto out;
3015 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003016 BUG_ON(!ref); /* Logic error */
Yan, Zhenga22285a2010-05-16 10:48:46 -04003017 if (check_path_shared(root, path))
3018 goto out;
3019 index = btrfs_inode_ref_index(path->nodes[0], ref);
David Sterbab3b4aa72011-04-21 01:20:15 +02003020 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003021
Miao Xie16cdcec2011-04-22 18:12:22 +08003022 /*
3023 * This is a commit root search, if we can lookup inode item and other
3024 * relative items in the commit root, it means the transaction of
3025 * dir/file creation has been committed, and the dir index item that we
3026 * delay to insert has also been inserted into the commit root. So
3027 * we needn't worry about the delayed insertion of the dir index item
3028 * here.
3029 */
Li Zefan33345d012011-04-20 10:31:50 +08003030 di = btrfs_lookup_dir_index_item(trans, root, path, dir_ino, index,
Yan, Zhenga22285a2010-05-16 10:48:46 -04003031 dentry->d_name.name, dentry->d_name.len, 0);
3032 if (IS_ERR(di)) {
3033 err = PTR_ERR(di);
3034 goto out;
3035 }
3036 BUG_ON(ret == -ENOENT);
3037 if (check_path_shared(root, path))
3038 goto out;
3039
3040 err = 0;
3041out:
3042 btrfs_free_path(path);
Josef Bacik3880a1b2011-10-14 14:46:51 -04003043 /* Migrate the orphan reservation over */
3044 if (!err)
3045 err = btrfs_block_rsv_migrate(trans->block_rsv,
3046 &root->fs_info->global_block_rsv,
Josef Bacik5a77d762011-11-01 14:32:23 -04003047 trans->bytes_reserved);
Josef Bacik3880a1b2011-10-14 14:46:51 -04003048
Yan, Zhenga22285a2010-05-16 10:48:46 -04003049 if (err) {
3050 btrfs_end_transaction(trans, root);
3051 root->fs_info->enospc_unlink = 0;
3052 return ERR_PTR(err);
3053 }
3054
3055 trans->block_rsv = &root->fs_info->global_block_rsv;
3056 return trans;
3057}
3058
3059static void __unlink_end_trans(struct btrfs_trans_handle *trans,
3060 struct btrfs_root *root)
3061{
3062 if (trans->block_rsv == &root->fs_info->global_block_rsv) {
Josef Bacik5a77d762011-11-01 14:32:23 -04003063 btrfs_block_rsv_release(root, trans->block_rsv,
3064 trans->bytes_reserved);
3065 trans->block_rsv = &root->fs_info->trans_block_rsv;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003066 BUG_ON(!root->fs_info->enospc_unlink);
3067 root->fs_info->enospc_unlink = 0;
3068 }
Josef Bacik7ad85bb2012-01-12 19:10:12 -05003069 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003070}
3071
Chris Mason39279cc2007-06-12 06:35:45 -04003072static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
3073{
Yan, Zhenga22285a2010-05-16 10:48:46 -04003074 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003075 struct btrfs_trans_handle *trans;
Josef Bacik7b128762008-07-24 12:17:14 -04003076 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04003077 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05003078 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003079
Yan, Zhenga22285a2010-05-16 10:48:46 -04003080 trans = __unlink_start_trans(dir, dentry);
3081 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003082 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04003083
Chris Mason12fcfd22009-03-24 10:24:20 -04003084 btrfs_record_unlink_dir(trans, dir, dentry->d_inode, 0);
3085
Chris Masone02119d2008-09-05 16:13:11 -04003086 ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
3087 dentry->d_name.name, dentry->d_name.len);
Tsutomu Itohb5324022011-07-19 07:27:20 +00003088 if (ret)
3089 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003090
Yan, Zhenga22285a2010-05-16 10:48:46 -04003091 if (inode->i_nlink == 0) {
Josef Bacik7b128762008-07-24 12:17:14 -04003092 ret = btrfs_orphan_add(trans, inode);
Tsutomu Itohb5324022011-07-19 07:27:20 +00003093 if (ret)
3094 goto out;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003095 }
Josef Bacik7b128762008-07-24 12:17:14 -04003096
Tsutomu Itohb5324022011-07-19 07:27:20 +00003097out:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003098 nr = trans->blocks_used;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003099 __unlink_end_trans(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003100 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003101 return ret;
3102}
3103
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003104int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
3105 struct btrfs_root *root,
3106 struct inode *dir, u64 objectid,
3107 const char *name, int name_len)
3108{
3109 struct btrfs_path *path;
3110 struct extent_buffer *leaf;
3111 struct btrfs_dir_item *di;
3112 struct btrfs_key key;
3113 u64 index;
3114 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08003115 u64 dir_ino = btrfs_ino(dir);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003116
3117 path = btrfs_alloc_path();
3118 if (!path)
3119 return -ENOMEM;
3120
Li Zefan33345d012011-04-20 10:31:50 +08003121 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003122 name, name_len, -1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003123 if (IS_ERR_OR_NULL(di)) {
3124 if (!di)
3125 ret = -ENOENT;
3126 else
3127 ret = PTR_ERR(di);
3128 goto out;
3129 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003130
3131 leaf = path->nodes[0];
3132 btrfs_dir_item_key_to_cpu(leaf, di, &key);
3133 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
3134 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003135 if (ret) {
3136 btrfs_abort_transaction(trans, root, ret);
3137 goto out;
3138 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003139 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003140
3141 ret = btrfs_del_root_ref(trans, root->fs_info->tree_root,
3142 objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08003143 dir_ino, &index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003144 if (ret < 0) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003145 if (ret != -ENOENT) {
3146 btrfs_abort_transaction(trans, root, ret);
3147 goto out;
3148 }
Li Zefan33345d012011-04-20 10:31:50 +08003149 di = btrfs_search_dir_index_item(root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003150 name, name_len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003151 if (IS_ERR_OR_NULL(di)) {
3152 if (!di)
3153 ret = -ENOENT;
3154 else
3155 ret = PTR_ERR(di);
3156 btrfs_abort_transaction(trans, root, ret);
3157 goto out;
3158 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003159
3160 leaf = path->nodes[0];
3161 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02003162 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003163 index = key.offset;
3164 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003165 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003166
Miao Xie16cdcec2011-04-22 18:12:22 +08003167 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003168 if (ret) {
3169 btrfs_abort_transaction(trans, root, ret);
3170 goto out;
3171 }
Miao Xie16cdcec2011-04-22 18:12:22 +08003172
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003173 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04003174 inode_inc_iversion(dir);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003175 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
3176 ret = btrfs_update_inode(trans, root, dir);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003177 if (ret)
3178 btrfs_abort_transaction(trans, root, ret);
3179out:
Josef Bacik71d7aed2011-06-14 14:24:32 -04003180 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003181 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003182}
3183
Chris Mason39279cc2007-06-12 06:35:45 -04003184static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
3185{
3186 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05003187 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003188 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003189 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -05003190 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003191
Chris Mason3394e162008-11-17 20:42:26 -05003192 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE ||
Li Zefan33345d012011-04-20 10:31:50 +08003193 btrfs_ino(inode) == BTRFS_FIRST_FREE_OBJECTID)
Yan134d4512007-10-25 15:49:25 -04003194 return -ENOTEMPTY;
3195
Yan, Zhenga22285a2010-05-16 10:48:46 -04003196 trans = __unlink_start_trans(dir, dentry);
3197 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003198 return PTR_ERR(trans);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003199
Li Zefan33345d012011-04-20 10:31:50 +08003200 if (unlikely(btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003201 err = btrfs_unlink_subvol(trans, root, dir,
3202 BTRFS_I(inode)->location.objectid,
3203 dentry->d_name.name,
3204 dentry->d_name.len);
3205 goto out;
3206 }
3207
Josef Bacik7b128762008-07-24 12:17:14 -04003208 err = btrfs_orphan_add(trans, inode);
3209 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003210 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003211
Chris Mason39279cc2007-06-12 06:35:45 -04003212 /* now the directory is empty */
Chris Masone02119d2008-09-05 16:13:11 -04003213 err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
3214 dentry->d_name.name, dentry->d_name.len);
Chris Masond3977122009-01-05 21:25:51 -05003215 if (!err)
Chris Masondbe674a2008-07-17 12:54:05 -04003216 btrfs_i_size_write(inode, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003217out:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003218 nr = trans->blocks_used;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003219 __unlink_end_trans(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003220 btrfs_btree_balance_dirty(root, nr);
Chris Mason39544012007-12-12 14:38:19 -05003221
Chris Mason39279cc2007-06-12 06:35:45 -04003222 return err;
3223}
3224
Chris Mason323ac952008-10-01 19:05:46 -04003225/*
Chris Mason39279cc2007-06-12 06:35:45 -04003226 * this can truncate away extent items, csum items and directory items.
3227 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04003228 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04003229 *
3230 * csum items that cross the new i_size are truncated to the new size
3231 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04003232 *
3233 * min_type is the minimum key type to truncate down to. If set to 0, this
3234 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04003235 */
Yan, Zheng80825102009-11-12 09:35:36 +00003236int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
3237 struct btrfs_root *root,
3238 struct inode *inode,
3239 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003240{
Chris Mason39279cc2007-06-12 06:35:45 -04003241 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003242 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003243 struct btrfs_file_extent_item *fi;
Yan, Zheng80825102009-11-12 09:35:36 +00003244 struct btrfs_key key;
3245 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04003246 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04003247 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003248 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003249 u64 item_end = 0;
Yan, Zheng80825102009-11-12 09:35:36 +00003250 u64 mask = root->sectorsize - 1;
3251 u32 found_type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -04003252 int found_extent;
3253 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05003254 int pending_del_nr = 0;
3255 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04003256 int extent_type = -1;
Yan, Zheng80825102009-11-12 09:35:36 +00003257 int ret;
3258 int err = 0;
Li Zefan33345d012011-04-20 10:31:50 +08003259 u64 ino = btrfs_ino(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003260
3261 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04003262
Mark Fasheh0eb0e192011-07-12 16:44:10 -07003263 path = btrfs_alloc_path();
3264 if (!path)
3265 return -ENOMEM;
3266 path->reada = -1;
3267
Josef Bacik0af3d002010-06-21 14:48:16 -04003268 if (root->ref_cows || root == root->fs_info->tree_root)
Zheng Yan5b21f2e2008-09-26 10:05:38 -04003269 btrfs_drop_extent_cache(inode, new_size & (~mask), (u64)-1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003270
Miao Xie16cdcec2011-04-22 18:12:22 +08003271 /*
3272 * This function is also used to drop the items in the log tree before
3273 * we relog the inode, so if root != BTRFS_I(inode)->root, it means
3274 * it is used to drop the loged items. So we shouldn't kill the delayed
3275 * items.
3276 */
3277 if (min_type == 0 && root == BTRFS_I(inode)->root)
3278 btrfs_kill_delayed_inode_items(inode);
3279
Li Zefan33345d012011-04-20 10:31:50 +08003280 key.objectid = ino;
Chris Mason39279cc2007-06-12 06:35:45 -04003281 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04003282 key.type = (u8)-1;
3283
Chris Mason85e21ba2008-01-29 15:11:36 -05003284search_again:
Chris Masonb9473432009-03-13 11:00:37 -04003285 path->leave_spinning = 1;
Chris Mason85e21ba2008-01-29 15:11:36 -05003286 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Yan, Zheng80825102009-11-12 09:35:36 +00003287 if (ret < 0) {
3288 err = ret;
3289 goto out;
3290 }
Chris Masond3977122009-01-05 21:25:51 -05003291
Chris Mason85e21ba2008-01-29 15:11:36 -05003292 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003293 /* there are no items in the tree for us to truncate, we're
3294 * done
3295 */
Yan, Zheng80825102009-11-12 09:35:36 +00003296 if (path->slots[0] == 0)
3297 goto out;
Chris Mason85e21ba2008-01-29 15:11:36 -05003298 path->slots[0]--;
3299 }
3300
Chris Masond3977122009-01-05 21:25:51 -05003301 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04003302 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04003303 leaf = path->nodes[0];
3304 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3305 found_type = btrfs_key_type(&found_key);
Chris Mason39279cc2007-06-12 06:35:45 -04003306
Li Zefan33345d012011-04-20 10:31:50 +08003307 if (found_key.objectid != ino)
Chris Mason39279cc2007-06-12 06:35:45 -04003308 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003309
Chris Mason85e21ba2008-01-29 15:11:36 -05003310 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003311 break;
3312
Chris Mason5f39d392007-10-15 16:14:19 -04003313 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04003314 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04003315 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04003316 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04003317 extent_type = btrfs_file_extent_type(leaf, fi);
3318 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04003319 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04003320 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04003321 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04003322 item_end += btrfs_file_extent_inline_len(leaf,
Chris Masonc8b97812008-10-29 14:49:59 -04003323 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003324 }
Yan008630c2007-11-07 13:31:09 -05003325 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04003326 }
Yan, Zheng80825102009-11-12 09:35:36 +00003327 if (found_type > min_type) {
Chris Mason39279cc2007-06-12 06:35:45 -04003328 del_item = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00003329 } else {
3330 if (item_end < new_size)
3331 break;
3332 if (found_key.offset >= new_size)
3333 del_item = 1;
3334 else
3335 del_item = 0;
3336 }
Chris Mason39279cc2007-06-12 06:35:45 -04003337 found_extent = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003338 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04003339 if (found_type != BTRFS_EXTENT_DATA_KEY)
3340 goto delete;
3341
3342 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04003343 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04003344 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Miao Xief70a9a6b2012-01-12 19:10:12 -05003345 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -04003346 u64 orig_num_bytes =
3347 btrfs_file_extent_num_bytes(leaf, fi);
Chris Masone02119d2008-09-05 16:13:11 -04003348 extent_num_bytes = new_size -
Chris Mason5f39d392007-10-15 16:14:19 -04003349 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -05003350 extent_num_bytes = extent_num_bytes &
3351 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04003352 btrfs_set_file_extent_num_bytes(leaf, fi,
3353 extent_num_bytes);
3354 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05003355 extent_num_bytes);
Chris Masone02119d2008-09-05 16:13:11 -04003356 if (root->ref_cows && extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003357 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04003358 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003359 } else {
Chris Masondb945352007-10-15 16:15:53 -04003360 extent_num_bytes =
3361 btrfs_file_extent_disk_num_bytes(leaf,
3362 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003363 extent_offset = found_key.offset -
3364 btrfs_file_extent_offset(leaf, fi);
3365
Chris Mason39279cc2007-06-12 06:35:45 -04003366 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05003367 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003368 if (extent_start != 0) {
3369 found_extent = 1;
Chris Masone02119d2008-09-05 16:13:11 -04003370 if (root->ref_cows)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003371 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04003372 }
3373 }
Chris Mason90692182008-02-08 13:49:28 -05003374 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003375 /*
3376 * we can't truncate inline items that have had
3377 * special encodings
3378 */
3379 if (!del_item &&
3380 btrfs_file_extent_compression(leaf, fi) == 0 &&
3381 btrfs_file_extent_encryption(leaf, fi) == 0 &&
3382 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003383 u32 size = new_size - found_key.offset;
3384
3385 if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003386 inode_sub_bytes(inode, item_end + 1 -
3387 new_size);
Chris Masone02119d2008-09-05 16:13:11 -04003388 }
3389 size =
3390 btrfs_file_extent_calc_inline_size(size);
Jeff Mahoney143bede2012-03-01 14:56:26 +01003391 btrfs_truncate_item(trans, root, path,
3392 size, 1);
Chris Masone02119d2008-09-05 16:13:11 -04003393 } else if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003394 inode_sub_bytes(inode, item_end + 1 -
3395 found_key.offset);
Chris Mason90692182008-02-08 13:49:28 -05003396 }
Chris Mason39279cc2007-06-12 06:35:45 -04003397 }
Chris Mason179e29e2007-11-01 11:28:41 -04003398delete:
Chris Mason39279cc2007-06-12 06:35:45 -04003399 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05003400 if (!pending_del_nr) {
3401 /* no pending yet, add ourselves */
3402 pending_del_slot = path->slots[0];
3403 pending_del_nr = 1;
3404 } else if (pending_del_nr &&
3405 path->slots[0] + 1 == pending_del_slot) {
3406 /* hop on the pending chunk */
3407 pending_del_nr++;
3408 pending_del_slot = path->slots[0];
3409 } else {
Chris Masond3977122009-01-05 21:25:51 -05003410 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05003411 }
Chris Mason39279cc2007-06-12 06:35:45 -04003412 } else {
3413 break;
3414 }
Josef Bacik0af3d002010-06-21 14:48:16 -04003415 if (found_extent && (root->ref_cows ||
3416 root == root->fs_info->tree_root)) {
Chris Masonb9473432009-03-13 11:00:37 -04003417 btrfs_set_path_blocking(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003418 ret = btrfs_free_extent(trans, root, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003419 extent_num_bytes, 0,
3420 btrfs_header_owner(leaf),
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003421 ino, extent_offset, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04003422 BUG_ON(ret);
3423 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003424
Yan, Zheng80825102009-11-12 09:35:36 +00003425 if (found_type == BTRFS_INODE_ITEM_KEY)
3426 break;
3427
3428 if (path->slots[0] == 0 ||
3429 path->slots[0] != pending_del_slot) {
Li Zefan82d59022011-04-20 10:33:24 +08003430 if (root->ref_cows &&
3431 BTRFS_I(inode)->location.objectid !=
3432 BTRFS_FREE_INO_OBJECTID) {
Yan, Zheng80825102009-11-12 09:35:36 +00003433 err = -EAGAIN;
3434 goto out;
3435 }
3436 if (pending_del_nr) {
3437 ret = btrfs_del_items(trans, root, path,
3438 pending_del_slot,
3439 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003440 if (ret) {
3441 btrfs_abort_transaction(trans,
3442 root, ret);
3443 goto error;
3444 }
Yan, Zheng80825102009-11-12 09:35:36 +00003445 pending_del_nr = 0;
3446 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003447 btrfs_release_path(path);
Chris Mason85e21ba2008-01-29 15:11:36 -05003448 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00003449 } else {
3450 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05003451 }
Chris Mason39279cc2007-06-12 06:35:45 -04003452 }
Yan, Zheng80825102009-11-12 09:35:36 +00003453out:
Chris Mason85e21ba2008-01-29 15:11:36 -05003454 if (pending_del_nr) {
3455 ret = btrfs_del_items(trans, root, path, pending_del_slot,
3456 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003457 if (ret)
3458 btrfs_abort_transaction(trans, root, ret);
Chris Mason85e21ba2008-01-29 15:11:36 -05003459 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003460error:
Chris Mason39279cc2007-06-12 06:35:45 -04003461 btrfs_free_path(path);
Yan, Zheng80825102009-11-12 09:35:36 +00003462 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003463}
3464
Chris Masona52d9a82007-08-27 16:49:44 -04003465/*
3466 * taken from block_truncate_page, but does cow as it zeros out
3467 * any bytes left in the last page in the file.
3468 */
3469static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
3470{
3471 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -04003472 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003473 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
3474 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003475 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003476 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04003477 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04003478 pgoff_t index = from >> PAGE_CACHE_SHIFT;
3479 unsigned offset = from & (PAGE_CACHE_SIZE-1);
3480 struct page *page;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04003481 gfp_t mask = btrfs_alloc_write_mask(mapping);
Chris Masona52d9a82007-08-27 16:49:44 -04003482 int ret = 0;
3483 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003484 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04003485
3486 if ((offset & (blocksize - 1)) == 0)
3487 goto out;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003488 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003489 if (ret)
3490 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003491
3492 ret = -ENOMEM;
Chris Mason211c17f2008-05-15 09:13:45 -04003493again:
Josef Bacik3b16a4e2011-09-21 15:05:58 -04003494 page = find_or_create_page(mapping, index, mask);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003495 if (!page) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003496 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Masona52d9a82007-08-27 16:49:44 -04003497 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04003498 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003499
3500 page_start = page_offset(page);
3501 page_end = page_start + PAGE_CACHE_SIZE - 1;
3502
Chris Masona52d9a82007-08-27 16:49:44 -04003503 if (!PageUptodate(page)) {
3504 ret = btrfs_readpage(NULL, page);
3505 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04003506 if (page->mapping != mapping) {
3507 unlock_page(page);
3508 page_cache_release(page);
3509 goto again;
3510 }
Chris Masona52d9a82007-08-27 16:49:44 -04003511 if (!PageUptodate(page)) {
3512 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04003513 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04003514 }
3515 }
Chris Mason211c17f2008-05-15 09:13:45 -04003516 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003517
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003518 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003519 set_page_extent_mapped(page);
3520
3521 ordered = btrfs_lookup_ordered_extent(inode, page_start);
3522 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003523 unlock_extent_cached(io_tree, page_start, page_end,
3524 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003525 unlock_page(page);
3526 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04003527 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003528 btrfs_put_ordered_extent(ordered);
3529 goto again;
3530 }
3531
Josef Bacik2ac55d42010-02-03 19:33:23 +00003532 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Josef Bacik5d5e1032009-10-13 16:46:49 -04003533 EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003534 0, 0, &cached_state, GFP_NOFS);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003535
Josef Bacik2ac55d42010-02-03 19:33:23 +00003536 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
3537 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003538 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003539 unlock_extent_cached(io_tree, page_start, page_end,
3540 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003541 goto out_unlock;
3542 }
3543
Chris Masone6dcd2d2008-07-17 12:53:50 -04003544 ret = 0;
3545 if (offset != PAGE_CACHE_SIZE) {
3546 kaddr = kmap(page);
3547 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
3548 flush_dcache_page(page);
3549 kunmap(page);
3550 }
Chris Mason247e7432008-07-17 12:53:51 -04003551 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003552 set_page_dirty(page);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003553 unlock_extent_cached(io_tree, page_start, page_end, &cached_state,
3554 GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04003555
Chris Mason89642222008-07-24 09:41:53 -04003556out_unlock:
Josef Bacik5d5e1032009-10-13 16:46:49 -04003557 if (ret)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003558 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason39279cc2007-06-12 06:35:45 -04003559 unlock_page(page);
3560 page_cache_release(page);
3561out:
3562 return ret;
3563}
3564
Josef Bacik695a0d02011-03-04 15:46:53 -05003565/*
3566 * This function puts in dummy file extents for the area we're creating a hole
3567 * for. So if we are truncating this file to a larger size we need to insert
3568 * these file extents so that btrfs_get_extent will return a EXTENT_MAP_HOLE for
3569 * the range between oldsize and size
3570 */
Josef Bacika41ad392011-01-31 15:30:16 -05003571int btrfs_cont_expand(struct inode *inode, loff_t oldsize, loff_t size)
Yan Zheng9036c102008-10-30 14:19:41 -04003572{
3573 struct btrfs_trans_handle *trans;
3574 struct btrfs_root *root = BTRFS_I(inode)->root;
3575 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003576 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003577 struct extent_state *cached_state = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04003578 u64 mask = root->sectorsize - 1;
Josef Bacika41ad392011-01-31 15:30:16 -05003579 u64 hole_start = (oldsize + mask) & ~mask;
Yan Zheng9036c102008-10-30 14:19:41 -04003580 u64 block_end = (size + mask) & ~mask;
3581 u64 last_byte;
3582 u64 cur_offset;
3583 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003584 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003585
3586 if (size <= hole_start)
3587 return 0;
3588
Yan Zheng9036c102008-10-30 14:19:41 -04003589 while (1) {
3590 struct btrfs_ordered_extent *ordered;
3591 btrfs_wait_ordered_range(inode, hole_start,
3592 block_end - hole_start);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003593 lock_extent_bits(io_tree, hole_start, block_end - 1, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003594 &cached_state);
Yan Zheng9036c102008-10-30 14:19:41 -04003595 ordered = btrfs_lookup_ordered_extent(inode, hole_start);
3596 if (!ordered)
3597 break;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003598 unlock_extent_cached(io_tree, hole_start, block_end - 1,
3599 &cached_state, GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003600 btrfs_put_ordered_extent(ordered);
3601 }
3602
Yan Zheng9036c102008-10-30 14:19:41 -04003603 cur_offset = hole_start;
3604 while (1) {
3605 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
3606 block_end - cur_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003607 if (IS_ERR(em)) {
3608 err = PTR_ERR(em);
3609 break;
3610 }
Yan Zheng9036c102008-10-30 14:19:41 -04003611 last_byte = min(extent_map_end(em), block_end);
3612 last_byte = (last_byte + mask) & ~mask;
Yan, Zheng80825102009-11-12 09:35:36 +00003613 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Chris Mason771ed682008-11-06 22:02:51 -05003614 u64 hint_byte = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003615 hole_size = last_byte - cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00003616
Miao Xie36423202011-12-14 20:12:02 -05003617 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003618 if (IS_ERR(trans)) {
3619 err = PTR_ERR(trans);
Chris Mason771ed682008-11-06 22:02:51 -05003620 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003621 }
Yan, Zheng80825102009-11-12 09:35:36 +00003622
3623 err = btrfs_drop_extents(trans, inode, cur_offset,
3624 cur_offset + hole_size,
3625 &hint_byte, 1);
Miao Xie5b397372011-09-11 10:52:24 -04003626 if (err) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003627 btrfs_abort_transaction(trans, root, err);
Miao Xie5b397372011-09-11 10:52:24 -04003628 btrfs_end_transaction(trans, root);
Josef Bacik3893e332011-01-31 16:03:11 -05003629 break;
Miao Xie5b397372011-09-11 10:52:24 -04003630 }
Josef Bacik9ed74f22009-09-11 16:12:44 -04003631
Yan Zheng9036c102008-10-30 14:19:41 -04003632 err = btrfs_insert_file_extent(trans, root,
Li Zefan33345d012011-04-20 10:31:50 +08003633 btrfs_ino(inode), cur_offset, 0,
Yan Zheng9036c102008-10-30 14:19:41 -04003634 0, hole_size, 0, hole_size,
3635 0, 0, 0);
Miao Xie5b397372011-09-11 10:52:24 -04003636 if (err) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003637 btrfs_abort_transaction(trans, root, err);
Miao Xie5b397372011-09-11 10:52:24 -04003638 btrfs_end_transaction(trans, root);
Josef Bacik3893e332011-01-31 16:03:11 -05003639 break;
Miao Xie5b397372011-09-11 10:52:24 -04003640 }
Yan, Zheng80825102009-11-12 09:35:36 +00003641
Yan Zheng9036c102008-10-30 14:19:41 -04003642 btrfs_drop_extent_cache(inode, hole_start,
3643 last_byte - 1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003644
Miao Xie36423202011-12-14 20:12:02 -05003645 btrfs_update_inode(trans, root, inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003646 btrfs_end_transaction(trans, root);
Yan Zheng9036c102008-10-30 14:19:41 -04003647 }
3648 free_extent_map(em);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003649 em = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04003650 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00003651 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04003652 break;
3653 }
3654
Yan, Zhenga22285a2010-05-16 10:48:46 -04003655 free_extent_map(em);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003656 unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state,
3657 GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003658 return err;
3659}
3660
Josef Bacika41ad392011-01-31 15:30:16 -05003661static int btrfs_setsize(struct inode *inode, loff_t newsize)
Yan, Zheng80825102009-11-12 09:35:36 +00003662{
Miao Xief4a2f4c2011-12-14 20:12:01 -05003663 struct btrfs_root *root = BTRFS_I(inode)->root;
3664 struct btrfs_trans_handle *trans;
Josef Bacika41ad392011-01-31 15:30:16 -05003665 loff_t oldsize = i_size_read(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003666 int ret;
3667
Josef Bacika41ad392011-01-31 15:30:16 -05003668 if (newsize == oldsize)
Yan, Zheng80825102009-11-12 09:35:36 +00003669 return 0;
3670
Josef Bacika41ad392011-01-31 15:30:16 -05003671 if (newsize > oldsize) {
Josef Bacika41ad392011-01-31 15:30:16 -05003672 truncate_pagecache(inode, oldsize, newsize);
3673 ret = btrfs_cont_expand(inode, oldsize, newsize);
Miao Xief4a2f4c2011-12-14 20:12:01 -05003674 if (ret)
Yan, Zheng80825102009-11-12 09:35:36 +00003675 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00003676
Miao Xief4a2f4c2011-12-14 20:12:01 -05003677 trans = btrfs_start_transaction(root, 1);
3678 if (IS_ERR(trans))
3679 return PTR_ERR(trans);
3680
3681 i_size_write(inode, newsize);
3682 btrfs_ordered_update_i_size(inode, i_size_read(inode), NULL);
3683 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik7ad85bb2012-01-12 19:10:12 -05003684 btrfs_end_transaction(trans, root);
Josef Bacika41ad392011-01-31 15:30:16 -05003685 } else {
Yan, Zheng80825102009-11-12 09:35:36 +00003686
Josef Bacika41ad392011-01-31 15:30:16 -05003687 /*
3688 * We're truncating a file that used to have good data down to
3689 * zero. Make sure it gets into the ordered flush list so that
3690 * any new writes get down to disk quickly.
3691 */
3692 if (newsize == 0)
Josef Bacik72ac3c02012-05-23 14:13:11 -04003693 set_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
3694 &BTRFS_I(inode)->runtime_flags);
Yan, Zheng80825102009-11-12 09:35:36 +00003695
Josef Bacika41ad392011-01-31 15:30:16 -05003696 /* we don't support swapfiles, so vmtruncate shouldn't fail */
3697 truncate_setsize(inode, newsize);
3698 ret = btrfs_truncate(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003699 }
3700
Josef Bacika41ad392011-01-31 15:30:16 -05003701 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00003702}
3703
Chris Mason39279cc2007-06-12 06:35:45 -04003704static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
3705{
3706 struct inode *inode = dentry->d_inode;
Li Zefanb83cc962010-12-20 16:04:08 +08003707 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003708 int err;
3709
Li Zefanb83cc962010-12-20 16:04:08 +08003710 if (btrfs_root_readonly(root))
3711 return -EROFS;
3712
Chris Mason39279cc2007-06-12 06:35:45 -04003713 err = inode_change_ok(inode, attr);
3714 if (err)
3715 return err;
3716
Chris Mason5a3f23d2009-03-31 13:27:11 -04003717 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Josef Bacika41ad392011-01-31 15:30:16 -05003718 err = btrfs_setsize(inode, attr->ia_size);
Yan, Zheng80825102009-11-12 09:35:36 +00003719 if (err)
3720 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003721 }
Yan Zheng9036c102008-10-30 14:19:41 -04003722
Christoph Hellwig10257742010-06-04 11:30:02 +02003723 if (attr->ia_valid) {
3724 setattr_copy(inode, attr);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04003725 inode_inc_iversion(inode);
Josef Bacik22c44fe2011-11-30 10:45:38 -05003726 err = btrfs_dirty_inode(inode);
Josef Bacik33268ea2008-07-24 12:16:36 -04003727
Josef Bacik22c44fe2011-11-30 10:45:38 -05003728 if (!err && attr->ia_valid & ATTR_MODE)
Christoph Hellwig10257742010-06-04 11:30:02 +02003729 err = btrfs_acl_chmod(inode);
3730 }
3731
Chris Mason39279cc2007-06-12 06:35:45 -04003732 return err;
3733}
Chris Mason61295eb2008-01-14 16:24:38 -05003734
Al Virobd555972010-06-07 11:35:40 -04003735void btrfs_evict_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003736{
3737 struct btrfs_trans_handle *trans;
3738 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik726c35f2011-09-26 15:46:06 -04003739 struct btrfs_block_rsv *rsv, *global_rsv;
Josef Bacik07127182011-08-19 10:29:59 -04003740 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003741 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04003742 int ret;
3743
liubo1abe9b82011-03-24 11:18:59 +00003744 trace_btrfs_inode_evict(inode);
3745
Chris Mason39279cc2007-06-12 06:35:45 -04003746 truncate_inode_pages(&inode->i_data, 0);
Josef Bacik0af3d002010-06-21 14:48:16 -04003747 if (inode->i_nlink && (btrfs_root_refs(&root->root_item) != 0 ||
Chris Mason2cf85722011-07-26 15:35:09 -04003748 btrfs_is_free_space_inode(root, inode)))
Al Virobd555972010-06-07 11:35:40 -04003749 goto no_delete;
3750
Chris Mason39279cc2007-06-12 06:35:45 -04003751 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04003752 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003753 goto no_delete;
3754 }
Al Virobd555972010-06-07 11:35:40 -04003755 /* do we really want it for ->i_nlink > 0 and zero btrfs_root_refs? */
Chris Mason4a096752008-07-21 10:29:44 -04003756 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04003757
Yan, Zhengc71bf092009-11-12 09:34:40 +00003758 if (root->fs_info->log_root_recovering) {
Liu Bo6bf02312012-06-25 21:59:09 -06003759 BUG_ON(test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
Josef Bacik8a35d952012-05-23 14:26:42 -04003760 &BTRFS_I(inode)->runtime_flags));
Yan, Zhengc71bf092009-11-12 09:34:40 +00003761 goto no_delete;
3762 }
3763
Yan, Zheng76dda932009-09-21 16:00:26 -04003764 if (inode->i_nlink > 0) {
3765 BUG_ON(btrfs_root_refs(&root->root_item) != 0);
3766 goto no_delete;
3767 }
3768
Josef Bacik4289a662011-08-05 13:22:24 -04003769 rsv = btrfs_alloc_block_rsv(root);
3770 if (!rsv) {
3771 btrfs_orphan_del(NULL, inode);
3772 goto no_delete;
3773 }
Josef Bacik4a338542011-08-29 11:01:31 -04003774 rsv->size = min_size;
Josef Bacik726c35f2011-09-26 15:46:06 -04003775 global_rsv = &root->fs_info->global_block_rsv;
Josef Bacik4289a662011-08-05 13:22:24 -04003776
Chris Masondbe674a2008-07-17 12:54:05 -04003777 btrfs_i_size_write(inode, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003778
Josef Bacik4289a662011-08-05 13:22:24 -04003779 /*
3780 * This is a bit simpler than btrfs_truncate since
3781 *
3782 * 1) We've already reserved our space for our orphan item in the
3783 * unlink.
3784 * 2) We're going to delete the inode item, so we don't need to update
3785 * it at all.
3786 *
3787 * So we just need to reserve some slack space in case we add bytes when
3788 * doing the truncate.
3789 */
Yan, Zheng80825102009-11-12 09:35:36 +00003790 while (1) {
Miao Xieaa38a712011-11-18 17:43:00 +08003791 ret = btrfs_block_rsv_refill_noflush(root, rsv, min_size);
Yan, Zheng80825102009-11-12 09:35:36 +00003792
Josef Bacik726c35f2011-09-26 15:46:06 -04003793 /*
3794 * Try and steal from the global reserve since we will
3795 * likely not use this space anyway, we want to try as
3796 * hard as possible to get this to work.
3797 */
3798 if (ret)
3799 ret = btrfs_block_rsv_migrate(global_rsv, rsv, min_size);
3800
Yan, Zhengd68fc572010-05-16 10:49:58 -04003801 if (ret) {
Josef Bacik4289a662011-08-05 13:22:24 -04003802 printk(KERN_WARNING "Could not get space for a "
Josef Bacik482e6dc2011-08-19 10:31:56 -04003803 "delete, will truncate on mount %d\n", ret);
Josef Bacik4289a662011-08-05 13:22:24 -04003804 btrfs_orphan_del(NULL, inode);
3805 btrfs_free_block_rsv(root, rsv);
3806 goto no_delete;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003807 }
3808
Josef Bacik4289a662011-08-05 13:22:24 -04003809 trans = btrfs_start_transaction(root, 0);
3810 if (IS_ERR(trans)) {
3811 btrfs_orphan_del(NULL, inode);
3812 btrfs_free_block_rsv(root, rsv);
3813 goto no_delete;
3814 }
3815
3816 trans->block_rsv = rsv;
3817
Yan, Zhengd68fc572010-05-16 10:49:58 -04003818 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003819 if (ret != -EAGAIN)
3820 break;
3821
3822 nr = trans->blocks_used;
3823 btrfs_end_transaction(trans, root);
3824 trans = NULL;
3825 btrfs_btree_balance_dirty(root, nr);
Josef Bacik7b128762008-07-24 12:17:14 -04003826 }
3827
Josef Bacik4289a662011-08-05 13:22:24 -04003828 btrfs_free_block_rsv(root, rsv);
3829
Yan, Zheng80825102009-11-12 09:35:36 +00003830 if (ret == 0) {
Josef Bacik4289a662011-08-05 13:22:24 -04003831 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00003832 ret = btrfs_orphan_del(trans, inode);
3833 BUG_ON(ret);
3834 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003835
Josef Bacik4289a662011-08-05 13:22:24 -04003836 trans->block_rsv = &root->fs_info->trans_block_rsv;
Li Zefan581bb052011-04-20 10:06:11 +08003837 if (!(root == root->fs_info->tree_root ||
3838 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID))
Li Zefan33345d012011-04-20 10:31:50 +08003839 btrfs_return_ino(root, btrfs_ino(inode));
Li Zefan581bb052011-04-20 10:06:11 +08003840
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003841 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04003842 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003843 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003844no_delete:
Jan Karadbd57682012-05-03 14:48:02 +02003845 clear_inode(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003846 return;
Chris Mason39279cc2007-06-12 06:35:45 -04003847}
3848
3849/*
3850 * this returns the key found in the dir entry in the location pointer.
3851 * If no dir entries were found, location->objectid is 0.
3852 */
3853static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
3854 struct btrfs_key *location)
3855{
3856 const char *name = dentry->d_name.name;
3857 int namelen = dentry->d_name.len;
3858 struct btrfs_dir_item *di;
3859 struct btrfs_path *path;
3860 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04003861 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003862
3863 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07003864 if (!path)
3865 return -ENOMEM;
Chris Mason39544012007-12-12 14:38:19 -05003866
Li Zefan33345d012011-04-20 10:31:50 +08003867 di = btrfs_lookup_dir_item(NULL, root, path, btrfs_ino(dir), name,
Chris Mason39279cc2007-06-12 06:35:45 -04003868 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04003869 if (IS_ERR(di))
3870 ret = PTR_ERR(di);
Chris Masond3977122009-01-05 21:25:51 -05003871
David Sterbac7040052011-04-19 18:00:01 +02003872 if (IS_ERR_OR_NULL(di))
Chris Mason39544012007-12-12 14:38:19 -05003873 goto out_err;
Chris Masond3977122009-01-05 21:25:51 -05003874
Chris Mason5f39d392007-10-15 16:14:19 -04003875 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04003876out:
Chris Mason39279cc2007-06-12 06:35:45 -04003877 btrfs_free_path(path);
3878 return ret;
Chris Mason39544012007-12-12 14:38:19 -05003879out_err:
3880 location->objectid = 0;
3881 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04003882}
3883
3884/*
3885 * when we hit a tree root in a directory, the btrfs part of the inode
3886 * needs to be changed to reflect the root directory of the tree root. This
3887 * is kind of like crossing a mount point.
3888 */
3889static int fixup_tree_root_location(struct btrfs_root *root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003890 struct inode *dir,
3891 struct dentry *dentry,
3892 struct btrfs_key *location,
3893 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04003894{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003895 struct btrfs_path *path;
3896 struct btrfs_root *new_root;
3897 struct btrfs_root_ref *ref;
3898 struct extent_buffer *leaf;
3899 int ret;
3900 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003901
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003902 path = btrfs_alloc_path();
3903 if (!path) {
3904 err = -ENOMEM;
3905 goto out;
3906 }
Chris Mason39279cc2007-06-12 06:35:45 -04003907
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003908 err = -ENOENT;
3909 ret = btrfs_find_root_ref(root->fs_info->tree_root, path,
3910 BTRFS_I(dir)->root->root_key.objectid,
3911 location->objectid);
3912 if (ret) {
3913 if (ret < 0)
3914 err = ret;
3915 goto out;
3916 }
Chris Mason39279cc2007-06-12 06:35:45 -04003917
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003918 leaf = path->nodes[0];
3919 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
Li Zefan33345d012011-04-20 10:31:50 +08003920 if (btrfs_root_ref_dirid(leaf, ref) != btrfs_ino(dir) ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003921 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
3922 goto out;
3923
3924 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
3925 (unsigned long)(ref + 1),
3926 dentry->d_name.len);
3927 if (ret)
3928 goto out;
3929
David Sterbab3b4aa72011-04-21 01:20:15 +02003930 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003931
3932 new_root = btrfs_read_fs_root_no_name(root->fs_info, location);
3933 if (IS_ERR(new_root)) {
3934 err = PTR_ERR(new_root);
3935 goto out;
3936 }
3937
3938 if (btrfs_root_refs(&new_root->root_item) == 0) {
3939 err = -ENOENT;
3940 goto out;
3941 }
3942
3943 *sub_root = new_root;
3944 location->objectid = btrfs_root_dirid(&new_root->root_item);
3945 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04003946 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003947 err = 0;
3948out:
3949 btrfs_free_path(path);
3950 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003951}
3952
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003953static void inode_tree_add(struct inode *inode)
3954{
3955 struct btrfs_root *root = BTRFS_I(inode)->root;
3956 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003957 struct rb_node **p;
3958 struct rb_node *parent;
Li Zefan33345d012011-04-20 10:31:50 +08003959 u64 ino = btrfs_ino(inode);
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003960again:
3961 p = &root->inode_tree.rb_node;
3962 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003963
Al Viro1d3382cb2010-10-23 15:19:20 -04003964 if (inode_unhashed(inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04003965 return;
3966
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003967 spin_lock(&root->inode_lock);
3968 while (*p) {
3969 parent = *p;
3970 entry = rb_entry(parent, struct btrfs_inode, rb_node);
3971
Li Zefan33345d012011-04-20 10:31:50 +08003972 if (ino < btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003973 p = &parent->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08003974 else if (ino > btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003975 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003976 else {
3977 WARN_ON(!(entry->vfs_inode.i_state &
Al Viroa4ffdde2010-06-02 17:38:30 -04003978 (I_WILL_FREE | I_FREEING)));
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003979 rb_erase(parent, &root->inode_tree);
3980 RB_CLEAR_NODE(parent);
3981 spin_unlock(&root->inode_lock);
3982 goto again;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003983 }
3984 }
3985 rb_link_node(&BTRFS_I(inode)->rb_node, parent, p);
3986 rb_insert_color(&BTRFS_I(inode)->rb_node, &root->inode_tree);
3987 spin_unlock(&root->inode_lock);
3988}
3989
3990static void inode_tree_del(struct inode *inode)
3991{
3992 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04003993 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003994
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003995 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003996 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003997 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003998 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04003999 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004000 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004001 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04004002
Josef Bacik0af3d002010-06-21 14:48:16 -04004003 /*
4004 * Free space cache has inodes in the tree root, but the tree root has a
4005 * root_refs of 0, so this could end up dropping the tree root as a
4006 * snapshot, so we need the extra !root->fs_info->tree_root check to
4007 * make sure we don't drop it.
4008 */
4009 if (empty && btrfs_root_refs(&root->root_item) == 0 &&
4010 root != root->fs_info->tree_root) {
Yan, Zheng76dda932009-09-21 16:00:26 -04004011 synchronize_srcu(&root->fs_info->subvol_srcu);
4012 spin_lock(&root->inode_lock);
4013 empty = RB_EMPTY_ROOT(&root->inode_tree);
4014 spin_unlock(&root->inode_lock);
4015 if (empty)
4016 btrfs_add_dead_root(root);
4017 }
4018}
4019
Jeff Mahoney143bede2012-03-01 14:56:26 +01004020void btrfs_invalidate_inodes(struct btrfs_root *root)
Yan, Zheng76dda932009-09-21 16:00:26 -04004021{
4022 struct rb_node *node;
4023 struct rb_node *prev;
4024 struct btrfs_inode *entry;
4025 struct inode *inode;
4026 u64 objectid = 0;
4027
4028 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
4029
4030 spin_lock(&root->inode_lock);
4031again:
4032 node = root->inode_tree.rb_node;
4033 prev = NULL;
4034 while (node) {
4035 prev = node;
4036 entry = rb_entry(node, struct btrfs_inode, rb_node);
4037
Li Zefan33345d012011-04-20 10:31:50 +08004038 if (objectid < btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04004039 node = node->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08004040 else if (objectid > btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04004041 node = node->rb_right;
4042 else
4043 break;
4044 }
4045 if (!node) {
4046 while (prev) {
4047 entry = rb_entry(prev, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08004048 if (objectid <= btrfs_ino(&entry->vfs_inode)) {
Yan, Zheng76dda932009-09-21 16:00:26 -04004049 node = prev;
4050 break;
4051 }
4052 prev = rb_next(prev);
4053 }
4054 }
4055 while (node) {
4056 entry = rb_entry(node, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08004057 objectid = btrfs_ino(&entry->vfs_inode) + 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04004058 inode = igrab(&entry->vfs_inode);
4059 if (inode) {
4060 spin_unlock(&root->inode_lock);
4061 if (atomic_read(&inode->i_count) > 1)
4062 d_prune_aliases(inode);
4063 /*
Al Viro45321ac2010-06-07 13:43:19 -04004064 * btrfs_drop_inode will have it removed from
Yan, Zheng76dda932009-09-21 16:00:26 -04004065 * the inode cache when its usage count
4066 * hits zero.
4067 */
4068 iput(inode);
4069 cond_resched();
4070 spin_lock(&root->inode_lock);
4071 goto again;
4072 }
4073
4074 if (cond_resched_lock(&root->inode_lock))
4075 goto again;
4076
4077 node = rb_next(node);
4078 }
4079 spin_unlock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004080}
4081
Chris Masone02119d2008-09-05 16:13:11 -04004082static int btrfs_init_locked_inode(struct inode *inode, void *p)
4083{
4084 struct btrfs_iget_args *args = p;
4085 inode->i_ino = args->ino;
Chris Masone02119d2008-09-05 16:13:11 -04004086 BTRFS_I(inode)->root = args->root;
Josef Bacik6a632092009-02-20 11:00:09 -05004087 btrfs_set_inode_space_info(args->root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004088 return 0;
4089}
4090
4091static int btrfs_find_actor(struct inode *inode, void *opaque)
4092{
4093 struct btrfs_iget_args *args = opaque;
Li Zefan33345d012011-04-20 10:31:50 +08004094 return args->ino == btrfs_ino(inode) &&
Chris Masond3977122009-01-05 21:25:51 -05004095 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004096}
4097
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004098static struct inode *btrfs_iget_locked(struct super_block *s,
4099 u64 objectid,
4100 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04004101{
4102 struct inode *inode;
4103 struct btrfs_iget_args args;
4104 args.ino = objectid;
4105 args.root = root;
4106
4107 inode = iget5_locked(s, objectid, btrfs_find_actor,
4108 btrfs_init_locked_inode,
4109 (void *)&args);
4110 return inode;
4111}
4112
Balaji Rao1a54ef82008-07-21 02:01:04 +05304113/* Get an inode object given its location and corresponding root.
4114 * Returns in *is_new if the inode was read from disk
4115 */
4116struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
Josef Bacik73f73412009-12-04 17:38:27 +00004117 struct btrfs_root *root, int *new)
Balaji Rao1a54ef82008-07-21 02:01:04 +05304118{
4119 struct inode *inode;
4120
4121 inode = btrfs_iget_locked(s, location->objectid, root);
4122 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004123 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05304124
4125 if (inode->i_state & I_NEW) {
4126 BTRFS_I(inode)->root = root;
4127 memcpy(&BTRFS_I(inode)->location, location, sizeof(*location));
4128 btrfs_read_locked_inode(inode);
Mark Fasheh1748f842011-07-12 11:25:31 -07004129 if (!is_bad_inode(inode)) {
4130 inode_tree_add(inode);
4131 unlock_new_inode(inode);
4132 if (new)
4133 *new = 1;
4134 } else {
Sergei Trofimoviche0b6d652011-09-11 10:52:24 -04004135 unlock_new_inode(inode);
4136 iput(inode);
4137 inode = ERR_PTR(-ESTALE);
Mark Fasheh1748f842011-07-12 11:25:31 -07004138 }
4139 }
4140
Balaji Rao1a54ef82008-07-21 02:01:04 +05304141 return inode;
4142}
4143
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004144static struct inode *new_simple_dir(struct super_block *s,
4145 struct btrfs_key *key,
4146 struct btrfs_root *root)
4147{
4148 struct inode *inode = new_inode(s);
4149
4150 if (!inode)
4151 return ERR_PTR(-ENOMEM);
4152
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004153 BTRFS_I(inode)->root = root;
4154 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
Josef Bacik72ac3c02012-05-23 14:13:11 -04004155 set_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004156
4157 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
Li Zefan848cce02012-02-21 17:04:28 +08004158 inode->i_op = &btrfs_dir_ro_inode_operations;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004159 inode->i_fop = &simple_dir_operations;
4160 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
4161 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
4162
4163 return inode;
4164}
4165
Chris Mason3de45862008-11-17 21:02:50 -05004166struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04004167{
Chris Masond3977122009-01-05 21:25:51 -05004168 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004169 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004170 struct btrfs_root *sub_root = root;
4171 struct btrfs_key location;
Yan, Zheng76dda932009-09-21 16:00:26 -04004172 int index;
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004173 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004174
4175 if (dentry->d_name.len > BTRFS_NAME_LEN)
4176 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04004177
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004178 if (unlikely(d_need_lookup(dentry))) {
4179 memcpy(&location, dentry->d_fsdata, sizeof(struct btrfs_key));
4180 kfree(dentry->d_fsdata);
4181 dentry->d_fsdata = NULL;
Josef Bacika66e7cc2011-09-18 10:34:03 -04004182 /* This thing is hashed, drop it for now */
4183 d_drop(dentry);
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004184 } else {
4185 ret = btrfs_inode_by_name(dir, dentry, &location);
4186 }
Chris Mason5f39d392007-10-15 16:14:19 -04004187
Chris Mason39279cc2007-06-12 06:35:45 -04004188 if (ret < 0)
4189 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04004190
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004191 if (location.objectid == 0)
4192 return NULL;
4193
4194 if (location.type == BTRFS_INODE_ITEM_KEY) {
Josef Bacik73f73412009-12-04 17:38:27 +00004195 inode = btrfs_iget(dir->i_sb, &location, root, NULL);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004196 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004197 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004198
4199 BUG_ON(location.type != BTRFS_ROOT_ITEM_KEY);
4200
Yan, Zheng76dda932009-09-21 16:00:26 -04004201 index = srcu_read_lock(&root->fs_info->subvol_srcu);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004202 ret = fixup_tree_root_location(root, dir, dentry,
4203 &location, &sub_root);
4204 if (ret < 0) {
4205 if (ret != -ENOENT)
4206 inode = ERR_PTR(ret);
4207 else
4208 inode = new_simple_dir(dir->i_sb, &location, sub_root);
4209 } else {
Josef Bacik73f73412009-12-04 17:38:27 +00004210 inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004211 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004212 srcu_read_unlock(&root->fs_info->subvol_srcu, index);
4213
Julia Lawall34d19ba2011-01-24 19:55:19 +00004214 if (!IS_ERR(inode) && root != sub_root) {
Yan, Zhengc71bf092009-11-12 09:34:40 +00004215 down_read(&root->fs_info->cleanup_work_sem);
4216 if (!(inode->i_sb->s_flags & MS_RDONLY))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05004217 ret = btrfs_orphan_cleanup(sub_root);
Yan, Zhengc71bf092009-11-12 09:34:40 +00004218 up_read(&root->fs_info->cleanup_work_sem);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05004219 if (ret)
4220 inode = ERR_PTR(ret);
Yan, Zhengc71bf092009-11-12 09:34:40 +00004221 }
4222
Chris Mason3de45862008-11-17 21:02:50 -05004223 return inode;
4224}
4225
Nick Pigginfe15ce42011-01-07 17:49:23 +11004226static int btrfs_dentry_delete(const struct dentry *dentry)
Yan, Zheng76dda932009-09-21 16:00:26 -04004227{
4228 struct btrfs_root *root;
Li Zefan848cce02012-02-21 17:04:28 +08004229 struct inode *inode = dentry->d_inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04004230
Li Zefan848cce02012-02-21 17:04:28 +08004231 if (!inode && !IS_ROOT(dentry))
4232 inode = dentry->d_parent->d_inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04004233
Li Zefan848cce02012-02-21 17:04:28 +08004234 if (inode) {
4235 root = BTRFS_I(inode)->root;
Yan, Zhengefefb142009-10-09 09:25:16 -04004236 if (btrfs_root_refs(&root->root_item) == 0)
4237 return 1;
Li Zefan848cce02012-02-21 17:04:28 +08004238
4239 if (btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
4240 return 1;
Yan, Zhengefefb142009-10-09 09:25:16 -04004241 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004242 return 0;
4243}
4244
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004245static void btrfs_dentry_release(struct dentry *dentry)
4246{
4247 if (dentry->d_fsdata)
4248 kfree(dentry->d_fsdata);
4249}
4250
Chris Mason3de45862008-11-17 21:02:50 -05004251static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
4252 struct nameidata *nd)
4253{
Josef Bacika66e7cc2011-09-18 10:34:03 -04004254 struct dentry *ret;
4255
4256 ret = d_splice_alias(btrfs_lookup_dentry(dir, dentry), dentry);
4257 if (unlikely(d_need_lookup(dentry))) {
4258 spin_lock(&dentry->d_lock);
4259 dentry->d_flags &= ~DCACHE_NEED_LOOKUP;
4260 spin_unlock(&dentry->d_lock);
4261 }
4262 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004263}
4264
Miao Xie16cdcec2011-04-22 18:12:22 +08004265unsigned char btrfs_filetype_table[] = {
Chris Mason39279cc2007-06-12 06:35:45 -04004266 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
4267};
4268
David Woodhousecbdf5a22008-08-06 19:42:33 +01004269static int btrfs_real_readdir(struct file *filp, void *dirent,
4270 filldir_t filldir)
Chris Mason39279cc2007-06-12 06:35:45 -04004271{
Chris Mason6da6aba2007-12-18 16:15:09 -05004272 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004273 struct btrfs_root *root = BTRFS_I(inode)->root;
4274 struct btrfs_item *item;
4275 struct btrfs_dir_item *di;
4276 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04004277 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04004278 struct btrfs_path *path;
Miao Xie16cdcec2011-04-22 18:12:22 +08004279 struct list_head ins_list;
4280 struct list_head del_list;
Chris Mason39279cc2007-06-12 06:35:45 -04004281 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04004282 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04004283 int slot;
Chris Mason39279cc2007-06-12 06:35:45 -04004284 unsigned char d_type;
4285 int over = 0;
4286 u32 di_cur;
4287 u32 di_total;
4288 u32 di_len;
4289 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004290 char tmp_name[32];
4291 char *name_ptr;
4292 int name_len;
Miao Xie16cdcec2011-04-22 18:12:22 +08004293 int is_curr = 0; /* filp->f_pos points to the current index? */
Chris Mason39279cc2007-06-12 06:35:45 -04004294
4295 /* FIXME, use a real flag for deciding about the key type */
4296 if (root->fs_info->tree_root == root)
4297 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004298
Chris Mason39544012007-12-12 14:38:19 -05004299 /* special case for "." */
4300 if (filp->f_pos == 0) {
Hidetoshi Seto3765fef2011-09-18 10:20:46 -04004301 over = filldir(dirent, ".", 1,
4302 filp->f_pos, btrfs_ino(inode), DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05004303 if (over)
4304 return 0;
4305 filp->f_pos = 1;
4306 }
Chris Mason39544012007-12-12 14:38:19 -05004307 /* special case for .., just use the back ref */
4308 if (filp->f_pos == 1) {
David Woodhouse5ecc7e52008-08-17 15:14:48 +01004309 u64 pino = parent_ino(filp->f_path.dentry);
Chris Mason39544012007-12-12 14:38:19 -05004310 over = filldir(dirent, "..", 2,
Hidetoshi Seto3765fef2011-09-18 10:20:46 -04004311 filp->f_pos, pino, DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05004312 if (over)
David Woodhouse49593bf2008-08-17 17:08:36 +01004313 return 0;
Chris Mason39544012007-12-12 14:38:19 -05004314 filp->f_pos = 2;
4315 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004316 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08004317 if (!path)
4318 return -ENOMEM;
Chris Masonff5714c2011-05-28 07:00:39 -04004319
Josef Bacik026fd312011-05-13 10:32:11 -04004320 path->reada = 1;
David Woodhouse49593bf2008-08-17 17:08:36 +01004321
Miao Xie16cdcec2011-04-22 18:12:22 +08004322 if (key_type == BTRFS_DIR_INDEX_KEY) {
4323 INIT_LIST_HEAD(&ins_list);
4324 INIT_LIST_HEAD(&del_list);
4325 btrfs_get_delayed_items(inode, &ins_list, &del_list);
4326 }
4327
Chris Mason39279cc2007-06-12 06:35:45 -04004328 btrfs_set_key_type(&key, key_type);
4329 key.offset = filp->f_pos;
Li Zefan33345d012011-04-20 10:31:50 +08004330 key.objectid = btrfs_ino(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004331
Chris Mason39279cc2007-06-12 06:35:45 -04004332 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4333 if (ret < 0)
4334 goto err;
David Woodhouse49593bf2008-08-17 17:08:36 +01004335
4336 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04004337 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -04004338 slot = path->slots[0];
Li Zefanb9e03af2011-03-23 10:43:58 +08004339 if (slot >= btrfs_header_nritems(leaf)) {
4340 ret = btrfs_next_leaf(root, path);
4341 if (ret < 0)
4342 goto err;
4343 else if (ret > 0)
4344 break;
4345 continue;
Chris Mason39279cc2007-06-12 06:35:45 -04004346 }
Chris Mason3de45862008-11-17 21:02:50 -05004347
Chris Mason5f39d392007-10-15 16:14:19 -04004348 item = btrfs_item_nr(leaf, slot);
4349 btrfs_item_key_to_cpu(leaf, &found_key, slot);
4350
4351 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04004352 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004353 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004354 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004355 if (found_key.offset < filp->f_pos)
Li Zefanb9e03af2011-03-23 10:43:58 +08004356 goto next;
Miao Xie16cdcec2011-04-22 18:12:22 +08004357 if (key_type == BTRFS_DIR_INDEX_KEY &&
4358 btrfs_should_delete_dir_index(&del_list,
4359 found_key.offset))
4360 goto next;
Chris Mason5f39d392007-10-15 16:14:19 -04004361
4362 filp->f_pos = found_key.offset;
Miao Xie16cdcec2011-04-22 18:12:22 +08004363 is_curr = 1;
David Woodhouse49593bf2008-08-17 17:08:36 +01004364
Chris Mason39279cc2007-06-12 06:35:45 -04004365 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
4366 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04004367 di_total = btrfs_item_size(leaf, item);
David Woodhouse49593bf2008-08-17 17:08:36 +01004368
4369 while (di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04004370 struct btrfs_key location;
4371
Josef Bacik22a94d42011-03-16 16:47:17 -04004372 if (verify_dir_item(root, leaf, di))
4373 break;
4374
Chris Mason5f39d392007-10-15 16:14:19 -04004375 name_len = btrfs_dir_name_len(leaf, di);
David Woodhouse49593bf2008-08-17 17:08:36 +01004376 if (name_len <= sizeof(tmp_name)) {
Chris Mason5f39d392007-10-15 16:14:19 -04004377 name_ptr = tmp_name;
4378 } else {
4379 name_ptr = kmalloc(name_len, GFP_NOFS);
David Woodhouse49593bf2008-08-17 17:08:36 +01004380 if (!name_ptr) {
4381 ret = -ENOMEM;
4382 goto err;
4383 }
Chris Mason5f39d392007-10-15 16:14:19 -04004384 }
4385 read_extent_buffer(leaf, name_ptr,
4386 (unsigned long)(di + 1), name_len);
4387
4388 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
4389 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason3de45862008-11-17 21:02:50 -05004390
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004391
Chris Mason3de45862008-11-17 21:02:50 -05004392 /* is this a reference to our own snapshot? If so
Arne Jansen8c9c2bf2012-02-25 09:09:30 +01004393 * skip it.
4394 *
4395 * In contrast to old kernels, we insert the snapshot's
4396 * dir item and dir index after it has been created, so
4397 * we won't find a reference to our own snapshot. We
4398 * still keep the following code for backward
4399 * compatibility.
Chris Mason3de45862008-11-17 21:02:50 -05004400 */
4401 if (location.type == BTRFS_ROOT_ITEM_KEY &&
4402 location.objectid == root->root_key.objectid) {
4403 over = 0;
4404 goto skip;
4405 }
Chris Mason5f39d392007-10-15 16:14:19 -04004406 over = filldir(dirent, name_ptr, name_len,
David Woodhouse49593bf2008-08-17 17:08:36 +01004407 found_key.offset, location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04004408 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04004409
Chris Mason3de45862008-11-17 21:02:50 -05004410skip:
Chris Mason5f39d392007-10-15 16:14:19 -04004411 if (name_ptr != tmp_name)
4412 kfree(name_ptr);
4413
Chris Mason39279cc2007-06-12 06:35:45 -04004414 if (over)
4415 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05004416 di_len = btrfs_dir_name_len(leaf, di) +
David Woodhouse49593bf2008-08-17 17:08:36 +01004417 btrfs_dir_data_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04004418 di_cur += di_len;
4419 di = (struct btrfs_dir_item *)((char *)di + di_len);
4420 }
Li Zefanb9e03af2011-03-23 10:43:58 +08004421next:
4422 path->slots[0]++;
Chris Mason39279cc2007-06-12 06:35:45 -04004423 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004424
Miao Xie16cdcec2011-04-22 18:12:22 +08004425 if (key_type == BTRFS_DIR_INDEX_KEY) {
4426 if (is_curr)
4427 filp->f_pos++;
4428 ret = btrfs_readdir_delayed_dir_index(filp, dirent, filldir,
4429 &ins_list);
4430 if (ret)
4431 goto nopos;
4432 }
4433
David Woodhouse49593bf2008-08-17 17:08:36 +01004434 /* Reached end of directory/root. Bump pos past the last item. */
Yan Zheng5e591a02008-02-19 11:41:02 -05004435 if (key_type == BTRFS_DIR_INDEX_KEY)
Jan Engelhardt406266a2009-12-09 22:00:38 +00004436 /*
4437 * 32-bit glibc will use getdents64, but then strtol -
4438 * so the last number we can serve is this.
4439 */
4440 filp->f_pos = 0x7fffffff;
Yan Zheng5e591a02008-02-19 11:41:02 -05004441 else
4442 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04004443nopos:
4444 ret = 0;
4445err:
Miao Xie16cdcec2011-04-22 18:12:22 +08004446 if (key_type == BTRFS_DIR_INDEX_KEY)
4447 btrfs_put_delayed_items(&ins_list, &del_list);
Chris Mason39279cc2007-06-12 06:35:45 -04004448 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004449 return ret;
4450}
4451
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004452int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc)
Chris Mason39279cc2007-06-12 06:35:45 -04004453{
4454 struct btrfs_root *root = BTRFS_I(inode)->root;
4455 struct btrfs_trans_handle *trans;
4456 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04004457 bool nolock = false;
Chris Mason39279cc2007-06-12 06:35:45 -04004458
Josef Bacik72ac3c02012-05-23 14:13:11 -04004459 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Chris Mason4ca8b412008-08-05 13:30:48 -04004460 return 0;
4461
Chris Mason2cf85722011-07-26 15:35:09 -04004462 if (btrfs_fs_closing(root->fs_info) && btrfs_is_free_space_inode(root, inode))
Li Zefan82d59022011-04-20 10:33:24 +08004463 nolock = true;
Josef Bacik0af3d002010-06-21 14:48:16 -04004464
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004465 if (wbc->sync_mode == WB_SYNC_ALL) {
Josef Bacik0af3d002010-06-21 14:48:16 -04004466 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004467 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0af3d002010-06-21 14:48:16 -04004468 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004469 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00004470 if (IS_ERR(trans))
4471 return PTR_ERR(trans);
Josef Bacik0af3d002010-06-21 14:48:16 -04004472 if (nolock)
4473 ret = btrfs_end_transaction_nolock(trans, root);
4474 else
4475 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004476 }
4477 return ret;
4478}
4479
4480/*
Chris Mason54aa1f42007-06-22 14:16:25 -04004481 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04004482 * inode changes. But, it is most likely to find the inode in cache.
4483 * FIXME, needs more benchmarking...there are no reasons other than performance
4484 * to keep or drop this code.
4485 */
Josef Bacik22c44fe2011-11-30 10:45:38 -05004486int btrfs_dirty_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04004487{
4488 struct btrfs_root *root = BTRFS_I(inode)->root;
4489 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004490 int ret;
4491
Josef Bacik72ac3c02012-05-23 14:13:11 -04004492 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Josef Bacik22c44fe2011-11-30 10:45:38 -05004493 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004494
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004495 trans = btrfs_join_transaction(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004496 if (IS_ERR(trans))
4497 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004498
4499 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04004500 if (ret && ret == -ENOSPC) {
4501 /* whoops, lets try again with the full transaction */
4502 btrfs_end_transaction(trans, root);
4503 trans = btrfs_start_transaction(root, 1);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004504 if (IS_ERR(trans))
4505 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004506
Chris Mason94b60442010-05-26 11:02:00 -04004507 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04004508 }
Chris Mason39279cc2007-06-12 06:35:45 -04004509 btrfs_end_transaction(trans, root);
Miao Xie16cdcec2011-04-22 18:12:22 +08004510 if (BTRFS_I(inode)->delayed_node)
4511 btrfs_balance_delayed_items(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004512
4513 return ret;
4514}
4515
4516/*
4517 * This is a copy of file_update_time. We need this so we can return error on
4518 * ENOSPC for updating the inode in the case of file write and mmap writes.
4519 */
Josef Bacike41f9412012-03-26 09:46:47 -04004520static int btrfs_update_time(struct inode *inode, struct timespec *now,
4521 int flags)
Josef Bacik22c44fe2011-11-30 10:45:38 -05004522{
Josef Bacike41f9412012-03-26 09:46:47 -04004523 if (flags & S_VERSION)
Josef Bacik22c44fe2011-11-30 10:45:38 -05004524 inode_inc_iversion(inode);
Josef Bacike41f9412012-03-26 09:46:47 -04004525 if (flags & S_CTIME)
4526 inode->i_ctime = *now;
4527 if (flags & S_MTIME)
4528 inode->i_mtime = *now;
4529 if (flags & S_ATIME)
4530 inode->i_atime = *now;
4531 return btrfs_dirty_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004532}
4533
Chris Masond352ac62008-09-29 15:18:18 -04004534/*
4535 * find the highest existing sequence number in a directory
4536 * and then set the in-memory index_cnt variable to reflect
4537 * free sequence numbers
4538 */
Josef Bacikaec74772008-07-24 12:12:38 -04004539static int btrfs_set_inode_index_count(struct inode *inode)
4540{
4541 struct btrfs_root *root = BTRFS_I(inode)->root;
4542 struct btrfs_key key, found_key;
4543 struct btrfs_path *path;
4544 struct extent_buffer *leaf;
4545 int ret;
4546
Li Zefan33345d012011-04-20 10:31:50 +08004547 key.objectid = btrfs_ino(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004548 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
4549 key.offset = (u64)-1;
4550
4551 path = btrfs_alloc_path();
4552 if (!path)
4553 return -ENOMEM;
4554
4555 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4556 if (ret < 0)
4557 goto out;
4558 /* FIXME: we should be able to handle this */
4559 if (ret == 0)
4560 goto out;
4561 ret = 0;
4562
4563 /*
4564 * MAGIC NUMBER EXPLANATION:
4565 * since we search a directory based on f_pos we have to start at 2
4566 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
4567 * else has to start at 2
4568 */
4569 if (path->slots[0] == 0) {
4570 BTRFS_I(inode)->index_cnt = 2;
4571 goto out;
4572 }
4573
4574 path->slots[0]--;
4575
4576 leaf = path->nodes[0];
4577 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4578
Li Zefan33345d012011-04-20 10:31:50 +08004579 if (found_key.objectid != btrfs_ino(inode) ||
Josef Bacikaec74772008-07-24 12:12:38 -04004580 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
4581 BTRFS_I(inode)->index_cnt = 2;
4582 goto out;
4583 }
4584
4585 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
4586out:
4587 btrfs_free_path(path);
4588 return ret;
4589}
4590
Chris Masond352ac62008-09-29 15:18:18 -04004591/*
4592 * helper to find a free sequence number in a given directory. This current
4593 * code is very simple, later versions will do smarter things in the btree
4594 */
Chris Mason3de45862008-11-17 21:02:50 -05004595int btrfs_set_inode_index(struct inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04004596{
4597 int ret = 0;
4598
4599 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
Miao Xie16cdcec2011-04-22 18:12:22 +08004600 ret = btrfs_inode_delayed_dir_index_count(dir);
4601 if (ret) {
4602 ret = btrfs_set_inode_index_count(dir);
4603 if (ret)
4604 return ret;
4605 }
Josef Bacikaec74772008-07-24 12:12:38 -04004606 }
4607
Chris Mason00e4e6b2008-08-05 11:18:09 -04004608 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04004609 BTRFS_I(dir)->index_cnt++;
4610
4611 return ret;
4612}
4613
Chris Mason39279cc2007-06-12 06:35:45 -04004614static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
4615 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04004616 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05004617 const char *name, int name_len,
Al Viro175a4eb2011-07-26 03:30:54 -04004618 u64 ref_objectid, u64 objectid,
4619 umode_t mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04004620{
4621 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004622 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04004623 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04004624 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05004625 struct btrfs_inode_ref *ref;
4626 struct btrfs_key key[2];
4627 u32 sizes[2];
4628 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04004629 int ret;
4630 int owner;
4631
Chris Mason5f39d392007-10-15 16:14:19 -04004632 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07004633 if (!path)
4634 return ERR_PTR(-ENOMEM);
Chris Mason5f39d392007-10-15 16:14:19 -04004635
Chris Mason39279cc2007-06-12 06:35:45 -04004636 inode = new_inode(root->fs_info->sb);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004637 if (!inode) {
4638 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004639 return ERR_PTR(-ENOMEM);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004640 }
Chris Mason39279cc2007-06-12 06:35:45 -04004641
Li Zefan581bb052011-04-20 10:06:11 +08004642 /*
4643 * we have to initialize this early, so we can reclaim the inode
4644 * number if we fail afterwards in this function.
4645 */
4646 inode->i_ino = objectid;
4647
Josef Bacikaec74772008-07-24 12:12:38 -04004648 if (dir) {
liubo1abe9b82011-03-24 11:18:59 +00004649 trace_btrfs_inode_request(dir);
4650
Chris Mason3de45862008-11-17 21:02:50 -05004651 ret = btrfs_set_inode_index(dir, index);
Shen Feng09771432009-04-02 16:46:06 -04004652 if (ret) {
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004653 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004654 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004655 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04004656 }
Josef Bacikaec74772008-07-24 12:12:38 -04004657 }
4658 /*
4659 * index_cnt is ignored for everything but a dir,
4660 * btrfs_get_inode_index_count has an explanation for the magic
4661 * number
4662 */
4663 BTRFS_I(inode)->index_cnt = 2;
Chris Mason39279cc2007-06-12 06:35:45 -04004664 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04004665 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik76195852010-11-19 02:18:02 +00004666 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik6a632092009-02-20 11:00:09 -05004667 btrfs_set_inode_space_info(root, inode);
Chris Masonb888db22007-08-27 16:49:44 -04004668
Al Viro569254b2011-07-24 17:08:40 -04004669 if (S_ISDIR(mode))
Chris Mason39279cc2007-06-12 06:35:45 -04004670 owner = 0;
4671 else
4672 owner = 1;
Chris Mason9c583092008-01-29 15:15:18 -05004673
4674 key[0].objectid = objectid;
4675 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
4676 key[0].offset = 0;
4677
4678 key[1].objectid = objectid;
4679 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
4680 key[1].offset = ref_objectid;
4681
4682 sizes[0] = sizeof(struct btrfs_inode_item);
4683 sizes[1] = name_len + sizeof(*ref);
4684
Chris Masonb9473432009-03-13 11:00:37 -04004685 path->leave_spinning = 1;
Chris Mason9c583092008-01-29 15:15:18 -05004686 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
4687 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04004688 goto fail;
4689
Dmitry Monakhovecc11fab2010-03-04 17:31:47 +03004690 inode_init_owner(inode, dir, mode);
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004691 inode_set_bytes(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004692 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04004693 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
4694 struct btrfs_inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04004695 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05004696
4697 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
4698 struct btrfs_inode_ref);
4699 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004700 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
Chris Mason9c583092008-01-29 15:15:18 -05004701 ptr = (unsigned long)(ref + 1);
4702 write_extent_buffer(path->nodes[0], name, ptr, name_len);
4703
Chris Mason5f39d392007-10-15 16:14:19 -04004704 btrfs_mark_buffer_dirty(path->nodes[0]);
4705 btrfs_free_path(path);
4706
Chris Mason39279cc2007-06-12 06:35:45 -04004707 location = &BTRFS_I(inode)->location;
4708 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04004709 location->offset = 0;
4710 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
4711
Christoph Hellwig6cbff002009-04-17 10:37:41 +02004712 btrfs_inherit_iflags(inode, dir);
4713
Al Viro569254b2011-07-24 17:08:40 -04004714 if (S_ISREG(mode)) {
Chris Mason94272162009-07-02 12:26:06 -04004715 if (btrfs_test_opt(root, NODATASUM))
4716 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
Liu Bo75e7cb72011-03-22 10:12:20 +00004717 if (btrfs_test_opt(root, NODATACOW) ||
4718 (BTRFS_I(dir)->flags & BTRFS_INODE_NODATACOW))
Chris Mason94272162009-07-02 12:26:06 -04004719 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
4720 }
4721
Chris Mason39279cc2007-06-12 06:35:45 -04004722 insert_inode_hash(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004723 inode_tree_add(inode);
liubo1abe9b82011-03-24 11:18:59 +00004724
4725 trace_btrfs_inode_new(inode);
Chris Mason1973f0f2011-06-24 13:13:29 -04004726 btrfs_set_inode_last_trans(trans, inode);
liubo1abe9b82011-03-24 11:18:59 +00004727
Alexander Block8ea05e32012-07-25 17:35:53 +02004728 btrfs_update_root_times(trans, root);
4729
Chris Mason39279cc2007-06-12 06:35:45 -04004730 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004731fail:
Josef Bacikaec74772008-07-24 12:12:38 -04004732 if (dir)
4733 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04004734 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004735 iput(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004736 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004737}
4738
4739static inline u8 btrfs_inode_type(struct inode *inode)
4740{
4741 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
4742}
4743
Chris Masond352ac62008-09-29 15:18:18 -04004744/*
4745 * utility function to add 'inode' into 'parent_inode' with
4746 * a give name and a given sequence number.
4747 * if 'add_backref' is true, also insert a backref from the
4748 * inode to the parent directory.
4749 */
Chris Masone02119d2008-09-05 16:13:11 -04004750int btrfs_add_link(struct btrfs_trans_handle *trans,
4751 struct inode *parent_inode, struct inode *inode,
4752 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004753{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004754 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004755 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04004756 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Li Zefan33345d012011-04-20 10:31:50 +08004757 u64 ino = btrfs_ino(inode);
4758 u64 parent_ino = btrfs_ino(parent_inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004759
Li Zefan33345d012011-04-20 10:31:50 +08004760 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004761 memcpy(&key, &BTRFS_I(inode)->root->root_key, sizeof(key));
4762 } else {
Li Zefan33345d012011-04-20 10:31:50 +08004763 key.objectid = ino;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004764 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
4765 key.offset = 0;
4766 }
Chris Mason39279cc2007-06-12 06:35:45 -04004767
Li Zefan33345d012011-04-20 10:31:50 +08004768 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004769 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
4770 key.objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08004771 parent_ino, index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004772 } else if (add_backref) {
Li Zefan33345d012011-04-20 10:31:50 +08004773 ret = btrfs_insert_inode_ref(trans, root, name, name_len, ino,
4774 parent_ino, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004775 }
4776
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004777 /* Nothing to clean up yet */
4778 if (ret)
4779 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004780
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004781 ret = btrfs_insert_dir_item(trans, root, name, name_len,
4782 parent_inode, &key,
4783 btrfs_inode_type(inode), index);
4784 if (ret == -EEXIST)
4785 goto fail_dir_item;
4786 else if (ret) {
4787 btrfs_abort_transaction(trans, root, ret);
4788 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004789 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004790
4791 btrfs_i_size_write(parent_inode, parent_inode->i_size +
4792 name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04004793 inode_inc_iversion(parent_inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004794 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
4795 ret = btrfs_update_inode(trans, root, parent_inode);
4796 if (ret)
4797 btrfs_abort_transaction(trans, root, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004798 return ret;
Chris Masonfe66a052012-02-20 08:40:56 -05004799
4800fail_dir_item:
4801 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
4802 u64 local_index;
4803 int err;
4804 err = btrfs_del_root_ref(trans, root->fs_info->tree_root,
4805 key.objectid, root->root_key.objectid,
4806 parent_ino, &local_index, name, name_len);
4807
4808 } else if (add_backref) {
4809 u64 local_index;
4810 int err;
4811
4812 err = btrfs_del_inode_ref(trans, root, name, name_len,
4813 ino, parent_ino, &local_index);
4814 }
4815 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004816}
4817
4818static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Josef Bacika1b075d2010-11-19 20:36:11 +00004819 struct inode *dir, struct dentry *dentry,
4820 struct inode *inode, int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004821{
Josef Bacika1b075d2010-11-19 20:36:11 +00004822 int err = btrfs_add_link(trans, dir, inode,
4823 dentry->d_name.name, dentry->d_name.len,
4824 backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004825 if (err > 0)
4826 err = -EEXIST;
4827 return err;
4828}
4829
Josef Bacik618e21d2007-07-11 10:18:17 -04004830static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -04004831 umode_t mode, dev_t rdev)
Josef Bacik618e21d2007-07-11 10:18:17 -04004832{
4833 struct btrfs_trans_handle *trans;
4834 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004835 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04004836 int err;
4837 int drop_inode = 0;
4838 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05004839 unsigned long nr = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004840 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04004841
4842 if (!new_valid_dev(rdev))
4843 return -EINVAL;
4844
Josef Bacik9ed74f22009-09-11 16:12:44 -04004845 /*
4846 * 2 for inode item and ref
4847 * 2 for dir items
4848 * 1 for xattr if selinux is on
4849 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004850 trans = btrfs_start_transaction(root, 5);
4851 if (IS_ERR(trans))
4852 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05004853
Li Zefan581bb052011-04-20 10:06:11 +08004854 err = btrfs_find_free_ino(root, &objectid);
4855 if (err)
4856 goto out_unlock;
4857
Josef Bacikaec74772008-07-24 12:12:38 -04004858 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08004859 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04004860 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004861 if (IS_ERR(inode)) {
4862 err = PTR_ERR(inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04004863 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004864 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004865
Eric Paris2a7dba32011-02-01 11:05:39 -05004866 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04004867 if (err) {
4868 drop_inode = 1;
4869 goto out_unlock;
4870 }
4871
Casey Schauflerad19db72011-12-15 10:09:07 -05004872 /*
4873 * If the active LSM wants to access the inode during
4874 * d_instantiate it needs these. Smack checks to see
4875 * if the filesystem supports xattrs by looking at the
4876 * ops vector.
4877 */
4878
4879 inode->i_op = &btrfs_special_inode_operations;
Josef Bacika1b075d2010-11-19 20:36:11 +00004880 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Josef Bacik618e21d2007-07-11 10:18:17 -04004881 if (err)
4882 drop_inode = 1;
4883 else {
Josef Bacik618e21d2007-07-11 10:18:17 -04004884 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04004885 btrfs_update_inode(trans, root, inode);
Al Viro08c422c2011-12-23 07:58:13 -05004886 d_instantiate(dentry, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04004887 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004888out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004889 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05004890 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004891 btrfs_btree_balance_dirty(root, nr);
Josef Bacik618e21d2007-07-11 10:18:17 -04004892 if (drop_inode) {
4893 inode_dec_link_count(inode);
4894 iput(inode);
4895 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004896 return err;
4897}
4898
Chris Mason39279cc2007-06-12 06:35:45 -04004899static int btrfs_create(struct inode *dir, struct dentry *dentry,
Al Viro4acdaf22011-07-26 01:42:34 -04004900 umode_t mode, struct nameidata *nd)
Chris Mason39279cc2007-06-12 06:35:45 -04004901{
4902 struct btrfs_trans_handle *trans;
4903 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004904 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004905 int drop_inode = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004906 int err;
Chris Mason1832a6d2007-12-21 16:27:21 -05004907 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004908 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004909 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004910
Josef Bacik9ed74f22009-09-11 16:12:44 -04004911 /*
4912 * 2 for inode item and ref
4913 * 2 for dir items
4914 * 1 for xattr if selinux is on
4915 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004916 trans = btrfs_start_transaction(root, 5);
4917 if (IS_ERR(trans))
4918 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004919
Li Zefan581bb052011-04-20 10:06:11 +08004920 err = btrfs_find_free_ino(root, &objectid);
4921 if (err)
4922 goto out_unlock;
4923
Josef Bacikaec74772008-07-24 12:12:38 -04004924 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08004925 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04004926 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004927 if (IS_ERR(inode)) {
4928 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004929 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004930 }
Chris Mason39279cc2007-06-12 06:35:45 -04004931
Eric Paris2a7dba32011-02-01 11:05:39 -05004932 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04004933 if (err) {
4934 drop_inode = 1;
4935 goto out_unlock;
4936 }
4937
Casey Schauflerad19db72011-12-15 10:09:07 -05004938 /*
4939 * If the active LSM wants to access the inode during
4940 * d_instantiate it needs these. Smack checks to see
4941 * if the filesystem supports xattrs by looking at the
4942 * ops vector.
4943 */
4944 inode->i_fop = &btrfs_file_operations;
4945 inode->i_op = &btrfs_file_inode_operations;
4946
Josef Bacika1b075d2010-11-19 20:36:11 +00004947 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004948 if (err)
4949 drop_inode = 1;
4950 else {
4951 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04004952 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05004953 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Al Viro08c422c2011-12-23 07:58:13 -05004954 d_instantiate(dentry, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004955 }
Chris Mason39279cc2007-06-12 06:35:45 -04004956out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004957 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05004958 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004959 if (drop_inode) {
4960 inode_dec_link_count(inode);
4961 iput(inode);
4962 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004963 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004964 return err;
4965}
4966
4967static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
4968 struct dentry *dentry)
4969{
4970 struct btrfs_trans_handle *trans;
4971 struct btrfs_root *root = BTRFS_I(dir)->root;
4972 struct inode *inode = old_dentry->d_inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004973 u64 index;
Chris Mason1832a6d2007-12-21 16:27:21 -05004974 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004975 int err;
4976 int drop_inode = 0;
4977
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00004978 /* do not allow sys_link's with other subvols of the same device */
4979 if (root->objectid != BTRFS_I(inode)->root->objectid)
Mark Fasheh3ab35642011-03-22 17:20:26 +00004980 return -EXDEV;
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00004981
Al Viroc055e992011-03-04 17:15:18 +00004982 if (inode->i_nlink == ~0U)
4983 return -EMLINK;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004984
Chris Mason3de45862008-11-17 21:02:50 -05004985 err = btrfs_set_inode_index(dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04004986 if (err)
4987 goto fail;
4988
Yan, Zhenga22285a2010-05-16 10:48:46 -04004989 /*
Miao Xie7e6b6462011-02-18 09:21:17 +00004990 * 2 items for inode and inode ref
Yan, Zhenga22285a2010-05-16 10:48:46 -04004991 * 2 items for dir items
Miao Xie7e6b6462011-02-18 09:21:17 +00004992 * 1 item for parent inode
Yan, Zhenga22285a2010-05-16 10:48:46 -04004993 */
Miao Xie7e6b6462011-02-18 09:21:17 +00004994 trans = btrfs_start_transaction(root, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004995 if (IS_ERR(trans)) {
4996 err = PTR_ERR(trans);
4997 goto fail;
4998 }
Chris Mason5f39d392007-10-15 16:14:19 -04004999
Miao Xie31534952011-04-13 13:19:21 +08005000 btrfs_inc_nlink(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04005001 inode_inc_iversion(inode);
Miao Xie31534952011-04-13 13:19:21 +08005002 inode->i_ctime = CURRENT_TIME;
Al Viro7de9c6ee2010-10-23 11:11:40 -04005003 ihold(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04005004
Josef Bacika1b075d2010-11-19 20:36:11 +00005005 err = btrfs_add_nondir(trans, dir, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04005006
Yan, Zhenga5719522009-09-24 09:17:31 -04005007 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04005008 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04005009 } else {
Al Viro10d9f302011-07-16 23:09:10 -04005010 struct dentry *parent = dentry->d_parent;
Yan, Zhenga5719522009-09-24 09:17:31 -04005011 err = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005012 if (err)
5013 goto fail;
Al Viro08c422c2011-12-23 07:58:13 -05005014 d_instantiate(dentry, inode);
Josef Bacik6a912212010-11-20 09:48:00 +00005015 btrfs_log_new_name(trans, inode, NULL, parent);
Yan, Zhenga5719522009-09-24 09:17:31 -04005016 }
Chris Mason39279cc2007-06-12 06:35:45 -04005017
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005018 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05005019 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05005020fail:
Chris Mason39279cc2007-06-12 06:35:45 -04005021 if (drop_inode) {
5022 inode_dec_link_count(inode);
5023 iput(inode);
5024 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005025 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04005026 return err;
5027}
5028
Al Viro18bb1db2011-07-26 01:41:39 -04005029static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Chris Mason39279cc2007-06-12 06:35:45 -04005030{
Chris Masonb9d86662008-05-02 16:13:49 -04005031 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04005032 struct btrfs_trans_handle *trans;
5033 struct btrfs_root *root = BTRFS_I(dir)->root;
5034 int err = 0;
5035 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04005036 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005037 u64 index = 0;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005038 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04005039
Josef Bacik9ed74f22009-09-11 16:12:44 -04005040 /*
5041 * 2 items for inode and ref
5042 * 2 items for dir items
5043 * 1 for xattr if selinux is on
5044 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04005045 trans = btrfs_start_transaction(root, 5);
5046 if (IS_ERR(trans))
5047 return PTR_ERR(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04005048
Li Zefan581bb052011-04-20 10:06:11 +08005049 err = btrfs_find_free_ino(root, &objectid);
5050 if (err)
5051 goto out_fail;
5052
Josef Bacikaec74772008-07-24 12:12:38 -04005053 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08005054 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04005055 S_IFDIR | mode, &index);
Chris Mason39279cc2007-06-12 06:35:45 -04005056 if (IS_ERR(inode)) {
5057 err = PTR_ERR(inode);
5058 goto out_fail;
5059 }
Chris Mason5f39d392007-10-15 16:14:19 -04005060
Chris Mason39279cc2007-06-12 06:35:45 -04005061 drop_on_err = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -04005062
Eric Paris2a7dba32011-02-01 11:05:39 -05005063 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04005064 if (err)
5065 goto out_fail;
5066
Chris Mason39279cc2007-06-12 06:35:45 -04005067 inode->i_op = &btrfs_dir_inode_operations;
5068 inode->i_fop = &btrfs_dir_file_operations;
Chris Mason39279cc2007-06-12 06:35:45 -04005069
Chris Masondbe674a2008-07-17 12:54:05 -04005070 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04005071 err = btrfs_update_inode(trans, root, inode);
5072 if (err)
5073 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04005074
Josef Bacika1b075d2010-11-19 20:36:11 +00005075 err = btrfs_add_link(trans, dir, inode, dentry->d_name.name,
5076 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04005077 if (err)
5078 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04005079
Chris Mason39279cc2007-06-12 06:35:45 -04005080 d_instantiate(dentry, inode);
5081 drop_on_err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005082
5083out_fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005084 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05005085 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04005086 if (drop_on_err)
5087 iput(inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005088 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04005089 return err;
5090}
5091
Chris Masond352ac62008-09-29 15:18:18 -04005092/* helper for btfs_get_extent. Given an existing extent in the tree,
5093 * and an extent that you want to insert, deal with overlap and insert
5094 * the new extent into the tree.
5095 */
Chris Mason3b951512008-04-17 11:29:12 -04005096static int merge_extent_mapping(struct extent_map_tree *em_tree,
5097 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005098 struct extent_map *em,
5099 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04005100{
5101 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04005102
Chris Masone6dcd2d2008-07-17 12:53:50 -04005103 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
5104 start_diff = map_start - em->start;
5105 em->start = map_start;
5106 em->len = map_len;
Chris Masonc8b97812008-10-29 14:49:59 -04005107 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
5108 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04005109 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04005110 em->block_len -= start_diff;
5111 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005112 return add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04005113}
5114
Chris Masonc8b97812008-10-29 14:49:59 -04005115static noinline int uncompress_inline(struct btrfs_path *path,
5116 struct inode *inode, struct page *page,
5117 size_t pg_offset, u64 extent_offset,
5118 struct btrfs_file_extent_item *item)
5119{
5120 int ret;
5121 struct extent_buffer *leaf = path->nodes[0];
5122 char *tmp;
5123 size_t max_size;
5124 unsigned long inline_size;
5125 unsigned long ptr;
Li Zefan261507a02010-12-17 14:21:50 +08005126 int compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04005127
5128 WARN_ON(pg_offset != 0);
Li Zefan261507a02010-12-17 14:21:50 +08005129 compress_type = btrfs_file_extent_compression(leaf, item);
Chris Masonc8b97812008-10-29 14:49:59 -04005130 max_size = btrfs_file_extent_ram_bytes(leaf, item);
5131 inline_size = btrfs_file_extent_inline_item_len(leaf,
5132 btrfs_item_nr(leaf, path->slots[0]));
5133 tmp = kmalloc(inline_size, GFP_NOFS);
Tsutomu Itoh8d413712011-04-25 19:43:52 -04005134 if (!tmp)
5135 return -ENOMEM;
Chris Masonc8b97812008-10-29 14:49:59 -04005136 ptr = btrfs_file_extent_inline_start(item);
5137
5138 read_extent_buffer(leaf, tmp, ptr, inline_size);
5139
Chris Mason5b050f02008-11-11 09:34:41 -05005140 max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size);
Li Zefan261507a02010-12-17 14:21:50 +08005141 ret = btrfs_decompress(compress_type, tmp, page,
5142 extent_offset, inline_size, max_size);
Chris Masonc8b97812008-10-29 14:49:59 -04005143 if (ret) {
Cong Wang7ac687d2011-11-25 23:14:28 +08005144 char *kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04005145 unsigned long copy_size = min_t(u64,
5146 PAGE_CACHE_SIZE - pg_offset,
5147 max_size - extent_offset);
5148 memset(kaddr + pg_offset, 0, copy_size);
Cong Wang7ac687d2011-11-25 23:14:28 +08005149 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -04005150 }
5151 kfree(tmp);
5152 return 0;
5153}
5154
Chris Masond352ac62008-09-29 15:18:18 -04005155/*
5156 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05005157 * the ugly parts come from merging extents from the disk with the in-ram
5158 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04005159 * where the in-ram extents might be locked pending data=ordered completion.
5160 *
5161 * This also copies inline extents directly into the page.
5162 */
Chris Masond3977122009-01-05 21:25:51 -05005163
Chris Masona52d9a82007-08-27 16:49:44 -04005164struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05005165 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04005166 int create)
5167{
5168 int ret;
5169 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04005170 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04005171 u64 extent_start = 0;
5172 u64 extent_end = 0;
Li Zefan33345d012011-04-20 10:31:50 +08005173 u64 objectid = btrfs_ino(inode);
Chris Masona52d9a82007-08-27 16:49:44 -04005174 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04005175 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04005176 struct btrfs_root *root = BTRFS_I(inode)->root;
5177 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04005178 struct extent_buffer *leaf;
5179 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04005180 struct extent_map *em = NULL;
5181 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05005182 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04005183 struct btrfs_trans_handle *trans = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08005184 int compress_type;
Chris Masona52d9a82007-08-27 16:49:44 -04005185
Chris Masona52d9a82007-08-27 16:49:44 -04005186again:
Chris Mason890871b2009-09-02 16:24:52 -04005187 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05005188 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04005189 if (em)
5190 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04005191 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05005192
Chris Masona52d9a82007-08-27 16:49:44 -04005193 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04005194 if (em->start > start || em->start + em->len <= start)
5195 free_extent_map(em);
5196 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05005197 free_extent_map(em);
5198 else
5199 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005200 }
David Sterba172ddd62011-04-21 00:48:27 +02005201 em = alloc_extent_map();
Chris Masona52d9a82007-08-27 16:49:44 -04005202 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05005203 err = -ENOMEM;
5204 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005205 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005206 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05005207 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05005208 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05005209 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04005210 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04005211
5212 if (!path) {
5213 path = btrfs_alloc_path();
Josef Bacik026fd312011-05-13 10:32:11 -04005214 if (!path) {
5215 err = -ENOMEM;
5216 goto out;
5217 }
5218 /*
5219 * Chances are we'll be called again, so go ahead and do
5220 * readahead
5221 */
5222 path->reada = 1;
Chris Masonf4219502008-07-22 11:18:09 -04005223 }
5224
Chris Mason179e29e2007-11-01 11:28:41 -04005225 ret = btrfs_lookup_file_extent(trans, root, path,
5226 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04005227 if (ret < 0) {
5228 err = ret;
5229 goto out;
5230 }
5231
5232 if (ret != 0) {
5233 if (path->slots[0] == 0)
5234 goto not_found;
5235 path->slots[0]--;
5236 }
5237
Chris Mason5f39d392007-10-15 16:14:19 -04005238 leaf = path->nodes[0];
5239 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04005240 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04005241 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04005242 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5243 found_type = btrfs_key_type(&found_key);
5244 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04005245 found_type != BTRFS_EXTENT_DATA_KEY) {
5246 goto not_found;
5247 }
5248
Chris Mason5f39d392007-10-15 16:14:19 -04005249 found_type = btrfs_file_extent_type(leaf, item);
5250 extent_start = found_key.offset;
Li Zefan261507a02010-12-17 14:21:50 +08005251 compress_type = btrfs_file_extent_compression(leaf, item);
Yan Zhengd899e052008-10-30 14:25:28 -04005252 if (found_type == BTRFS_FILE_EXTENT_REG ||
5253 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04005254 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04005255 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04005256 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
5257 size_t size;
5258 size = btrfs_file_extent_inline_len(leaf, item);
5259 extent_end = (extent_start + size + root->sectorsize - 1) &
5260 ~((u64)root->sectorsize - 1);
5261 }
5262
5263 if (start >= extent_end) {
5264 path->slots[0]++;
5265 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
5266 ret = btrfs_next_leaf(root, path);
5267 if (ret < 0) {
5268 err = ret;
5269 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005270 }
Yan Zheng9036c102008-10-30 14:19:41 -04005271 if (ret > 0)
5272 goto not_found;
5273 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04005274 }
Yan Zheng9036c102008-10-30 14:19:41 -04005275 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5276 if (found_key.objectid != objectid ||
5277 found_key.type != BTRFS_EXTENT_DATA_KEY)
5278 goto not_found;
5279 if (start + len <= found_key.offset)
5280 goto not_found;
5281 em->start = start;
5282 em->len = found_key.offset - start;
5283 goto not_found_em;
5284 }
5285
Yan Zhengd899e052008-10-30 14:25:28 -04005286 if (found_type == BTRFS_FILE_EXTENT_REG ||
5287 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng9036c102008-10-30 14:19:41 -04005288 em->start = extent_start;
5289 em->len = extent_end - extent_start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005290 em->orig_start = extent_start -
5291 btrfs_file_extent_offset(leaf, item);
Chris Masondb945352007-10-15 16:15:53 -04005292 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
5293 if (bytenr == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04005294 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04005295 goto insert;
5296 }
Li Zefan261507a02010-12-17 14:21:50 +08005297 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04005298 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08005299 em->compress_type = compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04005300 em->block_start = bytenr;
5301 em->block_len = btrfs_file_extent_disk_num_bytes(leaf,
5302 item);
5303 } else {
5304 bytenr += btrfs_file_extent_offset(leaf, item);
5305 em->block_start = bytenr;
5306 em->block_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04005307 if (found_type == BTRFS_FILE_EXTENT_PREALLOC)
5308 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -04005309 }
Chris Masona52d9a82007-08-27 16:49:44 -04005310 goto insert;
5311 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04005312 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04005313 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04005314 size_t size;
5315 size_t extent_offset;
5316 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04005317
Chris Masona52d9a82007-08-27 16:49:44 -04005318 em->block_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04005319 if (!page || create) {
Yan689f9342007-10-29 11:41:07 -04005320 em->start = extent_start;
Yan Zheng9036c102008-10-30 14:19:41 -04005321 em->len = extent_end - extent_start;
Yan689f9342007-10-29 11:41:07 -04005322 goto out;
5323 }
5324
Yan Zheng9036c102008-10-30 14:19:41 -04005325 size = btrfs_file_extent_inline_len(leaf, item);
5326 extent_offset = page_offset(page) + pg_offset - extent_start;
Chris Mason70dec802008-01-29 09:59:12 -05005327 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04005328 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04005329 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05005330 em->len = (copy_size + root->sectorsize - 1) &
5331 ~((u64)root->sectorsize - 1);
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005332 em->orig_start = EXTENT_MAP_INLINE;
Li Zefan261507a02010-12-17 14:21:50 +08005333 if (compress_type) {
Chris Masonc8b97812008-10-29 14:49:59 -04005334 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08005335 em->compress_type = compress_type;
5336 }
Yan689f9342007-10-29 11:41:07 -04005337 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04005338 if (create == 0 && !PageUptodate(page)) {
Li Zefan261507a02010-12-17 14:21:50 +08005339 if (btrfs_file_extent_compression(leaf, item) !=
5340 BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04005341 ret = uncompress_inline(path, inode, page,
5342 pg_offset,
5343 extent_offset, item);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005344 BUG_ON(ret); /* -ENOMEM */
Chris Masonc8b97812008-10-29 14:49:59 -04005345 } else {
5346 map = kmap(page);
5347 read_extent_buffer(leaf, map + pg_offset, ptr,
5348 copy_size);
Chris Mason93c82d52009-09-11 12:36:29 -04005349 if (pg_offset + copy_size < PAGE_CACHE_SIZE) {
5350 memset(map + pg_offset + copy_size, 0,
5351 PAGE_CACHE_SIZE - pg_offset -
5352 copy_size);
5353 }
Chris Masonc8b97812008-10-29 14:49:59 -04005354 kunmap(page);
5355 }
Chris Mason179e29e2007-11-01 11:28:41 -04005356 flush_dcache_page(page);
5357 } else if (create && PageUptodate(page)) {
Jan Schmidt6bf7e082011-12-01 14:35:19 +01005358 BUG();
Chris Mason179e29e2007-11-01 11:28:41 -04005359 if (!trans) {
5360 kunmap(page);
5361 free_extent_map(em);
5362 em = NULL;
Chris Masonff5714c2011-05-28 07:00:39 -04005363
David Sterbab3b4aa72011-04-21 01:20:15 +02005364 btrfs_release_path(path);
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005365 trans = btrfs_join_transaction(root);
Chris Masonff5714c2011-05-28 07:00:39 -04005366
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005367 if (IS_ERR(trans))
5368 return ERR_CAST(trans);
Chris Mason179e29e2007-11-01 11:28:41 -04005369 goto again;
5370 }
Chris Masonc8b97812008-10-29 14:49:59 -04005371 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05005372 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04005373 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04005374 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04005375 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04005376 }
Chris Masond1310b22008-01-24 16:13:08 -05005377 set_extent_uptodate(io_tree, em->start,
Arne Jansen507903b2011-04-06 10:02:20 +00005378 extent_map_end(em) - 1, NULL, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04005379 goto insert;
5380 } else {
Chris Masond3977122009-01-05 21:25:51 -05005381 printk(KERN_ERR "btrfs unknown found_type %d\n", found_type);
Chris Masona52d9a82007-08-27 16:49:44 -04005382 WARN_ON(1);
5383 }
5384not_found:
5385 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05005386 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04005387not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04005388 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04005389 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04005390insert:
David Sterbab3b4aa72011-04-21 01:20:15 +02005391 btrfs_release_path(path);
Chris Masond1310b22008-01-24 16:13:08 -05005392 if (em->start > start || extent_map_end(em) <= start) {
Chris Masond3977122009-01-05 21:25:51 -05005393 printk(KERN_ERR "Btrfs: bad extent! em: [%llu %llu] passed "
5394 "[%llu %llu]\n", (unsigned long long)em->start,
5395 (unsigned long long)em->len,
5396 (unsigned long long)start,
5397 (unsigned long long)len);
Chris Masona52d9a82007-08-27 16:49:44 -04005398 err = -EIO;
5399 goto out;
5400 }
Chris Masond1310b22008-01-24 16:13:08 -05005401
5402 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04005403 write_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005404 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04005405 /* it is possible that someone inserted the extent into the tree
5406 * while we had the lock dropped. It is also possible that
5407 * an overlapping map exists in the tree
5408 */
Chris Masona52d9a82007-08-27 16:49:44 -04005409 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04005410 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005411
5412 ret = 0;
5413
Chris Mason3b951512008-04-17 11:29:12 -04005414 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04005415 if (existing && (existing->start > start ||
5416 existing->start + existing->len <= start)) {
5417 free_extent_map(existing);
5418 existing = NULL;
5419 }
Chris Mason3b951512008-04-17 11:29:12 -04005420 if (!existing) {
5421 existing = lookup_extent_mapping(em_tree, em->start,
5422 em->len);
5423 if (existing) {
5424 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005425 em, start,
5426 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04005427 free_extent_map(existing);
5428 if (err) {
5429 free_extent_map(em);
5430 em = NULL;
5431 }
5432 } else {
5433 err = -EIO;
Chris Mason3b951512008-04-17 11:29:12 -04005434 free_extent_map(em);
5435 em = NULL;
5436 }
5437 } else {
5438 free_extent_map(em);
5439 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005440 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04005441 }
Chris Masona52d9a82007-08-27 16:49:44 -04005442 }
Chris Mason890871b2009-09-02 16:24:52 -04005443 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005444out:
liubo1abe9b82011-03-24 11:18:59 +00005445
5446 trace_btrfs_get_extent(root, em);
5447
Chris Masonf4219502008-07-22 11:18:09 -04005448 if (path)
5449 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04005450 if (trans) {
5451 ret = btrfs_end_transaction(trans, root);
Chris Masond3977122009-01-05 21:25:51 -05005452 if (!err)
Chris Masona52d9a82007-08-27 16:49:44 -04005453 err = ret;
5454 }
Chris Masona52d9a82007-08-27 16:49:44 -04005455 if (err) {
5456 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04005457 return ERR_PTR(err);
5458 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005459 BUG_ON(!em); /* Error is always set */
Chris Masona52d9a82007-08-27 16:49:44 -04005460 return em;
5461}
5462
Chris Masonec29ed52011-02-23 16:23:20 -05005463struct extent_map *btrfs_get_extent_fiemap(struct inode *inode, struct page *page,
5464 size_t pg_offset, u64 start, u64 len,
5465 int create)
5466{
5467 struct extent_map *em;
5468 struct extent_map *hole_em = NULL;
5469 u64 range_start = start;
5470 u64 end;
5471 u64 found;
5472 u64 found_end;
5473 int err = 0;
5474
5475 em = btrfs_get_extent(inode, page, pg_offset, start, len, create);
5476 if (IS_ERR(em))
5477 return em;
5478 if (em) {
5479 /*
5480 * if our em maps to a hole, there might
5481 * actually be delalloc bytes behind it
5482 */
5483 if (em->block_start != EXTENT_MAP_HOLE)
5484 return em;
5485 else
5486 hole_em = em;
5487 }
5488
5489 /* check to see if we've wrapped (len == -1 or similar) */
5490 end = start + len;
5491 if (end < start)
5492 end = (u64)-1;
5493 else
5494 end -= 1;
5495
5496 em = NULL;
5497
5498 /* ok, we didn't find anything, lets look for delalloc */
5499 found = count_range_bits(&BTRFS_I(inode)->io_tree, &range_start,
5500 end, len, EXTENT_DELALLOC, 1);
5501 found_end = range_start + found;
5502 if (found_end < range_start)
5503 found_end = (u64)-1;
5504
5505 /*
5506 * we didn't find anything useful, return
5507 * the original results from get_extent()
5508 */
5509 if (range_start > end || found_end <= start) {
5510 em = hole_em;
5511 hole_em = NULL;
5512 goto out;
5513 }
5514
5515 /* adjust the range_start to make sure it doesn't
5516 * go backwards from the start they passed in
5517 */
5518 range_start = max(start,range_start);
5519 found = found_end - range_start;
5520
5521 if (found > 0) {
5522 u64 hole_start = start;
5523 u64 hole_len = len;
5524
David Sterba172ddd62011-04-21 00:48:27 +02005525 em = alloc_extent_map();
Chris Masonec29ed52011-02-23 16:23:20 -05005526 if (!em) {
5527 err = -ENOMEM;
5528 goto out;
5529 }
5530 /*
5531 * when btrfs_get_extent can't find anything it
5532 * returns one huge hole
5533 *
5534 * make sure what it found really fits our range, and
5535 * adjust to make sure it is based on the start from
5536 * the caller
5537 */
5538 if (hole_em) {
5539 u64 calc_end = extent_map_end(hole_em);
5540
5541 if (calc_end <= start || (hole_em->start > end)) {
5542 free_extent_map(hole_em);
5543 hole_em = NULL;
5544 } else {
5545 hole_start = max(hole_em->start, start);
5546 hole_len = calc_end - hole_start;
5547 }
5548 }
5549 em->bdev = NULL;
5550 if (hole_em && range_start > hole_start) {
5551 /* our hole starts before our delalloc, so we
5552 * have to return just the parts of the hole
5553 * that go until the delalloc starts
5554 */
5555 em->len = min(hole_len,
5556 range_start - hole_start);
5557 em->start = hole_start;
5558 em->orig_start = hole_start;
5559 /*
5560 * don't adjust block start at all,
5561 * it is fixed at EXTENT_MAP_HOLE
5562 */
5563 em->block_start = hole_em->block_start;
5564 em->block_len = hole_len;
5565 } else {
5566 em->start = range_start;
5567 em->len = found;
5568 em->orig_start = range_start;
5569 em->block_start = EXTENT_MAP_DELALLOC;
5570 em->block_len = found;
5571 }
5572 } else if (hole_em) {
5573 return hole_em;
5574 }
5575out:
5576
5577 free_extent_map(hole_em);
5578 if (err) {
5579 free_extent_map(em);
5580 return ERR_PTR(err);
5581 }
5582 return em;
5583}
5584
Josef Bacik4b46fce2010-05-23 11:00:55 -04005585static struct extent_map *btrfs_new_extent_direct(struct inode *inode,
Josef Bacik16d299a2011-04-06 14:53:07 -04005586 struct extent_map *em,
Josef Bacik4b46fce2010-05-23 11:00:55 -04005587 u64 start, u64 len)
5588{
5589 struct btrfs_root *root = BTRFS_I(inode)->root;
5590 struct btrfs_trans_handle *trans;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005591 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
5592 struct btrfs_key ins;
5593 u64 alloc_hint;
5594 int ret;
Josef Bacik16d299a2011-04-06 14:53:07 -04005595 bool insert = false;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005596
Josef Bacik16d299a2011-04-06 14:53:07 -04005597 /*
5598 * Ok if the extent map we looked up is a hole and is for the exact
5599 * range we want, there is no reason to allocate a new one, however if
5600 * it is not right then we need to free this one and drop the cache for
5601 * our range.
5602 */
5603 if (em->block_start != EXTENT_MAP_HOLE || em->start != start ||
5604 em->len != len) {
5605 free_extent_map(em);
5606 em = NULL;
5607 insert = true;
5608 btrfs_drop_extent_cache(inode, start, start + len - 1, 0);
5609 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005610
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005611 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005612 if (IS_ERR(trans))
5613 return ERR_CAST(trans);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005614
Chris Mason4cb53002011-05-24 15:35:30 -04005615 if (start <= BTRFS_I(inode)->disk_i_size && len < 64 * 1024)
5616 btrfs_add_inode_defrag(trans, inode);
5617
Josef Bacik4b46fce2010-05-23 11:00:55 -04005618 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
5619
5620 alloc_hint = get_extent_allocation_hint(inode, start, len);
5621 ret = btrfs_reserve_extent(trans, root, len, root->sectorsize, 0,
Josef Bacik81c9ad22012-01-18 10:56:06 -05005622 alloc_hint, &ins, 1);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005623 if (ret) {
5624 em = ERR_PTR(ret);
5625 goto out;
5626 }
5627
Josef Bacik4b46fce2010-05-23 11:00:55 -04005628 if (!em) {
David Sterba172ddd62011-04-21 00:48:27 +02005629 em = alloc_extent_map();
Josef Bacik16d299a2011-04-06 14:53:07 -04005630 if (!em) {
5631 em = ERR_PTR(-ENOMEM);
5632 goto out;
5633 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005634 }
5635
5636 em->start = start;
5637 em->orig_start = em->start;
5638 em->len = ins.offset;
5639
5640 em->block_start = ins.objectid;
5641 em->block_len = ins.offset;
5642 em->bdev = root->fs_info->fs_devices->latest_bdev;
Josef Bacik16d299a2011-04-06 14:53:07 -04005643
5644 /*
5645 * We need to do this because if we're using the original em we searched
5646 * for, we could have EXTENT_FLAG_VACANCY set, and we don't want that.
5647 */
5648 em->flags = 0;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005649 set_bit(EXTENT_FLAG_PINNED, &em->flags);
5650
Josef Bacik16d299a2011-04-06 14:53:07 -04005651 while (insert) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04005652 write_lock(&em_tree->lock);
5653 ret = add_extent_mapping(em_tree, em);
5654 write_unlock(&em_tree->lock);
5655 if (ret != -EEXIST)
5656 break;
5657 btrfs_drop_extent_cache(inode, start, start + em->len - 1, 0);
5658 }
5659
5660 ret = btrfs_add_ordered_extent_dio(inode, start, ins.objectid,
5661 ins.offset, ins.offset, 0);
5662 if (ret) {
5663 btrfs_free_reserved_extent(root, ins.objectid, ins.offset);
5664 em = ERR_PTR(ret);
5665 }
5666out:
5667 btrfs_end_transaction(trans, root);
5668 return em;
5669}
5670
Chris Mason46bfbb52010-05-26 11:04:10 -04005671/*
5672 * returns 1 when the nocow is safe, < 1 on error, 0 if the
5673 * block must be cow'd
5674 */
5675static noinline int can_nocow_odirect(struct btrfs_trans_handle *trans,
5676 struct inode *inode, u64 offset, u64 len)
5677{
5678 struct btrfs_path *path;
5679 int ret;
5680 struct extent_buffer *leaf;
5681 struct btrfs_root *root = BTRFS_I(inode)->root;
5682 struct btrfs_file_extent_item *fi;
5683 struct btrfs_key key;
5684 u64 disk_bytenr;
5685 u64 backref_offset;
5686 u64 extent_end;
5687 u64 num_bytes;
5688 int slot;
5689 int found_type;
5690
5691 path = btrfs_alloc_path();
5692 if (!path)
5693 return -ENOMEM;
5694
Li Zefan33345d012011-04-20 10:31:50 +08005695 ret = btrfs_lookup_file_extent(trans, root, path, btrfs_ino(inode),
Chris Mason46bfbb52010-05-26 11:04:10 -04005696 offset, 0);
5697 if (ret < 0)
5698 goto out;
5699
5700 slot = path->slots[0];
5701 if (ret == 1) {
5702 if (slot == 0) {
5703 /* can't find the item, must cow */
5704 ret = 0;
5705 goto out;
5706 }
5707 slot--;
5708 }
5709 ret = 0;
5710 leaf = path->nodes[0];
5711 btrfs_item_key_to_cpu(leaf, &key, slot);
Li Zefan33345d012011-04-20 10:31:50 +08005712 if (key.objectid != btrfs_ino(inode) ||
Chris Mason46bfbb52010-05-26 11:04:10 -04005713 key.type != BTRFS_EXTENT_DATA_KEY) {
5714 /* not our file or wrong item type, must cow */
5715 goto out;
5716 }
5717
5718 if (key.offset > offset) {
5719 /* Wrong offset, must cow */
5720 goto out;
5721 }
5722
5723 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
5724 found_type = btrfs_file_extent_type(leaf, fi);
5725 if (found_type != BTRFS_FILE_EXTENT_REG &&
5726 found_type != BTRFS_FILE_EXTENT_PREALLOC) {
5727 /* not a regular extent, must cow */
5728 goto out;
5729 }
5730 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
5731 backref_offset = btrfs_file_extent_offset(leaf, fi);
5732
5733 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
5734 if (extent_end < offset + len) {
5735 /* extent doesn't include our full range, must cow */
5736 goto out;
5737 }
5738
5739 if (btrfs_extent_readonly(root, disk_bytenr))
5740 goto out;
5741
5742 /*
5743 * look for other files referencing this extent, if we
5744 * find any we must cow
5745 */
Li Zefan33345d012011-04-20 10:31:50 +08005746 if (btrfs_cross_ref_exist(trans, root, btrfs_ino(inode),
Chris Mason46bfbb52010-05-26 11:04:10 -04005747 key.offset - backref_offset, disk_bytenr))
5748 goto out;
5749
5750 /*
5751 * adjust disk_bytenr and num_bytes to cover just the bytes
5752 * in this extent we are about to write. If there
5753 * are any csums in that range we have to cow in order
5754 * to keep the csums correct
5755 */
5756 disk_bytenr += backref_offset;
5757 disk_bytenr += offset - key.offset;
5758 num_bytes = min(offset + len, extent_end) - offset;
5759 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
5760 goto out;
5761 /*
5762 * all of the above have passed, it is safe to overwrite this extent
5763 * without cow
5764 */
5765 ret = 1;
5766out:
5767 btrfs_free_path(path);
5768 return ret;
5769}
5770
Josef Bacik4b46fce2010-05-23 11:00:55 -04005771static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock,
5772 struct buffer_head *bh_result, int create)
5773{
5774 struct extent_map *em;
5775 struct btrfs_root *root = BTRFS_I(inode)->root;
5776 u64 start = iblock << inode->i_blkbits;
5777 u64 len = bh_result->b_size;
Chris Mason46bfbb52010-05-26 11:04:10 -04005778 struct btrfs_trans_handle *trans;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005779
5780 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
5781 if (IS_ERR(em))
5782 return PTR_ERR(em);
5783
5784 /*
5785 * Ok for INLINE and COMPRESSED extents we need to fallback on buffered
5786 * io. INLINE is special, and we could probably kludge it in here, but
5787 * it's still buffered so for safety lets just fall back to the generic
5788 * buffered path.
5789 *
5790 * For COMPRESSED we _have_ to read the entire extent in so we can
5791 * decompress it, so there will be buffering required no matter what we
5792 * do, so go ahead and fallback to buffered.
5793 *
5794 * We return -ENOTBLK because thats what makes DIO go ahead and go back
5795 * to buffered IO. Don't blame me, this is the price we pay for using
5796 * the generic code.
5797 */
5798 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) ||
5799 em->block_start == EXTENT_MAP_INLINE) {
5800 free_extent_map(em);
5801 return -ENOTBLK;
5802 }
5803
5804 /* Just a good old fashioned hole, return */
5805 if (!create && (em->block_start == EXTENT_MAP_HOLE ||
5806 test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
5807 free_extent_map(em);
5808 /* DIO will do one hole at a time, so just unlock a sector */
5809 unlock_extent(&BTRFS_I(inode)->io_tree, start,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01005810 start + root->sectorsize - 1);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005811 return 0;
5812 }
5813
5814 /*
5815 * We don't allocate a new extent in the following cases
5816 *
5817 * 1) The inode is marked as NODATACOW. In this case we'll just use the
5818 * existing extent.
5819 * 2) The extent is marked as PREALLOC. We're good to go here and can
5820 * just use the extent.
5821 *
5822 */
Chris Mason46bfbb52010-05-26 11:04:10 -04005823 if (!create) {
5824 len = em->len - (start - em->start);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005825 goto map;
Chris Mason46bfbb52010-05-26 11:04:10 -04005826 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005827
5828 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
5829 ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
5830 em->block_start != EXTENT_MAP_HOLE)) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04005831 int type;
5832 int ret;
Chris Mason46bfbb52010-05-26 11:04:10 -04005833 u64 block_start;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005834
5835 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
5836 type = BTRFS_ORDERED_PREALLOC;
5837 else
5838 type = BTRFS_ORDERED_NOCOW;
Chris Mason46bfbb52010-05-26 11:04:10 -04005839 len = min(len, em->len - (start - em->start));
Josef Bacik4b46fce2010-05-23 11:00:55 -04005840 block_start = em->block_start + (start - em->start);
Chris Mason46bfbb52010-05-26 11:04:10 -04005841
5842 /*
5843 * we're not going to log anything, but we do need
5844 * to make sure the current transaction stays open
5845 * while we look for nocow cross refs
5846 */
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005847 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005848 if (IS_ERR(trans))
Chris Mason46bfbb52010-05-26 11:04:10 -04005849 goto must_cow;
5850
5851 if (can_nocow_odirect(trans, inode, start, len) == 1) {
5852 ret = btrfs_add_ordered_extent_dio(inode, start,
5853 block_start, len, len, type);
5854 btrfs_end_transaction(trans, root);
5855 if (ret) {
5856 free_extent_map(em);
5857 return ret;
5858 }
5859 goto unlock;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005860 }
Chris Mason46bfbb52010-05-26 11:04:10 -04005861 btrfs_end_transaction(trans, root);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005862 }
Chris Mason46bfbb52010-05-26 11:04:10 -04005863must_cow:
5864 /*
5865 * this will cow the extent, reset the len in case we changed
5866 * it above
5867 */
5868 len = bh_result->b_size;
Josef Bacik16d299a2011-04-06 14:53:07 -04005869 em = btrfs_new_extent_direct(inode, em, start, len);
Chris Mason46bfbb52010-05-26 11:04:10 -04005870 if (IS_ERR(em))
5871 return PTR_ERR(em);
5872 len = min(len, em->len - (start - em->start));
5873unlock:
Chris Mason4845e442010-05-25 20:56:50 -04005874 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, start + len - 1,
5875 EXTENT_LOCKED | EXTENT_DELALLOC | EXTENT_DIRTY, 1,
5876 0, NULL, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005877map:
5878 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
5879 inode->i_blkbits;
Chris Mason46bfbb52010-05-26 11:04:10 -04005880 bh_result->b_size = len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005881 bh_result->b_bdev = em->bdev;
5882 set_buffer_mapped(bh_result);
Josef Bacikc3473e82012-06-19 10:59:00 -04005883 if (create) {
5884 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
5885 set_buffer_new(bh_result);
5886
5887 /*
5888 * Need to update the i_size under the extent lock so buffered
5889 * readers will get the updated i_size when we unlock.
5890 */
5891 if (start + len > i_size_read(inode))
5892 i_size_write(inode, start + len);
5893 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005894
5895 free_extent_map(em);
5896
5897 return 0;
5898}
5899
5900struct btrfs_dio_private {
5901 struct inode *inode;
5902 u64 logical_offset;
5903 u64 disk_bytenr;
5904 u64 bytes;
5905 u32 *csums;
5906 void *private;
Miao Xiee65e1532010-11-22 03:04:43 +00005907
5908 /* number of bios pending for this dio */
5909 atomic_t pending_bios;
5910
5911 /* IO errors */
5912 int errors;
5913
5914 struct bio *orig_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005915};
5916
5917static void btrfs_endio_direct_read(struct bio *bio, int err)
5918{
Miao Xiee65e1532010-11-22 03:04:43 +00005919 struct btrfs_dio_private *dip = bio->bi_private;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005920 struct bio_vec *bvec_end = bio->bi_io_vec + bio->bi_vcnt - 1;
5921 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005922 struct inode *inode = dip->inode;
5923 struct btrfs_root *root = BTRFS_I(inode)->root;
5924 u64 start;
5925 u32 *private = dip->csums;
5926
5927 start = dip->logical_offset;
5928 do {
5929 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)) {
5930 struct page *page = bvec->bv_page;
5931 char *kaddr;
5932 u32 csum = ~(u32)0;
5933 unsigned long flags;
5934
5935 local_irq_save(flags);
Cong Wang7ac687d2011-11-25 23:14:28 +08005936 kaddr = kmap_atomic(page);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005937 csum = btrfs_csum_data(root, kaddr + bvec->bv_offset,
5938 csum, bvec->bv_len);
5939 btrfs_csum_final(csum, (char *)&csum);
Cong Wang7ac687d2011-11-25 23:14:28 +08005940 kunmap_atomic(kaddr);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005941 local_irq_restore(flags);
5942
5943 flush_dcache_page(bvec->bv_page);
5944 if (csum != *private) {
Li Zefan33345d012011-04-20 10:31:50 +08005945 printk(KERN_ERR "btrfs csum failed ino %llu off"
Josef Bacik4b46fce2010-05-23 11:00:55 -04005946 " %llu csum %u private %u\n",
Li Zefan33345d012011-04-20 10:31:50 +08005947 (unsigned long long)btrfs_ino(inode),
5948 (unsigned long long)start,
Josef Bacik4b46fce2010-05-23 11:00:55 -04005949 csum, *private);
5950 err = -EIO;
5951 }
5952 }
5953
5954 start += bvec->bv_len;
5955 private++;
5956 bvec++;
5957 } while (bvec <= bvec_end);
5958
5959 unlock_extent(&BTRFS_I(inode)->io_tree, dip->logical_offset,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01005960 dip->logical_offset + dip->bytes - 1);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005961 bio->bi_private = dip->private;
5962
5963 kfree(dip->csums);
5964 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04005965
5966 /* If we had a csum failure make sure to clear the uptodate flag */
5967 if (err)
5968 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005969 dio_end_io(bio, err);
5970}
5971
5972static void btrfs_endio_direct_write(struct bio *bio, int err)
5973{
5974 struct btrfs_dio_private *dip = bio->bi_private;
5975 struct inode *inode = dip->inode;
5976 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005977 struct btrfs_ordered_extent *ordered = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05005978 u64 ordered_offset = dip->logical_offset;
5979 u64 ordered_bytes = dip->bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005980 int ret;
5981
5982 if (err)
5983 goto out_done;
Chris Mason163cf092010-11-28 19:56:33 -05005984again:
5985 ret = btrfs_dec_test_first_ordered_pending(inode, &ordered,
5986 &ordered_offset,
Josef Bacik5fd02042012-05-02 14:00:54 -04005987 ordered_bytes, !err);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005988 if (!ret)
Chris Mason163cf092010-11-28 19:56:33 -05005989 goto out_test;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005990
Josef Bacik5fd02042012-05-02 14:00:54 -04005991 ordered->work.func = finish_ordered_fn;
5992 ordered->work.flags = 0;
5993 btrfs_queue_worker(&root->fs_info->endio_write_workers,
5994 &ordered->work);
Chris Mason163cf092010-11-28 19:56:33 -05005995out_test:
5996 /*
5997 * our bio might span multiple ordered extents. If we haven't
5998 * completed the accounting for the whole dio, go back and try again
5999 */
6000 if (ordered_offset < dip->logical_offset + dip->bytes) {
6001 ordered_bytes = dip->logical_offset + dip->bytes -
6002 ordered_offset;
Josef Bacik5fd02042012-05-02 14:00:54 -04006003 ordered = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05006004 goto again;
6005 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04006006out_done:
6007 bio->bi_private = dip->private;
6008
Josef Bacik4b46fce2010-05-23 11:00:55 -04006009 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04006010
6011 /* If we had an error make sure to clear the uptodate flag */
6012 if (err)
6013 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006014 dio_end_io(bio, err);
6015}
6016
Chris Masoneaf25d92010-05-25 09:48:28 -04006017static int __btrfs_submit_bio_start_direct_io(struct inode *inode, int rw,
6018 struct bio *bio, int mirror_num,
6019 unsigned long bio_flags, u64 offset)
6020{
6021 int ret;
6022 struct btrfs_root *root = BTRFS_I(inode)->root;
6023 ret = btrfs_csum_one_bio(root, inode, bio, offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006024 BUG_ON(ret); /* -ENOMEM */
Chris Masoneaf25d92010-05-25 09:48:28 -04006025 return 0;
6026}
6027
Miao Xiee65e1532010-11-22 03:04:43 +00006028static void btrfs_end_dio_bio(struct bio *bio, int err)
6029{
6030 struct btrfs_dio_private *dip = bio->bi_private;
6031
6032 if (err) {
Li Zefan33345d012011-04-20 10:31:50 +08006033 printk(KERN_ERR "btrfs direct IO failed ino %llu rw %lu "
Jan Beulich3dd14622010-12-07 14:54:09 +00006034 "sector %#Lx len %u err no %d\n",
Li Zefan33345d012011-04-20 10:31:50 +08006035 (unsigned long long)btrfs_ino(dip->inode), bio->bi_rw,
Jan Beulich3dd14622010-12-07 14:54:09 +00006036 (unsigned long long)bio->bi_sector, bio->bi_size, err);
Miao Xiee65e1532010-11-22 03:04:43 +00006037 dip->errors = 1;
6038
6039 /*
6040 * before atomic variable goto zero, we must make sure
6041 * dip->errors is perceived to be set.
6042 */
6043 smp_mb__before_atomic_dec();
6044 }
6045
6046 /* if there are more bios still pending for this dio, just exit */
6047 if (!atomic_dec_and_test(&dip->pending_bios))
6048 goto out;
6049
6050 if (dip->errors)
6051 bio_io_error(dip->orig_bio);
6052 else {
6053 set_bit(BIO_UPTODATE, &dip->orig_bio->bi_flags);
6054 bio_endio(dip->orig_bio, 0);
6055 }
6056out:
6057 bio_put(bio);
6058}
6059
6060static struct bio *btrfs_dio_bio_alloc(struct block_device *bdev,
6061 u64 first_sector, gfp_t gfp_flags)
6062{
6063 int nr_vecs = bio_get_nr_vecs(bdev);
6064 return btrfs_bio_alloc(bdev, first_sector, nr_vecs, gfp_flags);
6065}
6066
6067static inline int __btrfs_submit_dio_bio(struct bio *bio, struct inode *inode,
6068 int rw, u64 file_offset, int skip_sum,
Josef Bacik1ae39932011-04-06 14:41:34 -04006069 u32 *csums, int async_submit)
Miao Xiee65e1532010-11-22 03:04:43 +00006070{
6071 int write = rw & REQ_WRITE;
6072 struct btrfs_root *root = BTRFS_I(inode)->root;
6073 int ret;
6074
6075 bio_get(bio);
Josef Bacik5fd02042012-05-02 14:00:54 -04006076
6077 if (!write) {
6078 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
6079 if (ret)
6080 goto err;
6081 }
Miao Xiee65e1532010-11-22 03:04:43 +00006082
Josef Bacik1ae39932011-04-06 14:41:34 -04006083 if (skip_sum)
6084 goto map;
6085
6086 if (write && async_submit) {
Miao Xiee65e1532010-11-22 03:04:43 +00006087 ret = btrfs_wq_submit_bio(root->fs_info,
6088 inode, rw, bio, 0, 0,
6089 file_offset,
6090 __btrfs_submit_bio_start_direct_io,
6091 __btrfs_submit_bio_done);
6092 goto err;
Josef Bacik1ae39932011-04-06 14:41:34 -04006093 } else if (write) {
6094 /*
6095 * If we aren't doing async submit, calculate the csum of the
6096 * bio now.
6097 */
6098 ret = btrfs_csum_one_bio(root, inode, bio, file_offset, 1);
6099 if (ret)
6100 goto err;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00006101 } else if (!skip_sum) {
6102 ret = btrfs_lookup_bio_sums_dio(root, inode, bio,
Miao Xiee65e1532010-11-22 03:04:43 +00006103 file_offset, csums);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00006104 if (ret)
6105 goto err;
6106 }
Miao Xiee65e1532010-11-22 03:04:43 +00006107
Josef Bacik1ae39932011-04-06 14:41:34 -04006108map:
6109 ret = btrfs_map_bio(root, rw, bio, 0, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00006110err:
6111 bio_put(bio);
6112 return ret;
6113}
6114
6115static int btrfs_submit_direct_hook(int rw, struct btrfs_dio_private *dip,
6116 int skip_sum)
6117{
6118 struct inode *inode = dip->inode;
6119 struct btrfs_root *root = BTRFS_I(inode)->root;
6120 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
6121 struct bio *bio;
6122 struct bio *orig_bio = dip->orig_bio;
6123 struct bio_vec *bvec = orig_bio->bi_io_vec;
6124 u64 start_sector = orig_bio->bi_sector;
6125 u64 file_offset = dip->logical_offset;
6126 u64 submit_len = 0;
6127 u64 map_length;
6128 int nr_pages = 0;
6129 u32 *csums = dip->csums;
6130 int ret = 0;
Josef Bacik1ae39932011-04-06 14:41:34 -04006131 int async_submit = 0;
Josef Bacik98bc3142011-03-22 11:00:46 -04006132 int write = rw & REQ_WRITE;
Miao Xiee65e1532010-11-22 03:04:43 +00006133
Miao Xiee65e1532010-11-22 03:04:43 +00006134 map_length = orig_bio->bi_size;
6135 ret = btrfs_map_block(map_tree, READ, start_sector << 9,
6136 &map_length, NULL, 0);
6137 if (ret) {
Josef Bacik64728bb2011-04-25 19:43:52 -04006138 bio_put(orig_bio);
Miao Xiee65e1532010-11-22 03:04:43 +00006139 return -EIO;
6140 }
6141
Josef Bacik02f57c72011-04-06 14:25:44 -04006142 if (map_length >= orig_bio->bi_size) {
6143 bio = orig_bio;
6144 goto submit;
6145 }
6146
Josef Bacik1ae39932011-04-06 14:41:34 -04006147 async_submit = 1;
Josef Bacik02f57c72011-04-06 14:25:44 -04006148 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev, start_sector, GFP_NOFS);
6149 if (!bio)
6150 return -ENOMEM;
6151 bio->bi_private = dip;
6152 bio->bi_end_io = btrfs_end_dio_bio;
6153 atomic_inc(&dip->pending_bios);
6154
Miao Xiee65e1532010-11-22 03:04:43 +00006155 while (bvec <= (orig_bio->bi_io_vec + orig_bio->bi_vcnt - 1)) {
6156 if (unlikely(map_length < submit_len + bvec->bv_len ||
6157 bio_add_page(bio, bvec->bv_page, bvec->bv_len,
6158 bvec->bv_offset) < bvec->bv_len)) {
6159 /*
6160 * inc the count before we submit the bio so
6161 * we know the end IO handler won't happen before
6162 * we inc the count. Otherwise, the dip might get freed
6163 * before we're done setting it up
6164 */
6165 atomic_inc(&dip->pending_bios);
6166 ret = __btrfs_submit_dio_bio(bio, inode, rw,
6167 file_offset, skip_sum,
Josef Bacik1ae39932011-04-06 14:41:34 -04006168 csums, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00006169 if (ret) {
6170 bio_put(bio);
6171 atomic_dec(&dip->pending_bios);
6172 goto out_err;
6173 }
6174
Josef Bacik98bc3142011-03-22 11:00:46 -04006175 /* Write's use the ordered csums */
6176 if (!write && !skip_sum)
Miao Xiee65e1532010-11-22 03:04:43 +00006177 csums = csums + nr_pages;
6178 start_sector += submit_len >> 9;
6179 file_offset += submit_len;
6180
6181 submit_len = 0;
6182 nr_pages = 0;
6183
6184 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev,
6185 start_sector, GFP_NOFS);
6186 if (!bio)
6187 goto out_err;
6188 bio->bi_private = dip;
6189 bio->bi_end_io = btrfs_end_dio_bio;
6190
6191 map_length = orig_bio->bi_size;
6192 ret = btrfs_map_block(map_tree, READ, start_sector << 9,
6193 &map_length, NULL, 0);
6194 if (ret) {
6195 bio_put(bio);
6196 goto out_err;
6197 }
6198 } else {
6199 submit_len += bvec->bv_len;
6200 nr_pages ++;
6201 bvec++;
6202 }
6203 }
6204
Josef Bacik02f57c72011-04-06 14:25:44 -04006205submit:
Miao Xiee65e1532010-11-22 03:04:43 +00006206 ret = __btrfs_submit_dio_bio(bio, inode, rw, file_offset, skip_sum,
Josef Bacik1ae39932011-04-06 14:41:34 -04006207 csums, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00006208 if (!ret)
6209 return 0;
6210
6211 bio_put(bio);
6212out_err:
6213 dip->errors = 1;
6214 /*
6215 * before atomic variable goto zero, we must
6216 * make sure dip->errors is perceived to be set.
6217 */
6218 smp_mb__before_atomic_dec();
6219 if (atomic_dec_and_test(&dip->pending_bios))
6220 bio_io_error(dip->orig_bio);
6221
6222 /* bio_end_io() will handle error, so we needn't return it */
6223 return 0;
6224}
6225
Josef Bacik4b46fce2010-05-23 11:00:55 -04006226static void btrfs_submit_direct(int rw, struct bio *bio, struct inode *inode,
6227 loff_t file_offset)
6228{
6229 struct btrfs_root *root = BTRFS_I(inode)->root;
6230 struct btrfs_dio_private *dip;
6231 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006232 int skip_sum;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02006233 int write = rw & REQ_WRITE;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006234 int ret = 0;
6235
6236 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
6237
6238 dip = kmalloc(sizeof(*dip), GFP_NOFS);
6239 if (!dip) {
6240 ret = -ENOMEM;
6241 goto free_ordered;
6242 }
6243 dip->csums = NULL;
6244
Josef Bacik98bc3142011-03-22 11:00:46 -04006245 /* Write's use the ordered csum stuff, so we don't need dip->csums */
6246 if (!write && !skip_sum) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04006247 dip->csums = kmalloc(sizeof(u32) * bio->bi_vcnt, GFP_NOFS);
6248 if (!dip->csums) {
Daniel J Bluemanb4966b72011-03-09 16:46:42 +00006249 kfree(dip);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006250 ret = -ENOMEM;
6251 goto free_ordered;
6252 }
6253 }
6254
6255 dip->private = bio->bi_private;
6256 dip->inode = inode;
6257 dip->logical_offset = file_offset;
6258
Josef Bacik4b46fce2010-05-23 11:00:55 -04006259 dip->bytes = 0;
6260 do {
6261 dip->bytes += bvec->bv_len;
6262 bvec++;
6263 } while (bvec <= (bio->bi_io_vec + bio->bi_vcnt - 1));
6264
Chris Mason46bfbb52010-05-26 11:04:10 -04006265 dip->disk_bytenr = (u64)bio->bi_sector << 9;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006266 bio->bi_private = dip;
Miao Xiee65e1532010-11-22 03:04:43 +00006267 dip->errors = 0;
6268 dip->orig_bio = bio;
6269 atomic_set(&dip->pending_bios, 0);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006270
6271 if (write)
6272 bio->bi_end_io = btrfs_endio_direct_write;
6273 else
6274 bio->bi_end_io = btrfs_endio_direct_read;
6275
Miao Xiee65e1532010-11-22 03:04:43 +00006276 ret = btrfs_submit_direct_hook(rw, dip, skip_sum);
6277 if (!ret)
Chris Masoneaf25d92010-05-25 09:48:28 -04006278 return;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006279free_ordered:
6280 /*
6281 * If this is a write, we need to clean up the reserved space and kill
6282 * the ordered extent.
6283 */
6284 if (write) {
6285 struct btrfs_ordered_extent *ordered;
Josef Bacik955256f2010-11-19 09:41:10 -05006286 ordered = btrfs_lookup_ordered_extent(inode, file_offset);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006287 if (!test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags) &&
6288 !test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags))
6289 btrfs_free_reserved_extent(root, ordered->start,
6290 ordered->disk_len);
6291 btrfs_put_ordered_extent(ordered);
6292 btrfs_put_ordered_extent(ordered);
6293 }
6294 bio_endio(bio, ret);
6295}
6296
Chris Mason5a5f79b2010-05-26 21:33:37 -04006297static ssize_t check_direct_IO(struct btrfs_root *root, int rw, struct kiocb *iocb,
6298 const struct iovec *iov, loff_t offset,
6299 unsigned long nr_segs)
6300{
6301 int seg;
Josef Bacika1b75f72011-04-08 15:51:18 +00006302 int i;
Chris Mason5a5f79b2010-05-26 21:33:37 -04006303 size_t size;
6304 unsigned long addr;
6305 unsigned blocksize_mask = root->sectorsize - 1;
6306 ssize_t retval = -EINVAL;
6307 loff_t end = offset;
6308
6309 if (offset & blocksize_mask)
6310 goto out;
6311
6312 /* Check the memory alignment. Blocks cannot straddle pages */
6313 for (seg = 0; seg < nr_segs; seg++) {
6314 addr = (unsigned long)iov[seg].iov_base;
6315 size = iov[seg].iov_len;
6316 end += size;
Josef Bacika1b75f72011-04-08 15:51:18 +00006317 if ((addr & blocksize_mask) || (size & blocksize_mask))
Chris Mason5a5f79b2010-05-26 21:33:37 -04006318 goto out;
Josef Bacika1b75f72011-04-08 15:51:18 +00006319
6320 /* If this is a write we don't need to check anymore */
6321 if (rw & WRITE)
6322 continue;
6323
6324 /*
6325 * Check to make sure we don't have duplicate iov_base's in this
6326 * iovec, if so return EINVAL, otherwise we'll get csum errors
6327 * when reading back.
6328 */
6329 for (i = seg + 1; i < nr_segs; i++) {
6330 if (iov[seg].iov_base == iov[i].iov_base)
6331 goto out;
6332 }
Chris Mason5a5f79b2010-05-26 21:33:37 -04006333 }
6334 retval = 0;
6335out:
6336 return retval;
6337}
Chris Mason16432982008-04-10 10:23:21 -04006338static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
6339 const struct iovec *iov, loff_t offset,
6340 unsigned long nr_segs)
6341{
Josef Bacik4b46fce2010-05-23 11:00:55 -04006342 struct file *file = iocb->ki_filp;
6343 struct inode *inode = file->f_mapping->host;
6344 struct btrfs_ordered_extent *ordered;
Chris Mason4845e442010-05-25 20:56:50 -04006345 struct extent_state *cached_state = NULL;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006346 u64 lockstart, lockend;
6347 ssize_t ret;
Chris Mason4845e442010-05-25 20:56:50 -04006348 int writing = rw & WRITE;
6349 int write_bits = 0;
Chris Mason3f7c5792010-05-26 10:59:53 -04006350 size_t count = iov_length(iov, nr_segs);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006351
Chris Mason5a5f79b2010-05-26 21:33:37 -04006352 if (check_direct_IO(BTRFS_I(inode)->root, rw, iocb, iov,
6353 offset, nr_segs)) {
6354 return 0;
6355 }
6356
Josef Bacik4b46fce2010-05-23 11:00:55 -04006357 lockstart = offset;
Chris Mason3f7c5792010-05-26 10:59:53 -04006358 lockend = offset + count - 1;
6359
6360 if (writing) {
6361 ret = btrfs_delalloc_reserve_space(inode, count);
6362 if (ret)
6363 goto out;
6364 }
Chris Mason4845e442010-05-25 20:56:50 -04006365
Josef Bacik4b46fce2010-05-23 11:00:55 -04006366 while (1) {
Chris Mason4845e442010-05-25 20:56:50 -04006367 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006368 0, &cached_state);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006369 /*
6370 * We're concerned with the entire range that we're going to be
6371 * doing DIO to, so we need to make sure theres no ordered
6372 * extents in this range.
6373 */
6374 ordered = btrfs_lookup_ordered_range(inode, lockstart,
6375 lockend - lockstart + 1);
Josef Bacikc3473e82012-06-19 10:59:00 -04006376
6377 /*
6378 * We need to make sure there are no buffered pages in this
6379 * range either, we could have raced between the invalidate in
6380 * generic_file_direct_write and locking the extent. The
6381 * invalidate needs to happen so that reads after a write do not
6382 * get stale data.
6383 */
6384 if (!ordered && (!writing ||
6385 !test_range_bit(&BTRFS_I(inode)->io_tree,
6386 lockstart, lockend, EXTENT_UPTODATE, 0,
6387 cached_state)))
Josef Bacik4b46fce2010-05-23 11:00:55 -04006388 break;
Josef Bacikc3473e82012-06-19 10:59:00 -04006389
Chris Mason4845e442010-05-25 20:56:50 -04006390 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6391 &cached_state, GFP_NOFS);
Josef Bacikc3473e82012-06-19 10:59:00 -04006392
6393 if (ordered) {
6394 btrfs_start_ordered_extent(inode, ordered, 1);
6395 btrfs_put_ordered_extent(ordered);
6396 } else {
6397 /* Screw you mmap */
6398 ret = filemap_write_and_wait_range(file->f_mapping,
6399 lockstart,
6400 lockend);
6401 if (ret)
6402 goto out;
6403
6404 /*
6405 * If we found a page that couldn't be invalidated just
6406 * fall back to buffered.
6407 */
6408 ret = invalidate_inode_pages2_range(file->f_mapping,
6409 lockstart >> PAGE_CACHE_SHIFT,
6410 lockend >> PAGE_CACHE_SHIFT);
6411 if (ret) {
6412 if (ret == -EBUSY)
6413 ret = 0;
6414 goto out;
6415 }
6416 }
6417
Josef Bacik4b46fce2010-05-23 11:00:55 -04006418 cond_resched();
6419 }
6420
Chris Mason4845e442010-05-25 20:56:50 -04006421 /*
6422 * we don't use btrfs_set_extent_delalloc because we don't want
6423 * the dirty or uptodate bits
6424 */
6425 if (writing) {
6426 write_bits = EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING;
6427 ret = set_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01006428 EXTENT_DELALLOC, NULL, &cached_state,
Chris Mason4845e442010-05-25 20:56:50 -04006429 GFP_NOFS);
6430 if (ret) {
6431 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
6432 lockend, EXTENT_LOCKED | write_bits,
6433 1, 0, &cached_state, GFP_NOFS);
6434 goto out;
6435 }
6436 }
6437
6438 free_extent_state(cached_state);
6439 cached_state = NULL;
6440
Chris Mason5a5f79b2010-05-26 21:33:37 -04006441 ret = __blockdev_direct_IO(rw, iocb, inode,
6442 BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev,
6443 iov, offset, nr_segs, btrfs_get_blocks_direct, NULL,
6444 btrfs_submit_direct, 0);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006445
6446 if (ret < 0 && ret != -EIOCBQUEUED) {
Chris Mason4845e442010-05-25 20:56:50 -04006447 clear_extent_bit(&BTRFS_I(inode)->io_tree, offset,
6448 offset + iov_length(iov, nr_segs) - 1,
6449 EXTENT_LOCKED | write_bits, 1, 0,
6450 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006451 } else if (ret >= 0 && ret < iov_length(iov, nr_segs)) {
6452 /*
6453 * We're falling back to buffered, unlock the section we didn't
6454 * do IO on.
6455 */
Chris Mason4845e442010-05-25 20:56:50 -04006456 clear_extent_bit(&BTRFS_I(inode)->io_tree, offset + ret,
6457 offset + iov_length(iov, nr_segs) - 1,
6458 EXTENT_LOCKED | write_bits, 1, 0,
6459 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006460 }
Chris Mason4845e442010-05-25 20:56:50 -04006461out:
6462 free_extent_state(cached_state);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006463 return ret;
Chris Mason16432982008-04-10 10:23:21 -04006464}
6465
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006466static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
6467 __u64 start, __u64 len)
6468{
Chris Masonec29ed52011-02-23 16:23:20 -05006469 return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent_fiemap);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006470}
6471
Chris Mason9ebefb182007-06-15 13:50:00 -04006472int btrfs_readpage(struct file *file, struct page *page)
6473{
Chris Masond1310b22008-01-24 16:13:08 -05006474 struct extent_io_tree *tree;
6475 tree = &BTRFS_I(page->mapping->host)->io_tree;
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02006476 return extent_read_full_page(tree, page, btrfs_get_extent, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04006477}
Chris Mason1832a6d2007-12-21 16:27:21 -05006478
Chris Mason39279cc2007-06-12 06:35:45 -04006479static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
6480{
Chris Masond1310b22008-01-24 16:13:08 -05006481 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04006482
6483
6484 if (current->flags & PF_MEMALLOC) {
6485 redirty_page_for_writepage(wbc, page);
6486 unlock_page(page);
6487 return 0;
6488 }
Chris Masond1310b22008-01-24 16:13:08 -05006489 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04006490 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
6491}
Chris Mason39279cc2007-06-12 06:35:45 -04006492
Chris Masonf4219502008-07-22 11:18:09 -04006493int btrfs_writepages(struct address_space *mapping,
6494 struct writeback_control *wbc)
Chris Masonb293f022007-11-01 19:45:34 -04006495{
Chris Masond1310b22008-01-24 16:13:08 -05006496 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05006497
Chris Masond1310b22008-01-24 16:13:08 -05006498 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04006499 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
6500}
6501
Chris Mason3ab2fb52007-11-08 10:59:22 -05006502static int
6503btrfs_readpages(struct file *file, struct address_space *mapping,
6504 struct list_head *pages, unsigned nr_pages)
6505{
Chris Masond1310b22008-01-24 16:13:08 -05006506 struct extent_io_tree *tree;
6507 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05006508 return extent_readpages(tree, mapping, pages, nr_pages,
6509 btrfs_get_extent);
6510}
Chris Masone6dcd2d2008-07-17 12:53:50 -04006511static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04006512{
Chris Masond1310b22008-01-24 16:13:08 -05006513 struct extent_io_tree *tree;
6514 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04006515 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006516
Chris Masond1310b22008-01-24 16:13:08 -05006517 tree = &BTRFS_I(page->mapping->host)->io_tree;
6518 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05006519 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04006520 if (ret == 1) {
6521 ClearPagePrivate(page);
6522 set_page_private(page, 0);
6523 page_cache_release(page);
6524 }
6525 return ret;
6526}
Chris Mason39279cc2007-06-12 06:35:45 -04006527
Chris Masone6dcd2d2008-07-17 12:53:50 -04006528static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
6529{
Chris Mason98509cf2008-09-11 15:51:43 -04006530 if (PageWriteback(page) || PageDirty(page))
6531 return 0;
Yan Zhengb335b002009-02-12 10:06:04 -05006532 return __btrfs_releasepage(page, gfp_flags & GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006533}
6534
Chris Masona52d9a82007-08-27 16:49:44 -04006535static void btrfs_invalidatepage(struct page *page, unsigned long offset)
6536{
Josef Bacik5fd02042012-05-02 14:00:54 -04006537 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05006538 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006539 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006540 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006541 u64 page_start = page_offset(page);
6542 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006543
Chris Mason8b62b722009-09-02 16:53:46 -04006544 /*
6545 * we have the page locked, so new writeback can't start,
6546 * and the dirty bit won't be cleared while we are here.
6547 *
6548 * Wait for IO on this page so that we can safely clear
6549 * the PagePrivate2 bit and do ordered accounting
6550 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006551 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04006552
Josef Bacik5fd02042012-05-02 14:00:54 -04006553 tree = &BTRFS_I(inode)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006554 if (offset) {
6555 btrfs_releasepage(page, GFP_NOFS);
6556 return;
6557 }
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006558 lock_extent_bits(tree, page_start, page_end, 0, &cached_state);
Josef Bacik5fd02042012-05-02 14:00:54 -04006559 ordered = btrfs_lookup_ordered_extent(inode,
Chris Masone6dcd2d2008-07-17 12:53:50 -04006560 page_offset(page));
6561 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04006562 /*
6563 * IO on this page will never be started, so we need
6564 * to account for any ordered extents now
6565 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006566 clear_extent_bit(tree, page_start, page_end,
6567 EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik32c00af2009-10-08 13:34:05 -04006568 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING, 1, 0,
Josef Bacik2ac55d42010-02-03 19:33:23 +00006569 &cached_state, GFP_NOFS);
Chris Mason8b62b722009-09-02 16:53:46 -04006570 /*
6571 * whoever cleared the private bit is responsible
6572 * for the finish_ordered_io
6573 */
Josef Bacik5fd02042012-05-02 14:00:54 -04006574 if (TestClearPagePrivate2(page) &&
6575 btrfs_dec_test_ordered_pending(inode, &ordered, page_start,
6576 PAGE_CACHE_SIZE, 1)) {
6577 btrfs_finish_ordered_io(ordered);
Chris Mason8b62b722009-09-02 16:53:46 -04006578 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006579 btrfs_put_ordered_extent(ordered);
Josef Bacik2ac55d42010-02-03 19:33:23 +00006580 cached_state = NULL;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006581 lock_extent_bits(tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006582 }
6583 clear_extent_bit(tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04006584 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik2ac55d42010-02-03 19:33:23 +00006585 EXTENT_DO_ACCOUNTING, 1, 1, &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006586 __btrfs_releasepage(page, GFP_NOFS);
6587
Chris Mason4a096752008-07-21 10:29:44 -04006588 ClearPageChecked(page);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04006589 if (PagePrivate(page)) {
Chris Mason9ad6b7b2008-04-18 16:11:30 -04006590 ClearPagePrivate(page);
6591 set_page_private(page, 0);
6592 page_cache_release(page);
6593 }
Chris Mason39279cc2007-06-12 06:35:45 -04006594}
6595
Chris Mason9ebefb182007-06-15 13:50:00 -04006596/*
6597 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
6598 * called from a page fault handler when a page is first dirtied. Hence we must
6599 * be careful to check for EOF conditions here. We set the page up correctly
6600 * for a written page which means we get ENOSPC checking when writing into
6601 * holes and correct delalloc and unwritten extent mapping on filesystems that
6602 * support these features.
6603 *
6604 * We are not allowed to take the i_mutex here so we have to play games to
6605 * protect against truncate races as the page could now be beyond EOF. Because
6606 * vmtruncate() writes the inode size before removing pages, once we have the
6607 * page lock we can determine safely if the page is beyond EOF. If it is not
6608 * beyond EOF, then the page is guaranteed safe against truncation until we
6609 * unlock the page.
6610 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07006611int btrfs_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04006612{
Nick Pigginc2ec1752009-03-31 15:23:21 -07006613 struct page *page = vmf->page;
Chris Mason6da6aba2007-12-18 16:15:09 -05006614 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05006615 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006616 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
6617 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006618 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006619 char *kaddr;
6620 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04006621 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05006622 int ret;
Chris Mason9998eb72012-01-25 13:47:40 -05006623 int reserved = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04006624 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006625 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04006626
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006627 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Chris Mason9998eb72012-01-25 13:47:40 -05006628 if (!ret) {
Josef Bacike41f9412012-03-26 09:46:47 -04006629 ret = file_update_time(vma->vm_file);
Chris Mason9998eb72012-01-25 13:47:40 -05006630 reserved = 1;
6631 }
Nick Piggin56a76f82009-03-31 15:23:23 -07006632 if (ret) {
6633 if (ret == -ENOMEM)
6634 ret = VM_FAULT_OOM;
6635 else /* -ENOSPC, -EIO, etc */
6636 ret = VM_FAULT_SIGBUS;
Chris Mason9998eb72012-01-25 13:47:40 -05006637 if (reserved)
6638 goto out;
6639 goto out_noreserve;
Nick Piggin56a76f82009-03-31 15:23:23 -07006640 }
Chris Mason1832a6d2007-12-21 16:27:21 -05006641
Nick Piggin56a76f82009-03-31 15:23:23 -07006642 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006643again:
Chris Mason9ebefb182007-06-15 13:50:00 -04006644 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04006645 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006646 page_start = page_offset(page);
6647 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006648
Chris Mason9ebefb182007-06-15 13:50:00 -04006649 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04006650 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04006651 /* page got truncated out from underneath us */
6652 goto out_unlock;
6653 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006654 wait_on_page_writeback(page);
6655
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006656 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006657 set_page_extent_mapped(page);
6658
Chris Masoneb84ae02008-07-17 13:53:27 -04006659 /*
6660 * we can't set the delalloc bits if there are pending ordered
6661 * extents. Drop our locks and wait for them to finish
6662 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006663 ordered = btrfs_lookup_ordered_extent(inode, page_start);
6664 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006665 unlock_extent_cached(io_tree, page_start, page_end,
6666 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006667 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04006668 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006669 btrfs_put_ordered_extent(ordered);
6670 goto again;
6671 }
6672
Josef Bacikfbf19082009-10-01 17:10:23 -04006673 /*
6674 * XXX - page_mkwrite gets called every time the page is dirtied, even
6675 * if it was already dirty, so for space accounting reasons we need to
6676 * clear any delalloc bits for the range we are fixing to save. There
6677 * is probably a better way to do this, but for now keep consistent with
6678 * prepare_pages in the normal write path.
6679 */
Josef Bacik2ac55d42010-02-03 19:33:23 +00006680 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04006681 EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00006682 0, 0, &cached_state, GFP_NOFS);
Josef Bacikfbf19082009-10-01 17:10:23 -04006683
Josef Bacik2ac55d42010-02-03 19:33:23 +00006684 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
6685 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006686 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006687 unlock_extent_cached(io_tree, page_start, page_end,
6688 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006689 ret = VM_FAULT_SIGBUS;
6690 goto out_unlock;
6691 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006692 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04006693
6694 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04006695 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04006696 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04006697 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04006698 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04006699
Chris Masone6dcd2d2008-07-17 12:53:50 -04006700 if (zero_start != PAGE_CACHE_SIZE) {
6701 kaddr = kmap(page);
6702 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
6703 flush_dcache_page(page);
6704 kunmap(page);
6705 }
Chris Mason247e7432008-07-17 12:53:51 -04006706 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006707 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04006708 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04006709
Chris Mason257c62e2009-10-13 13:21:08 -04006710 BTRFS_I(inode)->last_trans = root->fs_info->generation;
6711 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
6712
Josef Bacik2ac55d42010-02-03 19:33:23 +00006713 unlock_extent_cached(io_tree, page_start, page_end, &cached_state, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04006714
6715out_unlock:
Chris Mason50a9b212009-09-11 12:33:12 -04006716 if (!ret)
6717 return VM_FAULT_LOCKED;
Chris Mason9ebefb182007-06-15 13:50:00 -04006718 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05006719out:
Josef Bacikec39e182012-01-12 19:10:12 -05006720 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason9998eb72012-01-25 13:47:40 -05006721out_noreserve:
Chris Mason9ebefb182007-06-15 13:50:00 -04006722 return ret;
6723}
6724
Josef Bacika41ad392011-01-31 15:30:16 -05006725static int btrfs_truncate(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04006726{
6727 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikfcb80c22011-05-03 10:40:22 -04006728 struct btrfs_block_rsv *rsv;
Chris Mason39279cc2007-06-12 06:35:45 -04006729 int ret;
Josef Bacik3893e332011-01-31 16:03:11 -05006730 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006731 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04006732 unsigned long nr;
Chris Masondbe674a2008-07-17 12:54:05 -04006733 u64 mask = root->sectorsize - 1;
Josef Bacik07127182011-08-19 10:29:59 -04006734 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04006735
Josef Bacik5d5e1032009-10-13 16:46:49 -04006736 ret = btrfs_truncate_page(inode->i_mapping, inode->i_size);
6737 if (ret)
Josef Bacika41ad392011-01-31 15:30:16 -05006738 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00006739
Chris Mason4a096752008-07-21 10:29:44 -04006740 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
Yan, Zheng80825102009-11-12 09:35:36 +00006741 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006742
Josef Bacikfcb80c22011-05-03 10:40:22 -04006743 /*
6744 * Yes ladies and gentelment, this is indeed ugly. The fact is we have
6745 * 3 things going on here
6746 *
6747 * 1) We need to reserve space for our orphan item and the space to
6748 * delete our orphan item. Lord knows we don't want to have a dangling
6749 * orphan item because we didn't reserve space to remove it.
6750 *
6751 * 2) We need to reserve space to update our inode.
6752 *
6753 * 3) We need to have something to cache all the space that is going to
6754 * be free'd up by the truncate operation, but also have some slack
6755 * space reserved in case it uses space during the truncate (thank you
6756 * very much snapshotting).
6757 *
6758 * And we need these to all be seperate. The fact is we can use alot of
6759 * space doing the truncate, and we have no earthly idea how much space
6760 * we will use, so we need the truncate reservation to be seperate so it
6761 * doesn't end up using space reserved for updating the inode or
6762 * removing the orphan item. We also need to be able to stop the
6763 * transaction and start a new one, which means we need to be able to
6764 * update the inode several times, and we have no idea of knowing how
6765 * many times that will be, so we can't just reserve 1 item for the
6766 * entirety of the opration, so that has to be done seperately as well.
6767 * Then there is the orphan item, which does indeed need to be held on
6768 * to for the whole operation, and we need nobody to touch this reserved
6769 * space except the orphan code.
6770 *
6771 * So that leaves us with
6772 *
6773 * 1) root->orphan_block_rsv - for the orphan deletion.
6774 * 2) rsv - for the truncate reservation, which we will steal from the
6775 * transaction reservation.
6776 * 3) fs_info->trans_block_rsv - this will have 1 items worth left for
6777 * updating the inode.
6778 */
6779 rsv = btrfs_alloc_block_rsv(root);
6780 if (!rsv)
6781 return -ENOMEM;
Josef Bacik4a338542011-08-29 11:01:31 -04006782 rsv->size = min_size;
Josef Bacikf0cd8462011-03-04 14:37:08 -05006783
Josef Bacik907cbce2011-08-08 13:46:15 -04006784 /*
Josef Bacik07127182011-08-19 10:29:59 -04006785 * 1 for the truncate slack space
Josef Bacik907cbce2011-08-08 13:46:15 -04006786 * 1 for the orphan item we're going to add
6787 * 1 for the orphan item deletion
6788 * 1 for updating the inode.
6789 */
Josef Bacikfcb80c22011-05-03 10:40:22 -04006790 trans = btrfs_start_transaction(root, 4);
6791 if (IS_ERR(trans)) {
6792 err = PTR_ERR(trans);
6793 goto out;
6794 }
Josef Bacikf0cd8462011-03-04 14:37:08 -05006795
Josef Bacik907cbce2011-08-08 13:46:15 -04006796 /* Migrate the slack space for the truncate to our reserve */
6797 ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv, rsv,
6798 min_size);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006799 BUG_ON(ret);
Josef Bacikf0cd8462011-03-04 14:37:08 -05006800
6801 ret = btrfs_orphan_add(trans, inode);
6802 if (ret) {
6803 btrfs_end_transaction(trans, root);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006804 goto out;
Josef Bacikf0cd8462011-03-04 14:37:08 -05006805 }
6806
Chris Mason5a3f23d2009-03-31 13:27:11 -04006807 /*
6808 * setattr is responsible for setting the ordered_data_close flag,
6809 * but that is only tested during the last file release. That
6810 * could happen well after the next commit, leaving a great big
6811 * window where new writes may get lost if someone chooses to write
6812 * to this file after truncating to zero
6813 *
6814 * The inode doesn't have any dirty data here, and so if we commit
6815 * this is a noop. If someone immediately starts writing to the inode
6816 * it is very likely we'll catch some of their writes in this
6817 * transaction, and the commit will find this file on the ordered
6818 * data list with good things to send down.
6819 *
6820 * This is a best effort solution, there is still a window where
6821 * using truncate to replace the contents of the file will
6822 * end up with a zero length file after a crash.
6823 */
Josef Bacik72ac3c02012-05-23 14:13:11 -04006824 if (inode->i_size == 0 && test_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
6825 &BTRFS_I(inode)->runtime_flags))
Chris Mason5a3f23d2009-03-31 13:27:11 -04006826 btrfs_add_ordered_operation(trans, root, inode);
6827
Yan, Zheng80825102009-11-12 09:35:36 +00006828 while (1) {
Josef Bacik36ba0222011-10-18 12:15:48 -04006829 ret = btrfs_block_rsv_refill(root, rsv, min_size);
Josef Bacik907cbce2011-08-08 13:46:15 -04006830 if (ret) {
6831 /*
6832 * This can only happen with the original transaction we
6833 * started above, every other time we shouldn't have a
6834 * transaction started yet.
6835 */
6836 if (ret == -EAGAIN)
6837 goto end_trans;
6838 err = ret;
6839 break;
6840 }
6841
Yan, Zhengd68fc572010-05-16 10:49:58 -04006842 if (!trans) {
Josef Bacik907cbce2011-08-08 13:46:15 -04006843 /* Just need the 1 for updating the inode */
6844 trans = btrfs_start_transaction(root, 1);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006845 if (IS_ERR(trans)) {
Josef Bacik7041ee92011-12-09 13:26:22 -05006846 ret = err = PTR_ERR(trans);
6847 trans = NULL;
6848 break;
Josef Bacikfcb80c22011-05-03 10:40:22 -04006849 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04006850 }
6851
Josef Bacik907cbce2011-08-08 13:46:15 -04006852 trans->block_rsv = rsv;
6853
Yan, Zheng80825102009-11-12 09:35:36 +00006854 ret = btrfs_truncate_inode_items(trans, root, inode,
6855 inode->i_size,
6856 BTRFS_EXTENT_DATA_KEY);
Josef Bacik3893e332011-01-31 16:03:11 -05006857 if (ret != -EAGAIN) {
6858 err = ret;
Yan, Zheng80825102009-11-12 09:35:36 +00006859 break;
Josef Bacik3893e332011-01-31 16:03:11 -05006860 }
Chris Mason39279cc2007-06-12 06:35:45 -04006861
Josef Bacikfcb80c22011-05-03 10:40:22 -04006862 trans->block_rsv = &root->fs_info->trans_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00006863 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05006864 if (ret) {
6865 err = ret;
6866 break;
6867 }
Josef Bacik907cbce2011-08-08 13:46:15 -04006868end_trans:
Yan, Zheng80825102009-11-12 09:35:36 +00006869 nr = trans->blocks_used;
6870 btrfs_end_transaction(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -04006871 trans = NULL;
Yan, Zheng80825102009-11-12 09:35:36 +00006872 btrfs_btree_balance_dirty(root, nr);
Yan, Zheng80825102009-11-12 09:35:36 +00006873 }
6874
6875 if (ret == 0 && inode->i_nlink > 0) {
Josef Bacikfcb80c22011-05-03 10:40:22 -04006876 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00006877 ret = btrfs_orphan_del(trans, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05006878 if (ret)
6879 err = ret;
Josef Bacikded5db92011-03-04 14:09:46 -05006880 } else if (ret && inode->i_nlink > 0) {
6881 /*
6882 * Failed to do the truncate, remove us from the in memory
6883 * orphan list.
6884 */
6885 ret = btrfs_orphan_del(NULL, inode);
Yan, Zheng80825102009-11-12 09:35:36 +00006886 }
6887
Chris Mason917c16b2011-11-08 14:49:59 -05006888 if (trans) {
6889 trans->block_rsv = &root->fs_info->trans_block_rsv;
6890 ret = btrfs_update_inode(trans, root, inode);
6891 if (ret && !err)
6892 err = ret;
Josef Bacik7b128762008-07-24 12:17:14 -04006893
Chris Mason917c16b2011-11-08 14:49:59 -05006894 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05006895 ret = btrfs_end_transaction(trans, root);
Chris Mason917c16b2011-11-08 14:49:59 -05006896 btrfs_btree_balance_dirty(root, nr);
6897 }
Josef Bacikfcb80c22011-05-03 10:40:22 -04006898
6899out:
6900 btrfs_free_block_rsv(root, rsv);
6901
Josef Bacik3893e332011-01-31 16:03:11 -05006902 if (ret && !err)
6903 err = ret;
Josef Bacika41ad392011-01-31 15:30:16 -05006904
Josef Bacik3893e332011-01-31 16:03:11 -05006905 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04006906}
6907
Sven Wegener3b963622008-06-09 21:57:42 -04006908/*
Chris Masond352ac62008-09-29 15:18:18 -04006909 * create a new subvolume directory/inode (helper for the ioctl).
6910 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05006911int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Josef Bacikd82a6f12011-05-11 15:26:06 -04006912 struct btrfs_root *new_root, u64 new_dirid)
Chris Mason39279cc2007-06-12 06:35:45 -04006913{
Chris Mason39279cc2007-06-12 06:35:45 -04006914 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04006915 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006916 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006917
Florian Albrechtskirchinger12fc9d02012-02-10 22:15:54 +01006918 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2,
6919 new_dirid, new_dirid,
6920 S_IFDIR | (~current_umask() & S_IRWXUGO),
6921 &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04006922 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04006923 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006924 inode->i_op = &btrfs_dir_inode_operations;
6925 inode->i_fop = &btrfs_dir_file_operations;
6926
Miklos Szeredibfe86842011-10-28 14:13:29 +02006927 set_nlink(inode, 1);
Chris Masondbe674a2008-07-17 12:54:05 -04006928 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04006929
Yan, Zheng76dda932009-09-21 16:00:26 -04006930 err = btrfs_update_inode(trans, new_root, inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04006931
Yan, Zheng76dda932009-09-21 16:00:26 -04006932 iput(inode);
Mark Fashehce598972011-07-26 11:32:23 -07006933 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04006934}
6935
Chris Mason39279cc2007-06-12 06:35:45 -04006936struct inode *btrfs_alloc_inode(struct super_block *sb)
6937{
6938 struct btrfs_inode *ei;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006939 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04006940
6941 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
6942 if (!ei)
6943 return NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006944
6945 ei->root = NULL;
6946 ei->space_info = NULL;
6947 ei->generation = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04006948 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04006949 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04006950 ei->logged_trans = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006951 ei->delalloc_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006952 ei->disk_i_size = 0;
6953 ei->flags = 0;
Josef Bacik7709cde2011-08-04 10:25:02 -04006954 ei->csum_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006955 ei->index_cnt = (u64)-1;
6956 ei->last_unlink_trans = 0;
6957
Josef Bacik9e0baf62011-07-15 15:16:44 +00006958 spin_lock_init(&ei->lock);
6959 ei->outstanding_extents = 0;
6960 ei->reserved_extents = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006961
Josef Bacik72ac3c02012-05-23 14:13:11 -04006962 ei->runtime_flags = 0;
Li Zefan261507a02010-12-17 14:21:50 +08006963 ei->force_compress = BTRFS_COMPRESS_NONE;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006964
Miao Xie16cdcec2011-04-22 18:12:22 +08006965 ei->delayed_node = NULL;
6966
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006967 inode = &ei->vfs_inode;
David Sterbaa8067e02011-04-21 00:34:43 +02006968 extent_map_tree_init(&ei->extent_tree);
David Sterbaf993c882011-04-20 23:35:57 +02006969 extent_io_tree_init(&ei->io_tree, &inode->i_data);
6970 extent_io_tree_init(&ei->io_failure_tree, &inode->i_data);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04006971 ei->io_tree.track_uptodate = 1;
6972 ei->io_failure_tree.track_uptodate = 1;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006973 mutex_init(&ei->log_mutex);
Josef Bacikf2486792012-01-13 12:09:22 -05006974 mutex_init(&ei->delalloc_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006975 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006976 INIT_LIST_HEAD(&ei->delalloc_inodes);
Chris Mason5a3f23d2009-03-31 13:27:11 -04006977 INIT_LIST_HEAD(&ei->ordered_operations);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006978 RB_CLEAR_NODE(&ei->rb_node);
6979
6980 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04006981}
6982
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11006983static void btrfs_i_callback(struct rcu_head *head)
6984{
6985 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11006986 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
6987}
6988
Chris Mason39279cc2007-06-12 06:35:45 -04006989void btrfs_destroy_inode(struct inode *inode)
6990{
Chris Masone6dcd2d2008-07-17 12:53:50 -04006991 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006992 struct btrfs_root *root = BTRFS_I(inode)->root;
6993
Chris Mason39279cc2007-06-12 06:35:45 -04006994 WARN_ON(!list_empty(&inode->i_dentry));
6995 WARN_ON(inode->i_data.nrpages);
Josef Bacik9e0baf62011-07-15 15:16:44 +00006996 WARN_ON(BTRFS_I(inode)->outstanding_extents);
6997 WARN_ON(BTRFS_I(inode)->reserved_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04006998 WARN_ON(BTRFS_I(inode)->delalloc_bytes);
6999 WARN_ON(BTRFS_I(inode)->csum_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -04007000
Chris Mason5a3f23d2009-03-31 13:27:11 -04007001 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05007002 * This can happen where we create an inode, but somebody else also
7003 * created the same inode and we need to destroy the one we already
7004 * created.
7005 */
7006 if (!root)
7007 goto free;
7008
7009 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04007010 * Make sure we're properly removed from the ordered operation
7011 * lists.
7012 */
7013 smp_mb();
7014 if (!list_empty(&BTRFS_I(inode)->ordered_operations)) {
7015 spin_lock(&root->fs_info->ordered_extent_lock);
7016 list_del_init(&BTRFS_I(inode)->ordered_operations);
7017 spin_unlock(&root->fs_info->ordered_extent_lock);
7018 }
7019
Josef Bacik8a35d952012-05-23 14:26:42 -04007020 if (test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
7021 &BTRFS_I(inode)->runtime_flags)) {
Li Zefan33345d012011-04-20 10:31:50 +08007022 printk(KERN_INFO "BTRFS: inode %llu still on the orphan list\n",
7023 (unsigned long long)btrfs_ino(inode));
Josef Bacik8a35d952012-05-23 14:26:42 -04007024 atomic_dec(&root->orphan_inodes);
Josef Bacik7b128762008-07-24 12:17:14 -04007025 }
Josef Bacik7b128762008-07-24 12:17:14 -04007026
Chris Masond3977122009-01-05 21:25:51 -05007027 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04007028 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
7029 if (!ordered)
7030 break;
7031 else {
Chris Masond3977122009-01-05 21:25:51 -05007032 printk(KERN_ERR "btrfs found ordered "
7033 "extent %llu %llu on inode cleanup\n",
7034 (unsigned long long)ordered->file_offset,
7035 (unsigned long long)ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007036 btrfs_remove_ordered_extent(inode, ordered);
7037 btrfs_put_ordered_extent(ordered);
7038 btrfs_put_ordered_extent(ordered);
7039 }
7040 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007041 inode_tree_del(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007042 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
Josef Bacika6dbd422009-11-11 15:53:34 -05007043free:
Miao Xie16cdcec2011-04-22 18:12:22 +08007044 btrfs_remove_delayed_node(inode);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11007045 call_rcu(&inode->i_rcu, btrfs_i_callback);
Chris Mason39279cc2007-06-12 06:35:45 -04007046}
7047
Al Viro45321ac2010-06-07 13:43:19 -04007048int btrfs_drop_inode(struct inode *inode)
Yan, Zheng76dda932009-09-21 16:00:26 -04007049{
7050 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro45321ac2010-06-07 13:43:19 -04007051
Josef Bacik0af3d002010-06-21 14:48:16 -04007052 if (btrfs_root_refs(&root->root_item) == 0 &&
Chris Mason2cf85722011-07-26 15:35:09 -04007053 !btrfs_is_free_space_inode(root, inode))
Al Viro45321ac2010-06-07 13:43:19 -04007054 return 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04007055 else
Al Viro45321ac2010-06-07 13:43:19 -04007056 return generic_drop_inode(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04007057}
7058
Sven Wegener0ee0fda2008-07-30 16:54:26 -04007059static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04007060{
7061 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
7062
7063 inode_init_once(&ei->vfs_inode);
7064}
7065
7066void btrfs_destroy_cachep(void)
7067{
7068 if (btrfs_inode_cachep)
7069 kmem_cache_destroy(btrfs_inode_cachep);
7070 if (btrfs_trans_handle_cachep)
7071 kmem_cache_destroy(btrfs_trans_handle_cachep);
7072 if (btrfs_transaction_cachep)
7073 kmem_cache_destroy(btrfs_transaction_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04007074 if (btrfs_path_cachep)
7075 kmem_cache_destroy(btrfs_path_cachep);
Josef Bacikdc89e982011-01-28 17:05:48 -05007076 if (btrfs_free_space_cachep)
7077 kmem_cache_destroy(btrfs_free_space_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04007078}
7079
7080int btrfs_init_cachep(void)
7081{
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007082 btrfs_inode_cachep = kmem_cache_create("btrfs_inode_cache",
7083 sizeof(struct btrfs_inode), 0,
7084 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04007085 if (!btrfs_inode_cachep)
7086 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007087
7088 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle_cache",
7089 sizeof(struct btrfs_trans_handle), 0,
7090 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04007091 if (!btrfs_trans_handle_cachep)
7092 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007093
7094 btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction_cache",
7095 sizeof(struct btrfs_transaction), 0,
7096 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04007097 if (!btrfs_transaction_cachep)
7098 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007099
7100 btrfs_path_cachep = kmem_cache_create("btrfs_path_cache",
7101 sizeof(struct btrfs_path), 0,
7102 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04007103 if (!btrfs_path_cachep)
7104 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007105
Josef Bacikdc89e982011-01-28 17:05:48 -05007106 btrfs_free_space_cachep = kmem_cache_create("btrfs_free_space_cache",
7107 sizeof(struct btrfs_free_space), 0,
7108 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
7109 if (!btrfs_free_space_cachep)
7110 goto fail;
7111
Chris Mason39279cc2007-06-12 06:35:45 -04007112 return 0;
7113fail:
7114 btrfs_destroy_cachep();
7115 return -ENOMEM;
7116}
7117
7118static int btrfs_getattr(struct vfsmount *mnt,
7119 struct dentry *dentry, struct kstat *stat)
7120{
7121 struct inode *inode = dentry->d_inode;
David Sterbafadc0d82011-11-20 07:33:38 -05007122 u32 blocksize = inode->i_sb->s_blocksize;
7123
Chris Mason39279cc2007-06-12 06:35:45 -04007124 generic_fillattr(inode, stat);
Al Viro0ee5dc62011-07-07 15:44:25 -04007125 stat->dev = BTRFS_I(inode)->root->anon_dev;
Chris Masond6667462008-01-03 14:51:00 -05007126 stat->blksize = PAGE_CACHE_SIZE;
David Sterbafadc0d82011-11-20 07:33:38 -05007127 stat->blocks = (ALIGN(inode_get_bytes(inode), blocksize) +
7128 ALIGN(BTRFS_I(inode)->delalloc_bytes, blocksize)) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04007129 return 0;
7130}
7131
Liu Bo75e7cb72011-03-22 10:12:20 +00007132/*
7133 * If a file is moved, it will inherit the cow and compression flags of the new
7134 * directory.
7135 */
7136static void fixup_inode_flags(struct inode *dir, struct inode *inode)
7137{
7138 struct btrfs_inode *b_dir = BTRFS_I(dir);
7139 struct btrfs_inode *b_inode = BTRFS_I(inode);
7140
7141 if (b_dir->flags & BTRFS_INODE_NODATACOW)
7142 b_inode->flags |= BTRFS_INODE_NODATACOW;
7143 else
7144 b_inode->flags &= ~BTRFS_INODE_NODATACOW;
7145
Liu Bobc178232012-06-14 02:23:18 -06007146 if (b_dir->flags & BTRFS_INODE_COMPRESS) {
Liu Bo75e7cb72011-03-22 10:12:20 +00007147 b_inode->flags |= BTRFS_INODE_COMPRESS;
Liu Bobc178232012-06-14 02:23:18 -06007148 b_inode->flags &= ~BTRFS_INODE_NOCOMPRESS;
7149 } else {
7150 b_inode->flags &= ~(BTRFS_INODE_COMPRESS |
7151 BTRFS_INODE_NOCOMPRESS);
7152 }
Liu Bo75e7cb72011-03-22 10:12:20 +00007153}
7154
Chris Masond3977122009-01-05 21:25:51 -05007155static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
7156 struct inode *new_dir, struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04007157{
7158 struct btrfs_trans_handle *trans;
7159 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007160 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04007161 struct inode *new_inode = new_dentry->d_inode;
7162 struct inode *old_inode = old_dentry->d_inode;
7163 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04007164 u64 index = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007165 u64 root_objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04007166 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08007167 u64 old_ino = btrfs_ino(old_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007168
Li Zefan33345d012011-04-20 10:31:50 +08007169 if (btrfs_ino(new_dir) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhengf679a842009-09-24 09:17:31 -04007170 return -EPERM;
7171
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007172 /* we only allow rename subvolume link between subvolumes */
Li Zefan33345d012011-04-20 10:31:50 +08007173 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05007174 return -EXDEV;
7175
Li Zefan33345d012011-04-20 10:31:50 +08007176 if (old_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
7177 (new_inode && btrfs_ino(new_inode) == BTRFS_FIRST_FREE_OBJECTID))
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007178 return -ENOTEMPTY;
7179
Chris Mason39279cc2007-06-12 06:35:45 -04007180 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007181 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04007182 return -ENOTEMPTY;
Chris Mason5a3f23d2009-03-31 13:27:11 -04007183 /*
7184 * we're using rename to replace one file with another.
7185 * and the replacement file is large. Start IO on it now so
7186 * we don't add too much work to the end of the transaction
7187 */
Bartlomiej Zolnierkiewicz4baf8c92009-08-07 13:47:08 -04007188 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size &&
Chris Mason5a3f23d2009-03-31 13:27:11 -04007189 old_inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
7190 filemap_flush(old_inode->i_mapping);
7191
Yan, Zheng76dda932009-09-21 16:00:26 -04007192 /* close the racy window with snapshot create/destroy ioctl */
Li Zefan33345d012011-04-20 10:31:50 +08007193 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04007194 down_read(&root->fs_info->subvol_sem);
Yan, Zhenga22285a2010-05-16 10:48:46 -04007195 /*
7196 * We want to reserve the absolute worst case amount of items. So if
7197 * both inodes are subvols and we need to unlink them then that would
7198 * require 4 item modifications, but if they are both normal inodes it
7199 * would require 5 item modifications, so we'll assume their normal
7200 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
7201 * should cover the worst case number of items we'll modify.
7202 */
7203 trans = btrfs_start_transaction(root, 20);
Johann Lombardib44c59a2011-03-31 13:23:47 +00007204 if (IS_ERR(trans)) {
7205 ret = PTR_ERR(trans);
7206 goto out_notrans;
7207 }
Chris Mason5f39d392007-10-15 16:14:19 -04007208
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007209 if (dest != root)
7210 btrfs_record_root_in_trans(trans, dest);
7211
Yan, Zhenga5719522009-09-24 09:17:31 -04007212 ret = btrfs_set_inode_index(new_dir, &index);
7213 if (ret)
7214 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04007215
Li Zefan33345d012011-04-20 10:31:50 +08007216 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007217 /* force full log commit if subvolume involved. */
7218 root->fs_info->last_trans_log_full_commit = trans->transid;
7219 } else {
Yan, Zhenga5719522009-09-24 09:17:31 -04007220 ret = btrfs_insert_inode_ref(trans, dest,
7221 new_dentry->d_name.name,
7222 new_dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08007223 old_ino,
7224 btrfs_ino(new_dir), index);
Yan, Zhenga5719522009-09-24 09:17:31 -04007225 if (ret)
7226 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007227 /*
7228 * this is an ugly little race, but the rename is required
7229 * to make sure that if we crash, the inode is either at the
7230 * old name or the new one. pinning the log transaction lets
7231 * us make sure we don't allow a log commit to come in after
7232 * we unlink the name but before we add the new name back in.
7233 */
7234 btrfs_pin_log_trans(root);
7235 }
Chris Mason12fcfd22009-03-24 10:24:20 -04007236 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04007237 * make sure the inode gets flushed if it is replacing
7238 * something.
7239 */
Li Zefan33345d012011-04-20 10:31:50 +08007240 if (new_inode && new_inode->i_size && S_ISREG(old_inode->i_mode))
Chris Mason5a3f23d2009-03-31 13:27:11 -04007241 btrfs_add_ordered_operation(trans, root, old_inode);
Chris Mason5a3f23d2009-03-31 13:27:11 -04007242
Josef Bacik0c4d2d92012-04-05 15:03:02 -04007243 inode_inc_iversion(old_dir);
7244 inode_inc_iversion(new_dir);
7245 inode_inc_iversion(old_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007246 old_dir->i_ctime = old_dir->i_mtime = ctime;
7247 new_dir->i_ctime = new_dir->i_mtime = ctime;
7248 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04007249
Chris Mason12fcfd22009-03-24 10:24:20 -04007250 if (old_dentry->d_parent != new_dentry->d_parent)
7251 btrfs_record_unlink_dir(trans, old_dir, old_inode, 1);
7252
Li Zefan33345d012011-04-20 10:31:50 +08007253 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007254 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
7255 ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid,
7256 old_dentry->d_name.name,
7257 old_dentry->d_name.len);
7258 } else {
Al Viro92986792011-03-04 17:14:37 +00007259 ret = __btrfs_unlink_inode(trans, root, old_dir,
7260 old_dentry->d_inode,
7261 old_dentry->d_name.name,
7262 old_dentry->d_name.len);
7263 if (!ret)
7264 ret = btrfs_update_inode(trans, root, old_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007265 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007266 if (ret) {
7267 btrfs_abort_transaction(trans, root, ret);
7268 goto out_fail;
7269 }
Chris Mason39279cc2007-06-12 06:35:45 -04007270
7271 if (new_inode) {
Josef Bacik0c4d2d92012-04-05 15:03:02 -04007272 inode_inc_iversion(new_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007273 new_inode->i_ctime = CURRENT_TIME;
Li Zefan33345d012011-04-20 10:31:50 +08007274 if (unlikely(btrfs_ino(new_inode) ==
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007275 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
7276 root_objectid = BTRFS_I(new_inode)->location.objectid;
7277 ret = btrfs_unlink_subvol(trans, dest, new_dir,
7278 root_objectid,
7279 new_dentry->d_name.name,
7280 new_dentry->d_name.len);
7281 BUG_ON(new_inode->i_nlink == 0);
7282 } else {
7283 ret = btrfs_unlink_inode(trans, dest, new_dir,
7284 new_dentry->d_inode,
7285 new_dentry->d_name.name,
7286 new_dentry->d_name.len);
7287 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007288 if (!ret && new_inode->i_nlink == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04007289 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007290 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04007291 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007292 if (ret) {
7293 btrfs_abort_transaction(trans, root, ret);
7294 goto out_fail;
7295 }
Chris Mason39279cc2007-06-12 06:35:45 -04007296 }
Josef Bacikaec74772008-07-24 12:12:38 -04007297
Liu Bo75e7cb72011-03-22 10:12:20 +00007298 fixup_inode_flags(new_dir, old_inode);
7299
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007300 ret = btrfs_add_link(trans, new_dir, old_inode,
7301 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04007302 new_dentry->d_name.len, 0, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007303 if (ret) {
7304 btrfs_abort_transaction(trans, root, ret);
7305 goto out_fail;
7306 }
Chris Mason39279cc2007-06-12 06:35:45 -04007307
Li Zefan33345d012011-04-20 10:31:50 +08007308 if (old_ino != BTRFS_FIRST_FREE_OBJECTID) {
Al Viro10d9f302011-07-16 23:09:10 -04007309 struct dentry *parent = new_dentry->d_parent;
Josef Bacik6a912212010-11-20 09:48:00 +00007310 btrfs_log_new_name(trans, old_inode, old_dir, parent);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007311 btrfs_end_log_trans(root);
7312 }
Chris Mason39279cc2007-06-12 06:35:45 -04007313out_fail:
Josef Bacik7ad85bb2012-01-12 19:10:12 -05007314 btrfs_end_transaction(trans, root);
Johann Lombardib44c59a2011-03-31 13:23:47 +00007315out_notrans:
Li Zefan33345d012011-04-20 10:31:50 +08007316 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04007317 up_read(&root->fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04007318
Chris Mason39279cc2007-06-12 06:35:45 -04007319 return ret;
7320}
7321
Chris Masond352ac62008-09-29 15:18:18 -04007322/*
7323 * some fairly slow code that needs optimization. This walks the list
7324 * of all the inodes with pending delalloc and forces them to disk.
7325 */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00007326int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput)
Chris Masonea8c2812008-08-04 23:17:27 -04007327{
7328 struct list_head *head = &root->fs_info->delalloc_inodes;
7329 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007330 struct inode *inode;
Chris Masonea8c2812008-08-04 23:17:27 -04007331
Yan Zhengc146afa2008-11-12 14:34:12 -05007332 if (root->fs_info->sb->s_flags & MS_RDONLY)
7333 return -EROFS;
7334
Chris Mason75eff682008-12-15 15:54:40 -05007335 spin_lock(&root->fs_info->delalloc_lock);
Chris Masond3977122009-01-05 21:25:51 -05007336 while (!list_empty(head)) {
Chris Masonea8c2812008-08-04 23:17:27 -04007337 binode = list_entry(head->next, struct btrfs_inode,
7338 delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007339 inode = igrab(&binode->vfs_inode);
7340 if (!inode)
7341 list_del_init(&binode->delalloc_inodes);
Chris Mason75eff682008-12-15 15:54:40 -05007342 spin_unlock(&root->fs_info->delalloc_lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007343 if (inode) {
Chris Mason8c8bee12008-09-29 11:19:10 -04007344 filemap_flush(inode->i_mapping);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00007345 if (delay_iput)
7346 btrfs_add_delayed_iput(inode);
7347 else
7348 iput(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007349 }
7350 cond_resched();
Chris Mason75eff682008-12-15 15:54:40 -05007351 spin_lock(&root->fs_info->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04007352 }
Chris Mason75eff682008-12-15 15:54:40 -05007353 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -04007354
7355 /* the filemap_flush will queue IO into the worker threads, but
7356 * we have to make sure the IO is actually started and that
7357 * ordered extents get created before we return
7358 */
7359 atomic_inc(&root->fs_info->async_submit_draining);
Chris Masond3977122009-01-05 21:25:51 -05007360 while (atomic_read(&root->fs_info->nr_async_submits) ||
Chris Mason771ed682008-11-06 22:02:51 -05007361 atomic_read(&root->fs_info->async_delalloc_pages)) {
Chris Mason8c8bee12008-09-29 11:19:10 -04007362 wait_event(root->fs_info->async_submit_wait,
Chris Mason771ed682008-11-06 22:02:51 -05007363 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
7364 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee12008-09-29 11:19:10 -04007365 }
7366 atomic_dec(&root->fs_info->async_submit_draining);
Chris Masonea8c2812008-08-04 23:17:27 -04007367 return 0;
7368}
7369
Chris Mason39279cc2007-06-12 06:35:45 -04007370static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
7371 const char *symname)
7372{
7373 struct btrfs_trans_handle *trans;
7374 struct btrfs_root *root = BTRFS_I(dir)->root;
7375 struct btrfs_path *path;
7376 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05007377 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04007378 int err;
7379 int drop_inode = 0;
7380 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04007381 u64 index = 0 ;
Chris Mason39279cc2007-06-12 06:35:45 -04007382 int name_len;
7383 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04007384 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04007385 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04007386 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05007387 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007388
7389 name_len = strlen(symname) + 1;
7390 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
7391 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05007392
Josef Bacik9ed74f22009-09-11 16:12:44 -04007393 /*
7394 * 2 items for inode item and ref
7395 * 2 items for dir items
7396 * 1 item for xattr if selinux is on
7397 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04007398 trans = btrfs_start_transaction(root, 5);
7399 if (IS_ERR(trans))
7400 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05007401
Li Zefan581bb052011-04-20 10:06:11 +08007402 err = btrfs_find_free_ino(root, &objectid);
7403 if (err)
7404 goto out_unlock;
7405
Josef Bacikaec74772008-07-24 12:12:38 -04007406 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08007407 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04007408 S_IFLNK|S_IRWXUGO, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04007409 if (IS_ERR(inode)) {
7410 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007411 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04007412 }
Chris Mason39279cc2007-06-12 06:35:45 -04007413
Eric Paris2a7dba32011-02-01 11:05:39 -05007414 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04007415 if (err) {
7416 drop_inode = 1;
7417 goto out_unlock;
7418 }
7419
Casey Schauflerad19db72011-12-15 10:09:07 -05007420 /*
7421 * If the active LSM wants to access the inode during
7422 * d_instantiate it needs these. Smack checks to see
7423 * if the filesystem supports xattrs by looking at the
7424 * ops vector.
7425 */
7426 inode->i_fop = &btrfs_file_operations;
7427 inode->i_op = &btrfs_file_inode_operations;
7428
Josef Bacika1b075d2010-11-19 20:36:11 +00007429 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04007430 if (err)
7431 drop_inode = 1;
7432 else {
7433 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04007434 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05007435 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04007436 }
Chris Mason39279cc2007-06-12 06:35:45 -04007437 if (drop_inode)
7438 goto out_unlock;
7439
7440 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07007441 if (!path) {
7442 err = -ENOMEM;
7443 drop_inode = 1;
7444 goto out_unlock;
7445 }
Li Zefan33345d012011-04-20 10:31:50 +08007446 key.objectid = btrfs_ino(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007447 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007448 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
7449 datasize = btrfs_file_extent_calc_inline_size(name_len);
7450 err = btrfs_insert_empty_item(trans, root, path, &key,
7451 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04007452 if (err) {
7453 drop_inode = 1;
Julia Lawallb0839162011-05-14 07:10:51 +00007454 btrfs_free_path(path);
Chris Mason54aa1f42007-06-22 14:16:25 -04007455 goto out_unlock;
7456 }
Chris Mason5f39d392007-10-15 16:14:19 -04007457 leaf = path->nodes[0];
7458 ei = btrfs_item_ptr(leaf, path->slots[0],
7459 struct btrfs_file_extent_item);
7460 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
7461 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04007462 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -04007463 btrfs_set_file_extent_encryption(leaf, ei, 0);
7464 btrfs_set_file_extent_compression(leaf, ei, 0);
7465 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
7466 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
7467
Chris Mason39279cc2007-06-12 06:35:45 -04007468 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04007469 write_extent_buffer(leaf, symname, ptr, name_len);
7470 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04007471 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04007472
Chris Mason39279cc2007-06-12 06:35:45 -04007473 inode->i_op = &btrfs_symlink_inode_operations;
7474 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04007475 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Yan Zhengd899e052008-10-30 14:25:28 -04007476 inode_set_bytes(inode, name_len);
Chris Masondbe674a2008-07-17 12:54:05 -04007477 btrfs_i_size_write(inode, name_len - 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04007478 err = btrfs_update_inode(trans, root, inode);
7479 if (err)
7480 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04007481
7482out_unlock:
Al Viro08c422c2011-12-23 07:58:13 -05007483 if (!err)
7484 d_instantiate(dentry, inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04007485 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05007486 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04007487 if (drop_inode) {
7488 inode_dec_link_count(inode);
7489 iput(inode);
7490 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04007491 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04007492 return err;
7493}
Chris Mason16432982008-04-10 10:23:21 -04007494
Josef Bacik0af3d002010-06-21 14:48:16 -04007495static int __btrfs_prealloc_file_range(struct inode *inode, int mode,
7496 u64 start, u64 num_bytes, u64 min_size,
7497 loff_t actual_len, u64 *alloc_hint,
7498 struct btrfs_trans_handle *trans)
Yan Zhengd899e052008-10-30 14:25:28 -04007499{
Yan Zhengd899e052008-10-30 14:25:28 -04007500 struct btrfs_root *root = BTRFS_I(inode)->root;
7501 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -04007502 u64 cur_offset = start;
Josef Bacik55a61d12010-11-22 18:50:32 +00007503 u64 i_size;
Yan Zhengd899e052008-10-30 14:25:28 -04007504 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04007505 bool own_trans = true;
Yan Zhengd899e052008-10-30 14:25:28 -04007506
Josef Bacik0af3d002010-06-21 14:48:16 -04007507 if (trans)
7508 own_trans = false;
Yan Zhengd899e052008-10-30 14:25:28 -04007509 while (num_bytes > 0) {
Josef Bacik0af3d002010-06-21 14:48:16 -04007510 if (own_trans) {
7511 trans = btrfs_start_transaction(root, 3);
7512 if (IS_ERR(trans)) {
7513 ret = PTR_ERR(trans);
7514 break;
7515 }
Yan Zhengd899e052008-10-30 14:25:28 -04007516 }
Yan, Zheng5a303d52009-11-12 09:34:52 +00007517
Yan, Zhengefa56462010-05-16 10:49:59 -04007518 ret = btrfs_reserve_extent(trans, root, num_bytes, min_size,
Josef Bacik81c9ad22012-01-18 10:56:06 -05007519 0, *alloc_hint, &ins, 1);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007520 if (ret) {
Josef Bacik0af3d002010-06-21 14:48:16 -04007521 if (own_trans)
7522 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04007523 break;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007524 }
7525
Yan Zhengd899e052008-10-30 14:25:28 -04007526 ret = insert_reserved_file_extent(trans, inode,
7527 cur_offset, ins.objectid,
7528 ins.offset, ins.offset,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00007529 ins.offset, 0, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04007530 BTRFS_FILE_EXTENT_PREALLOC);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007531 if (ret) {
7532 btrfs_abort_transaction(trans, root, ret);
7533 if (own_trans)
7534 btrfs_end_transaction(trans, root);
7535 break;
7536 }
Chris Masona1ed8352009-09-11 12:27:37 -04007537 btrfs_drop_extent_cache(inode, cur_offset,
7538 cur_offset + ins.offset -1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007539
Yan Zhengd899e052008-10-30 14:25:28 -04007540 num_bytes -= ins.offset;
7541 cur_offset += ins.offset;
Yan, Zhengefa56462010-05-16 10:49:59 -04007542 *alloc_hint = ins.objectid + ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007543
Josef Bacik0c4d2d92012-04-05 15:03:02 -04007544 inode_inc_iversion(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04007545 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +02007546 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -04007547 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
Yan, Zhengefa56462010-05-16 10:49:59 -04007548 (actual_len > inode->i_size) &&
7549 (cur_offset > inode->i_size)) {
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00007550 if (cur_offset > actual_len)
Josef Bacik55a61d12010-11-22 18:50:32 +00007551 i_size = actual_len;
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00007552 else
Josef Bacik55a61d12010-11-22 18:50:32 +00007553 i_size = cur_offset;
7554 i_size_write(inode, i_size);
7555 btrfs_ordered_update_i_size(inode, i_size, NULL);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007556 }
7557
Yan Zhengd899e052008-10-30 14:25:28 -04007558 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007559
7560 if (ret) {
7561 btrfs_abort_transaction(trans, root, ret);
7562 if (own_trans)
7563 btrfs_end_transaction(trans, root);
7564 break;
7565 }
Yan Zhengd899e052008-10-30 14:25:28 -04007566
Josef Bacik0af3d002010-06-21 14:48:16 -04007567 if (own_trans)
7568 btrfs_end_transaction(trans, root);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007569 }
Yan Zhengd899e052008-10-30 14:25:28 -04007570 return ret;
7571}
7572
Josef Bacik0af3d002010-06-21 14:48:16 -04007573int btrfs_prealloc_file_range(struct inode *inode, int mode,
7574 u64 start, u64 num_bytes, u64 min_size,
7575 loff_t actual_len, u64 *alloc_hint)
7576{
7577 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
7578 min_size, actual_len, alloc_hint,
7579 NULL);
7580}
7581
7582int btrfs_prealloc_file_range_trans(struct inode *inode,
7583 struct btrfs_trans_handle *trans, int mode,
7584 u64 start, u64 num_bytes, u64 min_size,
7585 loff_t actual_len, u64 *alloc_hint)
7586{
7587 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
7588 min_size, actual_len, alloc_hint, trans);
7589}
7590
Chris Masone6dcd2d2008-07-17 12:53:50 -04007591static int btrfs_set_page_dirty(struct page *page)
7592{
Chris Masone6dcd2d2008-07-17 12:53:50 -04007593 return __set_page_dirty_nobuffers(page);
7594}
7595
Al Viro10556cb2011-06-20 19:28:19 -04007596static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -05007597{
Li Zefanb83cc962010-12-20 16:04:08 +08007598 struct btrfs_root *root = BTRFS_I(inode)->root;
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +00007599 umode_t mode = inode->i_mode;
Li Zefanb83cc962010-12-20 16:04:08 +08007600
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +00007601 if (mask & MAY_WRITE &&
7602 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) {
7603 if (btrfs_root_readonly(root))
7604 return -EROFS;
7605 if (BTRFS_I(inode)->flags & BTRFS_INODE_READONLY)
7606 return -EACCES;
7607 }
Al Viro2830ba72011-06-20 19:16:29 -04007608 return generic_permission(inode, mask);
Yanfdebe2b2008-01-14 13:26:08 -05007609}
Chris Mason39279cc2007-06-12 06:35:45 -04007610
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007611static const struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -05007612 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -04007613 .lookup = btrfs_lookup,
7614 .create = btrfs_create,
7615 .unlink = btrfs_unlink,
7616 .link = btrfs_link,
7617 .mkdir = btrfs_mkdir,
7618 .rmdir = btrfs_rmdir,
7619 .rename = btrfs_rename,
7620 .symlink = btrfs_symlink,
7621 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04007622 .mknod = btrfs_mknod,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007623 .setxattr = btrfs_setxattr,
7624 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05007625 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007626 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05007627 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007628 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04007629};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007630static const struct inode_operations btrfs_dir_ro_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007631 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05007632 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007633 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04007634};
Yan, Zheng76dda932009-09-21 16:00:26 -04007635
Alexey Dobriyan828c0952009-10-01 15:43:56 -07007636static const struct file_operations btrfs_dir_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007637 .llseek = generic_file_llseek,
7638 .read = generic_read_dir,
David Woodhousecbdf5a22008-08-06 19:42:33 +01007639 .readdir = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04007640 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04007641#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04007642 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04007643#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04007644 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -04007645 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -04007646};
7647
Chris Masond1310b22008-01-24 16:13:08 -05007648static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04007649 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05007650 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04007651 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04007652 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04007653 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04007654 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05007655 .set_bit_hook = btrfs_set_bit_hook,
7656 .clear_bit_hook = btrfs_clear_bit_hook,
Josef Bacik9ed74f22009-09-11 16:12:44 -04007657 .merge_extent_hook = btrfs_merge_extent_hook,
7658 .split_extent_hook = btrfs_split_extent_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04007659};
7660
Chris Mason35054392009-01-21 13:11:13 -05007661/*
7662 * btrfs doesn't support the bmap operation because swapfiles
7663 * use bmap to make a mapping of extents in the file. They assume
7664 * these extents won't change over the life of the file and they
7665 * use the bmap result to do IO directly to the drive.
7666 *
7667 * the btrfs bmap call would return logical addresses that aren't
7668 * suitable for IO and they also will change frequently as COW
7669 * operations happen. So, swapfile + btrfs == corruption.
7670 *
7671 * For now we're avoiding this by dropping bmap.
7672 */
Alexey Dobriyan7f094102009-09-21 17:01:10 -07007673static const struct address_space_operations btrfs_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04007674 .readpage = btrfs_readpage,
7675 .writepage = btrfs_writepage,
Chris Masonb293f022007-11-01 19:45:34 -04007676 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05007677 .readpages = btrfs_readpages,
Chris Mason16432982008-04-10 10:23:21 -04007678 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04007679 .invalidatepage = btrfs_invalidatepage,
7680 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04007681 .set_page_dirty = btrfs_set_page_dirty,
Andi Kleen465fdd92009-09-16 11:50:18 +02007682 .error_remove_page = generic_error_remove_page,
Chris Mason39279cc2007-06-12 06:35:45 -04007683};
7684
Alexey Dobriyan7f094102009-09-21 17:01:10 -07007685static const struct address_space_operations btrfs_symlink_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04007686 .readpage = btrfs_readpage,
7687 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04007688 .invalidatepage = btrfs_invalidatepage,
7689 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04007690};
7691
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007692static const struct inode_operations btrfs_file_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007693 .getattr = btrfs_getattr,
7694 .setattr = btrfs_setattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007695 .setxattr = btrfs_setxattr,
7696 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05007697 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007698 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05007699 .permission = btrfs_permission,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05007700 .fiemap = btrfs_fiemap,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007701 .get_acl = btrfs_get_acl,
Josef Bacike41f9412012-03-26 09:46:47 -04007702 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -04007703};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007704static const struct inode_operations btrfs_special_inode_operations = {
Josef Bacik618e21d2007-07-11 10:18:17 -04007705 .getattr = btrfs_getattr,
7706 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05007707 .permission = btrfs_permission,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007708 .setxattr = btrfs_setxattr,
7709 .getxattr = btrfs_getxattr,
Josef Bacik33268ea2008-07-24 12:16:36 -04007710 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007711 .removexattr = btrfs_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007712 .get_acl = btrfs_get_acl,
Josef Bacike41f9412012-03-26 09:46:47 -04007713 .update_time = btrfs_update_time,
Josef Bacik618e21d2007-07-11 10:18:17 -04007714};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007715static const struct inode_operations btrfs_symlink_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007716 .readlink = generic_readlink,
7717 .follow_link = page_follow_link_light,
7718 .put_link = page_put_link,
Li Zefanf2095612010-11-19 02:05:24 +00007719 .getattr = btrfs_getattr,
Josef Bacik22c44fe2011-11-30 10:45:38 -05007720 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05007721 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -05007722 .setxattr = btrfs_setxattr,
7723 .getxattr = btrfs_getxattr,
7724 .listxattr = btrfs_listxattr,
7725 .removexattr = btrfs_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007726 .get_acl = btrfs_get_acl,
Josef Bacike41f9412012-03-26 09:46:47 -04007727 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -04007728};
Yan, Zheng76dda932009-09-21 16:00:26 -04007729
Alexey Dobriyan82d339d2009-10-09 09:54:36 -04007730const struct dentry_operations btrfs_dentry_operations = {
Yan, Zheng76dda932009-09-21 16:00:26 -04007731 .d_delete = btrfs_dentry_delete,
Josef Bacikb4aff1f2011-06-28 16:18:59 -04007732 .d_release = btrfs_dentry_release,
Yan, Zheng76dda932009-09-21 16:00:26 -04007733};