blob: 7855aac36706840eb51029475ccba9f265ab0bc2 [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;
Miao Xie8ccf6f192012-10-25 09:28:04 +000074static struct kmem_cache *btrfs_delalloc_work_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040075struct kmem_cache *btrfs_trans_handle_cachep;
76struct kmem_cache *btrfs_transaction_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040077struct kmem_cache *btrfs_path_cachep;
Josef Bacikdc89e982011-01-28 17:05:48 -050078struct kmem_cache *btrfs_free_space_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040079
80#define S_SHIFT 12
81static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
82 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
83 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
84 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
85 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
86 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
87 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
88 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
89};
90
Josef Bacika41ad392011-01-31 15:30:16 -050091static int btrfs_setsize(struct inode *inode, loff_t newsize);
92static int btrfs_truncate(struct inode *inode);
Josef Bacik5fd02042012-05-02 14:00:54 -040093static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent);
Chris Mason771ed682008-11-06 22:02:51 -050094static noinline int cow_file_range(struct inode *inode,
95 struct page *locked_page,
96 u64 start, u64 end, int *page_started,
97 unsigned long *nr_written, int unlock);
Josef Bacik7b128762008-07-24 12:17:14 -040098
Yan, Zhengf34f57a2009-11-12 09:35:27 +000099static int btrfs_init_inode_security(struct btrfs_trans_handle *trans,
Eric Paris2a7dba32011-02-01 11:05:39 -0500100 struct inode *inode, struct inode *dir,
101 const struct qstr *qstr)
Jim Owens0279b4c2009-02-04 09:29:13 -0500102{
103 int err;
104
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000105 err = btrfs_init_acl(trans, inode, dir);
Jim Owens0279b4c2009-02-04 09:29:13 -0500106 if (!err)
Eric Paris2a7dba32011-02-01 11:05:39 -0500107 err = btrfs_xattr_security_init(trans, inode, dir, qstr);
Jim Owens0279b4c2009-02-04 09:29:13 -0500108 return err;
109}
110
Chris Masond352ac62008-09-29 15:18:18 -0400111/*
Chris Masonc8b97812008-10-29 14:49:59 -0400112 * this does all the hard work for inserting an inline extent into
113 * the btree. The caller should have done a btrfs_drop_extents so that
114 * no overlapping inline items exist in the btree
115 */
Chris Masond3977122009-01-05 21:25:51 -0500116static noinline int insert_inline_extent(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400117 struct btrfs_root *root, struct inode *inode,
118 u64 start, size_t size, size_t compressed_size,
Li Zefanfe3f5662011-03-28 08:30:38 +0000119 int compress_type,
Chris Masonc8b97812008-10-29 14:49:59 -0400120 struct page **compressed_pages)
121{
122 struct btrfs_key key;
123 struct btrfs_path *path;
124 struct extent_buffer *leaf;
125 struct page *page = NULL;
126 char *kaddr;
127 unsigned long ptr;
128 struct btrfs_file_extent_item *ei;
129 int err = 0;
130 int ret;
131 size_t cur_size = size;
132 size_t datasize;
133 unsigned long offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400134
Li Zefanfe3f5662011-03-28 08:30:38 +0000135 if (compressed_size && compressed_pages)
Chris Masonc8b97812008-10-29 14:49:59 -0400136 cur_size = compressed_size;
Chris Masonc8b97812008-10-29 14:49:59 -0400137
Chris Masond3977122009-01-05 21:25:51 -0500138 path = btrfs_alloc_path();
139 if (!path)
Chris Masonc8b97812008-10-29 14:49:59 -0400140 return -ENOMEM;
141
Chris Masonb9473432009-03-13 11:00:37 -0400142 path->leave_spinning = 1;
Chris Masonc8b97812008-10-29 14:49:59 -0400143
Li Zefan33345d012011-04-20 10:31:50 +0800144 key.objectid = btrfs_ino(inode);
Chris Masonc8b97812008-10-29 14:49:59 -0400145 key.offset = start;
146 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
Chris Masonc8b97812008-10-29 14:49:59 -0400147 datasize = btrfs_file_extent_calc_inline_size(cur_size);
148
149 inode_add_bytes(inode, size);
150 ret = btrfs_insert_empty_item(trans, root, path, &key,
151 datasize);
Chris Masonc8b97812008-10-29 14:49:59 -0400152 if (ret) {
153 err = ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400154 goto fail;
155 }
156 leaf = path->nodes[0];
157 ei = btrfs_item_ptr(leaf, path->slots[0],
158 struct btrfs_file_extent_item);
159 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
160 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
161 btrfs_set_file_extent_encryption(leaf, ei, 0);
162 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
163 btrfs_set_file_extent_ram_bytes(leaf, ei, size);
164 ptr = btrfs_file_extent_inline_start(ei);
165
Li Zefan261507a02010-12-17 14:21:50 +0800166 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -0400167 struct page *cpage;
168 int i = 0;
Chris Masond3977122009-01-05 21:25:51 -0500169 while (compressed_size > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -0400170 cpage = compressed_pages[i];
Chris Mason5b050f02008-11-11 09:34:41 -0500171 cur_size = min_t(unsigned long, compressed_size,
Chris Masonc8b97812008-10-29 14:49:59 -0400172 PAGE_CACHE_SIZE);
173
Cong Wang7ac687d2011-11-25 23:14:28 +0800174 kaddr = kmap_atomic(cpage);
Chris Masonc8b97812008-10-29 14:49:59 -0400175 write_extent_buffer(leaf, kaddr, ptr, cur_size);
Cong Wang7ac687d2011-11-25 23:14:28 +0800176 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400177
178 i++;
179 ptr += cur_size;
180 compressed_size -= cur_size;
181 }
182 btrfs_set_file_extent_compression(leaf, ei,
Li Zefan261507a02010-12-17 14:21:50 +0800183 compress_type);
Chris Masonc8b97812008-10-29 14:49:59 -0400184 } else {
185 page = find_get_page(inode->i_mapping,
186 start >> PAGE_CACHE_SHIFT);
187 btrfs_set_file_extent_compression(leaf, ei, 0);
Cong Wang7ac687d2011-11-25 23:14:28 +0800188 kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -0400189 offset = start & (PAGE_CACHE_SIZE - 1);
190 write_extent_buffer(leaf, kaddr + offset, ptr, size);
Cong Wang7ac687d2011-11-25 23:14:28 +0800191 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400192 page_cache_release(page);
193 }
194 btrfs_mark_buffer_dirty(leaf);
195 btrfs_free_path(path);
196
Yan, Zhengc21677542009-11-12 09:34:21 +0000197 /*
198 * we're an inline extent, so nobody can
199 * extend the file past i_size without locking
200 * a page we already have locked.
201 *
202 * We must do any isize and inode updates
203 * before we unlock the pages. Otherwise we
204 * could end up racing with unlink.
205 */
Chris Masonc8b97812008-10-29 14:49:59 -0400206 BTRFS_I(inode)->disk_i_size = inode->i_size;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100207 ret = btrfs_update_inode(trans, root, inode);
Yan, Zhengc21677542009-11-12 09:34:21 +0000208
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100209 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400210fail:
211 btrfs_free_path(path);
212 return err;
213}
214
215
216/*
217 * conditionally insert an inline extent into the file. This
218 * does the checks required to make sure the data is small enough
219 * to fit as an inline extent.
220 */
Chris Mason7f366cf2009-03-12 20:12:45 -0400221static noinline int cow_file_range_inline(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400222 struct btrfs_root *root,
223 struct inode *inode, u64 start, u64 end,
Li Zefanfe3f5662011-03-28 08:30:38 +0000224 size_t compressed_size, int compress_type,
Chris Masonc8b97812008-10-29 14:49:59 -0400225 struct page **compressed_pages)
226{
227 u64 isize = i_size_read(inode);
228 u64 actual_end = min(end + 1, isize);
229 u64 inline_len = actual_end - start;
230 u64 aligned_end = (end + root->sectorsize - 1) &
231 ~((u64)root->sectorsize - 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400232 u64 data_len = inline_len;
233 int ret;
234
235 if (compressed_size)
236 data_len = compressed_size;
237
238 if (start > 0 ||
Chris Mason70b99e62008-10-31 12:46:39 -0400239 actual_end >= PAGE_CACHE_SIZE ||
Chris Masonc8b97812008-10-29 14:49:59 -0400240 data_len >= BTRFS_MAX_INLINE_DATA_SIZE(root) ||
241 (!compressed_size &&
242 (actual_end & (root->sectorsize - 1)) == 0) ||
243 end + 1 < isize ||
244 data_len > root->fs_info->max_inline) {
245 return 1;
246 }
247
Josef Bacik26714852012-08-29 12:24:27 -0400248 ret = btrfs_drop_extents(trans, root, inode, start, aligned_end, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100249 if (ret)
250 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400251
252 if (isize > actual_end)
253 inline_len = min_t(u64, isize, actual_end);
254 ret = insert_inline_extent(trans, root, inode, start,
255 inline_len, compressed_size,
Li Zefanfe3f5662011-03-28 08:30:38 +0000256 compress_type, compressed_pages);
Josef Bacik2adcac12012-05-23 16:10:14 -0400257 if (ret && ret != -ENOSPC) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100258 btrfs_abort_transaction(trans, root, ret);
259 return ret;
Josef Bacik2adcac12012-05-23 16:10:14 -0400260 } else if (ret == -ENOSPC) {
261 return 1;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100262 }
Josef Bacik2adcac12012-05-23 16:10:14 -0400263
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400264 btrfs_delalloc_release_metadata(inode, end + 1 - start);
Chris Masona1ed8352009-09-11 12:27:37 -0400265 btrfs_drop_extent_cache(inode, start, aligned_end - 1, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400266 return 0;
267}
268
Chris Mason771ed682008-11-06 22:02:51 -0500269struct async_extent {
270 u64 start;
271 u64 ram_size;
272 u64 compressed_size;
273 struct page **pages;
274 unsigned long nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800275 int compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500276 struct list_head list;
277};
278
279struct async_cow {
280 struct inode *inode;
281 struct btrfs_root *root;
282 struct page *locked_page;
283 u64 start;
284 u64 end;
285 struct list_head extents;
286 struct btrfs_work work;
287};
288
289static noinline int add_async_extent(struct async_cow *cow,
290 u64 start, u64 ram_size,
291 u64 compressed_size,
292 struct page **pages,
Li Zefan261507a02010-12-17 14:21:50 +0800293 unsigned long nr_pages,
294 int compress_type)
Chris Mason771ed682008-11-06 22:02:51 -0500295{
296 struct async_extent *async_extent;
297
298 async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100299 BUG_ON(!async_extent); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -0500300 async_extent->start = start;
301 async_extent->ram_size = ram_size;
302 async_extent->compressed_size = compressed_size;
303 async_extent->pages = pages;
304 async_extent->nr_pages = nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800305 async_extent->compress_type = compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500306 list_add_tail(&async_extent->list, &cow->extents);
307 return 0;
308}
309
Chris Masonc8b97812008-10-29 14:49:59 -0400310/*
Chris Mason771ed682008-11-06 22:02:51 -0500311 * we create compressed extents in two phases. The first
312 * phase compresses a range of pages that have already been
313 * locked (both pages and state bits are locked).
Chris Masonc8b97812008-10-29 14:49:59 -0400314 *
Chris Mason771ed682008-11-06 22:02:51 -0500315 * This is done inside an ordered work queue, and the compression
316 * is spread across many cpus. The actual IO submission is step
317 * two, and the ordered work queue takes care of making sure that
318 * happens in the same order things were put onto the queue by
319 * writepages and friends.
Chris Masonc8b97812008-10-29 14:49:59 -0400320 *
Chris Mason771ed682008-11-06 22:02:51 -0500321 * If this code finds it can't get good compression, it puts an
322 * entry onto the work queue to write the uncompressed bytes. This
323 * makes sure that both compressed inodes and uncompressed inodes
Artem Bityutskiyb2570312012-07-25 18:12:06 +0300324 * are written in the same order that the flusher thread sent them
325 * down.
Chris Masond352ac62008-09-29 15:18:18 -0400326 */
Chris Mason771ed682008-11-06 22:02:51 -0500327static noinline int compress_file_range(struct inode *inode,
328 struct page *locked_page,
329 u64 start, u64 end,
330 struct async_cow *async_cow,
331 int *num_added)
Chris Masonb888db22007-08-27 16:49:44 -0400332{
333 struct btrfs_root *root = BTRFS_I(inode)->root;
334 struct btrfs_trans_handle *trans;
Chris Masondb945352007-10-15 16:15:53 -0400335 u64 num_bytes;
Chris Masondb945352007-10-15 16:15:53 -0400336 u64 blocksize = root->sectorsize;
Chris Masonc8b97812008-10-29 14:49:59 -0400337 u64 actual_end;
Chris Mason42dc7ba2008-12-15 11:44:56 -0500338 u64 isize = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400339 int ret = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400340 struct page **pages = NULL;
341 unsigned long nr_pages;
342 unsigned long nr_pages_ret = 0;
343 unsigned long total_compressed = 0;
344 unsigned long total_in = 0;
345 unsigned long max_compressed = 128 * 1024;
Chris Mason771ed682008-11-06 22:02:51 -0500346 unsigned long max_uncompressed = 128 * 1024;
Chris Masonc8b97812008-10-29 14:49:59 -0400347 int i;
348 int will_compress;
Li Zefan261507a02010-12-17 14:21:50 +0800349 int compress_type = root->fs_info->compress_type;
Chris Masonb888db22007-08-27 16:49:44 -0400350
Liu Bo4cb13e52012-03-29 09:57:45 -0400351 /* if this is a small write inside eof, kick off a defrag */
352 if ((end - start + 1) < 16 * 1024 &&
353 (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size))
Chris Mason4cb53002011-05-24 15:35:30 -0400354 btrfs_add_inode_defrag(NULL, inode);
355
Chris Mason42dc7ba2008-12-15 11:44:56 -0500356 actual_end = min_t(u64, isize, end + 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400357again:
358 will_compress = 0;
359 nr_pages = (end >> PAGE_CACHE_SHIFT) - (start >> PAGE_CACHE_SHIFT) + 1;
360 nr_pages = min(nr_pages, (128 * 1024UL) / PAGE_CACHE_SIZE);
361
Chris Masonf03d9302009-02-04 09:31:06 -0500362 /*
363 * we don't want to send crud past the end of i_size through
364 * compression, that's just a waste of CPU time. So, if the
365 * end of the file is before the start of our current
366 * requested range of bytes, we bail out to the uncompressed
367 * cleanup code that can deal with all of this.
368 *
369 * It isn't really the fastest way to fix things, but this is a
370 * very uncommon corner.
371 */
372 if (actual_end <= start)
373 goto cleanup_and_bail_uncompressed;
374
Chris Masonc8b97812008-10-29 14:49:59 -0400375 total_compressed = actual_end - start;
376
377 /* we want to make sure that amount of ram required to uncompress
378 * an extent is reasonable, so we limit the total size in ram
Chris Mason771ed682008-11-06 22:02:51 -0500379 * of a compressed extent to 128k. This is a crucial number
380 * because it also controls how easily we can spread reads across
381 * cpus for decompression.
382 *
383 * We also want to make sure the amount of IO required to do
384 * a random read is reasonably small, so we limit the size of
385 * a compressed extent to 128k.
Chris Masonc8b97812008-10-29 14:49:59 -0400386 */
387 total_compressed = min(total_compressed, max_uncompressed);
Chris Masondb945352007-10-15 16:15:53 -0400388 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
Chris Masonbe20aa92007-12-17 20:14:01 -0500389 num_bytes = max(blocksize, num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -0400390 total_in = 0;
391 ret = 0;
Chris Masondb945352007-10-15 16:15:53 -0400392
Chris Mason771ed682008-11-06 22:02:51 -0500393 /*
394 * we do compression for mount -o compress and when the
395 * inode has not been flagged as nocompress. This flag can
396 * change at any time if we discover bad compression ratios.
Chris Masonc8b97812008-10-29 14:49:59 -0400397 */
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200398 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS) &&
Chris Mason1e701a32010-03-11 09:42:04 -0500399 (btrfs_test_opt(root, COMPRESS) ||
Liu Bo75e7cb72011-03-22 10:12:20 +0000400 (BTRFS_I(inode)->force_compress) ||
401 (BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS))) {
Chris Masonc8b97812008-10-29 14:49:59 -0400402 WARN_ON(pages);
Chris Masoncfbc2462008-10-30 13:22:14 -0400403 pages = kzalloc(sizeof(struct page *) * nr_pages, GFP_NOFS);
Li Zefan560f7d72011-09-08 10:22:01 +0800404 if (!pages) {
405 /* just bail out to the uncompressed code */
406 goto cont;
407 }
Chris Mason179e29e2007-11-01 11:28:41 -0400408
Li Zefan261507a02010-12-17 14:21:50 +0800409 if (BTRFS_I(inode)->force_compress)
410 compress_type = BTRFS_I(inode)->force_compress;
411
412 ret = btrfs_compress_pages(compress_type,
413 inode->i_mapping, start,
414 total_compressed, pages,
415 nr_pages, &nr_pages_ret,
416 &total_in,
417 &total_compressed,
418 max_compressed);
Chris Masonc8b97812008-10-29 14:49:59 -0400419
420 if (!ret) {
421 unsigned long offset = total_compressed &
422 (PAGE_CACHE_SIZE - 1);
423 struct page *page = pages[nr_pages_ret - 1];
424 char *kaddr;
425
426 /* zero the tail end of the last page, we might be
427 * sending it down to disk
428 */
429 if (offset) {
Cong Wang7ac687d2011-11-25 23:14:28 +0800430 kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -0400431 memset(kaddr + offset, 0,
432 PAGE_CACHE_SIZE - offset);
Cong Wang7ac687d2011-11-25 23:14:28 +0800433 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400434 }
435 will_compress = 1;
436 }
437 }
Li Zefan560f7d72011-09-08 10:22:01 +0800438cont:
Chris Masonc8b97812008-10-29 14:49:59 -0400439 if (start == 0) {
Josef Bacik7a7eaa402011-04-13 12:54:33 -0400440 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100441 if (IS_ERR(trans)) {
442 ret = PTR_ERR(trans);
443 trans = NULL;
444 goto cleanup_and_out;
445 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400446 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason771ed682008-11-06 22:02:51 -0500447
Chris Masonc8b97812008-10-29 14:49:59 -0400448 /* lets try to make an inline extent */
Chris Mason771ed682008-11-06 22:02:51 -0500449 if (ret || total_in < (actual_end - start)) {
Chris Masonc8b97812008-10-29 14:49:59 -0400450 /* we didn't compress the entire range, try
Chris Mason771ed682008-11-06 22:02:51 -0500451 * to make an uncompressed inline extent.
Chris Masonc8b97812008-10-29 14:49:59 -0400452 */
453 ret = cow_file_range_inline(trans, root, inode,
Li Zefanfe3f5662011-03-28 08:30:38 +0000454 start, end, 0, 0, NULL);
Chris Masonc8b97812008-10-29 14:49:59 -0400455 } else {
Chris Mason771ed682008-11-06 22:02:51 -0500456 /* try making a compressed inline extent */
Chris Masonc8b97812008-10-29 14:49:59 -0400457 ret = cow_file_range_inline(trans, root, inode,
458 start, end,
Li Zefanfe3f5662011-03-28 08:30:38 +0000459 total_compressed,
460 compress_type, pages);
Chris Masonc8b97812008-10-29 14:49:59 -0400461 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100462 if (ret <= 0) {
Chris Mason771ed682008-11-06 22:02:51 -0500463 /*
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100464 * inline extent creation worked or returned error,
465 * we don't need to create any more async work items.
466 * Unlock and free up our temp pages.
Chris Mason771ed682008-11-06 22:02:51 -0500467 */
Chris Masonc8b97812008-10-29 14:49:59 -0400468 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400469 &BTRFS_I(inode)->io_tree,
470 start, end, NULL,
471 EXTENT_CLEAR_UNLOCK_PAGE | EXTENT_CLEAR_DIRTY |
Chris Masona3429ab2009-10-08 12:30:20 -0400472 EXTENT_CLEAR_DELALLOC |
Chris Masona791e352009-10-08 11:27:10 -0400473 EXTENT_SET_WRITEBACK | EXTENT_END_WRITEBACK);
Yan, Zhengc21677542009-11-12 09:34:21 +0000474
475 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400476 goto free_pages_out;
477 }
Yan, Zhengc21677542009-11-12 09:34:21 +0000478 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400479 }
480
481 if (will_compress) {
482 /*
483 * we aren't doing an inline extent round the compressed size
484 * up to a block size boundary so the allocator does sane
485 * things
486 */
487 total_compressed = (total_compressed + blocksize - 1) &
488 ~(blocksize - 1);
489
490 /*
491 * one last check to make sure the compression is really a
492 * win, compare the page count read with the blocks on disk
493 */
494 total_in = (total_in + PAGE_CACHE_SIZE - 1) &
495 ~(PAGE_CACHE_SIZE - 1);
496 if (total_compressed >= total_in) {
497 will_compress = 0;
498 } else {
Chris Masonc8b97812008-10-29 14:49:59 -0400499 num_bytes = total_in;
500 }
501 }
502 if (!will_compress && pages) {
503 /*
504 * the compression code ran but failed to make things smaller,
505 * free any pages it allocated and our page pointer array
506 */
507 for (i = 0; i < nr_pages_ret; i++) {
Chris Mason70b99e62008-10-31 12:46:39 -0400508 WARN_ON(pages[i]->mapping);
Chris Masonc8b97812008-10-29 14:49:59 -0400509 page_cache_release(pages[i]);
510 }
511 kfree(pages);
512 pages = NULL;
513 total_compressed = 0;
514 nr_pages_ret = 0;
515
516 /* flag the file so we don't compress in the future */
Chris Mason1e701a32010-03-11 09:42:04 -0500517 if (!btrfs_test_opt(root, FORCE_COMPRESS) &&
518 !(BTRFS_I(inode)->force_compress)) {
Chris Masona555f812010-01-28 16:18:15 -0500519 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
Chris Mason1e701a32010-03-11 09:42:04 -0500520 }
Chris Masonc8b97812008-10-29 14:49:59 -0400521 }
Chris Mason771ed682008-11-06 22:02:51 -0500522 if (will_compress) {
523 *num_added += 1;
524
525 /* the async work queues will take care of doing actual
526 * allocation on disk for these compressed pages,
527 * and will submit them to the elevator.
528 */
529 add_async_extent(async_cow, start, num_bytes,
Li Zefan261507a02010-12-17 14:21:50 +0800530 total_compressed, pages, nr_pages_ret,
531 compress_type);
Chris Mason771ed682008-11-06 22:02:51 -0500532
Yan, Zheng24ae6362010-12-06 07:02:36 +0000533 if (start + num_bytes < end) {
Chris Mason771ed682008-11-06 22:02:51 -0500534 start += num_bytes;
535 pages = NULL;
536 cond_resched();
537 goto again;
538 }
539 } else {
Chris Masonf03d9302009-02-04 09:31:06 -0500540cleanup_and_bail_uncompressed:
Chris Mason771ed682008-11-06 22:02:51 -0500541 /*
542 * No compression, but we still need to write the pages in
543 * the file we've been given so far. redirty the locked
544 * page if it corresponds to our extent and set things up
545 * for the async work queue to run cow_file_range to do
546 * the normal delalloc dance
547 */
548 if (page_offset(locked_page) >= start &&
549 page_offset(locked_page) <= end) {
550 __set_page_dirty_nobuffers(locked_page);
551 /* unlocked later on in the async handlers */
552 }
Li Zefan261507a02010-12-17 14:21:50 +0800553 add_async_extent(async_cow, start, end - start + 1,
554 0, NULL, 0, BTRFS_COMPRESS_NONE);
Chris Mason771ed682008-11-06 22:02:51 -0500555 *num_added += 1;
556 }
557
558out:
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100559 return ret;
Chris Mason771ed682008-11-06 22:02:51 -0500560
561free_pages_out:
562 for (i = 0; i < nr_pages_ret; i++) {
563 WARN_ON(pages[i]->mapping);
564 page_cache_release(pages[i]);
565 }
Chris Masond3977122009-01-05 21:25:51 -0500566 kfree(pages);
Chris Mason771ed682008-11-06 22:02:51 -0500567
568 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100569
570cleanup_and_out:
571 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
572 start, end, NULL,
573 EXTENT_CLEAR_UNLOCK_PAGE |
574 EXTENT_CLEAR_DIRTY |
575 EXTENT_CLEAR_DELALLOC |
576 EXTENT_SET_WRITEBACK |
577 EXTENT_END_WRITEBACK);
578 if (!trans || IS_ERR(trans))
579 btrfs_error(root->fs_info, ret, "Failed to join transaction");
580 else
581 btrfs_abort_transaction(trans, root, ret);
582 goto free_pages_out;
Chris Mason771ed682008-11-06 22:02:51 -0500583}
584
585/*
586 * phase two of compressed writeback. This is the ordered portion
587 * of the code, which only gets called in the order the work was
588 * queued. We walk all the async extents created by compress_file_range
589 * and send them down to the disk.
590 */
591static noinline int submit_compressed_extents(struct inode *inode,
592 struct async_cow *async_cow)
593{
594 struct async_extent *async_extent;
595 u64 alloc_hint = 0;
596 struct btrfs_trans_handle *trans;
597 struct btrfs_key ins;
598 struct extent_map *em;
599 struct btrfs_root *root = BTRFS_I(inode)->root;
600 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
601 struct extent_io_tree *io_tree;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500602 int ret = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500603
604 if (list_empty(&async_cow->extents))
605 return 0;
606
Chris Mason771ed682008-11-06 22:02:51 -0500607
Chris Masond3977122009-01-05 21:25:51 -0500608 while (!list_empty(&async_cow->extents)) {
Chris Mason771ed682008-11-06 22:02:51 -0500609 async_extent = list_entry(async_cow->extents.next,
610 struct async_extent, list);
611 list_del(&async_extent->list);
612
613 io_tree = &BTRFS_I(inode)->io_tree;
614
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500615retry:
Chris Mason771ed682008-11-06 22:02:51 -0500616 /* did the compression code fall back to uncompressed IO? */
617 if (!async_extent->pages) {
618 int page_started = 0;
619 unsigned long nr_written = 0;
620
621 lock_extent(io_tree, async_extent->start,
Josef Bacik2ac55d42010-02-03 19:33:23 +0000622 async_extent->start +
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100623 async_extent->ram_size - 1);
Chris Mason771ed682008-11-06 22:02:51 -0500624
625 /* allocate blocks */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500626 ret = cow_file_range(inode, async_cow->locked_page,
627 async_extent->start,
628 async_extent->start +
629 async_extent->ram_size - 1,
630 &page_started, &nr_written, 0);
Chris Mason771ed682008-11-06 22:02:51 -0500631
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100632 /* JDM XXX */
633
Chris Mason771ed682008-11-06 22:02:51 -0500634 /*
635 * if page_started, cow_file_range inserted an
636 * inline extent and took care of all the unlocking
637 * and IO for us. Otherwise, we need to submit
638 * all those pages down to the drive.
639 */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500640 if (!page_started && !ret)
Chris Mason771ed682008-11-06 22:02:51 -0500641 extent_write_locked_range(io_tree,
642 inode, async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500643 async_extent->start +
Chris Mason771ed682008-11-06 22:02:51 -0500644 async_extent->ram_size - 1,
645 btrfs_get_extent,
646 WB_SYNC_ALL);
647 kfree(async_extent);
648 cond_resched();
649 continue;
650 }
651
652 lock_extent(io_tree, async_extent->start,
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100653 async_extent->start + async_extent->ram_size - 1);
Chris Mason771ed682008-11-06 22:02:51 -0500654
Josef Bacik7a7eaa402011-04-13 12:54:33 -0400655 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100656 if (IS_ERR(trans)) {
657 ret = PTR_ERR(trans);
658 } else {
659 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
660 ret = btrfs_reserve_extent(trans, root,
Chris Mason771ed682008-11-06 22:02:51 -0500661 async_extent->compressed_size,
662 async_extent->compressed_size,
Josef Bacik81c9ad22012-01-18 10:56:06 -0500663 0, alloc_hint, &ins, 1);
Miao Xie962197b2012-09-11 23:27:35 -0600664 if (ret && ret != -ENOSPC)
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100665 btrfs_abort_transaction(trans, root, ret);
666 btrfs_end_transaction(trans, root);
667 }
Yan, Zhengc21677542009-11-12 09:34:21 +0000668
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500669 if (ret) {
670 int i;
671 for (i = 0; i < async_extent->nr_pages; i++) {
672 WARN_ON(async_extent->pages[i]->mapping);
673 page_cache_release(async_extent->pages[i]);
674 }
675 kfree(async_extent->pages);
676 async_extent->nr_pages = 0;
677 async_extent->pages = NULL;
678 unlock_extent(io_tree, async_extent->start,
679 async_extent->start +
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100680 async_extent->ram_size - 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100681 if (ret == -ENOSPC)
682 goto retry;
683 goto out_free; /* JDM: Requeue? */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500684 }
685
Yan, Zhengc21677542009-11-12 09:34:21 +0000686 /*
687 * here we're doing allocation and writeback of the
688 * compressed pages
689 */
690 btrfs_drop_extent_cache(inode, async_extent->start,
691 async_extent->start +
692 async_extent->ram_size - 1, 0);
693
David Sterba172ddd62011-04-21 00:48:27 +0200694 em = alloc_extent_map();
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100695 BUG_ON(!em); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -0500696 em->start = async_extent->start;
697 em->len = async_extent->ram_size;
Chris Mason445a6942008-11-10 11:53:33 -0500698 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500699
700 em->block_start = ins.objectid;
701 em->block_len = ins.offset;
702 em->bdev = root->fs_info->fs_devices->latest_bdev;
Li Zefan261507a02010-12-17 14:21:50 +0800703 em->compress_type = async_extent->compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500704 set_bit(EXTENT_FLAG_PINNED, &em->flags);
705 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
706
Chris Masond3977122009-01-05 21:25:51 -0500707 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400708 write_lock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500709 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400710 write_unlock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500711 if (ret != -EEXIST) {
712 free_extent_map(em);
713 break;
714 }
715 btrfs_drop_extent_cache(inode, async_extent->start,
716 async_extent->start +
717 async_extent->ram_size - 1, 0);
718 }
719
Li Zefan261507a02010-12-17 14:21:50 +0800720 ret = btrfs_add_ordered_extent_compress(inode,
721 async_extent->start,
722 ins.objectid,
723 async_extent->ram_size,
724 ins.offset,
725 BTRFS_ORDERED_COMPRESSED,
726 async_extent->compress_type);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100727 BUG_ON(ret); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -0500728
Chris Mason771ed682008-11-06 22:02:51 -0500729 /*
730 * clear dirty, set writeback and unlock the pages.
731 */
732 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400733 &BTRFS_I(inode)->io_tree,
734 async_extent->start,
735 async_extent->start +
736 async_extent->ram_size - 1,
737 NULL, EXTENT_CLEAR_UNLOCK_PAGE |
738 EXTENT_CLEAR_UNLOCK |
Chris Masona3429ab2009-10-08 12:30:20 -0400739 EXTENT_CLEAR_DELALLOC |
Chris Masona791e352009-10-08 11:27:10 -0400740 EXTENT_CLEAR_DIRTY | EXTENT_SET_WRITEBACK);
Chris Mason771ed682008-11-06 22:02:51 -0500741
742 ret = btrfs_submit_compressed_write(inode,
Chris Masond3977122009-01-05 21:25:51 -0500743 async_extent->start,
744 async_extent->ram_size,
745 ins.objectid,
746 ins.offset, async_extent->pages,
747 async_extent->nr_pages);
Chris Mason771ed682008-11-06 22:02:51 -0500748
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100749 BUG_ON(ret); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -0500750 alloc_hint = ins.objectid + ins.offset;
751 kfree(async_extent);
752 cond_resched();
753 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100754 ret = 0;
755out:
756 return ret;
757out_free:
758 kfree(async_extent);
759 goto out;
Chris Mason771ed682008-11-06 22:02:51 -0500760}
761
Josef Bacik4b46fce2010-05-23 11:00:55 -0400762static u64 get_extent_allocation_hint(struct inode *inode, u64 start,
763 u64 num_bytes)
764{
765 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
766 struct extent_map *em;
767 u64 alloc_hint = 0;
768
769 read_lock(&em_tree->lock);
770 em = search_extent_mapping(em_tree, start, num_bytes);
771 if (em) {
772 /*
773 * if block start isn't an actual block number then find the
774 * first block in this inode and use that as a hint. If that
775 * block is also bogus then just don't worry about it.
776 */
777 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
778 free_extent_map(em);
779 em = search_extent_mapping(em_tree, 0, 0);
780 if (em && em->block_start < EXTENT_MAP_LAST_BYTE)
781 alloc_hint = em->block_start;
782 if (em)
783 free_extent_map(em);
784 } else {
785 alloc_hint = em->block_start;
786 free_extent_map(em);
787 }
788 }
789 read_unlock(&em_tree->lock);
790
791 return alloc_hint;
792}
793
Chris Mason771ed682008-11-06 22:02:51 -0500794/*
795 * when extent_io.c finds a delayed allocation range in the file,
796 * the call backs end up in this code. The basic idea is to
797 * allocate extents on disk for the range, and create ordered data structs
798 * in ram to track those extents.
799 *
800 * locked_page is the page that writepage had locked already. We use
801 * it to make sure we don't do extra locks or unlocks.
802 *
803 * *page_started is set to one if we unlock locked_page and do everything
804 * required to start IO on it. It may be clean and already done with
805 * IO when we return.
806 */
Miao Xieb7d5b0a2012-11-01 07:32:18 +0000807static noinline int __cow_file_range(struct btrfs_trans_handle *trans,
808 struct inode *inode,
809 struct btrfs_root *root,
810 struct page *locked_page,
811 u64 start, u64 end, int *page_started,
812 unsigned long *nr_written,
813 int unlock)
Chris Mason771ed682008-11-06 22:02:51 -0500814{
Chris Mason771ed682008-11-06 22:02:51 -0500815 u64 alloc_hint = 0;
816 u64 num_bytes;
817 unsigned long ram_size;
818 u64 disk_num_bytes;
819 u64 cur_alloc_size;
820 u64 blocksize = root->sectorsize;
Chris Mason771ed682008-11-06 22:02:51 -0500821 struct btrfs_key ins;
822 struct extent_map *em;
823 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
824 int ret = 0;
825
Liu Bo83eea1f2012-07-10 05:28:39 -0600826 BUG_ON(btrfs_is_free_space_inode(inode));
Chris Mason771ed682008-11-06 22:02:51 -0500827
Chris Mason771ed682008-11-06 22:02:51 -0500828 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
829 num_bytes = max(blocksize, num_bytes);
830 disk_num_bytes = num_bytes;
Chris Mason771ed682008-11-06 22:02:51 -0500831
Chris Mason4cb53002011-05-24 15:35:30 -0400832 /* if this is a small write inside eof, kick off defrag */
Liu Bo4cb13e52012-03-29 09:57:45 -0400833 if (num_bytes < 64 * 1024 &&
834 (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size))
Chris Mason4cb53002011-05-24 15:35:30 -0400835 btrfs_add_inode_defrag(trans, inode);
836
Chris Mason771ed682008-11-06 22:02:51 -0500837 if (start == 0) {
838 /* lets try to make an inline extent */
839 ret = cow_file_range_inline(trans, root, inode,
Li Zefanfe3f5662011-03-28 08:30:38 +0000840 start, end, 0, 0, NULL);
Chris Mason771ed682008-11-06 22:02:51 -0500841 if (ret == 0) {
842 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400843 &BTRFS_I(inode)->io_tree,
844 start, end, NULL,
845 EXTENT_CLEAR_UNLOCK_PAGE |
846 EXTENT_CLEAR_UNLOCK |
847 EXTENT_CLEAR_DELALLOC |
848 EXTENT_CLEAR_DIRTY |
849 EXTENT_SET_WRITEBACK |
850 EXTENT_END_WRITEBACK);
Yan, Zhengc21677542009-11-12 09:34:21 +0000851
Chris Mason771ed682008-11-06 22:02:51 -0500852 *nr_written = *nr_written +
853 (end - start + PAGE_CACHE_SIZE) / PAGE_CACHE_SIZE;
854 *page_started = 1;
Chris Mason771ed682008-11-06 22:02:51 -0500855 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100856 } else if (ret < 0) {
857 btrfs_abort_transaction(trans, root, ret);
858 goto out_unlock;
Chris Mason771ed682008-11-06 22:02:51 -0500859 }
860 }
Chris Masonc8b97812008-10-29 14:49:59 -0400861
862 BUG_ON(disk_num_bytes >
David Sterba6c417612011-04-13 15:41:04 +0200863 btrfs_super_total_bytes(root->fs_info->super_copy));
Chris Masonc8b97812008-10-29 14:49:59 -0400864
Josef Bacik4b46fce2010-05-23 11:00:55 -0400865 alloc_hint = get_extent_allocation_hint(inode, start, num_bytes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400866 btrfs_drop_extent_cache(inode, start, start + num_bytes - 1, 0);
Chris Mason3b951512008-04-17 11:29:12 -0400867
Chris Masond3977122009-01-05 21:25:51 -0500868 while (disk_num_bytes > 0) {
Chris Masona791e352009-10-08 11:27:10 -0400869 unsigned long op;
870
Josef Bacik287a0ab2010-03-19 18:07:23 +0000871 cur_alloc_size = disk_num_bytes;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400872 ret = btrfs_reserve_extent(trans, root, cur_alloc_size,
Chris Mason771ed682008-11-06 22:02:51 -0500873 root->sectorsize, 0, alloc_hint,
Josef Bacik81c9ad22012-01-18 10:56:06 -0500874 &ins, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100875 if (ret < 0) {
876 btrfs_abort_transaction(trans, root, ret);
877 goto out_unlock;
878 }
Chris Masond3977122009-01-05 21:25:51 -0500879
David Sterba172ddd62011-04-21 00:48:27 +0200880 em = alloc_extent_map();
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100881 BUG_ON(!em); /* -ENOMEM */
Chris Masone6dcd2d2008-07-17 12:53:50 -0400882 em->start = start;
Chris Mason445a6942008-11-10 11:53:33 -0500883 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500884 ram_size = ins.offset;
885 em->len = ins.offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400886
Chris Masone6dcd2d2008-07-17 12:53:50 -0400887 em->block_start = ins.objectid;
Chris Masonc8b97812008-10-29 14:49:59 -0400888 em->block_len = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400889 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -0400890 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -0400891
Chris Masond3977122009-01-05 21:25:51 -0500892 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400893 write_lock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400894 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400895 write_unlock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400896 if (ret != -EEXIST) {
897 free_extent_map(em);
898 break;
899 }
900 btrfs_drop_extent_cache(inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -0400901 start + ram_size - 1, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400902 }
903
Chris Mason98d20f62008-04-14 09:46:10 -0400904 cur_alloc_size = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400905 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
Chris Mason771ed682008-11-06 22:02:51 -0500906 ram_size, cur_alloc_size, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100907 BUG_ON(ret); /* -ENOMEM */
Chris Masonc8b97812008-10-29 14:49:59 -0400908
Yan Zheng17d217f2008-12-12 10:03:38 -0500909 if (root->root_key.objectid ==
910 BTRFS_DATA_RELOC_TREE_OBJECTID) {
911 ret = btrfs_reloc_clone_csums(inode, start,
912 cur_alloc_size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100913 if (ret) {
914 btrfs_abort_transaction(trans, root, ret);
915 goto out_unlock;
916 }
Yan Zheng17d217f2008-12-12 10:03:38 -0500917 }
918
Chris Masond3977122009-01-05 21:25:51 -0500919 if (disk_num_bytes < cur_alloc_size)
Chris Mason3b951512008-04-17 11:29:12 -0400920 break;
Chris Masond3977122009-01-05 21:25:51 -0500921
Chris Masonc8b97812008-10-29 14:49:59 -0400922 /* we're not doing compressed IO, don't unlock the first
923 * page (which the caller expects to stay locked), don't
924 * clear any dirty bits and don't set any writeback bits
Chris Mason8b62b722009-09-02 16:53:46 -0400925 *
926 * Do set the Private2 bit so we know this page was properly
927 * setup for writepage
Chris Masonc8b97812008-10-29 14:49:59 -0400928 */
Chris Masona791e352009-10-08 11:27:10 -0400929 op = unlock ? EXTENT_CLEAR_UNLOCK_PAGE : 0;
930 op |= EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
931 EXTENT_SET_PRIVATE2;
932
Chris Masonc8b97812008-10-29 14:49:59 -0400933 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
934 start, start + ram_size - 1,
Chris Masona791e352009-10-08 11:27:10 -0400935 locked_page, op);
Chris Masonc8b97812008-10-29 14:49:59 -0400936 disk_num_bytes -= cur_alloc_size;
Chris Masonc59f8952007-12-17 20:14:04 -0500937 num_bytes -= cur_alloc_size;
938 alloc_hint = ins.objectid + ins.offset;
939 start += cur_alloc_size;
Chris Masonb888db22007-08-27 16:49:44 -0400940 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100941out:
Chris Masonbe20aa92007-12-17 20:14:01 -0500942 return ret;
Miao Xieb7d5b0a2012-11-01 07:32:18 +0000943
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100944out_unlock:
945 extent_clear_unlock_delalloc(inode,
946 &BTRFS_I(inode)->io_tree,
Josef Bacikbeb42dd2012-05-30 15:35:17 -0400947 start, end, locked_page,
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100948 EXTENT_CLEAR_UNLOCK_PAGE |
949 EXTENT_CLEAR_UNLOCK |
950 EXTENT_CLEAR_DELALLOC |
951 EXTENT_CLEAR_DIRTY |
952 EXTENT_SET_WRITEBACK |
953 EXTENT_END_WRITEBACK);
954
955 goto out;
Chris Mason771ed682008-11-06 22:02:51 -0500956}
Chris Masonc8b97812008-10-29 14:49:59 -0400957
Miao Xieb7d5b0a2012-11-01 07:32:18 +0000958static noinline int cow_file_range(struct inode *inode,
959 struct page *locked_page,
960 u64 start, u64 end, int *page_started,
961 unsigned long *nr_written,
962 int unlock)
963{
964 struct btrfs_trans_handle *trans;
965 struct btrfs_root *root = BTRFS_I(inode)->root;
966 int ret;
967
968 trans = btrfs_join_transaction(root);
969 if (IS_ERR(trans)) {
970 extent_clear_unlock_delalloc(inode,
971 &BTRFS_I(inode)->io_tree,
972 start, end, locked_page,
973 EXTENT_CLEAR_UNLOCK_PAGE |
974 EXTENT_CLEAR_UNLOCK |
975 EXTENT_CLEAR_DELALLOC |
976 EXTENT_CLEAR_DIRTY |
977 EXTENT_SET_WRITEBACK |
978 EXTENT_END_WRITEBACK);
979 return PTR_ERR(trans);
980 }
981 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
982
983 ret = __cow_file_range(trans, inode, root, locked_page, start, end,
984 page_started, nr_written, unlock);
985
986 btrfs_end_transaction(trans, root);
987
988 return ret;
989}
990
Chris Mason771ed682008-11-06 22:02:51 -0500991/*
992 * work queue call back to started compression on a file and pages
993 */
994static noinline void async_cow_start(struct btrfs_work *work)
995{
996 struct async_cow *async_cow;
997 int num_added = 0;
998 async_cow = container_of(work, struct async_cow, work);
999
1000 compress_file_range(async_cow->inode, async_cow->locked_page,
1001 async_cow->start, async_cow->end, async_cow,
1002 &num_added);
Josef Bacik8180ef82012-06-08 15:16:12 -04001003 if (num_added == 0) {
Josef Bacikcb77fcd2012-06-15 12:19:48 -06001004 btrfs_add_delayed_iput(async_cow->inode);
Chris Mason771ed682008-11-06 22:02:51 -05001005 async_cow->inode = NULL;
Josef Bacik8180ef82012-06-08 15:16:12 -04001006 }
Chris Mason771ed682008-11-06 22:02:51 -05001007}
1008
1009/*
1010 * work queue call back to submit previously compressed pages
1011 */
1012static noinline void async_cow_submit(struct btrfs_work *work)
1013{
1014 struct async_cow *async_cow;
1015 struct btrfs_root *root;
1016 unsigned long nr_pages;
1017
1018 async_cow = container_of(work, struct async_cow, work);
1019
1020 root = async_cow->root;
1021 nr_pages = (async_cow->end - async_cow->start + PAGE_CACHE_SIZE) >>
1022 PAGE_CACHE_SHIFT;
1023
Josef Bacik66657b32012-08-01 15:36:24 -04001024 if (atomic_sub_return(nr_pages, &root->fs_info->async_delalloc_pages) <
Liu Bo287082b2012-06-28 04:02:24 -06001025 5 * 1024 * 1024 &&
Chris Mason771ed682008-11-06 22:02:51 -05001026 waitqueue_active(&root->fs_info->async_submit_wait))
1027 wake_up(&root->fs_info->async_submit_wait);
1028
Chris Masond3977122009-01-05 21:25:51 -05001029 if (async_cow->inode)
Chris Mason771ed682008-11-06 22:02:51 -05001030 submit_compressed_extents(async_cow->inode, async_cow);
Chris Mason771ed682008-11-06 22:02:51 -05001031}
Chris Masonc8b97812008-10-29 14:49:59 -04001032
Chris Mason771ed682008-11-06 22:02:51 -05001033static noinline void async_cow_free(struct btrfs_work *work)
1034{
1035 struct async_cow *async_cow;
1036 async_cow = container_of(work, struct async_cow, work);
Josef Bacik8180ef82012-06-08 15:16:12 -04001037 if (async_cow->inode)
Josef Bacikcb77fcd2012-06-15 12:19:48 -06001038 btrfs_add_delayed_iput(async_cow->inode);
Chris Mason771ed682008-11-06 22:02:51 -05001039 kfree(async_cow);
1040}
1041
1042static int cow_file_range_async(struct inode *inode, struct page *locked_page,
1043 u64 start, u64 end, int *page_started,
1044 unsigned long *nr_written)
1045{
1046 struct async_cow *async_cow;
1047 struct btrfs_root *root = BTRFS_I(inode)->root;
1048 unsigned long nr_pages;
1049 u64 cur_end;
Liu Bo287082b2012-06-28 04:02:24 -06001050 int limit = 10 * 1024 * 1024;
Chris Mason771ed682008-11-06 22:02:51 -05001051
Chris Masona3429ab2009-10-08 12:30:20 -04001052 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED,
1053 1, 0, NULL, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -05001054 while (start < end) {
Chris Mason771ed682008-11-06 22:02:51 -05001055 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001056 BUG_ON(!async_cow); /* -ENOMEM */
Josef Bacik8180ef82012-06-08 15:16:12 -04001057 async_cow->inode = igrab(inode);
Chris Mason771ed682008-11-06 22:02:51 -05001058 async_cow->root = root;
1059 async_cow->locked_page = locked_page;
1060 async_cow->start = start;
1061
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001062 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS)
Chris Mason771ed682008-11-06 22:02:51 -05001063 cur_end = end;
1064 else
1065 cur_end = min(end, start + 512 * 1024 - 1);
1066
1067 async_cow->end = cur_end;
1068 INIT_LIST_HEAD(&async_cow->extents);
1069
1070 async_cow->work.func = async_cow_start;
1071 async_cow->work.ordered_func = async_cow_submit;
1072 async_cow->work.ordered_free = async_cow_free;
1073 async_cow->work.flags = 0;
1074
Chris Mason771ed682008-11-06 22:02:51 -05001075 nr_pages = (cur_end - start + PAGE_CACHE_SIZE) >>
1076 PAGE_CACHE_SHIFT;
1077 atomic_add(nr_pages, &root->fs_info->async_delalloc_pages);
1078
1079 btrfs_queue_worker(&root->fs_info->delalloc_workers,
1080 &async_cow->work);
1081
1082 if (atomic_read(&root->fs_info->async_delalloc_pages) > limit) {
1083 wait_event(root->fs_info->async_submit_wait,
1084 (atomic_read(&root->fs_info->async_delalloc_pages) <
1085 limit));
1086 }
1087
Chris Masond3977122009-01-05 21:25:51 -05001088 while (atomic_read(&root->fs_info->async_submit_draining) &&
Chris Mason771ed682008-11-06 22:02:51 -05001089 atomic_read(&root->fs_info->async_delalloc_pages)) {
1090 wait_event(root->fs_info->async_submit_wait,
1091 (atomic_read(&root->fs_info->async_delalloc_pages) ==
1092 0));
1093 }
1094
1095 *nr_written += nr_pages;
1096 start = cur_end + 1;
1097 }
1098 *page_started = 1;
1099 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001100}
1101
Chris Masond3977122009-01-05 21:25:51 -05001102static noinline int csum_exist_in_range(struct btrfs_root *root,
Yan Zheng17d217f2008-12-12 10:03:38 -05001103 u64 bytenr, u64 num_bytes)
1104{
1105 int ret;
1106 struct btrfs_ordered_sum *sums;
1107 LIST_HEAD(list);
1108
Yan Zheng07d400a2009-01-06 11:42:00 -05001109 ret = btrfs_lookup_csums_range(root->fs_info->csum_root, bytenr,
Arne Jansena2de7332011-03-08 14:14:00 +01001110 bytenr + num_bytes - 1, &list, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -05001111 if (ret == 0 && list_empty(&list))
1112 return 0;
1113
1114 while (!list_empty(&list)) {
1115 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
1116 list_del(&sums->list);
1117 kfree(sums);
1118 }
1119 return 1;
1120}
1121
Chris Masond352ac62008-09-29 15:18:18 -04001122/*
1123 * when nowcow writeback call back. This checks for snapshots or COW copies
1124 * of the extents that exist in the file, and COWs the file as required.
1125 *
1126 * If no cow copies or snapshots exist, we write directly to the existing
1127 * blocks on disk
1128 */
Chris Mason7f366cf2009-03-12 20:12:45 -04001129static noinline int run_delalloc_nocow(struct inode *inode,
1130 struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001131 u64 start, u64 end, int *page_started, int force,
1132 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001133{
Chris Masonbe20aa92007-12-17 20:14:01 -05001134 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001135 struct btrfs_trans_handle *trans;
Chris Masonbe20aa92007-12-17 20:14:01 -05001136 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -05001137 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -04001138 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -05001139 struct btrfs_key found_key;
Yan Zheng80ff3852008-10-30 14:20:02 -04001140 u64 cow_start;
1141 u64 cur_offset;
1142 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001143 u64 extent_offset;
Yan Zheng80ff3852008-10-30 14:20:02 -04001144 u64 disk_bytenr;
1145 u64 num_bytes;
1146 int extent_type;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001147 int ret, err;
Yan Zhengd899e052008-10-30 14:25:28 -04001148 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -04001149 int nocow;
1150 int check_prev = 1;
Li Zefan82d59022011-04-20 10:33:24 +08001151 bool nolock;
Li Zefan33345d012011-04-20 10:31:50 +08001152 u64 ino = btrfs_ino(inode);
Chris Masonbe20aa92007-12-17 20:14:01 -05001153
1154 path = btrfs_alloc_path();
Josef Bacik17ca04a2012-05-31 15:58:55 -04001155 if (!path) {
1156 extent_clear_unlock_delalloc(inode,
1157 &BTRFS_I(inode)->io_tree,
1158 start, end, locked_page,
1159 EXTENT_CLEAR_UNLOCK_PAGE |
1160 EXTENT_CLEAR_UNLOCK |
1161 EXTENT_CLEAR_DELALLOC |
1162 EXTENT_CLEAR_DIRTY |
1163 EXTENT_SET_WRITEBACK |
1164 EXTENT_END_WRITEBACK);
Mark Fashehd8926bb2011-07-13 10:38:47 -07001165 return -ENOMEM;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001166 }
Li Zefan82d59022011-04-20 10:33:24 +08001167
Liu Bo83eea1f2012-07-10 05:28:39 -06001168 nolock = btrfs_is_free_space_inode(inode);
Li Zefan82d59022011-04-20 10:33:24 +08001169
1170 if (nolock)
Josef Bacik7a7eaa402011-04-13 12:54:33 -04001171 trans = btrfs_join_transaction_nolock(root);
Li Zefan82d59022011-04-20 10:33:24 +08001172 else
Josef Bacik7a7eaa402011-04-13 12:54:33 -04001173 trans = btrfs_join_transaction(root);
Chris Masonff5714c2011-05-28 07:00:39 -04001174
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001175 if (IS_ERR(trans)) {
Josef Bacik17ca04a2012-05-31 15:58:55 -04001176 extent_clear_unlock_delalloc(inode,
1177 &BTRFS_I(inode)->io_tree,
1178 start, end, locked_page,
1179 EXTENT_CLEAR_UNLOCK_PAGE |
1180 EXTENT_CLEAR_UNLOCK |
1181 EXTENT_CLEAR_DELALLOC |
1182 EXTENT_CLEAR_DIRTY |
1183 EXTENT_SET_WRITEBACK |
1184 EXTENT_END_WRITEBACK);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001185 btrfs_free_path(path);
1186 return PTR_ERR(trans);
1187 }
1188
Josef Bacik74b21072011-04-13 12:02:53 -04001189 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Masonbe20aa92007-12-17 20:14:01 -05001190
Yan Zheng80ff3852008-10-30 14:20:02 -04001191 cow_start = (u64)-1;
1192 cur_offset = start;
1193 while (1) {
Li Zefan33345d012011-04-20 10:31:50 +08001194 ret = btrfs_lookup_file_extent(trans, root, path, ino,
Yan Zheng80ff3852008-10-30 14:20:02 -04001195 cur_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001196 if (ret < 0) {
1197 btrfs_abort_transaction(trans, root, ret);
1198 goto error;
1199 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001200 if (ret > 0 && path->slots[0] > 0 && check_prev) {
1201 leaf = path->nodes[0];
1202 btrfs_item_key_to_cpu(leaf, &found_key,
1203 path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +08001204 if (found_key.objectid == ino &&
Yan Zheng80ff3852008-10-30 14:20:02 -04001205 found_key.type == BTRFS_EXTENT_DATA_KEY)
1206 path->slots[0]--;
1207 }
1208 check_prev = 0;
1209next_slot:
1210 leaf = path->nodes[0];
1211 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1212 ret = btrfs_next_leaf(root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001213 if (ret < 0) {
1214 btrfs_abort_transaction(trans, root, ret);
1215 goto error;
1216 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001217 if (ret > 0)
1218 break;
1219 leaf = path->nodes[0];
1220 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001221
Yan Zheng80ff3852008-10-30 14:20:02 -04001222 nocow = 0;
1223 disk_bytenr = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -05001224 num_bytes = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001225 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05001226
Li Zefan33345d012011-04-20 10:31:50 +08001227 if (found_key.objectid > ino ||
Yan Zheng80ff3852008-10-30 14:20:02 -04001228 found_key.type > BTRFS_EXTENT_DATA_KEY ||
1229 found_key.offset > end)
1230 break;
Chris Masonbe20aa92007-12-17 20:14:01 -05001231
Yan Zheng80ff3852008-10-30 14:20:02 -04001232 if (found_key.offset > cur_offset) {
1233 extent_end = found_key.offset;
Chris Masone9061e22009-10-09 09:57:45 -04001234 extent_type = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001235 goto out_check;
1236 }
Chris Masonc31f8832008-01-08 15:46:31 -05001237
Yan Zheng80ff3852008-10-30 14:20:02 -04001238 fi = btrfs_item_ptr(leaf, path->slots[0],
1239 struct btrfs_file_extent_item);
1240 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -05001241
Yan Zhengd899e052008-10-30 14:25:28 -04001242 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1243 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001244 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001245 extent_offset = btrfs_file_extent_offset(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001246 extent_end = found_key.offset +
1247 btrfs_file_extent_num_bytes(leaf, fi);
1248 if (extent_end <= start) {
1249 path->slots[0]++;
1250 goto next_slot;
1251 }
Yan Zheng17d217f2008-12-12 10:03:38 -05001252 if (disk_bytenr == 0)
1253 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001254 if (btrfs_file_extent_compression(leaf, fi) ||
1255 btrfs_file_extent_encryption(leaf, fi) ||
1256 btrfs_file_extent_other_encoding(leaf, fi))
1257 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001258 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1259 goto out_check;
Yan Zhengd2fb3432008-12-11 16:30:39 -05001260 if (btrfs_extent_readonly(root, disk_bytenr))
Yan Zheng80ff3852008-10-30 14:20:02 -04001261 goto out_check;
Li Zefan33345d012011-04-20 10:31:50 +08001262 if (btrfs_cross_ref_exist(trans, root, ino,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001263 found_key.offset -
1264 extent_offset, disk_bytenr))
Yan Zheng17d217f2008-12-12 10:03:38 -05001265 goto out_check;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001266 disk_bytenr += extent_offset;
Yan Zheng17d217f2008-12-12 10:03:38 -05001267 disk_bytenr += cur_offset - found_key.offset;
1268 num_bytes = min(end + 1, extent_end) - cur_offset;
1269 /*
1270 * force cow if csum exists in the range.
1271 * this ensure that csum for a given extent are
1272 * either valid or do not exist.
1273 */
1274 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
1275 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001276 nocow = 1;
1277 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1278 extent_end = found_key.offset +
1279 btrfs_file_extent_inline_len(leaf, fi);
1280 extent_end = ALIGN(extent_end, root->sectorsize);
1281 } else {
1282 BUG_ON(1);
1283 }
1284out_check:
1285 if (extent_end <= start) {
1286 path->slots[0]++;
1287 goto next_slot;
1288 }
1289 if (!nocow) {
1290 if (cow_start == (u64)-1)
1291 cow_start = cur_offset;
1292 cur_offset = extent_end;
1293 if (cur_offset > end)
1294 break;
1295 path->slots[0]++;
1296 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001297 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001298
David Sterbab3b4aa72011-04-21 01:20:15 +02001299 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001300 if (cow_start != (u64)-1) {
Miao Xieb7d5b0a2012-11-01 07:32:18 +00001301 ret = __cow_file_range(trans, inode, root, locked_page,
1302 cow_start, found_key.offset - 1,
1303 page_started, nr_written, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001304 if (ret) {
1305 btrfs_abort_transaction(trans, root, ret);
1306 goto error;
1307 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001308 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001309 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001310
Yan Zhengd899e052008-10-30 14:25:28 -04001311 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1312 struct extent_map *em;
1313 struct extent_map_tree *em_tree;
1314 em_tree = &BTRFS_I(inode)->extent_tree;
David Sterba172ddd62011-04-21 00:48:27 +02001315 em = alloc_extent_map();
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001316 BUG_ON(!em); /* -ENOMEM */
Yan Zhengd899e052008-10-30 14:25:28 -04001317 em->start = cur_offset;
Chris Mason445a6942008-11-10 11:53:33 -05001318 em->orig_start = em->start;
Yan Zhengd899e052008-10-30 14:25:28 -04001319 em->len = num_bytes;
1320 em->block_len = num_bytes;
1321 em->block_start = disk_bytenr;
1322 em->bdev = root->fs_info->fs_devices->latest_bdev;
1323 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Liu Bo4e2f84e2012-08-27 10:52:20 -06001324 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Yan Zhengd899e052008-10-30 14:25:28 -04001325 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04001326 write_lock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001327 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04001328 write_unlock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001329 if (ret != -EEXIST) {
1330 free_extent_map(em);
1331 break;
1332 }
1333 btrfs_drop_extent_cache(inode, em->start,
1334 em->start + em->len - 1, 0);
1335 }
1336 type = BTRFS_ORDERED_PREALLOC;
1337 } else {
1338 type = BTRFS_ORDERED_NOCOW;
1339 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001340
1341 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001342 num_bytes, num_bytes, type);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001343 BUG_ON(ret); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -05001344
Yan, Zhengefa56462010-05-16 10:49:59 -04001345 if (root->root_key.objectid ==
1346 BTRFS_DATA_RELOC_TREE_OBJECTID) {
1347 ret = btrfs_reloc_clone_csums(inode, cur_offset,
1348 num_bytes);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001349 if (ret) {
1350 btrfs_abort_transaction(trans, root, ret);
1351 goto error;
1352 }
Yan, Zhengefa56462010-05-16 10:49:59 -04001353 }
1354
Yan Zhengd899e052008-10-30 14:25:28 -04001355 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
Chris Masona791e352009-10-08 11:27:10 -04001356 cur_offset, cur_offset + num_bytes - 1,
1357 locked_page, EXTENT_CLEAR_UNLOCK_PAGE |
1358 EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
1359 EXTENT_SET_PRIVATE2);
Yan Zheng80ff3852008-10-30 14:20:02 -04001360 cur_offset = extent_end;
1361 if (cur_offset > end)
1362 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001363 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001364 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001365
Josef Bacik17ca04a2012-05-31 15:58:55 -04001366 if (cur_offset <= end && cow_start == (u64)-1) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001367 cow_start = cur_offset;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001368 cur_offset = end;
1369 }
1370
Yan Zheng80ff3852008-10-30 14:20:02 -04001371 if (cow_start != (u64)-1) {
Miao Xieb7d5b0a2012-11-01 07:32:18 +00001372 ret = __cow_file_range(trans, inode, root, locked_page,
1373 cow_start, end,
1374 page_started, nr_written, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001375 if (ret) {
1376 btrfs_abort_transaction(trans, root, ret);
1377 goto error;
1378 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001379 }
1380
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001381error:
Miao Xiea698d0752012-09-20 01:51:59 -06001382 err = btrfs_end_transaction(trans, root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001383 if (!ret)
1384 ret = err;
1385
Josef Bacik17ca04a2012-05-31 15:58:55 -04001386 if (ret && cur_offset < end)
1387 extent_clear_unlock_delalloc(inode,
1388 &BTRFS_I(inode)->io_tree,
1389 cur_offset, end, locked_page,
1390 EXTENT_CLEAR_UNLOCK_PAGE |
1391 EXTENT_CLEAR_UNLOCK |
1392 EXTENT_CLEAR_DELALLOC |
1393 EXTENT_CLEAR_DIRTY |
1394 EXTENT_SET_WRITEBACK |
1395 EXTENT_END_WRITEBACK);
1396
Yan Zheng7ea394f2008-08-05 13:05:02 -04001397 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001398 return ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05001399}
1400
Chris Masond352ac62008-09-29 15:18:18 -04001401/*
1402 * extent_io.c call back to do delayed allocation processing
1403 */
Chris Masonc8b97812008-10-29 14:49:59 -04001404static int run_delalloc_range(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001405 u64 start, u64 end, int *page_started,
1406 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001407{
Chris Masonbe20aa92007-12-17 20:14:01 -05001408 int ret;
Chris Mason7f366cf2009-03-12 20:12:45 -04001409 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masona2135012008-06-25 16:01:30 -04001410
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001411 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) {
Chris Masonc8b97812008-10-29 14:49:59 -04001412 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001413 page_started, 1, nr_written);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001414 } else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC) {
Yan Zhengd899e052008-10-30 14:25:28 -04001415 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001416 page_started, 0, nr_written);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001417 } else if (!btrfs_test_opt(root, COMPRESS) &&
1418 !(BTRFS_I(inode)->force_compress) &&
1419 !(BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS)) {
Chris Mason7f366cf2009-03-12 20:12:45 -04001420 ret = cow_file_range(inode, locked_page, start, end,
1421 page_started, nr_written, 1);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001422 } else {
1423 set_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1424 &BTRFS_I(inode)->runtime_flags);
Chris Mason771ed682008-11-06 22:02:51 -05001425 ret = cow_file_range_async(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001426 page_started, nr_written);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001427 }
Chris Masonb888db22007-08-27 16:49:44 -04001428 return ret;
1429}
1430
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001431static void btrfs_split_extent_hook(struct inode *inode,
1432 struct extent_state *orig, u64 split)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001433{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001434 /* not delalloc, ignore it */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001435 if (!(orig->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001436 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001437
Josef Bacik9e0baf62011-07-15 15:16:44 +00001438 spin_lock(&BTRFS_I(inode)->lock);
1439 BTRFS_I(inode)->outstanding_extents++;
1440 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001441}
1442
1443/*
1444 * extent_io.c merge_extent_hook, used to track merged delayed allocation
1445 * extents so we can keep track of new extents that are just merged onto old
1446 * extents, such as when we are doing sequential writes, so we can properly
1447 * account for the metadata space we'll need.
1448 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001449static void btrfs_merge_extent_hook(struct inode *inode,
1450 struct extent_state *new,
1451 struct extent_state *other)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001452{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001453 /* not delalloc, ignore it */
1454 if (!(other->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001455 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001456
Josef Bacik9e0baf62011-07-15 15:16:44 +00001457 spin_lock(&BTRFS_I(inode)->lock);
1458 BTRFS_I(inode)->outstanding_extents--;
1459 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001460}
1461
Chris Masond352ac62008-09-29 15:18:18 -04001462/*
1463 * extent_io.c set_bit_hook, used to track delayed allocation
1464 * bytes in this file, and to maintain the list of inodes that
1465 * have pending delalloc work to be done.
1466 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001467static void btrfs_set_bit_hook(struct inode *inode,
1468 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001469{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001470
Chris Mason75eff682008-12-15 15:54:40 -05001471 /*
1472 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001473 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001474 * bit, which is only set or cleared with irqs on
1475 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001476 if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001477 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001478 u64 len = state->end + 1 - state->start;
Liu Bo83eea1f2012-07-10 05:28:39 -06001479 bool do_list = !btrfs_is_free_space_inode(inode);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001480
Josef Bacik9e0baf62011-07-15 15:16:44 +00001481 if (*bits & EXTENT_FIRST_DELALLOC) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001482 *bits &= ~EXTENT_FIRST_DELALLOC;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001483 } else {
1484 spin_lock(&BTRFS_I(inode)->lock);
1485 BTRFS_I(inode)->outstanding_extents++;
1486 spin_unlock(&BTRFS_I(inode)->lock);
1487 }
Josef Bacik287a0ab2010-03-19 18:07:23 +00001488
Chris Mason75eff682008-12-15 15:54:40 -05001489 spin_lock(&root->fs_info->delalloc_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001490 BTRFS_I(inode)->delalloc_bytes += len;
1491 root->fs_info->delalloc_bytes += len;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001492 if (do_list && list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
Chris Masonea8c2812008-08-04 23:17:27 -04001493 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1494 &root->fs_info->delalloc_inodes);
1495 }
Chris Mason75eff682008-12-15 15:54:40 -05001496 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001497 }
Chris Mason291d6732008-01-29 15:55:23 -05001498}
1499
Chris Masond352ac62008-09-29 15:18:18 -04001500/*
1501 * extent_io.c clear_bit_hook, see set_bit_hook for why
1502 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001503static void btrfs_clear_bit_hook(struct inode *inode,
1504 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001505{
Chris Mason75eff682008-12-15 15:54:40 -05001506 /*
1507 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001508 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001509 * bit, which is only set or cleared with irqs on
1510 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001511 if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001512 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001513 u64 len = state->end + 1 - state->start;
Liu Bo83eea1f2012-07-10 05:28:39 -06001514 bool do_list = !btrfs_is_free_space_inode(inode);
Chris Masonbcbfce82008-04-22 13:26:47 -04001515
Josef Bacik9e0baf62011-07-15 15:16:44 +00001516 if (*bits & EXTENT_FIRST_DELALLOC) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001517 *bits &= ~EXTENT_FIRST_DELALLOC;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001518 } else if (!(*bits & EXTENT_DO_ACCOUNTING)) {
1519 spin_lock(&BTRFS_I(inode)->lock);
1520 BTRFS_I(inode)->outstanding_extents--;
1521 spin_unlock(&BTRFS_I(inode)->lock);
1522 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001523
1524 if (*bits & EXTENT_DO_ACCOUNTING)
1525 btrfs_delalloc_release_metadata(inode, len);
1526
Josef Bacik0cb59c92010-07-02 12:14:14 -04001527 if (root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID
1528 && do_list)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001529 btrfs_free_reserved_data_space(inode, len);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001530
Chris Mason75eff682008-12-15 15:54:40 -05001531 spin_lock(&root->fs_info->delalloc_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001532 root->fs_info->delalloc_bytes -= len;
1533 BTRFS_I(inode)->delalloc_bytes -= len;
1534
Josef Bacik0cb59c92010-07-02 12:14:14 -04001535 if (do_list && BTRFS_I(inode)->delalloc_bytes == 0 &&
Chris Masonea8c2812008-08-04 23:17:27 -04001536 !list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1537 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
1538 }
Chris Mason75eff682008-12-15 15:54:40 -05001539 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001540 }
Chris Mason291d6732008-01-29 15:55:23 -05001541}
1542
Chris Masond352ac62008-09-29 15:18:18 -04001543/*
1544 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1545 * we don't create bios that span stripes or chunks
1546 */
Chris Mason239b14b2008-03-24 15:02:07 -04001547int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001548 size_t size, struct bio *bio,
1549 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001550{
1551 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
Chris Masona62b9402008-10-03 16:31:08 -04001552 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001553 u64 length = 0;
1554 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001555 int ret;
1556
Chris Mason771ed682008-11-06 22:02:51 -05001557 if (bio_flags & EXTENT_BIO_COMPRESSED)
1558 return 0;
1559
Chris Masonf2d8d742008-04-21 10:03:05 -04001560 length = bio->bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001561 map_length = length;
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001562 ret = btrfs_map_block(root->fs_info, READ, logical,
Chris Masonf1885912008-04-09 16:28:12 -04001563 &map_length, NULL, 0);
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001564 /* Will always return 0 with map_multi == NULL */
Jeff Mahoney3444a972011-10-03 23:23:13 -04001565 BUG_ON(ret < 0);
Chris Masond3977122009-01-05 21:25:51 -05001566 if (map_length < length + size)
Chris Mason239b14b2008-03-24 15:02:07 -04001567 return 1;
Jeff Mahoney3444a972011-10-03 23:23:13 -04001568 return 0;
Chris Mason239b14b2008-03-24 15:02:07 -04001569}
1570
Chris Masond352ac62008-09-29 15:18:18 -04001571/*
1572 * in order to insert checksums into the metadata in large chunks,
1573 * we wait until bio submission time. All the pages in the bio are
1574 * checksummed and sums are attached onto the ordered extent record.
1575 *
1576 * At IO completion time the cums attached on the ordered extent record
1577 * are inserted into the btree
1578 */
Chris Masond3977122009-01-05 21:25:51 -05001579static int __btrfs_submit_bio_start(struct inode *inode, int rw,
1580 struct bio *bio, int mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001581 unsigned long bio_flags,
1582 u64 bio_offset)
Chris Mason065631f2008-02-20 12:07:25 -05001583{
Chris Mason065631f2008-02-20 12:07:25 -05001584 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason065631f2008-02-20 12:07:25 -05001585 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001586
Chris Masond20f7042008-12-08 16:58:54 -05001587 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001588 BUG_ON(ret); /* -ENOMEM */
Chris Mason4a69a412008-11-06 22:03:00 -05001589 return 0;
1590}
Chris Masone0156402008-04-16 11:15:20 -04001591
Chris Mason4a69a412008-11-06 22:03:00 -05001592/*
1593 * in order to insert checksums into the metadata in large chunks,
1594 * we wait until bio submission time. All the pages in the bio are
1595 * checksummed and sums are attached onto the ordered extent record.
1596 *
1597 * At IO completion time the cums attached on the ordered extent record
1598 * are inserted into the btree
1599 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001600static int __btrfs_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001601 int mirror_num, unsigned long bio_flags,
1602 u64 bio_offset)
Chris Mason4a69a412008-11-06 22:03:00 -05001603{
1604 struct btrfs_root *root = BTRFS_I(inode)->root;
Stefan Behrens61891922012-11-05 18:51:52 +01001605 int ret;
1606
1607 ret = btrfs_map_bio(root, rw, bio, mirror_num, 1);
1608 if (ret)
1609 bio_endio(bio, ret);
1610 return ret;
Chris Mason44b8bd72008-04-16 11:14:51 -04001611}
1612
Chris Masond352ac62008-09-29 15:18:18 -04001613/*
Chris Masoncad321a2008-12-17 14:51:42 -05001614 * extent_io.c submission hook. This does the right thing for csum calculation
1615 * on write, or reading the csums from the tree before a read
Chris Masond352ac62008-09-29 15:18:18 -04001616 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001617static int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001618 int mirror_num, unsigned long bio_flags,
1619 u64 bio_offset)
Chris Mason44b8bd72008-04-16 11:14:51 -04001620{
1621 struct btrfs_root *root = BTRFS_I(inode)->root;
1622 int ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001623 int skip_sum;
Jeff Mahoney04173412011-10-03 23:23:12 -04001624 int metadata = 0;
Josef Bacikb812ce22012-11-16 13:56:32 -05001625 int async = !atomic_read(&BTRFS_I(inode)->sync_writers);
Chris Mason44b8bd72008-04-16 11:14:51 -04001626
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001627 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masoncad321a2008-12-17 14:51:42 -05001628
Liu Bo83eea1f2012-07-10 05:28:39 -06001629 if (btrfs_is_free_space_inode(inode))
Jeff Mahoney04173412011-10-03 23:23:12 -04001630 metadata = 2;
1631
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001632 if (!(rw & REQ_WRITE)) {
Josef Bacik5fd02042012-05-02 14:00:54 -04001633 ret = btrfs_bio_wq_end_io(root->fs_info, bio, metadata);
1634 if (ret)
Stefan Behrens61891922012-11-05 18:51:52 +01001635 goto out;
Josef Bacik5fd02042012-05-02 14:00:54 -04001636
Chris Masond20f7042008-12-08 16:58:54 -05001637 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Stefan Behrens61891922012-11-05 18:51:52 +01001638 ret = btrfs_submit_compressed_read(inode, bio,
1639 mirror_num,
1640 bio_flags);
1641 goto out;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001642 } else if (!skip_sum) {
1643 ret = btrfs_lookup_bio_sums(root, inode, bio, NULL);
1644 if (ret)
Stefan Behrens61891922012-11-05 18:51:52 +01001645 goto out;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001646 }
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001647 goto mapit;
Josef Bacikb812ce22012-11-16 13:56:32 -05001648 } else if (async && !skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001649 /* csum items have already been cloned */
1650 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1651 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001652 /* we're doing a write, do the async checksumming */
Stefan Behrens61891922012-11-05 18:51:52 +01001653 ret = btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
Chris Mason44b8bd72008-04-16 11:14:51 -04001654 inode, rw, bio, mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001655 bio_flags, bio_offset,
1656 __btrfs_submit_bio_start,
Chris Mason4a69a412008-11-06 22:03:00 -05001657 __btrfs_submit_bio_done);
Stefan Behrens61891922012-11-05 18:51:52 +01001658 goto out;
Josef Bacikb812ce22012-11-16 13:56:32 -05001659 } else if (!skip_sum) {
1660 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
1661 if (ret)
1662 goto out;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001663 }
1664
Chris Mason0b86a832008-03-24 15:01:56 -04001665mapit:
Stefan Behrens61891922012-11-05 18:51:52 +01001666 ret = btrfs_map_bio(root, rw, bio, mirror_num, 0);
1667
1668out:
1669 if (ret < 0)
1670 bio_endio(bio, ret);
1671 return ret;
Chris Mason065631f2008-02-20 12:07:25 -05001672}
Chris Mason6885f302008-02-20 16:11:05 -05001673
Chris Masond352ac62008-09-29 15:18:18 -04001674/*
1675 * given a list of ordered sums record them in the inode. This happens
1676 * at IO completion time based on sums calculated at bio submission time.
1677 */
Chris Masonba1da2f2008-07-17 12:54:15 -04001678static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -04001679 struct inode *inode, u64 file_offset,
1680 struct list_head *list)
1681{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001682 struct btrfs_ordered_sum *sum;
1683
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001684 list_for_each_entry(sum, list, list) {
Chris Masond20f7042008-12-08 16:58:54 -05001685 btrfs_csum_file_blocks(trans,
1686 BTRFS_I(inode)->root->fs_info->csum_root, sum);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001687 }
1688 return 0;
1689}
1690
Josef Bacik2ac55d42010-02-03 19:33:23 +00001691int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end,
1692 struct extent_state **cached_state)
Chris Masonea8c2812008-08-04 23:17:27 -04001693{
Julia Lawall6c1500f2012-11-03 20:30:18 +00001694 WARN_ON((end & (PAGE_CACHE_SIZE - 1)) == 0);
Chris Masonea8c2812008-08-04 23:17:27 -04001695 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001696 cached_state, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04001697}
1698
Chris Masond352ac62008-09-29 15:18:18 -04001699/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04001700struct btrfs_writepage_fixup {
1701 struct page *page;
1702 struct btrfs_work work;
1703};
1704
Christoph Hellwigb2950862008-12-02 09:54:17 -05001705static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04001706{
1707 struct btrfs_writepage_fixup *fixup;
1708 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001709 struct extent_state *cached_state = NULL;
Chris Mason247e7432008-07-17 12:53:51 -04001710 struct page *page;
1711 struct inode *inode;
1712 u64 page_start;
1713 u64 page_end;
Jeff Mahoney87826df2012-02-15 16:23:57 +01001714 int ret;
Chris Mason247e7432008-07-17 12:53:51 -04001715
1716 fixup = container_of(work, struct btrfs_writepage_fixup, work);
1717 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04001718again:
Chris Mason247e7432008-07-17 12:53:51 -04001719 lock_page(page);
1720 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
1721 ClearPageChecked(page);
1722 goto out_page;
1723 }
1724
1725 inode = page->mapping->host;
1726 page_start = page_offset(page);
1727 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
1728
Josef Bacik2ac55d42010-02-03 19:33:23 +00001729 lock_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001730 &cached_state);
Chris Mason4a096752008-07-21 10:29:44 -04001731
1732 /* already ordered? We're done */
Chris Mason8b62b722009-09-02 16:53:46 -04001733 if (PagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001734 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04001735
1736 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1737 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00001738 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start,
1739 page_end, &cached_state, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001740 unlock_page(page);
1741 btrfs_start_ordered_extent(inode, ordered, 1);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001742 btrfs_put_ordered_extent(ordered);
Chris Mason4a096752008-07-21 10:29:44 -04001743 goto again;
1744 }
Chris Mason247e7432008-07-17 12:53:51 -04001745
Jeff Mahoney87826df2012-02-15 16:23:57 +01001746 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
1747 if (ret) {
1748 mapping_set_error(page->mapping, ret);
1749 end_extent_writepage(page, ret, page_start, page_end);
1750 ClearPageChecked(page);
1751 goto out;
1752 }
1753
Josef Bacik2ac55d42010-02-03 19:33:23 +00001754 btrfs_set_extent_delalloc(inode, page_start, page_end, &cached_state);
Chris Mason247e7432008-07-17 12:53:51 -04001755 ClearPageChecked(page);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001756 set_page_dirty(page);
Chris Mason247e7432008-07-17 12:53:51 -04001757out:
Josef Bacik2ac55d42010-02-03 19:33:23 +00001758 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, page_end,
1759 &cached_state, GFP_NOFS);
Chris Mason247e7432008-07-17 12:53:51 -04001760out_page:
1761 unlock_page(page);
1762 page_cache_release(page);
Miao Xieb897abe2011-01-26 16:19:22 +08001763 kfree(fixup);
Chris Mason247e7432008-07-17 12:53:51 -04001764}
1765
1766/*
1767 * There are a few paths in the higher layers of the kernel that directly
1768 * set the page dirty bit without asking the filesystem if it is a
1769 * good idea. This causes problems because we want to make sure COW
1770 * properly happens and the data=ordered rules are followed.
1771 *
Chris Masonc8b97812008-10-29 14:49:59 -04001772 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04001773 * hasn't been properly setup for IO. We kick off an async process
1774 * to fix it up. The async helper will wait for ordered extents, set
1775 * the delalloc bit and make it safe to write the page.
1776 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001777static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04001778{
1779 struct inode *inode = page->mapping->host;
1780 struct btrfs_writepage_fixup *fixup;
1781 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason247e7432008-07-17 12:53:51 -04001782
Chris Mason8b62b722009-09-02 16:53:46 -04001783 /* this page is properly in the ordered list */
1784 if (TestClearPagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001785 return 0;
1786
1787 if (PageChecked(page))
1788 return -EAGAIN;
1789
1790 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
1791 if (!fixup)
1792 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04001793
Chris Mason247e7432008-07-17 12:53:51 -04001794 SetPageChecked(page);
1795 page_cache_get(page);
1796 fixup->work.func = btrfs_writepage_fixup_worker;
1797 fixup->page = page;
1798 btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001799 return -EBUSY;
Chris Mason247e7432008-07-17 12:53:51 -04001800}
1801
Yan Zhengd899e052008-10-30 14:25:28 -04001802static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
1803 struct inode *inode, u64 file_pos,
1804 u64 disk_bytenr, u64 disk_num_bytes,
1805 u64 num_bytes, u64 ram_bytes,
1806 u8 compression, u8 encryption,
1807 u16 other_encoding, int extent_type)
1808{
1809 struct btrfs_root *root = BTRFS_I(inode)->root;
1810 struct btrfs_file_extent_item *fi;
1811 struct btrfs_path *path;
1812 struct extent_buffer *leaf;
1813 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -04001814 int ret;
1815
1816 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07001817 if (!path)
1818 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -04001819
Chris Masonb9473432009-03-13 11:00:37 -04001820 path->leave_spinning = 1;
Chris Masona1ed8352009-09-11 12:27:37 -04001821
1822 /*
1823 * we may be replacing one extent in the tree with another.
1824 * The new extent is pinned in the extent map, and we don't want
1825 * to drop it from the cache until it is completely in the btree.
1826 *
1827 * So, tell btrfs_drop_extents to leave this extent in the cache.
1828 * the caller is expected to unpin it and allow it to be merged
1829 * with the others.
1830 */
Josef Bacik5dc562c2012-08-17 13:14:17 -04001831 ret = btrfs_drop_extents(trans, root, inode, file_pos,
Josef Bacik26714852012-08-29 12:24:27 -04001832 file_pos + num_bytes, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001833 if (ret)
1834 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04001835
Li Zefan33345d012011-04-20 10:31:50 +08001836 ins.objectid = btrfs_ino(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04001837 ins.offset = file_pos;
1838 ins.type = BTRFS_EXTENT_DATA_KEY;
1839 ret = btrfs_insert_empty_item(trans, root, path, &ins, sizeof(*fi));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001840 if (ret)
1841 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04001842 leaf = path->nodes[0];
1843 fi = btrfs_item_ptr(leaf, path->slots[0],
1844 struct btrfs_file_extent_item);
1845 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
1846 btrfs_set_file_extent_type(leaf, fi, extent_type);
1847 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
1848 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
1849 btrfs_set_file_extent_offset(leaf, fi, 0);
1850 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
1851 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
1852 btrfs_set_file_extent_compression(leaf, fi, compression);
1853 btrfs_set_file_extent_encryption(leaf, fi, encryption);
1854 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
Chris Masonb9473432009-03-13 11:00:37 -04001855
Yan Zhengd899e052008-10-30 14:25:28 -04001856 btrfs_mark_buffer_dirty(leaf);
Josef Bacikce195332012-09-25 15:26:16 -04001857 btrfs_release_path(path);
Yan Zhengd899e052008-10-30 14:25:28 -04001858
1859 inode_add_bytes(inode, num_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -04001860
1861 ins.objectid = disk_bytenr;
1862 ins.offset = disk_num_bytes;
1863 ins.type = BTRFS_EXTENT_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001864 ret = btrfs_alloc_reserved_file_extent(trans, root,
1865 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08001866 btrfs_ino(inode), file_pos, &ins);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001867out:
Yan Zhengd899e052008-10-30 14:25:28 -04001868 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04001869
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001870 return ret;
Yan Zhengd899e052008-10-30 14:25:28 -04001871}
1872
Chris Mason5d13a982009-03-13 11:41:46 -04001873/*
1874 * helper function for btrfs_finish_ordered_io, this
1875 * just reads in some of the csum leaves to prime them into ram
1876 * before we start the transaction. It limits the amount of btree
1877 * reads required while inside the transaction.
1878 */
Chris Masond352ac62008-09-29 15:18:18 -04001879/* as ordered data IO finishes, this gets called so we can finish
1880 * an ordered extent if the range of bytes in the file it covers are
1881 * fully written.
1882 */
Josef Bacik5fd02042012-05-02 14:00:54 -04001883static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001884{
Josef Bacik5fd02042012-05-02 14:00:54 -04001885 struct inode *inode = ordered_extent->inode;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001886 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001887 struct btrfs_trans_handle *trans = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001888 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001889 struct extent_state *cached_state = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08001890 int compress_type = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001891 int ret;
Li Zefan82d59022011-04-20 10:33:24 +08001892 bool nolock;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001893
Liu Bo83eea1f2012-07-10 05:28:39 -06001894 nolock = btrfs_is_free_space_inode(inode);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001895
Josef Bacik5fd02042012-05-02 14:00:54 -04001896 if (test_bit(BTRFS_ORDERED_IOERR, &ordered_extent->flags)) {
1897 ret = -EIO;
1898 goto out;
1899 }
1900
Yan, Zhengc21677542009-11-12 09:34:21 +00001901 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001902 BUG_ON(!list_empty(&ordered_extent->list)); /* Logic error */
Yan, Zhengc21677542009-11-12 09:34:21 +00001903 ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent);
1904 if (!ret) {
Josef Bacik0cb59c92010-07-02 12:14:14 -04001905 if (nolock)
Josef Bacik7a7eaa402011-04-13 12:54:33 -04001906 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001907 else
Josef Bacik7a7eaa402011-04-13 12:54:33 -04001908 trans = btrfs_join_transaction(root);
Liu Bod280e5b2012-08-21 21:13:25 -06001909 if (IS_ERR(trans)) {
1910 ret = PTR_ERR(trans);
1911 trans = NULL;
1912 goto out;
1913 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001914 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason21151332011-11-10 20:39:08 -05001915 ret = btrfs_update_inode_fallback(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001916 if (ret) /* -ENOMEM or corruption */
1917 btrfs_abort_transaction(trans, root, ret);
Yan, Zhengc21677542009-11-12 09:34:21 +00001918 }
1919 goto out;
1920 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001921
Josef Bacik2ac55d42010-02-03 19:33:23 +00001922 lock_extent_bits(io_tree, ordered_extent->file_offset,
1923 ordered_extent->file_offset + ordered_extent->len - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001924 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001925
Josef Bacik0cb59c92010-07-02 12:14:14 -04001926 if (nolock)
Josef Bacik7a7eaa402011-04-13 12:54:33 -04001927 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001928 else
Josef Bacik7a7eaa402011-04-13 12:54:33 -04001929 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001930 if (IS_ERR(trans)) {
1931 ret = PTR_ERR(trans);
1932 trans = NULL;
1933 goto out_unlock;
1934 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001935 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Yan, Zhengc21677542009-11-12 09:34:21 +00001936
Chris Masonc8b97812008-10-29 14:49:59 -04001937 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Li Zefan261507a02010-12-17 14:21:50 +08001938 compress_type = ordered_extent->compress_type;
Yan Zhengd899e052008-10-30 14:25:28 -04001939 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Li Zefan261507a02010-12-17 14:21:50 +08001940 BUG_ON(compress_type);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001941 ret = btrfs_mark_extent_written(trans, inode,
Yan Zhengd899e052008-10-30 14:25:28 -04001942 ordered_extent->file_offset,
1943 ordered_extent->file_offset +
1944 ordered_extent->len);
Yan Zhengd899e052008-10-30 14:25:28 -04001945 } else {
Josef Bacik0af3d002010-06-21 14:48:16 -04001946 BUG_ON(root == root->fs_info->tree_root);
Yan Zhengd899e052008-10-30 14:25:28 -04001947 ret = insert_reserved_file_extent(trans, inode,
1948 ordered_extent->file_offset,
1949 ordered_extent->start,
1950 ordered_extent->disk_len,
1951 ordered_extent->len,
1952 ordered_extent->len,
Li Zefan261507a02010-12-17 14:21:50 +08001953 compress_type, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04001954 BTRFS_FILE_EXTENT_REG);
Yan Zhengd899e052008-10-30 14:25:28 -04001955 }
Josef Bacik5dc562c2012-08-17 13:14:17 -04001956 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
1957 ordered_extent->file_offset, ordered_extent->len,
1958 trans->transid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001959 if (ret < 0) {
1960 btrfs_abort_transaction(trans, root, ret);
Josef Bacik5fd02042012-05-02 14:00:54 -04001961 goto out_unlock;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001962 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00001963
Chris Masone6dcd2d2008-07-17 12:53:50 -04001964 add_pending_csums(trans, inode, ordered_extent->file_offset,
1965 &ordered_extent->list);
1966
Josef Bacik1ef30be2011-04-05 19:25:36 -04001967 ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent);
Miao Xiea39f7522011-09-11 10:52:25 -04001968 if (!ret || !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Chris Mason21151332011-11-10 20:39:08 -05001969 ret = btrfs_update_inode_fallback(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001970 if (ret) { /* -ENOMEM or corruption */
1971 btrfs_abort_transaction(trans, root, ret);
Josef Bacik5fd02042012-05-02 14:00:54 -04001972 goto out_unlock;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001973 }
Josef Bacik7c735312012-08-13 15:43:26 -04001974 } else {
1975 btrfs_set_inode_last_trans(trans, inode);
Josef Bacik1ef30be2011-04-05 19:25:36 -04001976 }
1977 ret = 0;
Josef Bacik5fd02042012-05-02 14:00:54 -04001978out_unlock:
1979 unlock_extent_cached(io_tree, ordered_extent->file_offset,
1980 ordered_extent->file_offset +
1981 ordered_extent->len - 1, &cached_state, GFP_NOFS);
Yan, Zhengc21677542009-11-12 09:34:21 +00001982out:
Josef Bacik5b0e95b2011-10-06 08:58:24 -04001983 if (root != root->fs_info->tree_root)
Josef Bacik0cb59c92010-07-02 12:14:14 -04001984 btrfs_delalloc_release_metadata(inode, ordered_extent->len);
Miao Xiea698d0752012-09-20 01:51:59 -06001985 if (trans)
1986 btrfs_end_transaction(trans, root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001987
Josef Bacik5fd02042012-05-02 14:00:54 -04001988 if (ret)
1989 clear_extent_uptodate(io_tree, ordered_extent->file_offset,
1990 ordered_extent->file_offset +
1991 ordered_extent->len - 1, NULL, GFP_NOFS);
1992
1993 /*
Liu Bo8bad3c02012-06-18 12:14:23 +08001994 * This needs to be done to make sure anybody waiting knows we are done
1995 * updating everything for this ordered extent.
Josef Bacik5fd02042012-05-02 14:00:54 -04001996 */
1997 btrfs_remove_ordered_extent(inode, ordered_extent);
1998
Chris Masone6dcd2d2008-07-17 12:53:50 -04001999 /* once for us */
2000 btrfs_put_ordered_extent(ordered_extent);
2001 /* once for the tree */
2002 btrfs_put_ordered_extent(ordered_extent);
2003
Josef Bacik5fd02042012-05-02 14:00:54 -04002004 return ret;
2005}
2006
2007static void finish_ordered_fn(struct btrfs_work *work)
2008{
2009 struct btrfs_ordered_extent *ordered_extent;
2010 ordered_extent = container_of(work, struct btrfs_ordered_extent, work);
2011 btrfs_finish_ordered_io(ordered_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002012}
2013
Christoph Hellwigb2950862008-12-02 09:54:17 -05002014static int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04002015 struct extent_state *state, int uptodate)
2016{
Josef Bacik5fd02042012-05-02 14:00:54 -04002017 struct inode *inode = page->mapping->host;
2018 struct btrfs_root *root = BTRFS_I(inode)->root;
2019 struct btrfs_ordered_extent *ordered_extent = NULL;
2020 struct btrfs_workers *workers;
2021
liubo1abe9b82011-03-24 11:18:59 +00002022 trace_btrfs_writepage_end_io_hook(page, start, end, uptodate);
2023
Chris Mason8b62b722009-09-02 16:53:46 -04002024 ClearPagePrivate2(page);
Josef Bacik5fd02042012-05-02 14:00:54 -04002025 if (!btrfs_dec_test_ordered_pending(inode, &ordered_extent, start,
2026 end - start + 1, uptodate))
2027 return 0;
2028
2029 ordered_extent->work.func = finish_ordered_fn;
2030 ordered_extent->work.flags = 0;
2031
Liu Bo83eea1f2012-07-10 05:28:39 -06002032 if (btrfs_is_free_space_inode(inode))
Josef Bacik5fd02042012-05-02 14:00:54 -04002033 workers = &root->fs_info->endio_freespace_worker;
2034 else
2035 workers = &root->fs_info->endio_write_workers;
2036 btrfs_queue_worker(workers, &ordered_extent->work);
2037
2038 return 0;
Chris Mason211f90e2008-07-18 11:56:15 -04002039}
2040
Chris Masond352ac62008-09-29 15:18:18 -04002041/*
Chris Masond352ac62008-09-29 15:18:18 -04002042 * when reads are done, we need to check csums to verify the data is correct
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002043 * if there's a match, we allow the bio to finish. If not, the code in
2044 * extent_io.c will try to find good copies for us.
Chris Masond352ac62008-09-29 15:18:18 -04002045 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05002046static int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002047 struct extent_state *state, int mirror)
Chris Mason07157aa2007-08-30 08:50:51 -04002048{
Chris Mason35ebb932007-10-30 16:56:53 -04002049 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -04002050 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05002051 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -04002052 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -05002053 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -04002054 int ret;
Chris Masonff79f812007-10-15 16:22:25 -04002055 struct btrfs_root *root = BTRFS_I(inode)->root;
2056 u32 csum = ~(u32)0;
Chris Masond1310b22008-01-24 16:13:08 -05002057
Chris Masond20f7042008-12-08 16:58:54 -05002058 if (PageChecked(page)) {
2059 ClearPageChecked(page);
2060 goto good;
2061 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002062
2063 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Jan Schmidt08d2f342011-05-04 16:18:50 +02002064 goto good;
Chris Masond20f7042008-12-08 16:58:54 -05002065
Yan Zheng17d217f2008-12-12 10:03:38 -05002066 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04002067 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
Yan Zheng17d217f2008-12-12 10:03:38 -05002068 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM,
2069 GFP_NOFS);
2070 return 0;
2071 }
2072
Yanc2e639f2008-02-04 08:57:25 -05002073 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -05002074 private = state->private;
2075 ret = 0;
2076 } else {
2077 ret = get_state_private(io_tree, start, &private);
2078 }
Cong Wang7ac687d2011-11-25 23:14:28 +08002079 kaddr = kmap_atomic(page);
Chris Masond3977122009-01-05 21:25:51 -05002080 if (ret)
Chris Mason07157aa2007-08-30 08:50:51 -04002081 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05002082
Chris Masonff79f812007-10-15 16:22:25 -04002083 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
2084 btrfs_csum_final(csum, (char *)&csum);
Chris Masond3977122009-01-05 21:25:51 -05002085 if (csum != private)
Chris Mason07157aa2007-08-30 08:50:51 -04002086 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05002087
Cong Wang7ac687d2011-11-25 23:14:28 +08002088 kunmap_atomic(kaddr);
Chris Masond20f7042008-12-08 16:58:54 -05002089good:
Chris Mason07157aa2007-08-30 08:50:51 -04002090 return 0;
2091
2092zeroit:
Chris Mason945d8962011-05-22 12:33:42 -04002093 printk_ratelimited(KERN_INFO "btrfs csum failed ino %llu off %llu csum %u "
Li Zefan33345d012011-04-20 10:31:50 +08002094 "private %llu\n",
2095 (unsigned long long)btrfs_ino(page->mapping->host),
Chris Mason193f2842009-04-27 07:29:05 -04002096 (unsigned long long)start, csum,
2097 (unsigned long long)private);
Chris Masondb945352007-10-15 16:15:53 -04002098 memset(kaddr + offset, 1, end - start + 1);
2099 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002100 kunmap_atomic(kaddr);
Chris Mason3b951512008-04-17 11:29:12 -04002101 if (private == 0)
2102 return 0;
Chris Mason7e383262008-04-09 16:28:12 -04002103 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -04002104}
Chris Masonb888db22007-08-27 16:49:44 -04002105
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002106struct delayed_iput {
2107 struct list_head list;
2108 struct inode *inode;
2109};
2110
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002111/* JDM: If this is fs-wide, why can't we add a pointer to
2112 * btrfs_inode instead and avoid the allocation? */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002113void btrfs_add_delayed_iput(struct inode *inode)
2114{
2115 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2116 struct delayed_iput *delayed;
2117
2118 if (atomic_add_unless(&inode->i_count, -1, 1))
2119 return;
2120
2121 delayed = kmalloc(sizeof(*delayed), GFP_NOFS | __GFP_NOFAIL);
2122 delayed->inode = inode;
2123
2124 spin_lock(&fs_info->delayed_iput_lock);
2125 list_add_tail(&delayed->list, &fs_info->delayed_iputs);
2126 spin_unlock(&fs_info->delayed_iput_lock);
2127}
2128
2129void btrfs_run_delayed_iputs(struct btrfs_root *root)
2130{
2131 LIST_HEAD(list);
2132 struct btrfs_fs_info *fs_info = root->fs_info;
2133 struct delayed_iput *delayed;
2134 int empty;
2135
2136 spin_lock(&fs_info->delayed_iput_lock);
2137 empty = list_empty(&fs_info->delayed_iputs);
2138 spin_unlock(&fs_info->delayed_iput_lock);
2139 if (empty)
2140 return;
2141
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002142 spin_lock(&fs_info->delayed_iput_lock);
2143 list_splice_init(&fs_info->delayed_iputs, &list);
2144 spin_unlock(&fs_info->delayed_iput_lock);
2145
2146 while (!list_empty(&list)) {
2147 delayed = list_entry(list.next, struct delayed_iput, list);
2148 list_del(&delayed->list);
2149 iput(delayed->inode);
2150 kfree(delayed);
2151 }
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002152}
2153
Yan, Zhengd68fc572010-05-16 10:49:58 -04002154enum btrfs_orphan_cleanup_state {
2155 ORPHAN_CLEANUP_STARTED = 1,
2156 ORPHAN_CLEANUP_DONE = 2,
2157};
2158
2159/*
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08002160 * This is called in transaction commit time. If there are no orphan
Yan, Zhengd68fc572010-05-16 10:49:58 -04002161 * files in the subvolume, it removes orphan item and frees block_rsv
2162 * structure.
2163 */
2164void btrfs_orphan_commit_root(struct btrfs_trans_handle *trans,
2165 struct btrfs_root *root)
2166{
Josef Bacik90290e12011-12-02 15:44:12 -05002167 struct btrfs_block_rsv *block_rsv;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002168 int ret;
2169
Josef Bacik8a35d952012-05-23 14:26:42 -04002170 if (atomic_read(&root->orphan_inodes) ||
Yan, Zhengd68fc572010-05-16 10:49:58 -04002171 root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE)
2172 return;
2173
Josef Bacik90290e12011-12-02 15:44:12 -05002174 spin_lock(&root->orphan_lock);
Josef Bacik8a35d952012-05-23 14:26:42 -04002175 if (atomic_read(&root->orphan_inodes)) {
Josef Bacik90290e12011-12-02 15:44:12 -05002176 spin_unlock(&root->orphan_lock);
2177 return;
2178 }
2179
2180 if (root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE) {
2181 spin_unlock(&root->orphan_lock);
2182 return;
2183 }
2184
2185 block_rsv = root->orphan_block_rsv;
2186 root->orphan_block_rsv = NULL;
2187 spin_unlock(&root->orphan_lock);
2188
Yan, Zhengd68fc572010-05-16 10:49:58 -04002189 if (root->orphan_item_inserted &&
2190 btrfs_root_refs(&root->root_item) > 0) {
2191 ret = btrfs_del_orphan_item(trans, root->fs_info->tree_root,
2192 root->root_key.objectid);
2193 BUG_ON(ret);
2194 root->orphan_item_inserted = 0;
2195 }
2196
Josef Bacik90290e12011-12-02 15:44:12 -05002197 if (block_rsv) {
2198 WARN_ON(block_rsv->size > 0);
2199 btrfs_free_block_rsv(root, block_rsv);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002200 }
2201}
2202
2203/*
Josef Bacik7b128762008-07-24 12:17:14 -04002204 * This creates an orphan entry for the given inode in case something goes
2205 * wrong in the middle of an unlink/truncate.
Yan, Zhengd68fc572010-05-16 10:49:58 -04002206 *
2207 * NOTE: caller of this function should reserve 5 units of metadata for
2208 * this function.
Josef Bacik7b128762008-07-24 12:17:14 -04002209 */
2210int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
2211{
2212 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002213 struct btrfs_block_rsv *block_rsv = NULL;
2214 int reserve = 0;
2215 int insert = 0;
2216 int ret;
Josef Bacik7b128762008-07-24 12:17:14 -04002217
Yan, Zhengd68fc572010-05-16 10:49:58 -04002218 if (!root->orphan_block_rsv) {
Miao Xie66d8f3d2012-09-06 04:02:28 -06002219 block_rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP);
Tsutomu Itohb5324022011-07-19 07:27:20 +00002220 if (!block_rsv)
2221 return -ENOMEM;
Josef Bacik7b128762008-07-24 12:17:14 -04002222 }
2223
Yan, Zhengd68fc572010-05-16 10:49:58 -04002224 spin_lock(&root->orphan_lock);
2225 if (!root->orphan_block_rsv) {
2226 root->orphan_block_rsv = block_rsv;
2227 } else if (block_rsv) {
2228 btrfs_free_block_rsv(root, block_rsv);
2229 block_rsv = NULL;
2230 }
Josef Bacik7b128762008-07-24 12:17:14 -04002231
Josef Bacik8a35d952012-05-23 14:26:42 -04002232 if (!test_and_set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2233 &BTRFS_I(inode)->runtime_flags)) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04002234#if 0
2235 /*
2236 * For proper ENOSPC handling, we should do orphan
2237 * cleanup when mounting. But this introduces backward
2238 * compatibility issue.
2239 */
2240 if (!xchg(&root->orphan_item_inserted, 1))
2241 insert = 2;
2242 else
2243 insert = 1;
2244#endif
2245 insert = 1;
Miao Xie321f0e72012-08-28 22:13:02 -06002246 atomic_inc(&root->orphan_inodes);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002247 }
Josef Bacik7b128762008-07-24 12:17:14 -04002248
Josef Bacik72ac3c02012-05-23 14:13:11 -04002249 if (!test_and_set_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
2250 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04002251 reserve = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002252 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002253
Yan, Zhengd68fc572010-05-16 10:49:58 -04002254 /* grab metadata reservation from transaction handle */
2255 if (reserve) {
2256 ret = btrfs_orphan_reserve_metadata(trans, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002257 BUG_ON(ret); /* -ENOSPC in reservation; Logic error? JDM */
Yan, Zhengd68fc572010-05-16 10:49:58 -04002258 }
2259
2260 /* insert an orphan item to track this unlinked/truncated file */
2261 if (insert >= 1) {
Li Zefan33345d012011-04-20 10:31:50 +08002262 ret = btrfs_insert_orphan_item(trans, root, btrfs_ino(inode));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002263 if (ret && ret != -EEXIST) {
Josef Bacik8a35d952012-05-23 14:26:42 -04002264 clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2265 &BTRFS_I(inode)->runtime_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002266 btrfs_abort_transaction(trans, root, ret);
2267 return ret;
2268 }
2269 ret = 0;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002270 }
2271
2272 /* insert an orphan item to track subvolume contains orphan files */
2273 if (insert >= 2) {
2274 ret = btrfs_insert_orphan_item(trans, root->fs_info->tree_root,
2275 root->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002276 if (ret && ret != -EEXIST) {
2277 btrfs_abort_transaction(trans, root, ret);
2278 return ret;
2279 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002280 }
2281 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002282}
2283
2284/*
2285 * We have done the truncate/delete so we can go ahead and remove the orphan
2286 * item for this particular inode.
2287 */
2288int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode)
2289{
2290 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002291 int delete_item = 0;
2292 int release_rsv = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002293 int ret = 0;
2294
Yan, Zhengd68fc572010-05-16 10:49:58 -04002295 spin_lock(&root->orphan_lock);
Josef Bacik8a35d952012-05-23 14:26:42 -04002296 if (test_and_clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2297 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04002298 delete_item = 1;
Josef Bacik7b128762008-07-24 12:17:14 -04002299
Josef Bacik72ac3c02012-05-23 14:13:11 -04002300 if (test_and_clear_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
2301 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04002302 release_rsv = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002303 spin_unlock(&root->orphan_lock);
2304
2305 if (trans && delete_item) {
Li Zefan33345d012011-04-20 10:31:50 +08002306 ret = btrfs_del_orphan_item(trans, root, btrfs_ino(inode));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002307 BUG_ON(ret); /* -ENOMEM or corruption (JDM: Recheck) */
Josef Bacik7b128762008-07-24 12:17:14 -04002308 }
2309
Josef Bacik8a35d952012-05-23 14:26:42 -04002310 if (release_rsv) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04002311 btrfs_orphan_release_metadata(inode);
Josef Bacik8a35d952012-05-23 14:26:42 -04002312 atomic_dec(&root->orphan_inodes);
2313 }
Josef Bacik7b128762008-07-24 12:17:14 -04002314
Yan, Zhengd68fc572010-05-16 10:49:58 -04002315 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002316}
2317
2318/*
2319 * this cleans up any orphans that may be left on the list from the last use
2320 * of this root.
2321 */
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002322int btrfs_orphan_cleanup(struct btrfs_root *root)
Josef Bacik7b128762008-07-24 12:17:14 -04002323{
2324 struct btrfs_path *path;
2325 struct extent_buffer *leaf;
Josef Bacik7b128762008-07-24 12:17:14 -04002326 struct btrfs_key key, found_key;
2327 struct btrfs_trans_handle *trans;
2328 struct inode *inode;
Josef Bacik8f6d7f42011-09-26 15:55:20 -04002329 u64 last_objectid = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002330 int ret = 0, nr_unlink = 0, nr_truncate = 0;
2331
Yan, Zhengd68fc572010-05-16 10:49:58 -04002332 if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002333 return 0;
Yan, Zhengc71bf092009-11-12 09:34:40 +00002334
2335 path = btrfs_alloc_path();
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002336 if (!path) {
2337 ret = -ENOMEM;
2338 goto out;
2339 }
Josef Bacik7b128762008-07-24 12:17:14 -04002340 path->reada = -1;
2341
2342 key.objectid = BTRFS_ORPHAN_OBJECTID;
2343 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
2344 key.offset = (u64)-1;
2345
Josef Bacik7b128762008-07-24 12:17:14 -04002346 while (1) {
2347 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002348 if (ret < 0)
2349 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04002350
2351 /*
2352 * if ret == 0 means we found what we were searching for, which
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002353 * is weird, but possible, so only screw with path if we didn't
Josef Bacik7b128762008-07-24 12:17:14 -04002354 * find the key and see if we have stuff that matches
2355 */
2356 if (ret > 0) {
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002357 ret = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002358 if (path->slots[0] == 0)
2359 break;
2360 path->slots[0]--;
2361 }
2362
2363 /* pull out the item */
2364 leaf = path->nodes[0];
Josef Bacik7b128762008-07-24 12:17:14 -04002365 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2366
2367 /* make sure the item matches what we want */
2368 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
2369 break;
2370 if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY)
2371 break;
2372
2373 /* release the path since we're done with it */
David Sterbab3b4aa72011-04-21 01:20:15 +02002374 btrfs_release_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04002375
2376 /*
2377 * this is where we are basically btrfs_lookup, without the
2378 * crossing root thing. we store the inode number in the
2379 * offset of the orphan item.
2380 */
Josef Bacik8f6d7f42011-09-26 15:55:20 -04002381
2382 if (found_key.offset == last_objectid) {
2383 printk(KERN_ERR "btrfs: Error removing orphan entry, "
2384 "stopping orphan cleanup\n");
2385 ret = -EINVAL;
2386 goto out;
2387 }
2388
2389 last_objectid = found_key.offset;
2390
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002391 found_key.objectid = found_key.offset;
2392 found_key.type = BTRFS_INODE_ITEM_KEY;
2393 found_key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +00002394 inode = btrfs_iget(root->fs_info->sb, &found_key, root, NULL);
Josef Bacika8c9e572011-09-21 16:55:59 -04002395 ret = PTR_RET(inode);
2396 if (ret && ret != -ESTALE)
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002397 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04002398
Arne Jansenf8e9e0b2011-12-14 20:12:02 -05002399 if (ret == -ESTALE && root == root->fs_info->tree_root) {
2400 struct btrfs_root *dead_root;
2401 struct btrfs_fs_info *fs_info = root->fs_info;
2402 int is_dead_root = 0;
2403
2404 /*
2405 * this is an orphan in the tree root. Currently these
2406 * could come from 2 sources:
2407 * a) a snapshot deletion in progress
2408 * b) a free space cache inode
2409 * We need to distinguish those two, as the snapshot
2410 * orphan must not get deleted.
2411 * find_dead_roots already ran before us, so if this
2412 * is a snapshot deletion, we should find the root
2413 * in the dead_roots list
2414 */
2415 spin_lock(&fs_info->trans_lock);
2416 list_for_each_entry(dead_root, &fs_info->dead_roots,
2417 root_list) {
2418 if (dead_root->root_key.objectid ==
2419 found_key.objectid) {
2420 is_dead_root = 1;
2421 break;
2422 }
2423 }
2424 spin_unlock(&fs_info->trans_lock);
2425 if (is_dead_root) {
2426 /* prevent this orphan from being found again */
2427 key.offset = found_key.objectid - 1;
2428 continue;
2429 }
2430 }
Josef Bacika8c9e572011-09-21 16:55:59 -04002431 /*
2432 * Inode is already gone but the orphan item is still there,
2433 * kill the orphan item.
2434 */
2435 if (ret == -ESTALE) {
2436 trans = btrfs_start_transaction(root, 1);
2437 if (IS_ERR(trans)) {
2438 ret = PTR_ERR(trans);
2439 goto out;
2440 }
Josef Bacik8a35d952012-05-23 14:26:42 -04002441 printk(KERN_ERR "auto deleting %Lu\n",
2442 found_key.objectid);
Josef Bacika8c9e572011-09-21 16:55:59 -04002443 ret = btrfs_del_orphan_item(trans, root,
2444 found_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002445 BUG_ON(ret); /* -ENOMEM or corruption (JDM: Recheck) */
Josef Bacika8c9e572011-09-21 16:55:59 -04002446 btrfs_end_transaction(trans, root);
2447 continue;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002448 }
Josef Bacik7b128762008-07-24 12:17:14 -04002449
Josef Bacik7b128762008-07-24 12:17:14 -04002450 /*
2451 * add this inode to the orphan list so btrfs_orphan_del does
2452 * the proper thing when we hit it
2453 */
Josef Bacik8a35d952012-05-23 14:26:42 -04002454 set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2455 &BTRFS_I(inode)->runtime_flags);
Josef Bacik7b128762008-07-24 12:17:14 -04002456
Josef Bacik7b128762008-07-24 12:17:14 -04002457 /* if we have links, this was a truncate, lets do that */
2458 if (inode->i_nlink) {
Josef Bacika41ad392011-01-31 15:30:16 -05002459 if (!S_ISREG(inode->i_mode)) {
2460 WARN_ON(1);
2461 iput(inode);
2462 continue;
2463 }
Josef Bacik7b128762008-07-24 12:17:14 -04002464 nr_truncate++;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002465 ret = btrfs_truncate(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04002466 } else {
2467 nr_unlink++;
2468 }
2469
2470 /* this will do delete_inode and everything for us */
2471 iput(inode);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002472 if (ret)
2473 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04002474 }
Miao Xie3254c872011-11-10 20:45:05 -05002475 /* release the path since we're done with it */
2476 btrfs_release_path(path);
2477
Yan, Zhengd68fc572010-05-16 10:49:58 -04002478 root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE;
2479
2480 if (root->orphan_block_rsv)
2481 btrfs_block_rsv_release(root, root->orphan_block_rsv,
2482 (u64)-1);
2483
2484 if (root->orphan_block_rsv || root->orphan_item_inserted) {
Josef Bacik7a7eaa402011-04-13 12:54:33 -04002485 trans = btrfs_join_transaction(root);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002486 if (!IS_ERR(trans))
2487 btrfs_end_transaction(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002488 }
Josef Bacik7b128762008-07-24 12:17:14 -04002489
2490 if (nr_unlink)
2491 printk(KERN_INFO "btrfs: unlinked %d orphans\n", nr_unlink);
2492 if (nr_truncate)
2493 printk(KERN_INFO "btrfs: truncated %d orphans\n", nr_truncate);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002494
2495out:
2496 if (ret)
2497 printk(KERN_CRIT "btrfs: could not do orphan cleanup %d\n", ret);
2498 btrfs_free_path(path);
2499 return ret;
Josef Bacik7b128762008-07-24 12:17:14 -04002500}
2501
Chris Masond352ac62008-09-29 15:18:18 -04002502/*
Chris Mason46a53cc2009-04-27 11:47:50 -04002503 * very simple check to peek ahead in the leaf looking for xattrs. If we
2504 * don't find any xattrs, we know there can't be any acls.
2505 *
2506 * slot is the slot the inode is in, objectid is the objectid of the inode
2507 */
2508static noinline int acls_after_inode_item(struct extent_buffer *leaf,
2509 int slot, u64 objectid)
2510{
2511 u32 nritems = btrfs_header_nritems(leaf);
2512 struct btrfs_key found_key;
2513 int scanned = 0;
2514
2515 slot++;
2516 while (slot < nritems) {
2517 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2518
2519 /* we found a different objectid, there must not be acls */
2520 if (found_key.objectid != objectid)
2521 return 0;
2522
2523 /* we found an xattr, assume we've got an acl */
2524 if (found_key.type == BTRFS_XATTR_ITEM_KEY)
2525 return 1;
2526
2527 /*
2528 * we found a key greater than an xattr key, there can't
2529 * be any acls later on
2530 */
2531 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
2532 return 0;
2533
2534 slot++;
2535 scanned++;
2536
2537 /*
2538 * it goes inode, inode backrefs, xattrs, extents,
2539 * so if there are a ton of hard links to an inode there can
2540 * be a lot of backrefs. Don't waste time searching too hard,
2541 * this is just an optimization
2542 */
2543 if (scanned >= 8)
2544 break;
2545 }
2546 /* we hit the end of the leaf before we found an xattr or
2547 * something larger than an xattr. We have to assume the inode
2548 * has acls
2549 */
2550 return 1;
2551}
2552
2553/*
Chris Masond352ac62008-09-29 15:18:18 -04002554 * read an inode from the btree into the in-memory inode
2555 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002556static void btrfs_read_locked_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002557{
2558 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002559 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002560 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -04002561 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -04002562 struct btrfs_root *root = BTRFS_I(inode)->root;
2563 struct btrfs_key location;
Chris Mason46a53cc2009-04-27 11:47:50 -04002564 int maybe_acls;
Josef Bacik618e21d2007-07-11 10:18:17 -04002565 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04002566 int ret;
Miao Xie2f7e33d2011-06-23 07:27:13 +00002567 bool filled = false;
2568
2569 ret = btrfs_fill_inode(inode, &rdev);
2570 if (!ret)
2571 filled = true;
Chris Mason39279cc2007-06-12 06:35:45 -04002572
2573 path = btrfs_alloc_path();
Mark Fasheh1748f842011-07-12 11:25:31 -07002574 if (!path)
2575 goto make_bad;
2576
Josef Bacikd90c7322011-05-17 09:50:54 -04002577 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002578 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05002579
Chris Mason39279cc2007-06-12 06:35:45 -04002580 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002581 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04002582 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -04002583
Chris Mason5f39d392007-10-15 16:14:19 -04002584 leaf = path->nodes[0];
Miao Xie2f7e33d2011-06-23 07:27:13 +00002585
2586 if (filled)
2587 goto cache_acl;
2588
Chris Mason5f39d392007-10-15 16:14:19 -04002589 inode_item = btrfs_item_ptr(leaf, path->slots[0],
2590 struct btrfs_inode_item);
Chris Mason5f39d392007-10-15 16:14:19 -04002591 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
Miklos Szeredibfe86842011-10-28 14:13:29 +02002592 set_nlink(inode, btrfs_inode_nlink(leaf, inode_item));
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -08002593 i_uid_write(inode, btrfs_inode_uid(leaf, inode_item));
2594 i_gid_write(inode, btrfs_inode_gid(leaf, inode_item));
Chris Masondbe674a2008-07-17 12:54:05 -04002595 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002596
2597 tspec = btrfs_inode_atime(inode_item);
2598 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2599 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2600
2601 tspec = btrfs_inode_mtime(inode_item);
2602 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2603 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2604
2605 tspec = btrfs_inode_ctime(inode_item);
2606 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2607 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2608
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002609 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04002610 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Josef Bacik5dc562c2012-08-17 13:14:17 -04002611 BTRFS_I(inode)->last_trans = btrfs_inode_transid(leaf, inode_item);
2612
2613 /*
2614 * If we were modified in the current generation and evicted from memory
2615 * and then re-read we need to do a full sync since we don't have any
2616 * idea about which extents were modified before we were evicted from
2617 * cache.
2618 */
2619 if (BTRFS_I(inode)->last_trans == root->fs_info->generation)
2620 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
2621 &BTRFS_I(inode)->runtime_flags);
2622
Josef Bacik0c4d2d92012-04-05 15:03:02 -04002623 inode->i_version = btrfs_inode_sequence(leaf, inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04002624 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04002625 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002626 rdev = btrfs_inode_rdev(leaf, inode_item);
2627
Josef Bacikaec74772008-07-24 12:12:38 -04002628 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05002629 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Miao Xie2f7e33d2011-06-23 07:27:13 +00002630cache_acl:
Chris Mason46a53cc2009-04-27 11:47:50 -04002631 /*
2632 * try to precache a NULL acl entry for files that don't have
2633 * any xattrs or acls
2634 */
Li Zefan33345d012011-04-20 10:31:50 +08002635 maybe_acls = acls_after_inode_item(leaf, path->slots[0],
2636 btrfs_ino(inode));
Al Viro72c04902009-06-24 16:58:48 -04002637 if (!maybe_acls)
2638 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04002639
Chris Mason39279cc2007-06-12 06:35:45 -04002640 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002641
Chris Mason39279cc2007-06-12 06:35:45 -04002642 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04002643 case S_IFREG:
2644 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04002645 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05002646 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04002647 inode->i_fop = &btrfs_file_operations;
2648 inode->i_op = &btrfs_file_inode_operations;
2649 break;
2650 case S_IFDIR:
2651 inode->i_fop = &btrfs_dir_file_operations;
2652 if (root == root->fs_info->tree_root)
2653 inode->i_op = &btrfs_dir_ro_inode_operations;
2654 else
2655 inode->i_op = &btrfs_dir_inode_operations;
2656 break;
2657 case S_IFLNK:
2658 inode->i_op = &btrfs_symlink_inode_operations;
2659 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04002660 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04002661 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04002662 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05002663 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04002664 init_special_inode(inode, inode->i_mode, rdev);
2665 break;
Chris Mason39279cc2007-06-12 06:35:45 -04002666 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002667
2668 btrfs_update_iflags(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002669 return;
2670
2671make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04002672 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002673 make_bad_inode(inode);
2674}
2675
Chris Masond352ac62008-09-29 15:18:18 -04002676/*
2677 * given a leaf and an inode, copy the inode fields into the leaf
2678 */
Chris Masone02119d2008-09-05 16:13:11 -04002679static void fill_inode_item(struct btrfs_trans_handle *trans,
2680 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04002681 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04002682 struct inode *inode)
2683{
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -08002684 btrfs_set_inode_uid(leaf, item, i_uid_read(inode));
2685 btrfs_set_inode_gid(leaf, item, i_gid_read(inode));
Chris Masondbe674a2008-07-17 12:54:05 -04002686 btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size);
Chris Mason5f39d392007-10-15 16:14:19 -04002687 btrfs_set_inode_mode(leaf, item, inode->i_mode);
2688 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
2689
2690 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
2691 inode->i_atime.tv_sec);
2692 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
2693 inode->i_atime.tv_nsec);
2694
2695 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
2696 inode->i_mtime.tv_sec);
2697 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
2698 inode->i_mtime.tv_nsec);
2699
2700 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
2701 inode->i_ctime.tv_sec);
2702 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
2703 inode->i_ctime.tv_nsec);
2704
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002705 btrfs_set_inode_nbytes(leaf, item, inode_get_bytes(inode));
Chris Masone02119d2008-09-05 16:13:11 -04002706 btrfs_set_inode_generation(leaf, item, BTRFS_I(inode)->generation);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04002707 btrfs_set_inode_sequence(leaf, item, inode->i_version);
Chris Masone02119d2008-09-05 16:13:11 -04002708 btrfs_set_inode_transid(leaf, item, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002709 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -05002710 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Josef Bacikd82a6f12011-05-11 15:26:06 -04002711 btrfs_set_inode_block_group(leaf, item, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002712}
2713
Chris Masond352ac62008-09-29 15:18:18 -04002714/*
2715 * copy everything in the in-memory inode into the btree.
2716 */
Chris Mason21151332011-11-10 20:39:08 -05002717static noinline int btrfs_update_inode_item(struct btrfs_trans_handle *trans,
Chris Masond3977122009-01-05 21:25:51 -05002718 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002719{
2720 struct btrfs_inode_item *inode_item;
2721 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002722 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002723 int ret;
2724
2725 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08002726 if (!path)
2727 return -ENOMEM;
2728
Chris Masonb9473432009-03-13 11:00:37 -04002729 path->leave_spinning = 1;
Miao Xie16cdcec2011-04-22 18:12:22 +08002730 ret = btrfs_lookup_inode(trans, root, path, &BTRFS_I(inode)->location,
2731 1);
Chris Mason39279cc2007-06-12 06:35:45 -04002732 if (ret) {
2733 if (ret > 0)
2734 ret = -ENOENT;
2735 goto failed;
2736 }
2737
Chris Masonb4ce94d2009-02-04 09:25:08 -05002738 btrfs_unlock_up_safe(path, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002739 leaf = path->nodes[0];
2740 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Miao Xie16cdcec2011-04-22 18:12:22 +08002741 struct btrfs_inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -04002742
Chris Masone02119d2008-09-05 16:13:11 -04002743 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002744 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002745 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002746 ret = 0;
2747failed:
Chris Mason39279cc2007-06-12 06:35:45 -04002748 btrfs_free_path(path);
2749 return ret;
2750}
2751
Chris Masond352ac62008-09-29 15:18:18 -04002752/*
Chris Mason21151332011-11-10 20:39:08 -05002753 * copy everything in the in-memory inode into the btree.
2754 */
2755noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
2756 struct btrfs_root *root, struct inode *inode)
2757{
2758 int ret;
2759
2760 /*
2761 * If the inode is a free space inode, we can deadlock during commit
2762 * if we put it into the delayed code.
2763 *
2764 * The data relocation inode should also be directly updated
2765 * without delay
2766 */
Liu Bo83eea1f2012-07-10 05:28:39 -06002767 if (!btrfs_is_free_space_inode(inode)
Chris Mason21151332011-11-10 20:39:08 -05002768 && root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID) {
Alexander Block8ea05e32012-07-25 17:35:53 +02002769 btrfs_update_root_times(trans, root);
2770
Chris Mason21151332011-11-10 20:39:08 -05002771 ret = btrfs_delayed_update_inode(trans, root, inode);
2772 if (!ret)
2773 btrfs_set_inode_last_trans(trans, inode);
2774 return ret;
2775 }
2776
2777 return btrfs_update_inode_item(trans, root, inode);
2778}
2779
Josef Bacikbe6aef62012-10-22 15:43:12 -04002780noinline int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans,
2781 struct btrfs_root *root,
2782 struct inode *inode)
Chris Mason21151332011-11-10 20:39:08 -05002783{
2784 int ret;
2785
2786 ret = btrfs_update_inode(trans, root, inode);
2787 if (ret == -ENOSPC)
2788 return btrfs_update_inode_item(trans, root, inode);
2789 return ret;
2790}
2791
2792/*
Chris Masond352ac62008-09-29 15:18:18 -04002793 * unlink helper that gets used here in inode.c and in the tree logging
2794 * recovery code. It remove a link in a directory with a given name, and
2795 * also drops the back refs in the inode to the directory
2796 */
Al Viro92986792011-03-04 17:14:37 +00002797static int __btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2798 struct btrfs_root *root,
2799 struct inode *dir, struct inode *inode,
2800 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04002801{
2802 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04002803 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002804 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002805 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04002806 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04002807 u64 index;
Li Zefan33345d012011-04-20 10:31:50 +08002808 u64 ino = btrfs_ino(inode);
2809 u64 dir_ino = btrfs_ino(dir);
Chris Mason39279cc2007-06-12 06:35:45 -04002810
2811 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002812 if (!path) {
2813 ret = -ENOMEM;
Tsutomu Itoh554233a2011-02-03 03:16:25 +00002814 goto out;
Chris Mason54aa1f42007-06-22 14:16:25 -04002815 }
2816
Chris Masonb9473432009-03-13 11:00:37 -04002817 path->leave_spinning = 1;
Li Zefan33345d012011-04-20 10:31:50 +08002818 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Chris Mason39279cc2007-06-12 06:35:45 -04002819 name, name_len, -1);
2820 if (IS_ERR(di)) {
2821 ret = PTR_ERR(di);
2822 goto err;
2823 }
2824 if (!di) {
2825 ret = -ENOENT;
2826 goto err;
2827 }
Chris Mason5f39d392007-10-15 16:14:19 -04002828 leaf = path->nodes[0];
2829 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04002830 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04002831 if (ret)
2832 goto err;
David Sterbab3b4aa72011-04-21 01:20:15 +02002833 btrfs_release_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002834
Li Zefan33345d012011-04-20 10:31:50 +08002835 ret = btrfs_del_inode_ref(trans, root, name, name_len, ino,
2836 dir_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04002837 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05002838 printk(KERN_INFO "btrfs failed to delete reference to %.*s, "
Li Zefan33345d012011-04-20 10:31:50 +08002839 "inode %llu parent %llu\n", name_len, name,
2840 (unsigned long long)ino, (unsigned long long)dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002841 btrfs_abort_transaction(trans, root, ret);
Josef Bacikaec74772008-07-24 12:12:38 -04002842 goto err;
2843 }
2844
Miao Xie16cdcec2011-04-22 18:12:22 +08002845 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002846 if (ret) {
2847 btrfs_abort_transaction(trans, root, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04002848 goto err;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002849 }
Chris Mason39279cc2007-06-12 06:35:45 -04002850
Chris Masone02119d2008-09-05 16:13:11 -04002851 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
Li Zefan33345d012011-04-20 10:31:50 +08002852 inode, dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002853 if (ret != 0 && ret != -ENOENT) {
2854 btrfs_abort_transaction(trans, root, ret);
2855 goto err;
2856 }
Chris Masone02119d2008-09-05 16:13:11 -04002857
2858 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
2859 dir, index);
Chris Mason6418c962010-10-30 07:34:24 -04002860 if (ret == -ENOENT)
2861 ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002862err:
2863 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002864 if (ret)
2865 goto out;
2866
2867 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04002868 inode_inc_iversion(inode);
2869 inode_inc_iversion(dir);
Chris Masone02119d2008-09-05 16:13:11 -04002870 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
Tsutomu Itohb9959292012-06-25 21:25:22 -06002871 ret = btrfs_update_inode(trans, root, dir);
Chris Masone02119d2008-09-05 16:13:11 -04002872out:
Chris Mason39279cc2007-06-12 06:35:45 -04002873 return ret;
2874}
2875
Al Viro92986792011-03-04 17:14:37 +00002876int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2877 struct btrfs_root *root,
2878 struct inode *dir, struct inode *inode,
2879 const char *name, int name_len)
2880{
2881 int ret;
2882 ret = __btrfs_unlink_inode(trans, root, dir, inode, name, name_len);
2883 if (!ret) {
2884 btrfs_drop_nlink(inode);
2885 ret = btrfs_update_inode(trans, root, inode);
2886 }
2887 return ret;
2888}
2889
2890
Yan, Zhenga22285a2010-05-16 10:48:46 -04002891/* helper to check if there is any shared block in the path */
2892static int check_path_shared(struct btrfs_root *root,
2893 struct btrfs_path *path)
2894{
2895 struct extent_buffer *eb;
2896 int level;
Dan Carpenter0e4dcbe2010-06-01 08:23:11 +00002897 u64 refs = 1;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002898
2899 for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
Josef Bacikdedefd72011-01-24 21:43:18 +00002900 int ret;
2901
Yan, Zhenga22285a2010-05-16 10:48:46 -04002902 if (!path->nodes[level])
2903 break;
2904 eb = path->nodes[level];
2905 if (!btrfs_block_can_be_shared(root, eb))
2906 continue;
2907 ret = btrfs_lookup_extent_info(NULL, root, eb->start, eb->len,
2908 &refs, NULL);
2909 if (refs > 1)
2910 return 1;
2911 }
Josef Bacikdedefd72011-01-24 21:43:18 +00002912 return 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002913}
2914
2915/*
2916 * helper to start transaction for unlink and rmdir.
2917 *
2918 * unlink and rmdir are special in btrfs, they do not always free space.
2919 * so in enospc case, we should make sure they will free space before
2920 * allowing them to use the global metadata reservation.
2921 */
2922static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir,
2923 struct dentry *dentry)
2924{
2925 struct btrfs_trans_handle *trans;
2926 struct btrfs_root *root = BTRFS_I(dir)->root;
2927 struct btrfs_path *path;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002928 struct btrfs_dir_item *di;
2929 struct inode *inode = dentry->d_inode;
2930 u64 index;
2931 int check_link = 1;
2932 int err = -ENOSPC;
2933 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08002934 u64 ino = btrfs_ino(inode);
2935 u64 dir_ino = btrfs_ino(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002936
Josef Bacike70bea52011-10-11 14:18:24 -04002937 /*
2938 * 1 for the possible orphan item
2939 * 1 for the dir item
2940 * 1 for the dir index
2941 * 1 for the inode ref
2942 * 1 for the inode ref in the tree log
2943 * 2 for the dir entries in the log
2944 * 1 for the inode
2945 */
2946 trans = btrfs_start_transaction(root, 8);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002947 if (!IS_ERR(trans) || PTR_ERR(trans) != -ENOSPC)
2948 return trans;
2949
Li Zefan33345d012011-04-20 10:31:50 +08002950 if (ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhenga22285a2010-05-16 10:48:46 -04002951 return ERR_PTR(-ENOSPC);
2952
2953 /* check if there is someone else holds reference */
2954 if (S_ISDIR(inode->i_mode) && atomic_read(&inode->i_count) > 1)
2955 return ERR_PTR(-ENOSPC);
2956
2957 if (atomic_read(&inode->i_count) > 2)
2958 return ERR_PTR(-ENOSPC);
2959
2960 if (xchg(&root->fs_info->enospc_unlink, 1))
2961 return ERR_PTR(-ENOSPC);
2962
2963 path = btrfs_alloc_path();
2964 if (!path) {
2965 root->fs_info->enospc_unlink = 0;
2966 return ERR_PTR(-ENOMEM);
2967 }
2968
Josef Bacik3880a1b2011-10-14 14:46:51 -04002969 /* 1 for the orphan item */
2970 trans = btrfs_start_transaction(root, 1);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002971 if (IS_ERR(trans)) {
2972 btrfs_free_path(path);
2973 root->fs_info->enospc_unlink = 0;
2974 return trans;
2975 }
2976
2977 path->skip_locking = 1;
2978 path->search_commit_root = 1;
2979
2980 ret = btrfs_lookup_inode(trans, root, path,
2981 &BTRFS_I(dir)->location, 0);
2982 if (ret < 0) {
2983 err = ret;
2984 goto out;
2985 }
2986 if (ret == 0) {
2987 if (check_path_shared(root, path))
2988 goto out;
2989 } else {
2990 check_link = 0;
2991 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002992 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002993
2994 ret = btrfs_lookup_inode(trans, root, path,
2995 &BTRFS_I(inode)->location, 0);
2996 if (ret < 0) {
2997 err = ret;
2998 goto out;
2999 }
3000 if (ret == 0) {
3001 if (check_path_shared(root, path))
3002 goto out;
3003 } else {
3004 check_link = 0;
3005 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003006 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003007
3008 if (ret == 0 && S_ISREG(inode->i_mode)) {
3009 ret = btrfs_lookup_file_extent(trans, root, path,
Li Zefan33345d012011-04-20 10:31:50 +08003010 ino, (u64)-1, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003011 if (ret < 0) {
3012 err = ret;
3013 goto out;
3014 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003015 BUG_ON(ret == 0); /* Corruption */
Yan, Zhenga22285a2010-05-16 10:48:46 -04003016 if (check_path_shared(root, path))
3017 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +02003018 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003019 }
3020
3021 if (!check_link) {
3022 err = 0;
3023 goto out;
3024 }
3025
Li Zefan33345d012011-04-20 10:31:50 +08003026 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zhenga22285a2010-05-16 10:48:46 -04003027 dentry->d_name.name, dentry->d_name.len, 0);
3028 if (IS_ERR(di)) {
3029 err = PTR_ERR(di);
3030 goto out;
3031 }
3032 if (di) {
3033 if (check_path_shared(root, path))
3034 goto out;
3035 } else {
3036 err = 0;
3037 goto out;
3038 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003039 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003040
Mark Fashehf1863732012-08-08 11:32:27 -07003041 ret = btrfs_get_inode_ref_index(trans, root, path, dentry->d_name.name,
3042 dentry->d_name.len, ino, dir_ino, 0,
3043 &index);
3044 if (ret) {
3045 err = ret;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003046 goto out;
3047 }
Mark Fashehf1863732012-08-08 11:32:27 -07003048
Yan, Zhenga22285a2010-05-16 10:48:46 -04003049 if (check_path_shared(root, path))
3050 goto out;
Mark Fashehf1863732012-08-08 11:32:27 -07003051
David Sterbab3b4aa72011-04-21 01:20:15 +02003052 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003053
Miao Xie16cdcec2011-04-22 18:12:22 +08003054 /*
3055 * This is a commit root search, if we can lookup inode item and other
3056 * relative items in the commit root, it means the transaction of
3057 * dir/file creation has been committed, and the dir index item that we
3058 * delay to insert has also been inserted into the commit root. So
3059 * we needn't worry about the delayed insertion of the dir index item
3060 * here.
3061 */
Li Zefan33345d012011-04-20 10:31:50 +08003062 di = btrfs_lookup_dir_index_item(trans, root, path, dir_ino, index,
Yan, Zhenga22285a2010-05-16 10:48:46 -04003063 dentry->d_name.name, dentry->d_name.len, 0);
3064 if (IS_ERR(di)) {
3065 err = PTR_ERR(di);
3066 goto out;
3067 }
3068 BUG_ON(ret == -ENOENT);
3069 if (check_path_shared(root, path))
3070 goto out;
3071
3072 err = 0;
3073out:
3074 btrfs_free_path(path);
Josef Bacik3880a1b2011-10-14 14:46:51 -04003075 /* Migrate the orphan reservation over */
3076 if (!err)
3077 err = btrfs_block_rsv_migrate(trans->block_rsv,
3078 &root->fs_info->global_block_rsv,
Josef Bacik5a77d762011-11-01 14:32:23 -04003079 trans->bytes_reserved);
Josef Bacik3880a1b2011-10-14 14:46:51 -04003080
Yan, Zhenga22285a2010-05-16 10:48:46 -04003081 if (err) {
3082 btrfs_end_transaction(trans, root);
3083 root->fs_info->enospc_unlink = 0;
3084 return ERR_PTR(err);
3085 }
3086
3087 trans->block_rsv = &root->fs_info->global_block_rsv;
3088 return trans;
3089}
3090
3091static void __unlink_end_trans(struct btrfs_trans_handle *trans,
3092 struct btrfs_root *root)
3093{
Miao Xie66d8f3d2012-09-06 04:02:28 -06003094 if (trans->block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL) {
Josef Bacik5a77d762011-11-01 14:32:23 -04003095 btrfs_block_rsv_release(root, trans->block_rsv,
3096 trans->bytes_reserved);
3097 trans->block_rsv = &root->fs_info->trans_block_rsv;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003098 BUG_ON(!root->fs_info->enospc_unlink);
3099 root->fs_info->enospc_unlink = 0;
3100 }
Josef Bacik7ad85bb2012-01-12 19:10:12 -05003101 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003102}
3103
Chris Mason39279cc2007-06-12 06:35:45 -04003104static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
3105{
Yan, Zhenga22285a2010-05-16 10:48:46 -04003106 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003107 struct btrfs_trans_handle *trans;
Josef Bacik7b128762008-07-24 12:17:14 -04003108 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04003109 int ret;
3110
Yan, Zhenga22285a2010-05-16 10:48:46 -04003111 trans = __unlink_start_trans(dir, dentry);
3112 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003113 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04003114
Chris Mason12fcfd22009-03-24 10:24:20 -04003115 btrfs_record_unlink_dir(trans, dir, dentry->d_inode, 0);
3116
Chris Masone02119d2008-09-05 16:13:11 -04003117 ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
3118 dentry->d_name.name, dentry->d_name.len);
Tsutomu Itohb5324022011-07-19 07:27:20 +00003119 if (ret)
3120 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003121
Yan, Zhenga22285a2010-05-16 10:48:46 -04003122 if (inode->i_nlink == 0) {
Josef Bacik7b128762008-07-24 12:17:14 -04003123 ret = btrfs_orphan_add(trans, inode);
Tsutomu Itohb5324022011-07-19 07:27:20 +00003124 if (ret)
3125 goto out;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003126 }
Josef Bacik7b128762008-07-24 12:17:14 -04003127
Tsutomu Itohb5324022011-07-19 07:27:20 +00003128out:
Yan, Zhenga22285a2010-05-16 10:48:46 -04003129 __unlink_end_trans(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00003130 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04003131 return ret;
3132}
3133
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003134int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
3135 struct btrfs_root *root,
3136 struct inode *dir, u64 objectid,
3137 const char *name, int name_len)
3138{
3139 struct btrfs_path *path;
3140 struct extent_buffer *leaf;
3141 struct btrfs_dir_item *di;
3142 struct btrfs_key key;
3143 u64 index;
3144 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08003145 u64 dir_ino = btrfs_ino(dir);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003146
3147 path = btrfs_alloc_path();
3148 if (!path)
3149 return -ENOMEM;
3150
Li Zefan33345d012011-04-20 10:31:50 +08003151 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003152 name, name_len, -1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003153 if (IS_ERR_OR_NULL(di)) {
3154 if (!di)
3155 ret = -ENOENT;
3156 else
3157 ret = PTR_ERR(di);
3158 goto out;
3159 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003160
3161 leaf = path->nodes[0];
3162 btrfs_dir_item_key_to_cpu(leaf, di, &key);
3163 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
3164 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003165 if (ret) {
3166 btrfs_abort_transaction(trans, root, ret);
3167 goto out;
3168 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003169 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003170
3171 ret = btrfs_del_root_ref(trans, root->fs_info->tree_root,
3172 objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08003173 dir_ino, &index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003174 if (ret < 0) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003175 if (ret != -ENOENT) {
3176 btrfs_abort_transaction(trans, root, ret);
3177 goto out;
3178 }
Li Zefan33345d012011-04-20 10:31:50 +08003179 di = btrfs_search_dir_index_item(root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003180 name, name_len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003181 if (IS_ERR_OR_NULL(di)) {
3182 if (!di)
3183 ret = -ENOENT;
3184 else
3185 ret = PTR_ERR(di);
3186 btrfs_abort_transaction(trans, root, ret);
3187 goto out;
3188 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003189
3190 leaf = path->nodes[0];
3191 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02003192 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003193 index = key.offset;
3194 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003195 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003196
Miao Xie16cdcec2011-04-22 18:12:22 +08003197 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003198 if (ret) {
3199 btrfs_abort_transaction(trans, root, ret);
3200 goto out;
3201 }
Miao Xie16cdcec2011-04-22 18:12:22 +08003202
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003203 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04003204 inode_inc_iversion(dir);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003205 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
Josef Bacik5a24e842012-08-08 10:12:59 -06003206 ret = btrfs_update_inode_fallback(trans, root, dir);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003207 if (ret)
3208 btrfs_abort_transaction(trans, root, ret);
3209out:
Josef Bacik71d7aed2011-06-14 14:24:32 -04003210 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003211 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003212}
3213
Chris Mason39279cc2007-06-12 06:35:45 -04003214static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
3215{
3216 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05003217 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003218 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003219 struct btrfs_trans_handle *trans;
Chris Mason39279cc2007-06-12 06:35:45 -04003220
David Sterbab3ae2442012-09-13 16:04:34 -06003221 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Yan134d4512007-10-25 15:49:25 -04003222 return -ENOTEMPTY;
David Sterbab3ae2442012-09-13 16:04:34 -06003223 if (btrfs_ino(inode) == BTRFS_FIRST_FREE_OBJECTID)
3224 return -EPERM;
Yan134d4512007-10-25 15:49:25 -04003225
Yan, Zhenga22285a2010-05-16 10:48:46 -04003226 trans = __unlink_start_trans(dir, dentry);
3227 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003228 return PTR_ERR(trans);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003229
Li Zefan33345d012011-04-20 10:31:50 +08003230 if (unlikely(btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003231 err = btrfs_unlink_subvol(trans, root, dir,
3232 BTRFS_I(inode)->location.objectid,
3233 dentry->d_name.name,
3234 dentry->d_name.len);
3235 goto out;
3236 }
3237
Josef Bacik7b128762008-07-24 12:17:14 -04003238 err = btrfs_orphan_add(trans, inode);
3239 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003240 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003241
Chris Mason39279cc2007-06-12 06:35:45 -04003242 /* now the directory is empty */
Chris Masone02119d2008-09-05 16:13:11 -04003243 err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
3244 dentry->d_name.name, dentry->d_name.len);
Chris Masond3977122009-01-05 21:25:51 -05003245 if (!err)
Chris Masondbe674a2008-07-17 12:54:05 -04003246 btrfs_i_size_write(inode, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003247out:
Yan, Zhenga22285a2010-05-16 10:48:46 -04003248 __unlink_end_trans(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00003249 btrfs_btree_balance_dirty(root);
Chris Mason39544012007-12-12 14:38:19 -05003250
Chris Mason39279cc2007-06-12 06:35:45 -04003251 return err;
3252}
3253
Chris Mason323ac952008-10-01 19:05:46 -04003254/*
Chris Mason39279cc2007-06-12 06:35:45 -04003255 * this can truncate away extent items, csum items and directory items.
3256 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04003257 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04003258 *
3259 * csum items that cross the new i_size are truncated to the new size
3260 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04003261 *
3262 * min_type is the minimum key type to truncate down to. If set to 0, this
3263 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04003264 */
Yan, Zheng80825102009-11-12 09:35:36 +00003265int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
3266 struct btrfs_root *root,
3267 struct inode *inode,
3268 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003269{
Chris Mason39279cc2007-06-12 06:35:45 -04003270 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003271 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003272 struct btrfs_file_extent_item *fi;
Yan, Zheng80825102009-11-12 09:35:36 +00003273 struct btrfs_key key;
3274 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04003275 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04003276 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003277 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003278 u64 item_end = 0;
Yan, Zheng80825102009-11-12 09:35:36 +00003279 u64 mask = root->sectorsize - 1;
3280 u32 found_type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -04003281 int found_extent;
3282 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05003283 int pending_del_nr = 0;
3284 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04003285 int extent_type = -1;
Yan, Zheng80825102009-11-12 09:35:36 +00003286 int ret;
3287 int err = 0;
Li Zefan33345d012011-04-20 10:31:50 +08003288 u64 ino = btrfs_ino(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003289
3290 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04003291
Mark Fasheh0eb0e192011-07-12 16:44:10 -07003292 path = btrfs_alloc_path();
3293 if (!path)
3294 return -ENOMEM;
3295 path->reada = -1;
3296
Josef Bacik5dc562c2012-08-17 13:14:17 -04003297 /*
3298 * We want to drop from the next block forward in case this new size is
3299 * not block aligned since we will be keeping the last block of the
3300 * extent just the way it is.
3301 */
Josef Bacik0af3d002010-06-21 14:48:16 -04003302 if (root->ref_cows || root == root->fs_info->tree_root)
Josef Bacik5dc562c2012-08-17 13:14:17 -04003303 btrfs_drop_extent_cache(inode, (new_size + mask) & (~mask), (u64)-1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003304
Miao Xie16cdcec2011-04-22 18:12:22 +08003305 /*
3306 * This function is also used to drop the items in the log tree before
3307 * we relog the inode, so if root != BTRFS_I(inode)->root, it means
3308 * it is used to drop the loged items. So we shouldn't kill the delayed
3309 * items.
3310 */
3311 if (min_type == 0 && root == BTRFS_I(inode)->root)
3312 btrfs_kill_delayed_inode_items(inode);
3313
Li Zefan33345d012011-04-20 10:31:50 +08003314 key.objectid = ino;
Chris Mason39279cc2007-06-12 06:35:45 -04003315 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04003316 key.type = (u8)-1;
3317
Chris Mason85e21ba2008-01-29 15:11:36 -05003318search_again:
Chris Masonb9473432009-03-13 11:00:37 -04003319 path->leave_spinning = 1;
Chris Mason85e21ba2008-01-29 15:11:36 -05003320 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Yan, Zheng80825102009-11-12 09:35:36 +00003321 if (ret < 0) {
3322 err = ret;
3323 goto out;
3324 }
Chris Masond3977122009-01-05 21:25:51 -05003325
Chris Mason85e21ba2008-01-29 15:11:36 -05003326 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003327 /* there are no items in the tree for us to truncate, we're
3328 * done
3329 */
Yan, Zheng80825102009-11-12 09:35:36 +00003330 if (path->slots[0] == 0)
3331 goto out;
Chris Mason85e21ba2008-01-29 15:11:36 -05003332 path->slots[0]--;
3333 }
3334
Chris Masond3977122009-01-05 21:25:51 -05003335 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04003336 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04003337 leaf = path->nodes[0];
3338 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3339 found_type = btrfs_key_type(&found_key);
Chris Mason39279cc2007-06-12 06:35:45 -04003340
Li Zefan33345d012011-04-20 10:31:50 +08003341 if (found_key.objectid != ino)
Chris Mason39279cc2007-06-12 06:35:45 -04003342 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003343
Chris Mason85e21ba2008-01-29 15:11:36 -05003344 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003345 break;
3346
Chris Mason5f39d392007-10-15 16:14:19 -04003347 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04003348 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04003349 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04003350 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04003351 extent_type = btrfs_file_extent_type(leaf, fi);
3352 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04003353 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04003354 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04003355 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04003356 item_end += btrfs_file_extent_inline_len(leaf,
Chris Masonc8b97812008-10-29 14:49:59 -04003357 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003358 }
Yan008630c2007-11-07 13:31:09 -05003359 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04003360 }
Yan, Zheng80825102009-11-12 09:35:36 +00003361 if (found_type > min_type) {
Chris Mason39279cc2007-06-12 06:35:45 -04003362 del_item = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00003363 } else {
3364 if (item_end < new_size)
3365 break;
3366 if (found_key.offset >= new_size)
3367 del_item = 1;
3368 else
3369 del_item = 0;
3370 }
Chris Mason39279cc2007-06-12 06:35:45 -04003371 found_extent = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003372 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04003373 if (found_type != BTRFS_EXTENT_DATA_KEY)
3374 goto delete;
3375
3376 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04003377 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04003378 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Miao Xief70a9a6b2012-01-12 19:10:12 -05003379 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -04003380 u64 orig_num_bytes =
3381 btrfs_file_extent_num_bytes(leaf, fi);
Chris Masone02119d2008-09-05 16:13:11 -04003382 extent_num_bytes = new_size -
Chris Mason5f39d392007-10-15 16:14:19 -04003383 found_key.offset + root->sectorsize - 1;
Yanb1632b102008-01-30 11:54:04 -05003384 extent_num_bytes = extent_num_bytes &
3385 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04003386 btrfs_set_file_extent_num_bytes(leaf, fi,
3387 extent_num_bytes);
3388 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05003389 extent_num_bytes);
Chris Masone02119d2008-09-05 16:13:11 -04003390 if (root->ref_cows && extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003391 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04003392 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003393 } else {
Chris Masondb945352007-10-15 16:15:53 -04003394 extent_num_bytes =
3395 btrfs_file_extent_disk_num_bytes(leaf,
3396 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003397 extent_offset = found_key.offset -
3398 btrfs_file_extent_offset(leaf, fi);
3399
Chris Mason39279cc2007-06-12 06:35:45 -04003400 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05003401 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003402 if (extent_start != 0) {
3403 found_extent = 1;
Chris Masone02119d2008-09-05 16:13:11 -04003404 if (root->ref_cows)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003405 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04003406 }
3407 }
Chris Mason90692182008-02-08 13:49:28 -05003408 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003409 /*
3410 * we can't truncate inline items that have had
3411 * special encodings
3412 */
3413 if (!del_item &&
3414 btrfs_file_extent_compression(leaf, fi) == 0 &&
3415 btrfs_file_extent_encryption(leaf, fi) == 0 &&
3416 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003417 u32 size = new_size - found_key.offset;
3418
3419 if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003420 inode_sub_bytes(inode, item_end + 1 -
3421 new_size);
Chris Masone02119d2008-09-05 16:13:11 -04003422 }
3423 size =
3424 btrfs_file_extent_calc_inline_size(size);
Jeff Mahoney143bede2012-03-01 14:56:26 +01003425 btrfs_truncate_item(trans, root, path,
3426 size, 1);
Chris Masone02119d2008-09-05 16:13:11 -04003427 } else if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003428 inode_sub_bytes(inode, item_end + 1 -
3429 found_key.offset);
Chris Mason90692182008-02-08 13:49:28 -05003430 }
Chris Mason39279cc2007-06-12 06:35:45 -04003431 }
Chris Mason179e29e2007-11-01 11:28:41 -04003432delete:
Chris Mason39279cc2007-06-12 06:35:45 -04003433 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05003434 if (!pending_del_nr) {
3435 /* no pending yet, add ourselves */
3436 pending_del_slot = path->slots[0];
3437 pending_del_nr = 1;
3438 } else if (pending_del_nr &&
3439 path->slots[0] + 1 == pending_del_slot) {
3440 /* hop on the pending chunk */
3441 pending_del_nr++;
3442 pending_del_slot = path->slots[0];
3443 } else {
Chris Masond3977122009-01-05 21:25:51 -05003444 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05003445 }
Chris Mason39279cc2007-06-12 06:35:45 -04003446 } else {
3447 break;
3448 }
Josef Bacik0af3d002010-06-21 14:48:16 -04003449 if (found_extent && (root->ref_cows ||
3450 root == root->fs_info->tree_root)) {
Chris Masonb9473432009-03-13 11:00:37 -04003451 btrfs_set_path_blocking(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003452 ret = btrfs_free_extent(trans, root, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003453 extent_num_bytes, 0,
3454 btrfs_header_owner(leaf),
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003455 ino, extent_offset, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04003456 BUG_ON(ret);
3457 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003458
Yan, Zheng80825102009-11-12 09:35:36 +00003459 if (found_type == BTRFS_INODE_ITEM_KEY)
3460 break;
3461
3462 if (path->slots[0] == 0 ||
3463 path->slots[0] != pending_del_slot) {
Yan, Zheng80825102009-11-12 09:35:36 +00003464 if (pending_del_nr) {
3465 ret = btrfs_del_items(trans, root, path,
3466 pending_del_slot,
3467 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003468 if (ret) {
3469 btrfs_abort_transaction(trans,
3470 root, ret);
3471 goto error;
3472 }
Yan, Zheng80825102009-11-12 09:35:36 +00003473 pending_del_nr = 0;
3474 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003475 btrfs_release_path(path);
Chris Mason85e21ba2008-01-29 15:11:36 -05003476 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00003477 } else {
3478 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05003479 }
Chris Mason39279cc2007-06-12 06:35:45 -04003480 }
Yan, Zheng80825102009-11-12 09:35:36 +00003481out:
Chris Mason85e21ba2008-01-29 15:11:36 -05003482 if (pending_del_nr) {
3483 ret = btrfs_del_items(trans, root, path, pending_del_slot,
3484 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003485 if (ret)
3486 btrfs_abort_transaction(trans, root, ret);
Chris Mason85e21ba2008-01-29 15:11:36 -05003487 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003488error:
Chris Mason39279cc2007-06-12 06:35:45 -04003489 btrfs_free_path(path);
Yan, Zheng80825102009-11-12 09:35:36 +00003490 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003491}
3492
Chris Masona52d9a82007-08-27 16:49:44 -04003493/*
Josef Bacik2aaa6652012-08-29 14:27:18 -04003494 * btrfs_truncate_page - read, zero a chunk and write a page
3495 * @inode - inode that we're zeroing
3496 * @from - the offset to start zeroing
3497 * @len - the length to zero, 0 to zero the entire range respective to the
3498 * offset
3499 * @front - zero up to the offset instead of from the offset on
3500 *
3501 * This will find the page for the "from" offset and cow the page and zero the
3502 * part we want to zero. This is used with truncate and hole punching.
Chris Masona52d9a82007-08-27 16:49:44 -04003503 */
Josef Bacik2aaa6652012-08-29 14:27:18 -04003504int btrfs_truncate_page(struct inode *inode, loff_t from, loff_t len,
3505 int front)
Chris Masona52d9a82007-08-27 16:49:44 -04003506{
Josef Bacik2aaa6652012-08-29 14:27:18 -04003507 struct address_space *mapping = inode->i_mapping;
Chris Masondb945352007-10-15 16:15:53 -04003508 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003509 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
3510 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003511 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003512 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04003513 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04003514 pgoff_t index = from >> PAGE_CACHE_SHIFT;
3515 unsigned offset = from & (PAGE_CACHE_SIZE-1);
3516 struct page *page;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04003517 gfp_t mask = btrfs_alloc_write_mask(mapping);
Chris Masona52d9a82007-08-27 16:49:44 -04003518 int ret = 0;
3519 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003520 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04003521
Josef Bacik2aaa6652012-08-29 14:27:18 -04003522 if ((offset & (blocksize - 1)) == 0 &&
3523 (!len || ((len & (blocksize - 1)) == 0)))
Chris Masona52d9a82007-08-27 16:49:44 -04003524 goto out;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003525 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003526 if (ret)
3527 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003528
Chris Mason211c17f2008-05-15 09:13:45 -04003529again:
Josef Bacik3b16a4e2011-09-21 15:05:58 -04003530 page = find_or_create_page(mapping, index, mask);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003531 if (!page) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003532 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Miao Xieac6a2b32012-12-05 10:56:13 +00003533 ret = -ENOMEM;
Chris Masona52d9a82007-08-27 16:49:44 -04003534 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04003535 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003536
3537 page_start = page_offset(page);
3538 page_end = page_start + PAGE_CACHE_SIZE - 1;
3539
Chris Masona52d9a82007-08-27 16:49:44 -04003540 if (!PageUptodate(page)) {
3541 ret = btrfs_readpage(NULL, page);
3542 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04003543 if (page->mapping != mapping) {
3544 unlock_page(page);
3545 page_cache_release(page);
3546 goto again;
3547 }
Chris Masona52d9a82007-08-27 16:49:44 -04003548 if (!PageUptodate(page)) {
3549 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04003550 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04003551 }
3552 }
Chris Mason211c17f2008-05-15 09:13:45 -04003553 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003554
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003555 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003556 set_page_extent_mapped(page);
3557
3558 ordered = btrfs_lookup_ordered_extent(inode, page_start);
3559 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003560 unlock_extent_cached(io_tree, page_start, page_end,
3561 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003562 unlock_page(page);
3563 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04003564 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003565 btrfs_put_ordered_extent(ordered);
3566 goto again;
3567 }
3568
Josef Bacik2ac55d42010-02-03 19:33:23 +00003569 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Liu Bo9e8a4a82012-09-05 19:10:51 -06003570 EXTENT_DIRTY | EXTENT_DELALLOC |
3571 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003572 0, 0, &cached_state, GFP_NOFS);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003573
Josef Bacik2ac55d42010-02-03 19:33:23 +00003574 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
3575 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003576 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003577 unlock_extent_cached(io_tree, page_start, page_end,
3578 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003579 goto out_unlock;
3580 }
3581
Chris Masone6dcd2d2008-07-17 12:53:50 -04003582 if (offset != PAGE_CACHE_SIZE) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04003583 if (!len)
3584 len = PAGE_CACHE_SIZE - offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003585 kaddr = kmap(page);
Josef Bacik2aaa6652012-08-29 14:27:18 -04003586 if (front)
3587 memset(kaddr, 0, offset);
3588 else
3589 memset(kaddr + offset, 0, len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003590 flush_dcache_page(page);
3591 kunmap(page);
3592 }
Chris Mason247e7432008-07-17 12:53:51 -04003593 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003594 set_page_dirty(page);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003595 unlock_extent_cached(io_tree, page_start, page_end, &cached_state,
3596 GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04003597
Chris Mason89642222008-07-24 09:41:53 -04003598out_unlock:
Josef Bacik5d5e1032009-10-13 16:46:49 -04003599 if (ret)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003600 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason39279cc2007-06-12 06:35:45 -04003601 unlock_page(page);
3602 page_cache_release(page);
3603out:
3604 return ret;
3605}
3606
Josef Bacik695a0d02011-03-04 15:46:53 -05003607/*
3608 * This function puts in dummy file extents for the area we're creating a hole
3609 * for. So if we are truncating this file to a larger size we need to insert
3610 * these file extents so that btrfs_get_extent will return a EXTENT_MAP_HOLE for
3611 * the range between oldsize and size
3612 */
Josef Bacika41ad392011-01-31 15:30:16 -05003613int btrfs_cont_expand(struct inode *inode, loff_t oldsize, loff_t size)
Yan Zheng9036c102008-10-30 14:19:41 -04003614{
3615 struct btrfs_trans_handle *trans;
3616 struct btrfs_root *root = BTRFS_I(inode)->root;
3617 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003618 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003619 struct extent_state *cached_state = NULL;
Josef Bacik5dc562c2012-08-17 13:14:17 -04003620 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Yan Zheng9036c102008-10-30 14:19:41 -04003621 u64 mask = root->sectorsize - 1;
Josef Bacika41ad392011-01-31 15:30:16 -05003622 u64 hole_start = (oldsize + mask) & ~mask;
Yan Zheng9036c102008-10-30 14:19:41 -04003623 u64 block_end = (size + mask) & ~mask;
3624 u64 last_byte;
3625 u64 cur_offset;
3626 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003627 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003628
3629 if (size <= hole_start)
3630 return 0;
3631
Yan Zheng9036c102008-10-30 14:19:41 -04003632 while (1) {
3633 struct btrfs_ordered_extent *ordered;
3634 btrfs_wait_ordered_range(inode, hole_start,
3635 block_end - hole_start);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003636 lock_extent_bits(io_tree, hole_start, block_end - 1, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003637 &cached_state);
Yan Zheng9036c102008-10-30 14:19:41 -04003638 ordered = btrfs_lookup_ordered_extent(inode, hole_start);
3639 if (!ordered)
3640 break;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003641 unlock_extent_cached(io_tree, hole_start, block_end - 1,
3642 &cached_state, GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003643 btrfs_put_ordered_extent(ordered);
3644 }
3645
Yan Zheng9036c102008-10-30 14:19:41 -04003646 cur_offset = hole_start;
3647 while (1) {
3648 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
3649 block_end - cur_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003650 if (IS_ERR(em)) {
3651 err = PTR_ERR(em);
3652 break;
3653 }
Yan Zheng9036c102008-10-30 14:19:41 -04003654 last_byte = min(extent_map_end(em), block_end);
3655 last_byte = (last_byte + mask) & ~mask;
Yan, Zheng80825102009-11-12 09:35:36 +00003656 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Josef Bacik5dc562c2012-08-17 13:14:17 -04003657 struct extent_map *hole_em;
Yan Zheng9036c102008-10-30 14:19:41 -04003658 hole_size = last_byte - cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00003659
Miao Xie36423202011-12-14 20:12:02 -05003660 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003661 if (IS_ERR(trans)) {
3662 err = PTR_ERR(trans);
Chris Mason771ed682008-11-06 22:02:51 -05003663 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003664 }
Yan, Zheng80825102009-11-12 09:35:36 +00003665
Josef Bacik5dc562c2012-08-17 13:14:17 -04003666 err = btrfs_drop_extents(trans, root, inode,
3667 cur_offset,
Josef Bacik26714852012-08-29 12:24:27 -04003668 cur_offset + hole_size, 1);
Miao Xie5b397372011-09-11 10:52:24 -04003669 if (err) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003670 btrfs_abort_transaction(trans, root, err);
Miao Xie5b397372011-09-11 10:52:24 -04003671 btrfs_end_transaction(trans, root);
Josef Bacik3893e332011-01-31 16:03:11 -05003672 break;
Miao Xie5b397372011-09-11 10:52:24 -04003673 }
Josef Bacik9ed74f22009-09-11 16:12:44 -04003674
Yan Zheng9036c102008-10-30 14:19:41 -04003675 err = btrfs_insert_file_extent(trans, root,
Li Zefan33345d012011-04-20 10:31:50 +08003676 btrfs_ino(inode), cur_offset, 0,
Yan Zheng9036c102008-10-30 14:19:41 -04003677 0, hole_size, 0, hole_size,
3678 0, 0, 0);
Miao Xie5b397372011-09-11 10:52:24 -04003679 if (err) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003680 btrfs_abort_transaction(trans, root, err);
Miao Xie5b397372011-09-11 10:52:24 -04003681 btrfs_end_transaction(trans, root);
Josef Bacik3893e332011-01-31 16:03:11 -05003682 break;
Miao Xie5b397372011-09-11 10:52:24 -04003683 }
Yan, Zheng80825102009-11-12 09:35:36 +00003684
Josef Bacik5dc562c2012-08-17 13:14:17 -04003685 btrfs_drop_extent_cache(inode, cur_offset,
3686 cur_offset + hole_size - 1, 0);
3687 hole_em = alloc_extent_map();
3688 if (!hole_em) {
3689 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3690 &BTRFS_I(inode)->runtime_flags);
3691 goto next;
3692 }
3693 hole_em->start = cur_offset;
3694 hole_em->len = hole_size;
3695 hole_em->orig_start = cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00003696
Josef Bacik5dc562c2012-08-17 13:14:17 -04003697 hole_em->block_start = EXTENT_MAP_HOLE;
3698 hole_em->block_len = 0;
3699 hole_em->bdev = root->fs_info->fs_devices->latest_bdev;
3700 hole_em->compress_type = BTRFS_COMPRESS_NONE;
3701 hole_em->generation = trans->transid;
3702
3703 while (1) {
3704 write_lock(&em_tree->lock);
3705 err = add_extent_mapping(em_tree, hole_em);
3706 if (!err)
3707 list_move(&hole_em->list,
3708 &em_tree->modified_extents);
3709 write_unlock(&em_tree->lock);
3710 if (err != -EEXIST)
3711 break;
3712 btrfs_drop_extent_cache(inode, cur_offset,
3713 cur_offset +
3714 hole_size - 1, 0);
3715 }
3716 free_extent_map(hole_em);
3717next:
Miao Xie36423202011-12-14 20:12:02 -05003718 btrfs_update_inode(trans, root, inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003719 btrfs_end_transaction(trans, root);
Yan Zheng9036c102008-10-30 14:19:41 -04003720 }
3721 free_extent_map(em);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003722 em = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04003723 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00003724 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04003725 break;
3726 }
3727
Yan, Zhenga22285a2010-05-16 10:48:46 -04003728 free_extent_map(em);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003729 unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state,
3730 GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003731 return err;
3732}
3733
Josef Bacika41ad392011-01-31 15:30:16 -05003734static int btrfs_setsize(struct inode *inode, loff_t newsize)
Yan, Zheng80825102009-11-12 09:35:36 +00003735{
Miao Xief4a2f4c2011-12-14 20:12:01 -05003736 struct btrfs_root *root = BTRFS_I(inode)->root;
3737 struct btrfs_trans_handle *trans;
Josef Bacika41ad392011-01-31 15:30:16 -05003738 loff_t oldsize = i_size_read(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003739 int ret;
3740
Josef Bacika41ad392011-01-31 15:30:16 -05003741 if (newsize == oldsize)
Yan, Zheng80825102009-11-12 09:35:36 +00003742 return 0;
3743
Josef Bacika41ad392011-01-31 15:30:16 -05003744 if (newsize > oldsize) {
Josef Bacika41ad392011-01-31 15:30:16 -05003745 truncate_pagecache(inode, oldsize, newsize);
3746 ret = btrfs_cont_expand(inode, oldsize, newsize);
Miao Xief4a2f4c2011-12-14 20:12:01 -05003747 if (ret)
Yan, Zheng80825102009-11-12 09:35:36 +00003748 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00003749
Miao Xief4a2f4c2011-12-14 20:12:01 -05003750 trans = btrfs_start_transaction(root, 1);
3751 if (IS_ERR(trans))
3752 return PTR_ERR(trans);
3753
3754 i_size_write(inode, newsize);
3755 btrfs_ordered_update_i_size(inode, i_size_read(inode), NULL);
3756 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik7ad85bb2012-01-12 19:10:12 -05003757 btrfs_end_transaction(trans, root);
Josef Bacika41ad392011-01-31 15:30:16 -05003758 } else {
Yan, Zheng80825102009-11-12 09:35:36 +00003759
Josef Bacika41ad392011-01-31 15:30:16 -05003760 /*
3761 * We're truncating a file that used to have good data down to
3762 * zero. Make sure it gets into the ordered flush list so that
3763 * any new writes get down to disk quickly.
3764 */
3765 if (newsize == 0)
Josef Bacik72ac3c02012-05-23 14:13:11 -04003766 set_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
3767 &BTRFS_I(inode)->runtime_flags);
Yan, Zheng80825102009-11-12 09:35:36 +00003768
Josef Bacika41ad392011-01-31 15:30:16 -05003769 /* we don't support swapfiles, so vmtruncate shouldn't fail */
3770 truncate_setsize(inode, newsize);
3771 ret = btrfs_truncate(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003772 }
3773
Josef Bacika41ad392011-01-31 15:30:16 -05003774 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00003775}
3776
Chris Mason39279cc2007-06-12 06:35:45 -04003777static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
3778{
3779 struct inode *inode = dentry->d_inode;
Li Zefanb83cc962010-12-20 16:04:08 +08003780 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003781 int err;
3782
Li Zefanb83cc962010-12-20 16:04:08 +08003783 if (btrfs_root_readonly(root))
3784 return -EROFS;
3785
Chris Mason39279cc2007-06-12 06:35:45 -04003786 err = inode_change_ok(inode, attr);
3787 if (err)
3788 return err;
3789
Chris Mason5a3f23d2009-03-31 13:27:11 -04003790 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Josef Bacika41ad392011-01-31 15:30:16 -05003791 err = btrfs_setsize(inode, attr->ia_size);
Yan, Zheng80825102009-11-12 09:35:36 +00003792 if (err)
3793 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003794 }
Yan Zheng9036c102008-10-30 14:19:41 -04003795
Christoph Hellwig10257742010-06-04 11:30:02 +02003796 if (attr->ia_valid) {
3797 setattr_copy(inode, attr);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04003798 inode_inc_iversion(inode);
Josef Bacik22c44fe2011-11-30 10:45:38 -05003799 err = btrfs_dirty_inode(inode);
Josef Bacik33268ea2008-07-24 12:16:36 -04003800
Josef Bacik22c44fe2011-11-30 10:45:38 -05003801 if (!err && attr->ia_valid & ATTR_MODE)
Christoph Hellwig10257742010-06-04 11:30:02 +02003802 err = btrfs_acl_chmod(inode);
3803 }
3804
Chris Mason39279cc2007-06-12 06:35:45 -04003805 return err;
3806}
Chris Mason61295eb2008-01-14 16:24:38 -05003807
Al Virobd555972010-06-07 11:35:40 -04003808void btrfs_evict_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003809{
3810 struct btrfs_trans_handle *trans;
3811 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik726c35f2011-09-26 15:46:06 -04003812 struct btrfs_block_rsv *rsv, *global_rsv;
Josef Bacik07127182011-08-19 10:29:59 -04003813 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003814 int ret;
3815
liubo1abe9b82011-03-24 11:18:59 +00003816 trace_btrfs_inode_evict(inode);
3817
Chris Mason39279cc2007-06-12 06:35:45 -04003818 truncate_inode_pages(&inode->i_data, 0);
Josef Bacik0af3d002010-06-21 14:48:16 -04003819 if (inode->i_nlink && (btrfs_root_refs(&root->root_item) != 0 ||
Liu Bo83eea1f2012-07-10 05:28:39 -06003820 btrfs_is_free_space_inode(inode)))
Al Virobd555972010-06-07 11:35:40 -04003821 goto no_delete;
3822
Chris Mason39279cc2007-06-12 06:35:45 -04003823 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04003824 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003825 goto no_delete;
3826 }
Al Virobd555972010-06-07 11:35:40 -04003827 /* do we really want it for ->i_nlink > 0 and zero btrfs_root_refs? */
Chris Mason4a096752008-07-21 10:29:44 -04003828 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04003829
Yan, Zhengc71bf092009-11-12 09:34:40 +00003830 if (root->fs_info->log_root_recovering) {
Liu Bo6bf02312012-06-25 21:59:09 -06003831 BUG_ON(test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
Josef Bacik8a35d952012-05-23 14:26:42 -04003832 &BTRFS_I(inode)->runtime_flags));
Yan, Zhengc71bf092009-11-12 09:34:40 +00003833 goto no_delete;
3834 }
3835
Yan, Zheng76dda932009-09-21 16:00:26 -04003836 if (inode->i_nlink > 0) {
3837 BUG_ON(btrfs_root_refs(&root->root_item) != 0);
3838 goto no_delete;
3839 }
3840
Miao Xie66d8f3d2012-09-06 04:02:28 -06003841 rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP);
Josef Bacik4289a662011-08-05 13:22:24 -04003842 if (!rsv) {
3843 btrfs_orphan_del(NULL, inode);
3844 goto no_delete;
3845 }
Josef Bacik4a338542011-08-29 11:01:31 -04003846 rsv->size = min_size;
Josef Bacikca7e70f2012-08-27 17:48:15 -04003847 rsv->failfast = 1;
Josef Bacik726c35f2011-09-26 15:46:06 -04003848 global_rsv = &root->fs_info->global_block_rsv;
Josef Bacik4289a662011-08-05 13:22:24 -04003849
Chris Masondbe674a2008-07-17 12:54:05 -04003850 btrfs_i_size_write(inode, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003851
Josef Bacik4289a662011-08-05 13:22:24 -04003852 /*
Miao Xie8407aa42012-09-07 01:43:32 -06003853 * This is a bit simpler than btrfs_truncate since we've already
3854 * reserved our space for our orphan item in the unlink, so we just
3855 * need to reserve some slack space in case we add bytes and update
3856 * inode item when doing the truncate.
Josef Bacik4289a662011-08-05 13:22:24 -04003857 */
Yan, Zheng80825102009-11-12 09:35:36 +00003858 while (1) {
Miao Xie08e007d2012-10-16 11:33:38 +00003859 ret = btrfs_block_rsv_refill(root, rsv, min_size,
3860 BTRFS_RESERVE_FLUSH_LIMIT);
Yan, Zheng80825102009-11-12 09:35:36 +00003861
Josef Bacik726c35f2011-09-26 15:46:06 -04003862 /*
3863 * Try and steal from the global reserve since we will
3864 * likely not use this space anyway, we want to try as
3865 * hard as possible to get this to work.
3866 */
3867 if (ret)
3868 ret = btrfs_block_rsv_migrate(global_rsv, rsv, min_size);
3869
Yan, Zhengd68fc572010-05-16 10:49:58 -04003870 if (ret) {
Josef Bacik4289a662011-08-05 13:22:24 -04003871 printk(KERN_WARNING "Could not get space for a "
Josef Bacik482e6dc2011-08-19 10:31:56 -04003872 "delete, will truncate on mount %d\n", ret);
Josef Bacik4289a662011-08-05 13:22:24 -04003873 btrfs_orphan_del(NULL, inode);
3874 btrfs_free_block_rsv(root, rsv);
3875 goto no_delete;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003876 }
3877
Miao Xie08e007d2012-10-16 11:33:38 +00003878 trans = btrfs_start_transaction_lflush(root, 1);
Josef Bacik4289a662011-08-05 13:22:24 -04003879 if (IS_ERR(trans)) {
3880 btrfs_orphan_del(NULL, inode);
3881 btrfs_free_block_rsv(root, rsv);
3882 goto no_delete;
3883 }
3884
3885 trans->block_rsv = rsv;
3886
Yan, Zhengd68fc572010-05-16 10:49:58 -04003887 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
Josef Bacikca7e70f2012-08-27 17:48:15 -04003888 if (ret != -ENOSPC)
Yan, Zheng80825102009-11-12 09:35:36 +00003889 break;
3890
Miao Xie8407aa42012-09-07 01:43:32 -06003891 trans->block_rsv = &root->fs_info->trans_block_rsv;
3892 ret = btrfs_update_inode(trans, root, inode);
3893 BUG_ON(ret);
3894
Yan, Zheng80825102009-11-12 09:35:36 +00003895 btrfs_end_transaction(trans, root);
3896 trans = NULL;
Liu Bob53d3f52012-11-14 14:34:34 +00003897 btrfs_btree_balance_dirty(root);
Josef Bacik7b128762008-07-24 12:17:14 -04003898 }
3899
Josef Bacik4289a662011-08-05 13:22:24 -04003900 btrfs_free_block_rsv(root, rsv);
3901
Yan, Zheng80825102009-11-12 09:35:36 +00003902 if (ret == 0) {
Josef Bacik4289a662011-08-05 13:22:24 -04003903 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00003904 ret = btrfs_orphan_del(trans, inode);
3905 BUG_ON(ret);
3906 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003907
Josef Bacik4289a662011-08-05 13:22:24 -04003908 trans->block_rsv = &root->fs_info->trans_block_rsv;
Li Zefan581bb052011-04-20 10:06:11 +08003909 if (!(root == root->fs_info->tree_root ||
3910 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID))
Li Zefan33345d012011-04-20 10:31:50 +08003911 btrfs_return_ino(root, btrfs_ino(inode));
Li Zefan581bb052011-04-20 10:06:11 +08003912
Chris Mason54aa1f42007-06-22 14:16:25 -04003913 btrfs_end_transaction(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00003914 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04003915no_delete:
Jan Karadbd57682012-05-03 14:48:02 +02003916 clear_inode(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003917 return;
Chris Mason39279cc2007-06-12 06:35:45 -04003918}
3919
3920/*
3921 * this returns the key found in the dir entry in the location pointer.
3922 * If no dir entries were found, location->objectid is 0.
3923 */
3924static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
3925 struct btrfs_key *location)
3926{
3927 const char *name = dentry->d_name.name;
3928 int namelen = dentry->d_name.len;
3929 struct btrfs_dir_item *di;
3930 struct btrfs_path *path;
3931 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04003932 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003933
3934 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07003935 if (!path)
3936 return -ENOMEM;
Chris Mason39544012007-12-12 14:38:19 -05003937
Li Zefan33345d012011-04-20 10:31:50 +08003938 di = btrfs_lookup_dir_item(NULL, root, path, btrfs_ino(dir), name,
Chris Mason39279cc2007-06-12 06:35:45 -04003939 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04003940 if (IS_ERR(di))
3941 ret = PTR_ERR(di);
Chris Masond3977122009-01-05 21:25:51 -05003942
David Sterbac7040052011-04-19 18:00:01 +02003943 if (IS_ERR_OR_NULL(di))
Chris Mason39544012007-12-12 14:38:19 -05003944 goto out_err;
Chris Masond3977122009-01-05 21:25:51 -05003945
Chris Mason5f39d392007-10-15 16:14:19 -04003946 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04003947out:
Chris Mason39279cc2007-06-12 06:35:45 -04003948 btrfs_free_path(path);
3949 return ret;
Chris Mason39544012007-12-12 14:38:19 -05003950out_err:
3951 location->objectid = 0;
3952 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04003953}
3954
3955/*
3956 * when we hit a tree root in a directory, the btrfs part of the inode
3957 * needs to be changed to reflect the root directory of the tree root. This
3958 * is kind of like crossing a mount point.
3959 */
3960static int fixup_tree_root_location(struct btrfs_root *root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003961 struct inode *dir,
3962 struct dentry *dentry,
3963 struct btrfs_key *location,
3964 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04003965{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003966 struct btrfs_path *path;
3967 struct btrfs_root *new_root;
3968 struct btrfs_root_ref *ref;
3969 struct extent_buffer *leaf;
3970 int ret;
3971 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003972
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003973 path = btrfs_alloc_path();
3974 if (!path) {
3975 err = -ENOMEM;
3976 goto out;
3977 }
Chris Mason39279cc2007-06-12 06:35:45 -04003978
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003979 err = -ENOENT;
3980 ret = btrfs_find_root_ref(root->fs_info->tree_root, path,
3981 BTRFS_I(dir)->root->root_key.objectid,
3982 location->objectid);
3983 if (ret) {
3984 if (ret < 0)
3985 err = ret;
3986 goto out;
3987 }
Chris Mason39279cc2007-06-12 06:35:45 -04003988
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003989 leaf = path->nodes[0];
3990 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
Li Zefan33345d012011-04-20 10:31:50 +08003991 if (btrfs_root_ref_dirid(leaf, ref) != btrfs_ino(dir) ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003992 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
3993 goto out;
3994
3995 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
3996 (unsigned long)(ref + 1),
3997 dentry->d_name.len);
3998 if (ret)
3999 goto out;
4000
David Sterbab3b4aa72011-04-21 01:20:15 +02004001 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004002
4003 new_root = btrfs_read_fs_root_no_name(root->fs_info, location);
4004 if (IS_ERR(new_root)) {
4005 err = PTR_ERR(new_root);
4006 goto out;
4007 }
4008
4009 if (btrfs_root_refs(&new_root->root_item) == 0) {
4010 err = -ENOENT;
4011 goto out;
4012 }
4013
4014 *sub_root = new_root;
4015 location->objectid = btrfs_root_dirid(&new_root->root_item);
4016 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04004017 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004018 err = 0;
4019out:
4020 btrfs_free_path(path);
4021 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04004022}
4023
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004024static void inode_tree_add(struct inode *inode)
4025{
4026 struct btrfs_root *root = BTRFS_I(inode)->root;
4027 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004028 struct rb_node **p;
4029 struct rb_node *parent;
Li Zefan33345d012011-04-20 10:31:50 +08004030 u64 ino = btrfs_ino(inode);
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004031again:
4032 p = &root->inode_tree.rb_node;
4033 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004034
Al Viro1d3382c2010-10-23 15:19:20 -04004035 if (inode_unhashed(inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04004036 return;
4037
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004038 spin_lock(&root->inode_lock);
4039 while (*p) {
4040 parent = *p;
4041 entry = rb_entry(parent, struct btrfs_inode, rb_node);
4042
Li Zefan33345d012011-04-20 10:31:50 +08004043 if (ino < btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004044 p = &parent->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08004045 else if (ino > btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004046 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004047 else {
4048 WARN_ON(!(entry->vfs_inode.i_state &
Al Viroa4ffdde2010-06-02 17:38:30 -04004049 (I_WILL_FREE | I_FREEING)));
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004050 rb_erase(parent, &root->inode_tree);
4051 RB_CLEAR_NODE(parent);
4052 spin_unlock(&root->inode_lock);
4053 goto again;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004054 }
4055 }
4056 rb_link_node(&BTRFS_I(inode)->rb_node, parent, p);
4057 rb_insert_color(&BTRFS_I(inode)->rb_node, &root->inode_tree);
4058 spin_unlock(&root->inode_lock);
4059}
4060
4061static void inode_tree_del(struct inode *inode)
4062{
4063 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04004064 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004065
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004066 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004067 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004068 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004069 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04004070 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004071 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004072 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04004073
Josef Bacik0af3d002010-06-21 14:48:16 -04004074 /*
4075 * Free space cache has inodes in the tree root, but the tree root has a
4076 * root_refs of 0, so this could end up dropping the tree root as a
4077 * snapshot, so we need the extra !root->fs_info->tree_root check to
4078 * make sure we don't drop it.
4079 */
4080 if (empty && btrfs_root_refs(&root->root_item) == 0 &&
4081 root != root->fs_info->tree_root) {
Yan, Zheng76dda932009-09-21 16:00:26 -04004082 synchronize_srcu(&root->fs_info->subvol_srcu);
4083 spin_lock(&root->inode_lock);
4084 empty = RB_EMPTY_ROOT(&root->inode_tree);
4085 spin_unlock(&root->inode_lock);
4086 if (empty)
4087 btrfs_add_dead_root(root);
4088 }
4089}
4090
Jeff Mahoney143bede2012-03-01 14:56:26 +01004091void btrfs_invalidate_inodes(struct btrfs_root *root)
Yan, Zheng76dda932009-09-21 16:00:26 -04004092{
4093 struct rb_node *node;
4094 struct rb_node *prev;
4095 struct btrfs_inode *entry;
4096 struct inode *inode;
4097 u64 objectid = 0;
4098
4099 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
4100
4101 spin_lock(&root->inode_lock);
4102again:
4103 node = root->inode_tree.rb_node;
4104 prev = NULL;
4105 while (node) {
4106 prev = node;
4107 entry = rb_entry(node, struct btrfs_inode, rb_node);
4108
Li Zefan33345d012011-04-20 10:31:50 +08004109 if (objectid < btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04004110 node = node->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08004111 else if (objectid > btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04004112 node = node->rb_right;
4113 else
4114 break;
4115 }
4116 if (!node) {
4117 while (prev) {
4118 entry = rb_entry(prev, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08004119 if (objectid <= btrfs_ino(&entry->vfs_inode)) {
Yan, Zheng76dda932009-09-21 16:00:26 -04004120 node = prev;
4121 break;
4122 }
4123 prev = rb_next(prev);
4124 }
4125 }
4126 while (node) {
4127 entry = rb_entry(node, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08004128 objectid = btrfs_ino(&entry->vfs_inode) + 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04004129 inode = igrab(&entry->vfs_inode);
4130 if (inode) {
4131 spin_unlock(&root->inode_lock);
4132 if (atomic_read(&inode->i_count) > 1)
4133 d_prune_aliases(inode);
4134 /*
Al Viro45321ac2010-06-07 13:43:19 -04004135 * btrfs_drop_inode will have it removed from
Yan, Zheng76dda932009-09-21 16:00:26 -04004136 * the inode cache when its usage count
4137 * hits zero.
4138 */
4139 iput(inode);
4140 cond_resched();
4141 spin_lock(&root->inode_lock);
4142 goto again;
4143 }
4144
4145 if (cond_resched_lock(&root->inode_lock))
4146 goto again;
4147
4148 node = rb_next(node);
4149 }
4150 spin_unlock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004151}
4152
Chris Masone02119d2008-09-05 16:13:11 -04004153static int btrfs_init_locked_inode(struct inode *inode, void *p)
4154{
4155 struct btrfs_iget_args *args = p;
4156 inode->i_ino = args->ino;
Chris Masone02119d2008-09-05 16:13:11 -04004157 BTRFS_I(inode)->root = args->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004158 return 0;
4159}
4160
4161static int btrfs_find_actor(struct inode *inode, void *opaque)
4162{
4163 struct btrfs_iget_args *args = opaque;
Li Zefan33345d012011-04-20 10:31:50 +08004164 return args->ino == btrfs_ino(inode) &&
Chris Masond3977122009-01-05 21:25:51 -05004165 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004166}
4167
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004168static struct inode *btrfs_iget_locked(struct super_block *s,
4169 u64 objectid,
4170 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04004171{
4172 struct inode *inode;
4173 struct btrfs_iget_args args;
4174 args.ino = objectid;
4175 args.root = root;
4176
4177 inode = iget5_locked(s, objectid, btrfs_find_actor,
4178 btrfs_init_locked_inode,
4179 (void *)&args);
4180 return inode;
4181}
4182
Balaji Rao1a54ef82008-07-21 02:01:04 +05304183/* Get an inode object given its location and corresponding root.
4184 * Returns in *is_new if the inode was read from disk
4185 */
4186struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
Josef Bacik73f73412009-12-04 17:38:27 +00004187 struct btrfs_root *root, int *new)
Balaji Rao1a54ef82008-07-21 02:01:04 +05304188{
4189 struct inode *inode;
4190
4191 inode = btrfs_iget_locked(s, location->objectid, root);
4192 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004193 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05304194
4195 if (inode->i_state & I_NEW) {
4196 BTRFS_I(inode)->root = root;
4197 memcpy(&BTRFS_I(inode)->location, location, sizeof(*location));
4198 btrfs_read_locked_inode(inode);
Mark Fasheh1748f842011-07-12 11:25:31 -07004199 if (!is_bad_inode(inode)) {
4200 inode_tree_add(inode);
4201 unlock_new_inode(inode);
4202 if (new)
4203 *new = 1;
4204 } else {
Sergei Trofimoviche0b6d652011-09-11 10:52:24 -04004205 unlock_new_inode(inode);
4206 iput(inode);
4207 inode = ERR_PTR(-ESTALE);
Mark Fasheh1748f842011-07-12 11:25:31 -07004208 }
4209 }
4210
Balaji Rao1a54ef82008-07-21 02:01:04 +05304211 return inode;
4212}
4213
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004214static struct inode *new_simple_dir(struct super_block *s,
4215 struct btrfs_key *key,
4216 struct btrfs_root *root)
4217{
4218 struct inode *inode = new_inode(s);
4219
4220 if (!inode)
4221 return ERR_PTR(-ENOMEM);
4222
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004223 BTRFS_I(inode)->root = root;
4224 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
Josef Bacik72ac3c02012-05-23 14:13:11 -04004225 set_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004226
4227 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
Li Zefan848cce02012-02-21 17:04:28 +08004228 inode->i_op = &btrfs_dir_ro_inode_operations;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004229 inode->i_fop = &simple_dir_operations;
4230 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
4231 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
4232
4233 return inode;
4234}
4235
Chris Mason3de45862008-11-17 21:02:50 -05004236struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04004237{
Chris Masond3977122009-01-05 21:25:51 -05004238 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004239 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004240 struct btrfs_root *sub_root = root;
4241 struct btrfs_key location;
Yan, Zheng76dda932009-09-21 16:00:26 -04004242 int index;
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004243 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004244
4245 if (dentry->d_name.len > BTRFS_NAME_LEN)
4246 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04004247
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004248 if (unlikely(d_need_lookup(dentry))) {
4249 memcpy(&location, dentry->d_fsdata, sizeof(struct btrfs_key));
4250 kfree(dentry->d_fsdata);
4251 dentry->d_fsdata = NULL;
Josef Bacika66e7cc2011-09-18 10:34:03 -04004252 /* This thing is hashed, drop it for now */
4253 d_drop(dentry);
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004254 } else {
4255 ret = btrfs_inode_by_name(dir, dentry, &location);
4256 }
Chris Mason5f39d392007-10-15 16:14:19 -04004257
Chris Mason39279cc2007-06-12 06:35:45 -04004258 if (ret < 0)
4259 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04004260
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004261 if (location.objectid == 0)
4262 return NULL;
4263
4264 if (location.type == BTRFS_INODE_ITEM_KEY) {
Josef Bacik73f73412009-12-04 17:38:27 +00004265 inode = btrfs_iget(dir->i_sb, &location, root, NULL);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004266 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004267 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004268
4269 BUG_ON(location.type != BTRFS_ROOT_ITEM_KEY);
4270
Yan, Zheng76dda932009-09-21 16:00:26 -04004271 index = srcu_read_lock(&root->fs_info->subvol_srcu);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004272 ret = fixup_tree_root_location(root, dir, dentry,
4273 &location, &sub_root);
4274 if (ret < 0) {
4275 if (ret != -ENOENT)
4276 inode = ERR_PTR(ret);
4277 else
4278 inode = new_simple_dir(dir->i_sb, &location, sub_root);
4279 } else {
Josef Bacik73f73412009-12-04 17:38:27 +00004280 inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004281 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004282 srcu_read_unlock(&root->fs_info->subvol_srcu, index);
4283
Julia Lawall34d19ba2011-01-24 19:55:19 +00004284 if (!IS_ERR(inode) && root != sub_root) {
Yan, Zhengc71bf092009-11-12 09:34:40 +00004285 down_read(&root->fs_info->cleanup_work_sem);
4286 if (!(inode->i_sb->s_flags & MS_RDONLY))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05004287 ret = btrfs_orphan_cleanup(sub_root);
Yan, Zhengc71bf092009-11-12 09:34:40 +00004288 up_read(&root->fs_info->cleanup_work_sem);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05004289 if (ret)
4290 inode = ERR_PTR(ret);
Yan, Zhengc71bf092009-11-12 09:34:40 +00004291 }
4292
Chris Mason3de45862008-11-17 21:02:50 -05004293 return inode;
4294}
4295
Nick Pigginfe15ce42011-01-07 17:49:23 +11004296static int btrfs_dentry_delete(const struct dentry *dentry)
Yan, Zheng76dda932009-09-21 16:00:26 -04004297{
4298 struct btrfs_root *root;
Li Zefan848cce02012-02-21 17:04:28 +08004299 struct inode *inode = dentry->d_inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04004300
Li Zefan848cce02012-02-21 17:04:28 +08004301 if (!inode && !IS_ROOT(dentry))
4302 inode = dentry->d_parent->d_inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04004303
Li Zefan848cce02012-02-21 17:04:28 +08004304 if (inode) {
4305 root = BTRFS_I(inode)->root;
Yan, Zhengefefb142009-10-09 09:25:16 -04004306 if (btrfs_root_refs(&root->root_item) == 0)
4307 return 1;
Li Zefan848cce02012-02-21 17:04:28 +08004308
4309 if (btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
4310 return 1;
Yan, Zhengefefb142009-10-09 09:25:16 -04004311 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004312 return 0;
4313}
4314
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004315static void btrfs_dentry_release(struct dentry *dentry)
4316{
4317 if (dentry->d_fsdata)
4318 kfree(dentry->d_fsdata);
4319}
4320
Chris Mason3de45862008-11-17 21:02:50 -05004321static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -04004322 unsigned int flags)
Chris Mason3de45862008-11-17 21:02:50 -05004323{
Josef Bacika66e7cc2011-09-18 10:34:03 -04004324 struct dentry *ret;
4325
4326 ret = d_splice_alias(btrfs_lookup_dentry(dir, dentry), dentry);
4327 if (unlikely(d_need_lookup(dentry))) {
4328 spin_lock(&dentry->d_lock);
4329 dentry->d_flags &= ~DCACHE_NEED_LOOKUP;
4330 spin_unlock(&dentry->d_lock);
4331 }
4332 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004333}
4334
Miao Xie16cdcec2011-04-22 18:12:22 +08004335unsigned char btrfs_filetype_table[] = {
Chris Mason39279cc2007-06-12 06:35:45 -04004336 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
4337};
4338
David Woodhousecbdf5a22008-08-06 19:42:33 +01004339static int btrfs_real_readdir(struct file *filp, void *dirent,
4340 filldir_t filldir)
Chris Mason39279cc2007-06-12 06:35:45 -04004341{
Chris Mason6da6aba2007-12-18 16:15:09 -05004342 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004343 struct btrfs_root *root = BTRFS_I(inode)->root;
4344 struct btrfs_item *item;
4345 struct btrfs_dir_item *di;
4346 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04004347 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04004348 struct btrfs_path *path;
Miao Xie16cdcec2011-04-22 18:12:22 +08004349 struct list_head ins_list;
4350 struct list_head del_list;
Chris Mason39279cc2007-06-12 06:35:45 -04004351 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04004352 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04004353 int slot;
Chris Mason39279cc2007-06-12 06:35:45 -04004354 unsigned char d_type;
4355 int over = 0;
4356 u32 di_cur;
4357 u32 di_total;
4358 u32 di_len;
4359 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004360 char tmp_name[32];
4361 char *name_ptr;
4362 int name_len;
Miao Xie16cdcec2011-04-22 18:12:22 +08004363 int is_curr = 0; /* filp->f_pos points to the current index? */
Chris Mason39279cc2007-06-12 06:35:45 -04004364
4365 /* FIXME, use a real flag for deciding about the key type */
4366 if (root->fs_info->tree_root == root)
4367 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004368
Chris Mason39544012007-12-12 14:38:19 -05004369 /* special case for "." */
4370 if (filp->f_pos == 0) {
Hidetoshi Seto3765fef2011-09-18 10:20:46 -04004371 over = filldir(dirent, ".", 1,
4372 filp->f_pos, btrfs_ino(inode), DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05004373 if (over)
4374 return 0;
4375 filp->f_pos = 1;
4376 }
Chris Mason39544012007-12-12 14:38:19 -05004377 /* special case for .., just use the back ref */
4378 if (filp->f_pos == 1) {
David Woodhouse5ecc7e52008-08-17 15:14:48 +01004379 u64 pino = parent_ino(filp->f_path.dentry);
Chris Mason39544012007-12-12 14:38:19 -05004380 over = filldir(dirent, "..", 2,
Hidetoshi Seto3765fef2011-09-18 10:20:46 -04004381 filp->f_pos, pino, DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05004382 if (over)
David Woodhouse49593bf2008-08-17 17:08:36 +01004383 return 0;
Chris Mason39544012007-12-12 14:38:19 -05004384 filp->f_pos = 2;
4385 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004386 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08004387 if (!path)
4388 return -ENOMEM;
Chris Masonff5714c2011-05-28 07:00:39 -04004389
Josef Bacik026fd312011-05-13 10:32:11 -04004390 path->reada = 1;
David Woodhouse49593bf2008-08-17 17:08:36 +01004391
Miao Xie16cdcec2011-04-22 18:12:22 +08004392 if (key_type == BTRFS_DIR_INDEX_KEY) {
4393 INIT_LIST_HEAD(&ins_list);
4394 INIT_LIST_HEAD(&del_list);
4395 btrfs_get_delayed_items(inode, &ins_list, &del_list);
4396 }
4397
Chris Mason39279cc2007-06-12 06:35:45 -04004398 btrfs_set_key_type(&key, key_type);
4399 key.offset = filp->f_pos;
Li Zefan33345d012011-04-20 10:31:50 +08004400 key.objectid = btrfs_ino(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004401
Chris Mason39279cc2007-06-12 06:35:45 -04004402 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4403 if (ret < 0)
4404 goto err;
David Woodhouse49593bf2008-08-17 17:08:36 +01004405
4406 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04004407 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -04004408 slot = path->slots[0];
Li Zefanb9e03af2011-03-23 10:43:58 +08004409 if (slot >= btrfs_header_nritems(leaf)) {
4410 ret = btrfs_next_leaf(root, path);
4411 if (ret < 0)
4412 goto err;
4413 else if (ret > 0)
4414 break;
4415 continue;
Chris Mason39279cc2007-06-12 06:35:45 -04004416 }
Chris Mason3de45862008-11-17 21:02:50 -05004417
Chris Mason5f39d392007-10-15 16:14:19 -04004418 item = btrfs_item_nr(leaf, slot);
4419 btrfs_item_key_to_cpu(leaf, &found_key, slot);
4420
4421 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04004422 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004423 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004424 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004425 if (found_key.offset < filp->f_pos)
Li Zefanb9e03af2011-03-23 10:43:58 +08004426 goto next;
Miao Xie16cdcec2011-04-22 18:12:22 +08004427 if (key_type == BTRFS_DIR_INDEX_KEY &&
4428 btrfs_should_delete_dir_index(&del_list,
4429 found_key.offset))
4430 goto next;
Chris Mason5f39d392007-10-15 16:14:19 -04004431
4432 filp->f_pos = found_key.offset;
Miao Xie16cdcec2011-04-22 18:12:22 +08004433 is_curr = 1;
David Woodhouse49593bf2008-08-17 17:08:36 +01004434
Chris Mason39279cc2007-06-12 06:35:45 -04004435 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
4436 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04004437 di_total = btrfs_item_size(leaf, item);
David Woodhouse49593bf2008-08-17 17:08:36 +01004438
4439 while (di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04004440 struct btrfs_key location;
4441
Josef Bacik22a94d42011-03-16 16:47:17 -04004442 if (verify_dir_item(root, leaf, di))
4443 break;
4444
Chris Mason5f39d392007-10-15 16:14:19 -04004445 name_len = btrfs_dir_name_len(leaf, di);
David Woodhouse49593bf2008-08-17 17:08:36 +01004446 if (name_len <= sizeof(tmp_name)) {
Chris Mason5f39d392007-10-15 16:14:19 -04004447 name_ptr = tmp_name;
4448 } else {
4449 name_ptr = kmalloc(name_len, GFP_NOFS);
David Woodhouse49593bf2008-08-17 17:08:36 +01004450 if (!name_ptr) {
4451 ret = -ENOMEM;
4452 goto err;
4453 }
Chris Mason5f39d392007-10-15 16:14:19 -04004454 }
4455 read_extent_buffer(leaf, name_ptr,
4456 (unsigned long)(di + 1), name_len);
4457
4458 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
4459 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason3de45862008-11-17 21:02:50 -05004460
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004461
Chris Mason3de45862008-11-17 21:02:50 -05004462 /* is this a reference to our own snapshot? If so
Arne Jansen8c9c2bf2012-02-25 09:09:30 +01004463 * skip it.
4464 *
4465 * In contrast to old kernels, we insert the snapshot's
4466 * dir item and dir index after it has been created, so
4467 * we won't find a reference to our own snapshot. We
4468 * still keep the following code for backward
4469 * compatibility.
Chris Mason3de45862008-11-17 21:02:50 -05004470 */
4471 if (location.type == BTRFS_ROOT_ITEM_KEY &&
4472 location.objectid == root->root_key.objectid) {
4473 over = 0;
4474 goto skip;
4475 }
Chris Mason5f39d392007-10-15 16:14:19 -04004476 over = filldir(dirent, name_ptr, name_len,
David Woodhouse49593bf2008-08-17 17:08:36 +01004477 found_key.offset, location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04004478 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04004479
Chris Mason3de45862008-11-17 21:02:50 -05004480skip:
Chris Mason5f39d392007-10-15 16:14:19 -04004481 if (name_ptr != tmp_name)
4482 kfree(name_ptr);
4483
Chris Mason39279cc2007-06-12 06:35:45 -04004484 if (over)
4485 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05004486 di_len = btrfs_dir_name_len(leaf, di) +
David Woodhouse49593bf2008-08-17 17:08:36 +01004487 btrfs_dir_data_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04004488 di_cur += di_len;
4489 di = (struct btrfs_dir_item *)((char *)di + di_len);
4490 }
Li Zefanb9e03af2011-03-23 10:43:58 +08004491next:
4492 path->slots[0]++;
Chris Mason39279cc2007-06-12 06:35:45 -04004493 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004494
Miao Xie16cdcec2011-04-22 18:12:22 +08004495 if (key_type == BTRFS_DIR_INDEX_KEY) {
4496 if (is_curr)
4497 filp->f_pos++;
4498 ret = btrfs_readdir_delayed_dir_index(filp, dirent, filldir,
4499 &ins_list);
4500 if (ret)
4501 goto nopos;
4502 }
4503
David Woodhouse49593bf2008-08-17 17:08:36 +01004504 /* Reached end of directory/root. Bump pos past the last item. */
Yan Zheng5e591a02008-02-19 11:41:02 -05004505 if (key_type == BTRFS_DIR_INDEX_KEY)
Jan Engelhardt406266a2009-12-09 22:00:38 +00004506 /*
4507 * 32-bit glibc will use getdents64, but then strtol -
4508 * so the last number we can serve is this.
4509 */
4510 filp->f_pos = 0x7fffffff;
Yan Zheng5e591a02008-02-19 11:41:02 -05004511 else
4512 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04004513nopos:
4514 ret = 0;
4515err:
Miao Xie16cdcec2011-04-22 18:12:22 +08004516 if (key_type == BTRFS_DIR_INDEX_KEY)
4517 btrfs_put_delayed_items(&ins_list, &del_list);
Chris Mason39279cc2007-06-12 06:35:45 -04004518 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004519 return ret;
4520}
4521
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004522int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc)
Chris Mason39279cc2007-06-12 06:35:45 -04004523{
4524 struct btrfs_root *root = BTRFS_I(inode)->root;
4525 struct btrfs_trans_handle *trans;
4526 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04004527 bool nolock = false;
Chris Mason39279cc2007-06-12 06:35:45 -04004528
Josef Bacik72ac3c02012-05-23 14:13:11 -04004529 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Chris Mason4ca8b412008-08-05 13:30:48 -04004530 return 0;
4531
Liu Bo83eea1f2012-07-10 05:28:39 -06004532 if (btrfs_fs_closing(root->fs_info) && btrfs_is_free_space_inode(inode))
Li Zefan82d59022011-04-20 10:33:24 +08004533 nolock = true;
Josef Bacik0af3d002010-06-21 14:48:16 -04004534
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004535 if (wbc->sync_mode == WB_SYNC_ALL) {
Josef Bacik0af3d002010-06-21 14:48:16 -04004536 if (nolock)
Josef Bacik7a7eaa402011-04-13 12:54:33 -04004537 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0af3d002010-06-21 14:48:16 -04004538 else
Josef Bacik7a7eaa402011-04-13 12:54:33 -04004539 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00004540 if (IS_ERR(trans))
4541 return PTR_ERR(trans);
Miao Xiea698d0752012-09-20 01:51:59 -06004542 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004543 }
4544 return ret;
4545}
4546
4547/*
Chris Mason54aa1f42007-06-22 14:16:25 -04004548 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04004549 * inode changes. But, it is most likely to find the inode in cache.
4550 * FIXME, needs more benchmarking...there are no reasons other than performance
4551 * to keep or drop this code.
4552 */
Josef Bacik22c44fe2011-11-30 10:45:38 -05004553int btrfs_dirty_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04004554{
4555 struct btrfs_root *root = BTRFS_I(inode)->root;
4556 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004557 int ret;
4558
Josef Bacik72ac3c02012-05-23 14:13:11 -04004559 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Josef Bacik22c44fe2011-11-30 10:45:38 -05004560 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004561
Josef Bacik7a7eaa402011-04-13 12:54:33 -04004562 trans = btrfs_join_transaction(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004563 if (IS_ERR(trans))
4564 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004565
4566 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04004567 if (ret && ret == -ENOSPC) {
4568 /* whoops, lets try again with the full transaction */
4569 btrfs_end_transaction(trans, root);
4570 trans = btrfs_start_transaction(root, 1);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004571 if (IS_ERR(trans))
4572 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004573
Chris Mason94b60442010-05-26 11:02:00 -04004574 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04004575 }
Chris Mason39279cc2007-06-12 06:35:45 -04004576 btrfs_end_transaction(trans, root);
Miao Xie16cdcec2011-04-22 18:12:22 +08004577 if (BTRFS_I(inode)->delayed_node)
4578 btrfs_balance_delayed_items(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004579
4580 return ret;
4581}
4582
4583/*
4584 * This is a copy of file_update_time. We need this so we can return error on
4585 * ENOSPC for updating the inode in the case of file write and mmap writes.
4586 */
Josef Bacike41f9412012-03-26 09:46:47 -04004587static int btrfs_update_time(struct inode *inode, struct timespec *now,
4588 int flags)
Josef Bacik22c44fe2011-11-30 10:45:38 -05004589{
Alexander Block2bc5565282012-06-15 09:49:33 +02004590 struct btrfs_root *root = BTRFS_I(inode)->root;
4591
4592 if (btrfs_root_readonly(root))
4593 return -EROFS;
4594
Josef Bacike41f9412012-03-26 09:46:47 -04004595 if (flags & S_VERSION)
Josef Bacik22c44fe2011-11-30 10:45:38 -05004596 inode_inc_iversion(inode);
Josef Bacike41f9412012-03-26 09:46:47 -04004597 if (flags & S_CTIME)
4598 inode->i_ctime = *now;
4599 if (flags & S_MTIME)
4600 inode->i_mtime = *now;
4601 if (flags & S_ATIME)
4602 inode->i_atime = *now;
4603 return btrfs_dirty_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004604}
4605
Chris Masond352ac62008-09-29 15:18:18 -04004606/*
4607 * find the highest existing sequence number in a directory
4608 * and then set the in-memory index_cnt variable to reflect
4609 * free sequence numbers
4610 */
Josef Bacikaec74772008-07-24 12:12:38 -04004611static int btrfs_set_inode_index_count(struct inode *inode)
4612{
4613 struct btrfs_root *root = BTRFS_I(inode)->root;
4614 struct btrfs_key key, found_key;
4615 struct btrfs_path *path;
4616 struct extent_buffer *leaf;
4617 int ret;
4618
Li Zefan33345d012011-04-20 10:31:50 +08004619 key.objectid = btrfs_ino(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004620 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
4621 key.offset = (u64)-1;
4622
4623 path = btrfs_alloc_path();
4624 if (!path)
4625 return -ENOMEM;
4626
4627 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4628 if (ret < 0)
4629 goto out;
4630 /* FIXME: we should be able to handle this */
4631 if (ret == 0)
4632 goto out;
4633 ret = 0;
4634
4635 /*
4636 * MAGIC NUMBER EXPLANATION:
4637 * since we search a directory based on f_pos we have to start at 2
4638 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
4639 * else has to start at 2
4640 */
4641 if (path->slots[0] == 0) {
4642 BTRFS_I(inode)->index_cnt = 2;
4643 goto out;
4644 }
4645
4646 path->slots[0]--;
4647
4648 leaf = path->nodes[0];
4649 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4650
Li Zefan33345d012011-04-20 10:31:50 +08004651 if (found_key.objectid != btrfs_ino(inode) ||
Josef Bacikaec74772008-07-24 12:12:38 -04004652 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
4653 BTRFS_I(inode)->index_cnt = 2;
4654 goto out;
4655 }
4656
4657 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
4658out:
4659 btrfs_free_path(path);
4660 return ret;
4661}
4662
Chris Masond352ac62008-09-29 15:18:18 -04004663/*
4664 * helper to find a free sequence number in a given directory. This current
4665 * code is very simple, later versions will do smarter things in the btree
4666 */
Chris Mason3de45862008-11-17 21:02:50 -05004667int btrfs_set_inode_index(struct inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04004668{
4669 int ret = 0;
4670
4671 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
Miao Xie16cdcec2011-04-22 18:12:22 +08004672 ret = btrfs_inode_delayed_dir_index_count(dir);
4673 if (ret) {
4674 ret = btrfs_set_inode_index_count(dir);
4675 if (ret)
4676 return ret;
4677 }
Josef Bacikaec74772008-07-24 12:12:38 -04004678 }
4679
Chris Mason00e4e6b2008-08-05 11:18:09 -04004680 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04004681 BTRFS_I(dir)->index_cnt++;
4682
4683 return ret;
4684}
4685
Chris Mason39279cc2007-06-12 06:35:45 -04004686static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
4687 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04004688 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05004689 const char *name, int name_len,
Al Viro175a4eb2011-07-26 03:30:54 -04004690 u64 ref_objectid, u64 objectid,
4691 umode_t mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04004692{
4693 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004694 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04004695 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04004696 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05004697 struct btrfs_inode_ref *ref;
4698 struct btrfs_key key[2];
4699 u32 sizes[2];
4700 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04004701 int ret;
4702 int owner;
4703
Chris Mason5f39d392007-10-15 16:14:19 -04004704 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07004705 if (!path)
4706 return ERR_PTR(-ENOMEM);
Chris Mason5f39d392007-10-15 16:14:19 -04004707
Chris Mason39279cc2007-06-12 06:35:45 -04004708 inode = new_inode(root->fs_info->sb);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004709 if (!inode) {
4710 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004711 return ERR_PTR(-ENOMEM);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004712 }
Chris Mason39279cc2007-06-12 06:35:45 -04004713
Li Zefan581bb052011-04-20 10:06:11 +08004714 /*
4715 * we have to initialize this early, so we can reclaim the inode
4716 * number if we fail afterwards in this function.
4717 */
4718 inode->i_ino = objectid;
4719
Josef Bacikaec74772008-07-24 12:12:38 -04004720 if (dir) {
liubo1abe9b82011-03-24 11:18:59 +00004721 trace_btrfs_inode_request(dir);
4722
Chris Mason3de45862008-11-17 21:02:50 -05004723 ret = btrfs_set_inode_index(dir, index);
Shen Feng09771432009-04-02 16:46:06 -04004724 if (ret) {
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004725 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004726 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004727 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04004728 }
Josef Bacikaec74772008-07-24 12:12:38 -04004729 }
4730 /*
4731 * index_cnt is ignored for everything but a dir,
4732 * btrfs_get_inode_index_count has an explanation for the magic
4733 * number
4734 */
4735 BTRFS_I(inode)->index_cnt = 2;
Chris Mason39279cc2007-06-12 06:35:45 -04004736 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04004737 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik76195852010-11-19 02:18:02 +00004738 inode->i_generation = BTRFS_I(inode)->generation;
Chris Masonb888db22007-08-27 16:49:44 -04004739
Josef Bacik5dc562c2012-08-17 13:14:17 -04004740 /*
4741 * We could have gotten an inode number from somebody who was fsynced
4742 * and then removed in this same transaction, so let's just set full
4743 * sync since it will be a full sync anyway and this will blow away the
4744 * old info in the log.
4745 */
4746 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
4747
Al Viro569254b2011-07-24 17:08:40 -04004748 if (S_ISDIR(mode))
Chris Mason39279cc2007-06-12 06:35:45 -04004749 owner = 0;
4750 else
4751 owner = 1;
Chris Mason9c583092008-01-29 15:15:18 -05004752
4753 key[0].objectid = objectid;
4754 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
4755 key[0].offset = 0;
4756
Mark Fashehf1863732012-08-08 11:32:27 -07004757 /*
4758 * Start new inodes with an inode_ref. This is slightly more
4759 * efficient for small numbers of hard links since they will
4760 * be packed into one item. Extended refs will kick in if we
4761 * add more hard links than can fit in the ref item.
4762 */
Chris Mason9c583092008-01-29 15:15:18 -05004763 key[1].objectid = objectid;
4764 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
4765 key[1].offset = ref_objectid;
4766
4767 sizes[0] = sizeof(struct btrfs_inode_item);
4768 sizes[1] = name_len + sizeof(*ref);
4769
Chris Masonb9473432009-03-13 11:00:37 -04004770 path->leave_spinning = 1;
Chris Mason9c583092008-01-29 15:15:18 -05004771 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
4772 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04004773 goto fail;
4774
Dmitry Monakhovecc11fab2010-03-04 17:31:47 +03004775 inode_init_owner(inode, dir, mode);
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004776 inode_set_bytes(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004777 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04004778 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
4779 struct btrfs_inode_item);
Li Zefan293f7e02012-07-10 00:58:58 -06004780 memset_extent_buffer(path->nodes[0], 0, (unsigned long)inode_item,
4781 sizeof(*inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04004782 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05004783
4784 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
4785 struct btrfs_inode_ref);
4786 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004787 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
Chris Mason9c583092008-01-29 15:15:18 -05004788 ptr = (unsigned long)(ref + 1);
4789 write_extent_buffer(path->nodes[0], name, ptr, name_len);
4790
Chris Mason5f39d392007-10-15 16:14:19 -04004791 btrfs_mark_buffer_dirty(path->nodes[0]);
4792 btrfs_free_path(path);
4793
Chris Mason39279cc2007-06-12 06:35:45 -04004794 location = &BTRFS_I(inode)->location;
4795 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04004796 location->offset = 0;
4797 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
4798
Christoph Hellwig6cbff002009-04-17 10:37:41 +02004799 btrfs_inherit_iflags(inode, dir);
4800
Al Viro569254b2011-07-24 17:08:40 -04004801 if (S_ISREG(mode)) {
Chris Mason94272162009-07-02 12:26:06 -04004802 if (btrfs_test_opt(root, NODATASUM))
4803 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
Liu Bo75e7cb72011-03-22 10:12:20 +00004804 if (btrfs_test_opt(root, NODATACOW) ||
4805 (BTRFS_I(dir)->flags & BTRFS_INODE_NODATACOW))
Chris Mason94272162009-07-02 12:26:06 -04004806 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
4807 }
4808
Chris Mason39279cc2007-06-12 06:35:45 -04004809 insert_inode_hash(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004810 inode_tree_add(inode);
liubo1abe9b82011-03-24 11:18:59 +00004811
4812 trace_btrfs_inode_new(inode);
Chris Mason1973f0f2011-06-24 13:13:29 -04004813 btrfs_set_inode_last_trans(trans, inode);
liubo1abe9b82011-03-24 11:18:59 +00004814
Alexander Block8ea05e32012-07-25 17:35:53 +02004815 btrfs_update_root_times(trans, root);
4816
Chris Mason39279cc2007-06-12 06:35:45 -04004817 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004818fail:
Josef Bacikaec74772008-07-24 12:12:38 -04004819 if (dir)
4820 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04004821 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004822 iput(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004823 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004824}
4825
4826static inline u8 btrfs_inode_type(struct inode *inode)
4827{
4828 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
4829}
4830
Chris Masond352ac62008-09-29 15:18:18 -04004831/*
4832 * utility function to add 'inode' into 'parent_inode' with
4833 * a give name and a given sequence number.
4834 * if 'add_backref' is true, also insert a backref from the
4835 * inode to the parent directory.
4836 */
Chris Masone02119d2008-09-05 16:13:11 -04004837int btrfs_add_link(struct btrfs_trans_handle *trans,
4838 struct inode *parent_inode, struct inode *inode,
4839 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004840{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004841 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004842 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04004843 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Li Zefan33345d012011-04-20 10:31:50 +08004844 u64 ino = btrfs_ino(inode);
4845 u64 parent_ino = btrfs_ino(parent_inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004846
Li Zefan33345d012011-04-20 10:31:50 +08004847 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004848 memcpy(&key, &BTRFS_I(inode)->root->root_key, sizeof(key));
4849 } else {
Li Zefan33345d012011-04-20 10:31:50 +08004850 key.objectid = ino;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004851 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
4852 key.offset = 0;
4853 }
Chris Mason39279cc2007-06-12 06:35:45 -04004854
Li Zefan33345d012011-04-20 10:31:50 +08004855 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004856 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
4857 key.objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08004858 parent_ino, index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004859 } else if (add_backref) {
Li Zefan33345d012011-04-20 10:31:50 +08004860 ret = btrfs_insert_inode_ref(trans, root, name, name_len, ino,
4861 parent_ino, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004862 }
4863
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004864 /* Nothing to clean up yet */
4865 if (ret)
4866 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004867
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004868 ret = btrfs_insert_dir_item(trans, root, name, name_len,
4869 parent_inode, &key,
4870 btrfs_inode_type(inode), index);
4871 if (ret == -EEXIST)
4872 goto fail_dir_item;
4873 else if (ret) {
4874 btrfs_abort_transaction(trans, root, ret);
4875 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004876 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004877
4878 btrfs_i_size_write(parent_inode, parent_inode->i_size +
4879 name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04004880 inode_inc_iversion(parent_inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004881 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
4882 ret = btrfs_update_inode(trans, root, parent_inode);
4883 if (ret)
4884 btrfs_abort_transaction(trans, root, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004885 return ret;
Chris Masonfe66a052012-02-20 08:40:56 -05004886
4887fail_dir_item:
4888 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
4889 u64 local_index;
4890 int err;
4891 err = btrfs_del_root_ref(trans, root->fs_info->tree_root,
4892 key.objectid, root->root_key.objectid,
4893 parent_ino, &local_index, name, name_len);
4894
4895 } else if (add_backref) {
4896 u64 local_index;
4897 int err;
4898
4899 err = btrfs_del_inode_ref(trans, root, name, name_len,
4900 ino, parent_ino, &local_index);
4901 }
4902 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004903}
4904
4905static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Josef Bacika1b075d2010-11-19 20:36:11 +00004906 struct inode *dir, struct dentry *dentry,
4907 struct inode *inode, int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004908{
Josef Bacika1b075d2010-11-19 20:36:11 +00004909 int err = btrfs_add_link(trans, dir, inode,
4910 dentry->d_name.name, dentry->d_name.len,
4911 backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004912 if (err > 0)
4913 err = -EEXIST;
4914 return err;
4915}
4916
Josef Bacik618e21d2007-07-11 10:18:17 -04004917static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -04004918 umode_t mode, dev_t rdev)
Josef Bacik618e21d2007-07-11 10:18:17 -04004919{
4920 struct btrfs_trans_handle *trans;
4921 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004922 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04004923 int err;
4924 int drop_inode = 0;
4925 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004926 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04004927
4928 if (!new_valid_dev(rdev))
4929 return -EINVAL;
4930
Josef Bacik9ed74f22009-09-11 16:12:44 -04004931 /*
4932 * 2 for inode item and ref
4933 * 2 for dir items
4934 * 1 for xattr if selinux is on
4935 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004936 trans = btrfs_start_transaction(root, 5);
4937 if (IS_ERR(trans))
4938 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05004939
Li Zefan581bb052011-04-20 10:06:11 +08004940 err = btrfs_find_free_ino(root, &objectid);
4941 if (err)
4942 goto out_unlock;
4943
Josef Bacikaec74772008-07-24 12:12:38 -04004944 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08004945 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04004946 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004947 if (IS_ERR(inode)) {
4948 err = PTR_ERR(inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04004949 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004950 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004951
Eric Paris2a7dba32011-02-01 11:05:39 -05004952 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04004953 if (err) {
4954 drop_inode = 1;
4955 goto out_unlock;
4956 }
4957
Filipe Brandenburger2794ed02012-11-30 03:40:08 +00004958 err = btrfs_update_inode(trans, root, inode);
4959 if (err) {
4960 drop_inode = 1;
4961 goto out_unlock;
4962 }
4963
Casey Schauflerad19db72011-12-15 10:09:07 -05004964 /*
4965 * If the active LSM wants to access the inode during
4966 * d_instantiate it needs these. Smack checks to see
4967 * if the filesystem supports xattrs by looking at the
4968 * ops vector.
4969 */
4970
4971 inode->i_op = &btrfs_special_inode_operations;
Josef Bacika1b075d2010-11-19 20:36:11 +00004972 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Josef Bacik618e21d2007-07-11 10:18:17 -04004973 if (err)
4974 drop_inode = 1;
4975 else {
Josef Bacik618e21d2007-07-11 10:18:17 -04004976 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04004977 btrfs_update_inode(trans, root, inode);
Al Viro08c422c2011-12-23 07:58:13 -05004978 d_instantiate(dentry, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04004979 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004980out_unlock:
Josef Bacik7ad85bb2012-01-12 19:10:12 -05004981 btrfs_end_transaction(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00004982 btrfs_btree_balance_dirty(root);
Josef Bacik618e21d2007-07-11 10:18:17 -04004983 if (drop_inode) {
4984 inode_dec_link_count(inode);
4985 iput(inode);
4986 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004987 return err;
4988}
4989
Chris Mason39279cc2007-06-12 06:35:45 -04004990static int btrfs_create(struct inode *dir, struct dentry *dentry,
Al Viroebfc3b42012-06-10 18:05:36 -04004991 umode_t mode, bool excl)
Chris Mason39279cc2007-06-12 06:35:45 -04004992{
4993 struct btrfs_trans_handle *trans;
4994 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004995 struct inode *inode = NULL;
Filipe Brandenburger43baa572012-11-30 03:40:09 +00004996 int drop_inode_on_err = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004997 int err;
Chris Mason39279cc2007-06-12 06:35:45 -04004998 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004999 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005000
Josef Bacik9ed74f22009-09-11 16:12:44 -04005001 /*
5002 * 2 for inode item and ref
5003 * 2 for dir items
5004 * 1 for xattr if selinux is on
5005 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04005006 trans = btrfs_start_transaction(root, 5);
5007 if (IS_ERR(trans))
5008 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04005009
Li Zefan581bb052011-04-20 10:06:11 +08005010 err = btrfs_find_free_ino(root, &objectid);
5011 if (err)
5012 goto out_unlock;
5013
Josef Bacikaec74772008-07-24 12:12:38 -04005014 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08005015 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04005016 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04005017 if (IS_ERR(inode)) {
5018 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04005019 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04005020 }
Filipe Brandenburger43baa572012-11-30 03:40:09 +00005021 drop_inode_on_err = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04005022
Eric Paris2a7dba32011-02-01 11:05:39 -05005023 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Filipe Brandenburger43baa572012-11-30 03:40:09 +00005024 if (err)
Josef Bacik33268ea2008-07-24 12:16:36 -04005025 goto out_unlock;
Josef Bacik33268ea2008-07-24 12:16:36 -04005026
Casey Schauflerad19db72011-12-15 10:09:07 -05005027 /*
5028 * If the active LSM wants to access the inode during
5029 * d_instantiate it needs these. Smack checks to see
5030 * if the filesystem supports xattrs by looking at the
5031 * ops vector.
5032 */
5033 inode->i_fop = &btrfs_file_operations;
5034 inode->i_op = &btrfs_file_inode_operations;
5035
Josef Bacika1b075d2010-11-19 20:36:11 +00005036 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04005037 if (err)
Filipe Brandenburger43baa572012-11-30 03:40:09 +00005038 goto out_unlock;
5039
5040 inode->i_mapping->a_ops = &btrfs_aops;
5041 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
5042 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
5043 d_instantiate(dentry, inode);
5044
Chris Mason39279cc2007-06-12 06:35:45 -04005045out_unlock:
Josef Bacik7ad85bb2012-01-12 19:10:12 -05005046 btrfs_end_transaction(trans, root);
Filipe Brandenburger43baa572012-11-30 03:40:09 +00005047 if (err && drop_inode_on_err) {
Chris Mason39279cc2007-06-12 06:35:45 -04005048 inode_dec_link_count(inode);
5049 iput(inode);
5050 }
Liu Bob53d3f52012-11-14 14:34:34 +00005051 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04005052 return err;
5053}
5054
5055static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
5056 struct dentry *dentry)
5057{
5058 struct btrfs_trans_handle *trans;
5059 struct btrfs_root *root = BTRFS_I(dir)->root;
5060 struct inode *inode = old_dentry->d_inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005061 u64 index;
Chris Mason39279cc2007-06-12 06:35:45 -04005062 int err;
5063 int drop_inode = 0;
5064
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00005065 /* do not allow sys_link's with other subvols of the same device */
5066 if (root->objectid != BTRFS_I(inode)->root->objectid)
Mark Fasheh3ab35642011-03-22 17:20:26 +00005067 return -EXDEV;
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00005068
Mark Fashehf1863732012-08-08 11:32:27 -07005069 if (inode->i_nlink >= BTRFS_LINK_MAX)
Al Viroc055e992011-03-04 17:15:18 +00005070 return -EMLINK;
Josef Bacik9ed74f22009-09-11 16:12:44 -04005071
Chris Mason3de45862008-11-17 21:02:50 -05005072 err = btrfs_set_inode_index(dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04005073 if (err)
5074 goto fail;
5075
Yan, Zhenga22285a2010-05-16 10:48:46 -04005076 /*
Miao Xie7e6b6462011-02-18 09:21:17 +00005077 * 2 items for inode and inode ref
Yan, Zhenga22285a2010-05-16 10:48:46 -04005078 * 2 items for dir items
Miao Xie7e6b6462011-02-18 09:21:17 +00005079 * 1 item for parent inode
Yan, Zhenga22285a2010-05-16 10:48:46 -04005080 */
Miao Xie7e6b6462011-02-18 09:21:17 +00005081 trans = btrfs_start_transaction(root, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005082 if (IS_ERR(trans)) {
5083 err = PTR_ERR(trans);
5084 goto fail;
5085 }
Chris Mason5f39d392007-10-15 16:14:19 -04005086
Miao Xie31534952011-04-13 13:19:21 +08005087 btrfs_inc_nlink(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04005088 inode_inc_iversion(inode);
Miao Xie31534952011-04-13 13:19:21 +08005089 inode->i_ctime = CURRENT_TIME;
Al Viro7de9c6e2010-10-23 11:11:40 -04005090 ihold(inode);
Josef Bacike9976152012-10-11 15:53:56 -04005091 set_bit(BTRFS_INODE_COPY_EVERYTHING, &BTRFS_I(inode)->runtime_flags);
Josef Bacikaec74772008-07-24 12:12:38 -04005092
Josef Bacika1b075d2010-11-19 20:36:11 +00005093 err = btrfs_add_nondir(trans, dir, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04005094
Yan, Zhenga5719522009-09-24 09:17:31 -04005095 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04005096 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04005097 } else {
Al Viro10d9f302011-07-16 23:09:10 -04005098 struct dentry *parent = dentry->d_parent;
Yan, Zhenga5719522009-09-24 09:17:31 -04005099 err = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005100 if (err)
5101 goto fail;
Al Viro08c422c2011-12-23 07:58:13 -05005102 d_instantiate(dentry, inode);
Josef Bacik6a912212010-11-20 09:48:00 +00005103 btrfs_log_new_name(trans, inode, NULL, parent);
Yan, Zhenga5719522009-09-24 09:17:31 -04005104 }
Chris Mason39279cc2007-06-12 06:35:45 -04005105
Josef Bacik7ad85bb2012-01-12 19:10:12 -05005106 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05005107fail:
Chris Mason39279cc2007-06-12 06:35:45 -04005108 if (drop_inode) {
5109 inode_dec_link_count(inode);
5110 iput(inode);
5111 }
Liu Bob53d3f52012-11-14 14:34:34 +00005112 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04005113 return err;
5114}
5115
Al Viro18bb1db2011-07-26 01:41:39 -04005116static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Chris Mason39279cc2007-06-12 06:35:45 -04005117{
Chris Masonb9d86662008-05-02 16:13:49 -04005118 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04005119 struct btrfs_trans_handle *trans;
5120 struct btrfs_root *root = BTRFS_I(dir)->root;
5121 int err = 0;
5122 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04005123 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005124 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005125
Josef Bacik9ed74f22009-09-11 16:12:44 -04005126 /*
5127 * 2 items for inode and ref
5128 * 2 items for dir items
5129 * 1 for xattr if selinux is on
5130 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04005131 trans = btrfs_start_transaction(root, 5);
5132 if (IS_ERR(trans))
5133 return PTR_ERR(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04005134
Li Zefan581bb052011-04-20 10:06:11 +08005135 err = btrfs_find_free_ino(root, &objectid);
5136 if (err)
5137 goto out_fail;
5138
Josef Bacikaec74772008-07-24 12:12:38 -04005139 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08005140 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04005141 S_IFDIR | mode, &index);
Chris Mason39279cc2007-06-12 06:35:45 -04005142 if (IS_ERR(inode)) {
5143 err = PTR_ERR(inode);
5144 goto out_fail;
5145 }
Chris Mason5f39d392007-10-15 16:14:19 -04005146
Chris Mason39279cc2007-06-12 06:35:45 -04005147 drop_on_err = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -04005148
Eric Paris2a7dba32011-02-01 11:05:39 -05005149 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04005150 if (err)
5151 goto out_fail;
5152
Chris Mason39279cc2007-06-12 06:35:45 -04005153 inode->i_op = &btrfs_dir_inode_operations;
5154 inode->i_fop = &btrfs_dir_file_operations;
Chris Mason39279cc2007-06-12 06:35:45 -04005155
Chris Masondbe674a2008-07-17 12:54:05 -04005156 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04005157 err = btrfs_update_inode(trans, root, inode);
5158 if (err)
5159 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04005160
Josef Bacika1b075d2010-11-19 20:36:11 +00005161 err = btrfs_add_link(trans, dir, inode, dentry->d_name.name,
5162 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04005163 if (err)
5164 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04005165
Chris Mason39279cc2007-06-12 06:35:45 -04005166 d_instantiate(dentry, inode);
5167 drop_on_err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005168
5169out_fail:
Josef Bacik7ad85bb2012-01-12 19:10:12 -05005170 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04005171 if (drop_on_err)
5172 iput(inode);
Liu Bob53d3f52012-11-14 14:34:34 +00005173 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04005174 return err;
5175}
5176
Chris Masond352ac62008-09-29 15:18:18 -04005177/* helper for btfs_get_extent. Given an existing extent in the tree,
5178 * and an extent that you want to insert, deal with overlap and insert
5179 * the new extent into the tree.
5180 */
Chris Mason3b951512008-04-17 11:29:12 -04005181static int merge_extent_mapping(struct extent_map_tree *em_tree,
5182 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005183 struct extent_map *em,
5184 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04005185{
5186 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04005187
Chris Masone6dcd2d2008-07-17 12:53:50 -04005188 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
5189 start_diff = map_start - em->start;
5190 em->start = map_start;
5191 em->len = map_len;
Chris Masonc8b97812008-10-29 14:49:59 -04005192 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
5193 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04005194 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04005195 em->block_len -= start_diff;
5196 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005197 return add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04005198}
5199
Chris Masonc8b97812008-10-29 14:49:59 -04005200static noinline int uncompress_inline(struct btrfs_path *path,
5201 struct inode *inode, struct page *page,
5202 size_t pg_offset, u64 extent_offset,
5203 struct btrfs_file_extent_item *item)
5204{
5205 int ret;
5206 struct extent_buffer *leaf = path->nodes[0];
5207 char *tmp;
5208 size_t max_size;
5209 unsigned long inline_size;
5210 unsigned long ptr;
Li Zefan261507a02010-12-17 14:21:50 +08005211 int compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04005212
5213 WARN_ON(pg_offset != 0);
Li Zefan261507a02010-12-17 14:21:50 +08005214 compress_type = btrfs_file_extent_compression(leaf, item);
Chris Masonc8b97812008-10-29 14:49:59 -04005215 max_size = btrfs_file_extent_ram_bytes(leaf, item);
5216 inline_size = btrfs_file_extent_inline_item_len(leaf,
5217 btrfs_item_nr(leaf, path->slots[0]));
5218 tmp = kmalloc(inline_size, GFP_NOFS);
Tsutomu Itoh8d413712011-04-25 19:43:52 -04005219 if (!tmp)
5220 return -ENOMEM;
Chris Masonc8b97812008-10-29 14:49:59 -04005221 ptr = btrfs_file_extent_inline_start(item);
5222
5223 read_extent_buffer(leaf, tmp, ptr, inline_size);
5224
Chris Mason5b050f02008-11-11 09:34:41 -05005225 max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size);
Li Zefan261507a02010-12-17 14:21:50 +08005226 ret = btrfs_decompress(compress_type, tmp, page,
5227 extent_offset, inline_size, max_size);
Chris Masonc8b97812008-10-29 14:49:59 -04005228 if (ret) {
Cong Wang7ac687d2011-11-25 23:14:28 +08005229 char *kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04005230 unsigned long copy_size = min_t(u64,
5231 PAGE_CACHE_SIZE - pg_offset,
5232 max_size - extent_offset);
5233 memset(kaddr + pg_offset, 0, copy_size);
Cong Wang7ac687d2011-11-25 23:14:28 +08005234 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -04005235 }
5236 kfree(tmp);
5237 return 0;
5238}
5239
Chris Masond352ac62008-09-29 15:18:18 -04005240/*
5241 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05005242 * the ugly parts come from merging extents from the disk with the in-ram
5243 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04005244 * where the in-ram extents might be locked pending data=ordered completion.
5245 *
5246 * This also copies inline extents directly into the page.
5247 */
Chris Masond3977122009-01-05 21:25:51 -05005248
Chris Masona52d9a82007-08-27 16:49:44 -04005249struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05005250 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04005251 int create)
5252{
5253 int ret;
5254 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04005255 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04005256 u64 extent_start = 0;
5257 u64 extent_end = 0;
Li Zefan33345d012011-04-20 10:31:50 +08005258 u64 objectid = btrfs_ino(inode);
Chris Masona52d9a82007-08-27 16:49:44 -04005259 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04005260 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04005261 struct btrfs_root *root = BTRFS_I(inode)->root;
5262 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04005263 struct extent_buffer *leaf;
5264 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04005265 struct extent_map *em = NULL;
5266 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05005267 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04005268 struct btrfs_trans_handle *trans = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08005269 int compress_type;
Chris Masona52d9a82007-08-27 16:49:44 -04005270
Chris Masona52d9a82007-08-27 16:49:44 -04005271again:
Chris Mason890871b2009-09-02 16:24:52 -04005272 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05005273 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04005274 if (em)
5275 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04005276 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05005277
Chris Masona52d9a82007-08-27 16:49:44 -04005278 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04005279 if (em->start > start || em->start + em->len <= start)
5280 free_extent_map(em);
5281 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05005282 free_extent_map(em);
5283 else
5284 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005285 }
David Sterba172ddd62011-04-21 00:48:27 +02005286 em = alloc_extent_map();
Chris Masona52d9a82007-08-27 16:49:44 -04005287 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05005288 err = -ENOMEM;
5289 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005290 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005291 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05005292 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05005293 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05005294 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04005295 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04005296
5297 if (!path) {
5298 path = btrfs_alloc_path();
Josef Bacik026fd312011-05-13 10:32:11 -04005299 if (!path) {
5300 err = -ENOMEM;
5301 goto out;
5302 }
5303 /*
5304 * Chances are we'll be called again, so go ahead and do
5305 * readahead
5306 */
5307 path->reada = 1;
Chris Masonf4219502008-07-22 11:18:09 -04005308 }
5309
Chris Mason179e29e2007-11-01 11:28:41 -04005310 ret = btrfs_lookup_file_extent(trans, root, path,
5311 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04005312 if (ret < 0) {
5313 err = ret;
5314 goto out;
5315 }
5316
5317 if (ret != 0) {
5318 if (path->slots[0] == 0)
5319 goto not_found;
5320 path->slots[0]--;
5321 }
5322
Chris Mason5f39d392007-10-15 16:14:19 -04005323 leaf = path->nodes[0];
5324 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04005325 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04005326 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04005327 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5328 found_type = btrfs_key_type(&found_key);
5329 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04005330 found_type != BTRFS_EXTENT_DATA_KEY) {
5331 goto not_found;
5332 }
5333
Chris Mason5f39d392007-10-15 16:14:19 -04005334 found_type = btrfs_file_extent_type(leaf, item);
5335 extent_start = found_key.offset;
Li Zefan261507a02010-12-17 14:21:50 +08005336 compress_type = btrfs_file_extent_compression(leaf, item);
Yan Zhengd899e052008-10-30 14:25:28 -04005337 if (found_type == BTRFS_FILE_EXTENT_REG ||
5338 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04005339 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04005340 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04005341 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
5342 size_t size;
5343 size = btrfs_file_extent_inline_len(leaf, item);
5344 extent_end = (extent_start + size + root->sectorsize - 1) &
5345 ~((u64)root->sectorsize - 1);
5346 }
5347
5348 if (start >= extent_end) {
5349 path->slots[0]++;
5350 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
5351 ret = btrfs_next_leaf(root, path);
5352 if (ret < 0) {
5353 err = ret;
5354 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005355 }
Yan Zheng9036c102008-10-30 14:19:41 -04005356 if (ret > 0)
5357 goto not_found;
5358 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04005359 }
Yan Zheng9036c102008-10-30 14:19:41 -04005360 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5361 if (found_key.objectid != objectid ||
5362 found_key.type != BTRFS_EXTENT_DATA_KEY)
5363 goto not_found;
5364 if (start + len <= found_key.offset)
5365 goto not_found;
5366 em->start = start;
5367 em->len = found_key.offset - start;
5368 goto not_found_em;
5369 }
5370
Yan Zhengd899e052008-10-30 14:25:28 -04005371 if (found_type == BTRFS_FILE_EXTENT_REG ||
5372 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng9036c102008-10-30 14:19:41 -04005373 em->start = extent_start;
5374 em->len = extent_end - extent_start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005375 em->orig_start = extent_start -
5376 btrfs_file_extent_offset(leaf, item);
Chris Masondb945352007-10-15 16:15:53 -04005377 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
5378 if (bytenr == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04005379 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04005380 goto insert;
5381 }
Li Zefan261507a02010-12-17 14:21:50 +08005382 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04005383 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08005384 em->compress_type = compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04005385 em->block_start = bytenr;
5386 em->block_len = btrfs_file_extent_disk_num_bytes(leaf,
5387 item);
5388 } else {
5389 bytenr += btrfs_file_extent_offset(leaf, item);
5390 em->block_start = bytenr;
5391 em->block_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04005392 if (found_type == BTRFS_FILE_EXTENT_PREALLOC)
5393 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -04005394 }
Chris Masona52d9a82007-08-27 16:49:44 -04005395 goto insert;
5396 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04005397 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04005398 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04005399 size_t size;
5400 size_t extent_offset;
5401 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04005402
Chris Masona52d9a82007-08-27 16:49:44 -04005403 em->block_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04005404 if (!page || create) {
Yan689f9342007-10-29 11:41:07 -04005405 em->start = extent_start;
Yan Zheng9036c102008-10-30 14:19:41 -04005406 em->len = extent_end - extent_start;
Yan689f9342007-10-29 11:41:07 -04005407 goto out;
5408 }
5409
Yan Zheng9036c102008-10-30 14:19:41 -04005410 size = btrfs_file_extent_inline_len(leaf, item);
5411 extent_offset = page_offset(page) + pg_offset - extent_start;
Chris Mason70dec802008-01-29 09:59:12 -05005412 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04005413 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04005414 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05005415 em->len = (copy_size + root->sectorsize - 1) &
5416 ~((u64)root->sectorsize - 1);
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005417 em->orig_start = EXTENT_MAP_INLINE;
Li Zefan261507a02010-12-17 14:21:50 +08005418 if (compress_type) {
Chris Masonc8b97812008-10-29 14:49:59 -04005419 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08005420 em->compress_type = compress_type;
5421 }
Yan689f9342007-10-29 11:41:07 -04005422 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04005423 if (create == 0 && !PageUptodate(page)) {
Li Zefan261507a02010-12-17 14:21:50 +08005424 if (btrfs_file_extent_compression(leaf, item) !=
5425 BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04005426 ret = uncompress_inline(path, inode, page,
5427 pg_offset,
5428 extent_offset, item);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005429 BUG_ON(ret); /* -ENOMEM */
Chris Masonc8b97812008-10-29 14:49:59 -04005430 } else {
5431 map = kmap(page);
5432 read_extent_buffer(leaf, map + pg_offset, ptr,
5433 copy_size);
Chris Mason93c82d52009-09-11 12:36:29 -04005434 if (pg_offset + copy_size < PAGE_CACHE_SIZE) {
5435 memset(map + pg_offset + copy_size, 0,
5436 PAGE_CACHE_SIZE - pg_offset -
5437 copy_size);
5438 }
Chris Masonc8b97812008-10-29 14:49:59 -04005439 kunmap(page);
5440 }
Chris Mason179e29e2007-11-01 11:28:41 -04005441 flush_dcache_page(page);
5442 } else if (create && PageUptodate(page)) {
Jan Schmidt6bf7e082011-12-01 14:35:19 +01005443 BUG();
Chris Mason179e29e2007-11-01 11:28:41 -04005444 if (!trans) {
5445 kunmap(page);
5446 free_extent_map(em);
5447 em = NULL;
Chris Masonff5714c2011-05-28 07:00:39 -04005448
David Sterbab3b4aa72011-04-21 01:20:15 +02005449 btrfs_release_path(path);
Josef Bacik7a7eaa402011-04-13 12:54:33 -04005450 trans = btrfs_join_transaction(root);
Chris Masonff5714c2011-05-28 07:00:39 -04005451
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005452 if (IS_ERR(trans))
5453 return ERR_CAST(trans);
Chris Mason179e29e2007-11-01 11:28:41 -04005454 goto again;
5455 }
Chris Masonc8b97812008-10-29 14:49:59 -04005456 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05005457 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04005458 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04005459 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04005460 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04005461 }
Chris Masond1310b22008-01-24 16:13:08 -05005462 set_extent_uptodate(io_tree, em->start,
Arne Jansen507903b2011-04-06 10:02:20 +00005463 extent_map_end(em) - 1, NULL, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04005464 goto insert;
5465 } else {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00005466 WARN(1, KERN_ERR "btrfs unknown found_type %d\n", found_type);
Chris Masona52d9a82007-08-27 16:49:44 -04005467 }
5468not_found:
5469 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05005470 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04005471not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04005472 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04005473 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04005474insert:
David Sterbab3b4aa72011-04-21 01:20:15 +02005475 btrfs_release_path(path);
Chris Masond1310b22008-01-24 16:13:08 -05005476 if (em->start > start || extent_map_end(em) <= start) {
Chris Masond3977122009-01-05 21:25:51 -05005477 printk(KERN_ERR "Btrfs: bad extent! em: [%llu %llu] passed "
5478 "[%llu %llu]\n", (unsigned long long)em->start,
5479 (unsigned long long)em->len,
5480 (unsigned long long)start,
5481 (unsigned long long)len);
Chris Masona52d9a82007-08-27 16:49:44 -04005482 err = -EIO;
5483 goto out;
5484 }
Chris Masond1310b22008-01-24 16:13:08 -05005485
5486 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04005487 write_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005488 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04005489 /* it is possible that someone inserted the extent into the tree
5490 * while we had the lock dropped. It is also possible that
5491 * an overlapping map exists in the tree
5492 */
Chris Masona52d9a82007-08-27 16:49:44 -04005493 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04005494 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005495
5496 ret = 0;
5497
Chris Mason3b951512008-04-17 11:29:12 -04005498 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04005499 if (existing && (existing->start > start ||
5500 existing->start + existing->len <= start)) {
5501 free_extent_map(existing);
5502 existing = NULL;
5503 }
Chris Mason3b951512008-04-17 11:29:12 -04005504 if (!existing) {
5505 existing = lookup_extent_mapping(em_tree, em->start,
5506 em->len);
5507 if (existing) {
5508 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005509 em, start,
5510 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04005511 free_extent_map(existing);
5512 if (err) {
5513 free_extent_map(em);
5514 em = NULL;
5515 }
5516 } else {
5517 err = -EIO;
Chris Mason3b951512008-04-17 11:29:12 -04005518 free_extent_map(em);
5519 em = NULL;
5520 }
5521 } else {
5522 free_extent_map(em);
5523 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005524 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04005525 }
Chris Masona52d9a82007-08-27 16:49:44 -04005526 }
Chris Mason890871b2009-09-02 16:24:52 -04005527 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005528out:
liubo1abe9b82011-03-24 11:18:59 +00005529
Tsutomu Itohf0bd95e2012-10-01 03:08:37 -06005530 if (em)
5531 trace_btrfs_get_extent(root, em);
liubo1abe9b82011-03-24 11:18:59 +00005532
Chris Masonf4219502008-07-22 11:18:09 -04005533 if (path)
5534 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04005535 if (trans) {
5536 ret = btrfs_end_transaction(trans, root);
Chris Masond3977122009-01-05 21:25:51 -05005537 if (!err)
Chris Masona52d9a82007-08-27 16:49:44 -04005538 err = ret;
5539 }
Chris Masona52d9a82007-08-27 16:49:44 -04005540 if (err) {
5541 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04005542 return ERR_PTR(err);
5543 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005544 BUG_ON(!em); /* Error is always set */
Chris Masona52d9a82007-08-27 16:49:44 -04005545 return em;
5546}
5547
Chris Masonec29ed52011-02-23 16:23:20 -05005548struct extent_map *btrfs_get_extent_fiemap(struct inode *inode, struct page *page,
5549 size_t pg_offset, u64 start, u64 len,
5550 int create)
5551{
5552 struct extent_map *em;
5553 struct extent_map *hole_em = NULL;
5554 u64 range_start = start;
5555 u64 end;
5556 u64 found;
5557 u64 found_end;
5558 int err = 0;
5559
5560 em = btrfs_get_extent(inode, page, pg_offset, start, len, create);
5561 if (IS_ERR(em))
5562 return em;
5563 if (em) {
5564 /*
5565 * if our em maps to a hole, there might
5566 * actually be delalloc bytes behind it
5567 */
5568 if (em->block_start != EXTENT_MAP_HOLE)
5569 return em;
5570 else
5571 hole_em = em;
5572 }
5573
5574 /* check to see if we've wrapped (len == -1 or similar) */
5575 end = start + len;
5576 if (end < start)
5577 end = (u64)-1;
5578 else
5579 end -= 1;
5580
5581 em = NULL;
5582
5583 /* ok, we didn't find anything, lets look for delalloc */
5584 found = count_range_bits(&BTRFS_I(inode)->io_tree, &range_start,
5585 end, len, EXTENT_DELALLOC, 1);
5586 found_end = range_start + found;
5587 if (found_end < range_start)
5588 found_end = (u64)-1;
5589
5590 /*
5591 * we didn't find anything useful, return
5592 * the original results from get_extent()
5593 */
5594 if (range_start > end || found_end <= start) {
5595 em = hole_em;
5596 hole_em = NULL;
5597 goto out;
5598 }
5599
5600 /* adjust the range_start to make sure it doesn't
5601 * go backwards from the start they passed in
5602 */
5603 range_start = max(start,range_start);
5604 found = found_end - range_start;
5605
5606 if (found > 0) {
5607 u64 hole_start = start;
5608 u64 hole_len = len;
5609
David Sterba172ddd62011-04-21 00:48:27 +02005610 em = alloc_extent_map();
Chris Masonec29ed52011-02-23 16:23:20 -05005611 if (!em) {
5612 err = -ENOMEM;
5613 goto out;
5614 }
5615 /*
5616 * when btrfs_get_extent can't find anything it
5617 * returns one huge hole
5618 *
5619 * make sure what it found really fits our range, and
5620 * adjust to make sure it is based on the start from
5621 * the caller
5622 */
5623 if (hole_em) {
5624 u64 calc_end = extent_map_end(hole_em);
5625
5626 if (calc_end <= start || (hole_em->start > end)) {
5627 free_extent_map(hole_em);
5628 hole_em = NULL;
5629 } else {
5630 hole_start = max(hole_em->start, start);
5631 hole_len = calc_end - hole_start;
5632 }
5633 }
5634 em->bdev = NULL;
5635 if (hole_em && range_start > hole_start) {
5636 /* our hole starts before our delalloc, so we
5637 * have to return just the parts of the hole
5638 * that go until the delalloc starts
5639 */
5640 em->len = min(hole_len,
5641 range_start - hole_start);
5642 em->start = hole_start;
5643 em->orig_start = hole_start;
5644 /*
5645 * don't adjust block start at all,
5646 * it is fixed at EXTENT_MAP_HOLE
5647 */
5648 em->block_start = hole_em->block_start;
5649 em->block_len = hole_len;
5650 } else {
5651 em->start = range_start;
5652 em->len = found;
5653 em->orig_start = range_start;
5654 em->block_start = EXTENT_MAP_DELALLOC;
5655 em->block_len = found;
5656 }
5657 } else if (hole_em) {
5658 return hole_em;
5659 }
5660out:
5661
5662 free_extent_map(hole_em);
5663 if (err) {
5664 free_extent_map(em);
5665 return ERR_PTR(err);
5666 }
5667 return em;
5668}
5669
Josef Bacik4b46fce2010-05-23 11:00:55 -04005670static struct extent_map *btrfs_new_extent_direct(struct inode *inode,
Josef Bacik16d299a2011-04-06 14:53:07 -04005671 struct extent_map *em,
Josef Bacik4b46fce2010-05-23 11:00:55 -04005672 u64 start, u64 len)
5673{
5674 struct btrfs_root *root = BTRFS_I(inode)->root;
5675 struct btrfs_trans_handle *trans;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005676 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
5677 struct btrfs_key ins;
5678 u64 alloc_hint;
5679 int ret;
Josef Bacik16d299a2011-04-06 14:53:07 -04005680 bool insert = false;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005681
Josef Bacik16d299a2011-04-06 14:53:07 -04005682 /*
5683 * Ok if the extent map we looked up is a hole and is for the exact
5684 * range we want, there is no reason to allocate a new one, however if
5685 * it is not right then we need to free this one and drop the cache for
5686 * our range.
5687 */
5688 if (em->block_start != EXTENT_MAP_HOLE || em->start != start ||
5689 em->len != len) {
5690 free_extent_map(em);
5691 em = NULL;
5692 insert = true;
5693 btrfs_drop_extent_cache(inode, start, start + len - 1, 0);
5694 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005695
Josef Bacik7a7eaa402011-04-13 12:54:33 -04005696 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005697 if (IS_ERR(trans))
5698 return ERR_CAST(trans);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005699
5700 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
5701
5702 alloc_hint = get_extent_allocation_hint(inode, start, len);
5703 ret = btrfs_reserve_extent(trans, root, len, root->sectorsize, 0,
Josef Bacik81c9ad22012-01-18 10:56:06 -05005704 alloc_hint, &ins, 1);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005705 if (ret) {
5706 em = ERR_PTR(ret);
5707 goto out;
5708 }
5709
Josef Bacik4b46fce2010-05-23 11:00:55 -04005710 if (!em) {
David Sterba172ddd62011-04-21 00:48:27 +02005711 em = alloc_extent_map();
Josef Bacik16d299a2011-04-06 14:53:07 -04005712 if (!em) {
5713 em = ERR_PTR(-ENOMEM);
5714 goto out;
5715 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005716 }
5717
5718 em->start = start;
5719 em->orig_start = em->start;
5720 em->len = ins.offset;
5721
5722 em->block_start = ins.objectid;
5723 em->block_len = ins.offset;
5724 em->bdev = root->fs_info->fs_devices->latest_bdev;
Josef Bacik16d299a2011-04-06 14:53:07 -04005725
5726 /*
5727 * We need to do this because if we're using the original em we searched
5728 * for, we could have EXTENT_FLAG_VACANCY set, and we don't want that.
5729 */
5730 em->flags = 0;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005731 set_bit(EXTENT_FLAG_PINNED, &em->flags);
5732
Josef Bacik16d299a2011-04-06 14:53:07 -04005733 while (insert) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04005734 write_lock(&em_tree->lock);
5735 ret = add_extent_mapping(em_tree, em);
5736 write_unlock(&em_tree->lock);
5737 if (ret != -EEXIST)
5738 break;
5739 btrfs_drop_extent_cache(inode, start, start + em->len - 1, 0);
5740 }
5741
5742 ret = btrfs_add_ordered_extent_dio(inode, start, ins.objectid,
5743 ins.offset, ins.offset, 0);
5744 if (ret) {
5745 btrfs_free_reserved_extent(root, ins.objectid, ins.offset);
5746 em = ERR_PTR(ret);
5747 }
5748out:
5749 btrfs_end_transaction(trans, root);
5750 return em;
5751}
5752
Chris Mason46bfbb52010-05-26 11:04:10 -04005753/*
5754 * returns 1 when the nocow is safe, < 1 on error, 0 if the
5755 * block must be cow'd
5756 */
5757static noinline int can_nocow_odirect(struct btrfs_trans_handle *trans,
5758 struct inode *inode, u64 offset, u64 len)
5759{
5760 struct btrfs_path *path;
5761 int ret;
5762 struct extent_buffer *leaf;
5763 struct btrfs_root *root = BTRFS_I(inode)->root;
5764 struct btrfs_file_extent_item *fi;
5765 struct btrfs_key key;
5766 u64 disk_bytenr;
5767 u64 backref_offset;
5768 u64 extent_end;
5769 u64 num_bytes;
5770 int slot;
5771 int found_type;
5772
5773 path = btrfs_alloc_path();
5774 if (!path)
5775 return -ENOMEM;
5776
Li Zefan33345d012011-04-20 10:31:50 +08005777 ret = btrfs_lookup_file_extent(trans, root, path, btrfs_ino(inode),
Chris Mason46bfbb52010-05-26 11:04:10 -04005778 offset, 0);
5779 if (ret < 0)
5780 goto out;
5781
5782 slot = path->slots[0];
5783 if (ret == 1) {
5784 if (slot == 0) {
5785 /* can't find the item, must cow */
5786 ret = 0;
5787 goto out;
5788 }
5789 slot--;
5790 }
5791 ret = 0;
5792 leaf = path->nodes[0];
5793 btrfs_item_key_to_cpu(leaf, &key, slot);
Li Zefan33345d012011-04-20 10:31:50 +08005794 if (key.objectid != btrfs_ino(inode) ||
Chris Mason46bfbb52010-05-26 11:04:10 -04005795 key.type != BTRFS_EXTENT_DATA_KEY) {
5796 /* not our file or wrong item type, must cow */
5797 goto out;
5798 }
5799
5800 if (key.offset > offset) {
5801 /* Wrong offset, must cow */
5802 goto out;
5803 }
5804
5805 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
5806 found_type = btrfs_file_extent_type(leaf, fi);
5807 if (found_type != BTRFS_FILE_EXTENT_REG &&
5808 found_type != BTRFS_FILE_EXTENT_PREALLOC) {
5809 /* not a regular extent, must cow */
5810 goto out;
5811 }
5812 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
5813 backref_offset = btrfs_file_extent_offset(leaf, fi);
5814
5815 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
5816 if (extent_end < offset + len) {
5817 /* extent doesn't include our full range, must cow */
5818 goto out;
5819 }
5820
5821 if (btrfs_extent_readonly(root, disk_bytenr))
5822 goto out;
5823
5824 /*
5825 * look for other files referencing this extent, if we
5826 * find any we must cow
5827 */
Li Zefan33345d012011-04-20 10:31:50 +08005828 if (btrfs_cross_ref_exist(trans, root, btrfs_ino(inode),
Chris Mason46bfbb52010-05-26 11:04:10 -04005829 key.offset - backref_offset, disk_bytenr))
5830 goto out;
5831
5832 /*
5833 * adjust disk_bytenr and num_bytes to cover just the bytes
5834 * in this extent we are about to write. If there
5835 * are any csums in that range we have to cow in order
5836 * to keep the csums correct
5837 */
5838 disk_bytenr += backref_offset;
5839 disk_bytenr += offset - key.offset;
5840 num_bytes = min(offset + len, extent_end) - offset;
5841 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
5842 goto out;
5843 /*
5844 * all of the above have passed, it is safe to overwrite this extent
5845 * without cow
5846 */
5847 ret = 1;
5848out:
5849 btrfs_free_path(path);
5850 return ret;
5851}
5852
Josef Bacikeb838e72012-07-31 16:28:48 -04005853static int lock_extent_direct(struct inode *inode, u64 lockstart, u64 lockend,
5854 struct extent_state **cached_state, int writing)
5855{
5856 struct btrfs_ordered_extent *ordered;
5857 int ret = 0;
5858
5859 while (1) {
5860 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
5861 0, cached_state);
5862 /*
5863 * We're concerned with the entire range that we're going to be
5864 * doing DIO to, so we need to make sure theres no ordered
5865 * extents in this range.
5866 */
5867 ordered = btrfs_lookup_ordered_range(inode, lockstart,
5868 lockend - lockstart + 1);
5869
5870 /*
5871 * We need to make sure there are no buffered pages in this
5872 * range either, we could have raced between the invalidate in
5873 * generic_file_direct_write and locking the extent. The
5874 * invalidate needs to happen so that reads after a write do not
5875 * get stale data.
5876 */
5877 if (!ordered && (!writing ||
5878 !test_range_bit(&BTRFS_I(inode)->io_tree,
5879 lockstart, lockend, EXTENT_UPTODATE, 0,
5880 *cached_state)))
5881 break;
5882
5883 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
5884 cached_state, GFP_NOFS);
5885
5886 if (ordered) {
5887 btrfs_start_ordered_extent(inode, ordered, 1);
5888 btrfs_put_ordered_extent(ordered);
5889 } else {
5890 /* Screw you mmap */
5891 ret = filemap_write_and_wait_range(inode->i_mapping,
5892 lockstart,
5893 lockend);
5894 if (ret)
5895 break;
5896
5897 /*
5898 * If we found a page that couldn't be invalidated just
5899 * fall back to buffered.
5900 */
5901 ret = invalidate_inode_pages2_range(inode->i_mapping,
5902 lockstart >> PAGE_CACHE_SHIFT,
5903 lockend >> PAGE_CACHE_SHIFT);
5904 if (ret)
5905 break;
5906 }
5907
5908 cond_resched();
5909 }
5910
5911 return ret;
5912}
5913
Josef Bacik69ffb542012-09-11 15:40:07 -04005914static struct extent_map *create_pinned_em(struct inode *inode, u64 start,
5915 u64 len, u64 orig_start,
5916 u64 block_start, u64 block_len,
5917 int type)
5918{
5919 struct extent_map_tree *em_tree;
5920 struct extent_map *em;
5921 struct btrfs_root *root = BTRFS_I(inode)->root;
5922 int ret;
5923
5924 em_tree = &BTRFS_I(inode)->extent_tree;
5925 em = alloc_extent_map();
5926 if (!em)
5927 return ERR_PTR(-ENOMEM);
5928
5929 em->start = start;
5930 em->orig_start = orig_start;
5931 em->len = len;
5932 em->block_len = block_len;
5933 em->block_start = block_start;
5934 em->bdev = root->fs_info->fs_devices->latest_bdev;
5935 set_bit(EXTENT_FLAG_PINNED, &em->flags);
5936 if (type == BTRFS_ORDERED_PREALLOC)
5937 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
5938
5939 do {
5940 btrfs_drop_extent_cache(inode, em->start,
5941 em->start + em->len - 1, 0);
5942 write_lock(&em_tree->lock);
5943 ret = add_extent_mapping(em_tree, em);
5944 write_unlock(&em_tree->lock);
5945 } while (ret == -EEXIST);
5946
5947 if (ret) {
5948 free_extent_map(em);
5949 return ERR_PTR(ret);
5950 }
5951
5952 return em;
5953}
5954
5955
Josef Bacik4b46fce2010-05-23 11:00:55 -04005956static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock,
5957 struct buffer_head *bh_result, int create)
5958{
5959 struct extent_map *em;
5960 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikeb838e72012-07-31 16:28:48 -04005961 struct extent_state *cached_state = NULL;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005962 u64 start = iblock << inode->i_blkbits;
Josef Bacikeb838e72012-07-31 16:28:48 -04005963 u64 lockstart, lockend;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005964 u64 len = bh_result->b_size;
Chris Mason46bfbb52010-05-26 11:04:10 -04005965 struct btrfs_trans_handle *trans;
Josef Bacikeb838e72012-07-31 16:28:48 -04005966 int unlock_bits = EXTENT_LOCKED;
5967 int ret;
5968
Josef Bacikeb838e72012-07-31 16:28:48 -04005969 if (create) {
5970 ret = btrfs_delalloc_reserve_space(inode, len);
5971 if (ret)
5972 return ret;
5973 unlock_bits |= EXTENT_DELALLOC | EXTENT_DIRTY;
Josef Bacikc3298612012-08-03 16:49:19 -04005974 } else {
5975 len = min_t(u64, len, root->sectorsize);
Josef Bacikeb838e72012-07-31 16:28:48 -04005976 }
5977
Josef Bacikc3298612012-08-03 16:49:19 -04005978 lockstart = start;
5979 lockend = start + len - 1;
5980
Josef Bacikeb838e72012-07-31 16:28:48 -04005981 /*
5982 * If this errors out it's because we couldn't invalidate pagecache for
5983 * this range and we need to fallback to buffered.
5984 */
5985 if (lock_extent_direct(inode, lockstart, lockend, &cached_state, create))
5986 return -ENOTBLK;
5987
5988 if (create) {
5989 ret = set_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
5990 lockend, EXTENT_DELALLOC, NULL,
5991 &cached_state, GFP_NOFS);
5992 if (ret)
5993 goto unlock_err;
5994 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005995
5996 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
Josef Bacikeb838e72012-07-31 16:28:48 -04005997 if (IS_ERR(em)) {
5998 ret = PTR_ERR(em);
5999 goto unlock_err;
6000 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04006001
6002 /*
6003 * Ok for INLINE and COMPRESSED extents we need to fallback on buffered
6004 * io. INLINE is special, and we could probably kludge it in here, but
6005 * it's still buffered so for safety lets just fall back to the generic
6006 * buffered path.
6007 *
6008 * For COMPRESSED we _have_ to read the entire extent in so we can
6009 * decompress it, so there will be buffering required no matter what we
6010 * do, so go ahead and fallback to buffered.
6011 *
6012 * We return -ENOTBLK because thats what makes DIO go ahead and go back
6013 * to buffered IO. Don't blame me, this is the price we pay for using
6014 * the generic code.
6015 */
6016 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) ||
6017 em->block_start == EXTENT_MAP_INLINE) {
6018 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04006019 ret = -ENOTBLK;
6020 goto unlock_err;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006021 }
6022
6023 /* Just a good old fashioned hole, return */
6024 if (!create && (em->block_start == EXTENT_MAP_HOLE ||
6025 test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
6026 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04006027 ret = 0;
6028 goto unlock_err;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006029 }
6030
6031 /*
6032 * We don't allocate a new extent in the following cases
6033 *
6034 * 1) The inode is marked as NODATACOW. In this case we'll just use the
6035 * existing extent.
6036 * 2) The extent is marked as PREALLOC. We're good to go here and can
6037 * just use the extent.
6038 *
6039 */
Chris Mason46bfbb52010-05-26 11:04:10 -04006040 if (!create) {
Josef Bacikeb838e72012-07-31 16:28:48 -04006041 len = min(len, em->len - (start - em->start));
6042 lockstart = start + len;
6043 goto unlock;
Chris Mason46bfbb52010-05-26 11:04:10 -04006044 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04006045
6046 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
6047 ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
6048 em->block_start != EXTENT_MAP_HOLE)) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04006049 int type;
6050 int ret;
Chris Mason46bfbb52010-05-26 11:04:10 -04006051 u64 block_start;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006052
6053 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
6054 type = BTRFS_ORDERED_PREALLOC;
6055 else
6056 type = BTRFS_ORDERED_NOCOW;
Chris Mason46bfbb52010-05-26 11:04:10 -04006057 len = min(len, em->len - (start - em->start));
Josef Bacik4b46fce2010-05-23 11:00:55 -04006058 block_start = em->block_start + (start - em->start);
Chris Mason46bfbb52010-05-26 11:04:10 -04006059
6060 /*
6061 * we're not going to log anything, but we do need
6062 * to make sure the current transaction stays open
6063 * while we look for nocow cross refs
6064 */
Josef Bacik7a7eaa402011-04-13 12:54:33 -04006065 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00006066 if (IS_ERR(trans))
Chris Mason46bfbb52010-05-26 11:04:10 -04006067 goto must_cow;
6068
6069 if (can_nocow_odirect(trans, inode, start, len) == 1) {
Josef Bacik69ffb542012-09-11 15:40:07 -04006070 u64 orig_start = em->start;
6071
6072 if (type == BTRFS_ORDERED_PREALLOC) {
6073 free_extent_map(em);
6074 em = create_pinned_em(inode, start, len,
6075 orig_start,
6076 block_start, len, type);
6077 if (IS_ERR(em)) {
6078 btrfs_end_transaction(trans, root);
6079 goto unlock_err;
6080 }
6081 }
6082
Chris Mason46bfbb52010-05-26 11:04:10 -04006083 ret = btrfs_add_ordered_extent_dio(inode, start,
6084 block_start, len, len, type);
6085 btrfs_end_transaction(trans, root);
6086 if (ret) {
6087 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04006088 goto unlock_err;
Chris Mason46bfbb52010-05-26 11:04:10 -04006089 }
6090 goto unlock;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006091 }
Chris Mason46bfbb52010-05-26 11:04:10 -04006092 btrfs_end_transaction(trans, root);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006093 }
Chris Mason46bfbb52010-05-26 11:04:10 -04006094must_cow:
6095 /*
6096 * this will cow the extent, reset the len in case we changed
6097 * it above
6098 */
6099 len = bh_result->b_size;
Josef Bacik16d299a2011-04-06 14:53:07 -04006100 em = btrfs_new_extent_direct(inode, em, start, len);
Josef Bacikeb838e72012-07-31 16:28:48 -04006101 if (IS_ERR(em)) {
6102 ret = PTR_ERR(em);
6103 goto unlock_err;
6104 }
Chris Mason46bfbb52010-05-26 11:04:10 -04006105 len = min(len, em->len - (start - em->start));
6106unlock:
Josef Bacik4b46fce2010-05-23 11:00:55 -04006107 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
6108 inode->i_blkbits;
Chris Mason46bfbb52010-05-26 11:04:10 -04006109 bh_result->b_size = len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006110 bh_result->b_bdev = em->bdev;
6111 set_buffer_mapped(bh_result);
Josef Bacikc3473e82012-06-19 10:59:00 -04006112 if (create) {
6113 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
6114 set_buffer_new(bh_result);
6115
6116 /*
6117 * Need to update the i_size under the extent lock so buffered
6118 * readers will get the updated i_size when we unlock.
6119 */
6120 if (start + len > i_size_read(inode))
6121 i_size_write(inode, start + len);
6122 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04006123
Josef Bacikeb838e72012-07-31 16:28:48 -04006124 /*
6125 * In the case of write we need to clear and unlock the entire range,
6126 * in the case of read we need to unlock only the end area that we
6127 * aren't using if there is any left over space.
6128 */
Liu Bo24c03fa2012-08-22 20:10:38 -06006129 if (lockstart < lockend) {
6130 if (create && len < lockend - lockstart) {
6131 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
Liu Bo9e8a4a82012-09-05 19:10:51 -06006132 lockstart + len - 1,
6133 unlock_bits | EXTENT_DEFRAG, 1, 0,
Liu Bo24c03fa2012-08-22 20:10:38 -06006134 &cached_state, GFP_NOFS);
6135 /*
6136 * Beside unlock, we also need to cleanup reserved space
6137 * for the left range by attaching EXTENT_DO_ACCOUNTING.
6138 */
6139 clear_extent_bit(&BTRFS_I(inode)->io_tree,
6140 lockstart + len, lockend,
Liu Bo9e8a4a82012-09-05 19:10:51 -06006141 unlock_bits | EXTENT_DO_ACCOUNTING |
6142 EXTENT_DEFRAG, 1, 0, NULL, GFP_NOFS);
Liu Bo24c03fa2012-08-22 20:10:38 -06006143 } else {
6144 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
6145 lockend, unlock_bits, 1, 0,
6146 &cached_state, GFP_NOFS);
6147 }
6148 } else {
Josef Bacikeb838e72012-07-31 16:28:48 -04006149 free_extent_state(cached_state);
Liu Bo24c03fa2012-08-22 20:10:38 -06006150 }
Josef Bacikeb838e72012-07-31 16:28:48 -04006151
Josef Bacik4b46fce2010-05-23 11:00:55 -04006152 free_extent_map(em);
6153
6154 return 0;
Josef Bacikeb838e72012-07-31 16:28:48 -04006155
6156unlock_err:
6157 if (create)
6158 unlock_bits |= EXTENT_DO_ACCOUNTING;
6159
6160 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6161 unlock_bits, 1, 0, &cached_state, GFP_NOFS);
6162 return ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006163}
6164
6165struct btrfs_dio_private {
6166 struct inode *inode;
6167 u64 logical_offset;
6168 u64 disk_bytenr;
6169 u64 bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006170 void *private;
Miao Xiee65e1532010-11-22 03:04:43 +00006171
6172 /* number of bios pending for this dio */
6173 atomic_t pending_bios;
6174
6175 /* IO errors */
6176 int errors;
6177
6178 struct bio *orig_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006179};
6180
6181static void btrfs_endio_direct_read(struct bio *bio, int err)
6182{
Miao Xiee65e1532010-11-22 03:04:43 +00006183 struct btrfs_dio_private *dip = bio->bi_private;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006184 struct bio_vec *bvec_end = bio->bi_io_vec + bio->bi_vcnt - 1;
6185 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006186 struct inode *inode = dip->inode;
6187 struct btrfs_root *root = BTRFS_I(inode)->root;
6188 u64 start;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006189
6190 start = dip->logical_offset;
6191 do {
6192 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)) {
6193 struct page *page = bvec->bv_page;
6194 char *kaddr;
6195 u32 csum = ~(u32)0;
Josef Bacikc3298612012-08-03 16:49:19 -04006196 u64 private = ~(u32)0;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006197 unsigned long flags;
6198
Josef Bacikc3298612012-08-03 16:49:19 -04006199 if (get_state_private(&BTRFS_I(inode)->io_tree,
6200 start, &private))
6201 goto failed;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006202 local_irq_save(flags);
Cong Wang7ac687d2011-11-25 23:14:28 +08006203 kaddr = kmap_atomic(page);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006204 csum = btrfs_csum_data(root, kaddr + bvec->bv_offset,
6205 csum, bvec->bv_len);
6206 btrfs_csum_final(csum, (char *)&csum);
Cong Wang7ac687d2011-11-25 23:14:28 +08006207 kunmap_atomic(kaddr);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006208 local_irq_restore(flags);
6209
6210 flush_dcache_page(bvec->bv_page);
Josef Bacikc3298612012-08-03 16:49:19 -04006211 if (csum != private) {
6212failed:
Li Zefan33345d012011-04-20 10:31:50 +08006213 printk(KERN_ERR "btrfs csum failed ino %llu off"
Josef Bacik4b46fce2010-05-23 11:00:55 -04006214 " %llu csum %u private %u\n",
Li Zefan33345d012011-04-20 10:31:50 +08006215 (unsigned long long)btrfs_ino(inode),
6216 (unsigned long long)start,
Josef Bacikc3298612012-08-03 16:49:19 -04006217 csum, (unsigned)private);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006218 err = -EIO;
6219 }
6220 }
6221
6222 start += bvec->bv_len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006223 bvec++;
6224 } while (bvec <= bvec_end);
6225
6226 unlock_extent(&BTRFS_I(inode)->io_tree, dip->logical_offset,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006227 dip->logical_offset + dip->bytes - 1);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006228 bio->bi_private = dip->private;
6229
Josef Bacik4b46fce2010-05-23 11:00:55 -04006230 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04006231
6232 /* If we had a csum failure make sure to clear the uptodate flag */
6233 if (err)
6234 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006235 dio_end_io(bio, err);
6236}
6237
6238static void btrfs_endio_direct_write(struct bio *bio, int err)
6239{
6240 struct btrfs_dio_private *dip = bio->bi_private;
6241 struct inode *inode = dip->inode;
6242 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006243 struct btrfs_ordered_extent *ordered = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05006244 u64 ordered_offset = dip->logical_offset;
6245 u64 ordered_bytes = dip->bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006246 int ret;
6247
6248 if (err)
6249 goto out_done;
Chris Mason163cf092010-11-28 19:56:33 -05006250again:
6251 ret = btrfs_dec_test_first_ordered_pending(inode, &ordered,
6252 &ordered_offset,
Josef Bacik5fd02042012-05-02 14:00:54 -04006253 ordered_bytes, !err);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006254 if (!ret)
Chris Mason163cf092010-11-28 19:56:33 -05006255 goto out_test;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006256
Josef Bacik5fd02042012-05-02 14:00:54 -04006257 ordered->work.func = finish_ordered_fn;
6258 ordered->work.flags = 0;
6259 btrfs_queue_worker(&root->fs_info->endio_write_workers,
6260 &ordered->work);
Chris Mason163cf092010-11-28 19:56:33 -05006261out_test:
6262 /*
6263 * our bio might span multiple ordered extents. If we haven't
6264 * completed the accounting for the whole dio, go back and try again
6265 */
6266 if (ordered_offset < dip->logical_offset + dip->bytes) {
6267 ordered_bytes = dip->logical_offset + dip->bytes -
6268 ordered_offset;
Josef Bacik5fd02042012-05-02 14:00:54 -04006269 ordered = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05006270 goto again;
6271 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04006272out_done:
6273 bio->bi_private = dip->private;
6274
Josef Bacik4b46fce2010-05-23 11:00:55 -04006275 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04006276
6277 /* If we had an error make sure to clear the uptodate flag */
6278 if (err)
6279 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006280 dio_end_io(bio, err);
6281}
6282
Chris Masoneaf25d92010-05-25 09:48:28 -04006283static int __btrfs_submit_bio_start_direct_io(struct inode *inode, int rw,
6284 struct bio *bio, int mirror_num,
6285 unsigned long bio_flags, u64 offset)
6286{
6287 int ret;
6288 struct btrfs_root *root = BTRFS_I(inode)->root;
6289 ret = btrfs_csum_one_bio(root, inode, bio, offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006290 BUG_ON(ret); /* -ENOMEM */
Chris Masoneaf25d92010-05-25 09:48:28 -04006291 return 0;
6292}
6293
Miao Xiee65e1532010-11-22 03:04:43 +00006294static void btrfs_end_dio_bio(struct bio *bio, int err)
6295{
6296 struct btrfs_dio_private *dip = bio->bi_private;
6297
6298 if (err) {
Li Zefan33345d012011-04-20 10:31:50 +08006299 printk(KERN_ERR "btrfs direct IO failed ino %llu rw %lu "
Jan Beulich3dd14622010-12-07 14:54:09 +00006300 "sector %#Lx len %u err no %d\n",
Li Zefan33345d012011-04-20 10:31:50 +08006301 (unsigned long long)btrfs_ino(dip->inode), bio->bi_rw,
Jan Beulich3dd14622010-12-07 14:54:09 +00006302 (unsigned long long)bio->bi_sector, bio->bi_size, err);
Miao Xiee65e1532010-11-22 03:04:43 +00006303 dip->errors = 1;
6304
6305 /*
6306 * before atomic variable goto zero, we must make sure
6307 * dip->errors is perceived to be set.
6308 */
6309 smp_mb__before_atomic_dec();
6310 }
6311
6312 /* if there are more bios still pending for this dio, just exit */
6313 if (!atomic_dec_and_test(&dip->pending_bios))
6314 goto out;
6315
6316 if (dip->errors)
6317 bio_io_error(dip->orig_bio);
6318 else {
6319 set_bit(BIO_UPTODATE, &dip->orig_bio->bi_flags);
6320 bio_endio(dip->orig_bio, 0);
6321 }
6322out:
6323 bio_put(bio);
6324}
6325
6326static struct bio *btrfs_dio_bio_alloc(struct block_device *bdev,
6327 u64 first_sector, gfp_t gfp_flags)
6328{
6329 int nr_vecs = bio_get_nr_vecs(bdev);
6330 return btrfs_bio_alloc(bdev, first_sector, nr_vecs, gfp_flags);
6331}
6332
6333static inline int __btrfs_submit_dio_bio(struct bio *bio, struct inode *inode,
6334 int rw, u64 file_offset, int skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04006335 int async_submit)
Miao Xiee65e1532010-11-22 03:04:43 +00006336{
6337 int write = rw & REQ_WRITE;
6338 struct btrfs_root *root = BTRFS_I(inode)->root;
6339 int ret;
6340
Josef Bacikb812ce22012-11-16 13:56:32 -05006341 if (async_submit)
6342 async_submit = !atomic_read(&BTRFS_I(inode)->sync_writers);
6343
Miao Xiee65e1532010-11-22 03:04:43 +00006344 bio_get(bio);
Josef Bacik5fd02042012-05-02 14:00:54 -04006345
6346 if (!write) {
6347 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
6348 if (ret)
6349 goto err;
6350 }
Miao Xiee65e1532010-11-22 03:04:43 +00006351
Josef Bacik1ae39932011-04-06 14:41:34 -04006352 if (skip_sum)
6353 goto map;
6354
6355 if (write && async_submit) {
Miao Xiee65e1532010-11-22 03:04:43 +00006356 ret = btrfs_wq_submit_bio(root->fs_info,
6357 inode, rw, bio, 0, 0,
6358 file_offset,
6359 __btrfs_submit_bio_start_direct_io,
6360 __btrfs_submit_bio_done);
6361 goto err;
Josef Bacik1ae39932011-04-06 14:41:34 -04006362 } else if (write) {
6363 /*
6364 * If we aren't doing async submit, calculate the csum of the
6365 * bio now.
6366 */
6367 ret = btrfs_csum_one_bio(root, inode, bio, file_offset, 1);
6368 if (ret)
6369 goto err;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00006370 } else if (!skip_sum) {
Josef Bacikc3298612012-08-03 16:49:19 -04006371 ret = btrfs_lookup_bio_sums_dio(root, inode, bio, file_offset);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00006372 if (ret)
6373 goto err;
6374 }
Miao Xiee65e1532010-11-22 03:04:43 +00006375
Josef Bacik1ae39932011-04-06 14:41:34 -04006376map:
6377 ret = btrfs_map_bio(root, rw, bio, 0, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00006378err:
6379 bio_put(bio);
6380 return ret;
6381}
6382
6383static int btrfs_submit_direct_hook(int rw, struct btrfs_dio_private *dip,
6384 int skip_sum)
6385{
6386 struct inode *inode = dip->inode;
6387 struct btrfs_root *root = BTRFS_I(inode)->root;
Miao Xiee65e1532010-11-22 03:04:43 +00006388 struct bio *bio;
6389 struct bio *orig_bio = dip->orig_bio;
6390 struct bio_vec *bvec = orig_bio->bi_io_vec;
6391 u64 start_sector = orig_bio->bi_sector;
6392 u64 file_offset = dip->logical_offset;
6393 u64 submit_len = 0;
6394 u64 map_length;
6395 int nr_pages = 0;
Miao Xiee65e1532010-11-22 03:04:43 +00006396 int ret = 0;
Josef Bacik1ae39932011-04-06 14:41:34 -04006397 int async_submit = 0;
Miao Xiee65e1532010-11-22 03:04:43 +00006398
Miao Xiee65e1532010-11-22 03:04:43 +00006399 map_length = orig_bio->bi_size;
Stefan Behrens3ec706c2012-11-05 15:46:42 +01006400 ret = btrfs_map_block(root->fs_info, READ, start_sector << 9,
Miao Xiee65e1532010-11-22 03:04:43 +00006401 &map_length, NULL, 0);
6402 if (ret) {
Josef Bacik64728bb2011-04-25 19:43:52 -04006403 bio_put(orig_bio);
Miao Xiee65e1532010-11-22 03:04:43 +00006404 return -EIO;
6405 }
6406
Josef Bacik02f57c72011-04-06 14:25:44 -04006407 if (map_length >= orig_bio->bi_size) {
6408 bio = orig_bio;
6409 goto submit;
6410 }
6411
Josef Bacik1ae39932011-04-06 14:41:34 -04006412 async_submit = 1;
Josef Bacik02f57c72011-04-06 14:25:44 -04006413 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev, start_sector, GFP_NOFS);
6414 if (!bio)
6415 return -ENOMEM;
6416 bio->bi_private = dip;
6417 bio->bi_end_io = btrfs_end_dio_bio;
6418 atomic_inc(&dip->pending_bios);
6419
Miao Xiee65e1532010-11-22 03:04:43 +00006420 while (bvec <= (orig_bio->bi_io_vec + orig_bio->bi_vcnt - 1)) {
6421 if (unlikely(map_length < submit_len + bvec->bv_len ||
6422 bio_add_page(bio, bvec->bv_page, bvec->bv_len,
6423 bvec->bv_offset) < bvec->bv_len)) {
6424 /*
6425 * inc the count before we submit the bio so
6426 * we know the end IO handler won't happen before
6427 * we inc the count. Otherwise, the dip might get freed
6428 * before we're done setting it up
6429 */
6430 atomic_inc(&dip->pending_bios);
6431 ret = __btrfs_submit_dio_bio(bio, inode, rw,
6432 file_offset, skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04006433 async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00006434 if (ret) {
6435 bio_put(bio);
6436 atomic_dec(&dip->pending_bios);
6437 goto out_err;
6438 }
6439
Miao Xiee65e1532010-11-22 03:04:43 +00006440 start_sector += submit_len >> 9;
6441 file_offset += submit_len;
6442
6443 submit_len = 0;
6444 nr_pages = 0;
6445
6446 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev,
6447 start_sector, GFP_NOFS);
6448 if (!bio)
6449 goto out_err;
6450 bio->bi_private = dip;
6451 bio->bi_end_io = btrfs_end_dio_bio;
6452
6453 map_length = orig_bio->bi_size;
Stefan Behrens3ec706c2012-11-05 15:46:42 +01006454 ret = btrfs_map_block(root->fs_info, READ,
6455 start_sector << 9,
Miao Xiee65e1532010-11-22 03:04:43 +00006456 &map_length, NULL, 0);
6457 if (ret) {
6458 bio_put(bio);
6459 goto out_err;
6460 }
6461 } else {
6462 submit_len += bvec->bv_len;
6463 nr_pages ++;
6464 bvec++;
6465 }
6466 }
6467
Josef Bacik02f57c72011-04-06 14:25:44 -04006468submit:
Miao Xiee65e1532010-11-22 03:04:43 +00006469 ret = __btrfs_submit_dio_bio(bio, inode, rw, file_offset, skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04006470 async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00006471 if (!ret)
6472 return 0;
6473
6474 bio_put(bio);
6475out_err:
6476 dip->errors = 1;
6477 /*
6478 * before atomic variable goto zero, we must
6479 * make sure dip->errors is perceived to be set.
6480 */
6481 smp_mb__before_atomic_dec();
6482 if (atomic_dec_and_test(&dip->pending_bios))
6483 bio_io_error(dip->orig_bio);
6484
6485 /* bio_end_io() will handle error, so we needn't return it */
6486 return 0;
6487}
6488
Josef Bacik4b46fce2010-05-23 11:00:55 -04006489static void btrfs_submit_direct(int rw, struct bio *bio, struct inode *inode,
6490 loff_t file_offset)
6491{
6492 struct btrfs_root *root = BTRFS_I(inode)->root;
6493 struct btrfs_dio_private *dip;
6494 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006495 int skip_sum;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02006496 int write = rw & REQ_WRITE;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006497 int ret = 0;
6498
6499 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
6500
6501 dip = kmalloc(sizeof(*dip), GFP_NOFS);
6502 if (!dip) {
6503 ret = -ENOMEM;
6504 goto free_ordered;
6505 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04006506
6507 dip->private = bio->bi_private;
6508 dip->inode = inode;
6509 dip->logical_offset = file_offset;
6510
Josef Bacik4b46fce2010-05-23 11:00:55 -04006511 dip->bytes = 0;
6512 do {
6513 dip->bytes += bvec->bv_len;
6514 bvec++;
6515 } while (bvec <= (bio->bi_io_vec + bio->bi_vcnt - 1));
6516
Chris Mason46bfbb52010-05-26 11:04:10 -04006517 dip->disk_bytenr = (u64)bio->bi_sector << 9;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006518 bio->bi_private = dip;
Miao Xiee65e1532010-11-22 03:04:43 +00006519 dip->errors = 0;
6520 dip->orig_bio = bio;
6521 atomic_set(&dip->pending_bios, 0);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006522
6523 if (write)
6524 bio->bi_end_io = btrfs_endio_direct_write;
6525 else
6526 bio->bi_end_io = btrfs_endio_direct_read;
6527
Miao Xiee65e1532010-11-22 03:04:43 +00006528 ret = btrfs_submit_direct_hook(rw, dip, skip_sum);
6529 if (!ret)
Chris Masoneaf25d92010-05-25 09:48:28 -04006530 return;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006531free_ordered:
6532 /*
6533 * If this is a write, we need to clean up the reserved space and kill
6534 * the ordered extent.
6535 */
6536 if (write) {
6537 struct btrfs_ordered_extent *ordered;
Josef Bacik955256f2010-11-19 09:41:10 -05006538 ordered = btrfs_lookup_ordered_extent(inode, file_offset);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006539 if (!test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags) &&
6540 !test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags))
6541 btrfs_free_reserved_extent(root, ordered->start,
6542 ordered->disk_len);
6543 btrfs_put_ordered_extent(ordered);
6544 btrfs_put_ordered_extent(ordered);
6545 }
6546 bio_endio(bio, ret);
6547}
6548
Chris Mason5a5f79b2010-05-26 21:33:37 -04006549static ssize_t check_direct_IO(struct btrfs_root *root, int rw, struct kiocb *iocb,
6550 const struct iovec *iov, loff_t offset,
6551 unsigned long nr_segs)
6552{
6553 int seg;
Josef Bacika1b75f72011-04-08 15:51:18 +00006554 int i;
Chris Mason5a5f79b2010-05-26 21:33:37 -04006555 size_t size;
6556 unsigned long addr;
6557 unsigned blocksize_mask = root->sectorsize - 1;
6558 ssize_t retval = -EINVAL;
6559 loff_t end = offset;
6560
6561 if (offset & blocksize_mask)
6562 goto out;
6563
6564 /* Check the memory alignment. Blocks cannot straddle pages */
6565 for (seg = 0; seg < nr_segs; seg++) {
6566 addr = (unsigned long)iov[seg].iov_base;
6567 size = iov[seg].iov_len;
6568 end += size;
Josef Bacika1b75f72011-04-08 15:51:18 +00006569 if ((addr & blocksize_mask) || (size & blocksize_mask))
Chris Mason5a5f79b2010-05-26 21:33:37 -04006570 goto out;
Josef Bacika1b75f72011-04-08 15:51:18 +00006571
6572 /* If this is a write we don't need to check anymore */
6573 if (rw & WRITE)
6574 continue;
6575
6576 /*
6577 * Check to make sure we don't have duplicate iov_base's in this
6578 * iovec, if so return EINVAL, otherwise we'll get csum errors
6579 * when reading back.
6580 */
6581 for (i = seg + 1; i < nr_segs; i++) {
6582 if (iov[seg].iov_base == iov[i].iov_base)
6583 goto out;
6584 }
Chris Mason5a5f79b2010-05-26 21:33:37 -04006585 }
6586 retval = 0;
6587out:
6588 return retval;
6589}
Josef Bacikeb838e72012-07-31 16:28:48 -04006590
Chris Mason16432982008-04-10 10:23:21 -04006591static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
6592 const struct iovec *iov, loff_t offset,
6593 unsigned long nr_segs)
6594{
Josef Bacik4b46fce2010-05-23 11:00:55 -04006595 struct file *file = iocb->ki_filp;
6596 struct inode *inode = file->f_mapping->host;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006597
Chris Mason5a5f79b2010-05-26 21:33:37 -04006598 if (check_direct_IO(BTRFS_I(inode)->root, rw, iocb, iov,
Josef Bacikeb838e72012-07-31 16:28:48 -04006599 offset, nr_segs))
Chris Mason5a5f79b2010-05-26 21:33:37 -04006600 return 0;
Chris Mason5a5f79b2010-05-26 21:33:37 -04006601
Josef Bacikeb838e72012-07-31 16:28:48 -04006602 return __blockdev_direct_IO(rw, iocb, inode,
Chris Mason5a5f79b2010-05-26 21:33:37 -04006603 BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev,
6604 iov, offset, nr_segs, btrfs_get_blocks_direct, NULL,
6605 btrfs_submit_direct, 0);
Chris Mason16432982008-04-10 10:23:21 -04006606}
6607
Tsutomu Itoh05dadc02012-11-29 05:08:26 +00006608#define BTRFS_FIEMAP_FLAGS (FIEMAP_FLAG_SYNC)
6609
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006610static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
6611 __u64 start, __u64 len)
6612{
Tsutomu Itoh05dadc02012-11-29 05:08:26 +00006613 int ret;
6614
6615 ret = fiemap_check_flags(fieinfo, BTRFS_FIEMAP_FLAGS);
6616 if (ret)
6617 return ret;
6618
Chris Masonec29ed52011-02-23 16:23:20 -05006619 return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent_fiemap);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006620}
6621
Chris Mason9ebefb182007-06-15 13:50:00 -04006622int btrfs_readpage(struct file *file, struct page *page)
6623{
Chris Masond1310b22008-01-24 16:13:08 -05006624 struct extent_io_tree *tree;
6625 tree = &BTRFS_I(page->mapping->host)->io_tree;
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02006626 return extent_read_full_page(tree, page, btrfs_get_extent, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04006627}
Chris Mason1832a6d2007-12-21 16:27:21 -05006628
Chris Mason39279cc2007-06-12 06:35:45 -04006629static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
6630{
Chris Masond1310b22008-01-24 16:13:08 -05006631 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04006632
6633
6634 if (current->flags & PF_MEMALLOC) {
6635 redirty_page_for_writepage(wbc, page);
6636 unlock_page(page);
6637 return 0;
6638 }
Chris Masond1310b22008-01-24 16:13:08 -05006639 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04006640 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
6641}
Chris Mason39279cc2007-06-12 06:35:45 -04006642
Chris Masonf4219502008-07-22 11:18:09 -04006643int btrfs_writepages(struct address_space *mapping,
6644 struct writeback_control *wbc)
Chris Masonb293f022007-11-01 19:45:34 -04006645{
Chris Masond1310b22008-01-24 16:13:08 -05006646 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05006647
Chris Masond1310b22008-01-24 16:13:08 -05006648 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04006649 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
6650}
6651
Chris Mason3ab2fb52007-11-08 10:59:22 -05006652static int
6653btrfs_readpages(struct file *file, struct address_space *mapping,
6654 struct list_head *pages, unsigned nr_pages)
6655{
Chris Masond1310b22008-01-24 16:13:08 -05006656 struct extent_io_tree *tree;
6657 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05006658 return extent_readpages(tree, mapping, pages, nr_pages,
6659 btrfs_get_extent);
6660}
Chris Masone6dcd2d2008-07-17 12:53:50 -04006661static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04006662{
Chris Masond1310b22008-01-24 16:13:08 -05006663 struct extent_io_tree *tree;
6664 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04006665 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006666
Chris Masond1310b22008-01-24 16:13:08 -05006667 tree = &BTRFS_I(page->mapping->host)->io_tree;
6668 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05006669 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04006670 if (ret == 1) {
6671 ClearPagePrivate(page);
6672 set_page_private(page, 0);
6673 page_cache_release(page);
6674 }
6675 return ret;
6676}
Chris Mason39279cc2007-06-12 06:35:45 -04006677
Chris Masone6dcd2d2008-07-17 12:53:50 -04006678static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
6679{
Chris Mason98509cf2008-09-11 15:51:43 -04006680 if (PageWriteback(page) || PageDirty(page))
6681 return 0;
Yan Zhengb335b002009-02-12 10:06:04 -05006682 return __btrfs_releasepage(page, gfp_flags & GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006683}
6684
Chris Masona52d9a82007-08-27 16:49:44 -04006685static void btrfs_invalidatepage(struct page *page, unsigned long offset)
6686{
Josef Bacik5fd02042012-05-02 14:00:54 -04006687 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05006688 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006689 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006690 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006691 u64 page_start = page_offset(page);
6692 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006693
Chris Mason8b62b722009-09-02 16:53:46 -04006694 /*
6695 * we have the page locked, so new writeback can't start,
6696 * and the dirty bit won't be cleared while we are here.
6697 *
6698 * Wait for IO on this page so that we can safely clear
6699 * the PagePrivate2 bit and do ordered accounting
6700 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006701 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04006702
Josef Bacik5fd02042012-05-02 14:00:54 -04006703 tree = &BTRFS_I(inode)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006704 if (offset) {
6705 btrfs_releasepage(page, GFP_NOFS);
6706 return;
6707 }
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006708 lock_extent_bits(tree, page_start, page_end, 0, &cached_state);
Josef Bacik5fd02042012-05-02 14:00:54 -04006709 ordered = btrfs_lookup_ordered_extent(inode,
Chris Masone6dcd2d2008-07-17 12:53:50 -04006710 page_offset(page));
6711 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04006712 /*
6713 * IO on this page will never be started, so we need
6714 * to account for any ordered extents now
6715 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006716 clear_extent_bit(tree, page_start, page_end,
6717 EXTENT_DIRTY | EXTENT_DELALLOC |
Liu Bo9e8a4a82012-09-05 19:10:51 -06006718 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING |
6719 EXTENT_DEFRAG, 1, 0, &cached_state, GFP_NOFS);
Chris Mason8b62b722009-09-02 16:53:46 -04006720 /*
6721 * whoever cleared the private bit is responsible
6722 * for the finish_ordered_io
6723 */
Josef Bacik5fd02042012-05-02 14:00:54 -04006724 if (TestClearPagePrivate2(page) &&
6725 btrfs_dec_test_ordered_pending(inode, &ordered, page_start,
6726 PAGE_CACHE_SIZE, 1)) {
6727 btrfs_finish_ordered_io(ordered);
Chris Mason8b62b722009-09-02 16:53:46 -04006728 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006729 btrfs_put_ordered_extent(ordered);
Josef Bacik2ac55d42010-02-03 19:33:23 +00006730 cached_state = NULL;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006731 lock_extent_bits(tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006732 }
6733 clear_extent_bit(tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04006734 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
Liu Bo9e8a4a82012-09-05 19:10:51 -06006735 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 1, 1,
6736 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006737 __btrfs_releasepage(page, GFP_NOFS);
6738
Chris Mason4a096752008-07-21 10:29:44 -04006739 ClearPageChecked(page);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04006740 if (PagePrivate(page)) {
Chris Mason9ad6b7b2008-04-18 16:11:30 -04006741 ClearPagePrivate(page);
6742 set_page_private(page, 0);
6743 page_cache_release(page);
6744 }
Chris Mason39279cc2007-06-12 06:35:45 -04006745}
6746
Chris Mason9ebefb182007-06-15 13:50:00 -04006747/*
6748 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
6749 * called from a page fault handler when a page is first dirtied. Hence we must
6750 * be careful to check for EOF conditions here. We set the page up correctly
6751 * for a written page which means we get ENOSPC checking when writing into
6752 * holes and correct delalloc and unwritten extent mapping on filesystems that
6753 * support these features.
6754 *
6755 * We are not allowed to take the i_mutex here so we have to play games to
6756 * protect against truncate races as the page could now be beyond EOF. Because
6757 * vmtruncate() writes the inode size before removing pages, once we have the
6758 * page lock we can determine safely if the page is beyond EOF. If it is not
6759 * beyond EOF, then the page is guaranteed safe against truncation until we
6760 * unlock the page.
6761 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07006762int btrfs_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04006763{
Nick Pigginc2ec1752009-03-31 15:23:21 -07006764 struct page *page = vmf->page;
Chris Mason6da6aba2007-12-18 16:15:09 -05006765 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05006766 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006767 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
6768 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006769 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006770 char *kaddr;
6771 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04006772 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05006773 int ret;
Chris Mason9998eb72012-01-25 13:47:40 -05006774 int reserved = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04006775 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006776 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04006777
Jan Karab2b5ef52012-06-12 16:20:45 +02006778 sb_start_pagefault(inode->i_sb);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006779 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Chris Mason9998eb72012-01-25 13:47:40 -05006780 if (!ret) {
Josef Bacike41f9412012-03-26 09:46:47 -04006781 ret = file_update_time(vma->vm_file);
Chris Mason9998eb72012-01-25 13:47:40 -05006782 reserved = 1;
6783 }
Nick Piggin56a76f82009-03-31 15:23:23 -07006784 if (ret) {
6785 if (ret == -ENOMEM)
6786 ret = VM_FAULT_OOM;
6787 else /* -ENOSPC, -EIO, etc */
6788 ret = VM_FAULT_SIGBUS;
Chris Mason9998eb72012-01-25 13:47:40 -05006789 if (reserved)
6790 goto out;
6791 goto out_noreserve;
Nick Piggin56a76f82009-03-31 15:23:23 -07006792 }
Chris Mason1832a6d2007-12-21 16:27:21 -05006793
Nick Piggin56a76f82009-03-31 15:23:23 -07006794 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006795again:
Chris Mason9ebefb182007-06-15 13:50:00 -04006796 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04006797 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006798 page_start = page_offset(page);
6799 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006800
Chris Mason9ebefb182007-06-15 13:50:00 -04006801 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04006802 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04006803 /* page got truncated out from underneath us */
6804 goto out_unlock;
6805 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006806 wait_on_page_writeback(page);
6807
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006808 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006809 set_page_extent_mapped(page);
6810
Chris Masoneb84ae02008-07-17 13:53:27 -04006811 /*
6812 * we can't set the delalloc bits if there are pending ordered
6813 * extents. Drop our locks and wait for them to finish
6814 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006815 ordered = btrfs_lookup_ordered_extent(inode, page_start);
6816 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006817 unlock_extent_cached(io_tree, page_start, page_end,
6818 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006819 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04006820 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006821 btrfs_put_ordered_extent(ordered);
6822 goto again;
6823 }
6824
Josef Bacikfbf19082009-10-01 17:10:23 -04006825 /*
6826 * XXX - page_mkwrite gets called every time the page is dirtied, even
6827 * if it was already dirty, so for space accounting reasons we need to
6828 * clear any delalloc bits for the range we are fixing to save. There
6829 * is probably a better way to do this, but for now keep consistent with
6830 * prepare_pages in the normal write path.
6831 */
Josef Bacik2ac55d42010-02-03 19:33:23 +00006832 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Liu Bo9e8a4a82012-09-05 19:10:51 -06006833 EXTENT_DIRTY | EXTENT_DELALLOC |
6834 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
Josef Bacik2ac55d42010-02-03 19:33:23 +00006835 0, 0, &cached_state, GFP_NOFS);
Josef Bacikfbf19082009-10-01 17:10:23 -04006836
Josef Bacik2ac55d42010-02-03 19:33:23 +00006837 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
6838 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006839 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006840 unlock_extent_cached(io_tree, page_start, page_end,
6841 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006842 ret = VM_FAULT_SIGBUS;
6843 goto out_unlock;
6844 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006845 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04006846
6847 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04006848 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04006849 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04006850 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04006851 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04006852
Chris Masone6dcd2d2008-07-17 12:53:50 -04006853 if (zero_start != PAGE_CACHE_SIZE) {
6854 kaddr = kmap(page);
6855 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
6856 flush_dcache_page(page);
6857 kunmap(page);
6858 }
Chris Mason247e7432008-07-17 12:53:51 -04006859 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006860 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04006861 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04006862
Chris Mason257c62e2009-10-13 13:21:08 -04006863 BTRFS_I(inode)->last_trans = root->fs_info->generation;
6864 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
Liu Bo46d8bc32012-08-29 01:07:55 -06006865 BTRFS_I(inode)->last_log_commit = BTRFS_I(inode)->root->last_log_commit;
Chris Mason257c62e2009-10-13 13:21:08 -04006866
Josef Bacik2ac55d42010-02-03 19:33:23 +00006867 unlock_extent_cached(io_tree, page_start, page_end, &cached_state, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04006868
6869out_unlock:
Jan Karab2b5ef52012-06-12 16:20:45 +02006870 if (!ret) {
6871 sb_end_pagefault(inode->i_sb);
Chris Mason50a9b212009-09-11 12:33:12 -04006872 return VM_FAULT_LOCKED;
Jan Karab2b5ef52012-06-12 16:20:45 +02006873 }
Chris Mason9ebefb182007-06-15 13:50:00 -04006874 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05006875out:
Josef Bacikec39e182012-01-12 19:10:12 -05006876 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason9998eb72012-01-25 13:47:40 -05006877out_noreserve:
Jan Karab2b5ef52012-06-12 16:20:45 +02006878 sb_end_pagefault(inode->i_sb);
Chris Mason9ebefb182007-06-15 13:50:00 -04006879 return ret;
6880}
6881
Josef Bacika41ad392011-01-31 15:30:16 -05006882static int btrfs_truncate(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04006883{
6884 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikfcb80c22011-05-03 10:40:22 -04006885 struct btrfs_block_rsv *rsv;
Chris Mason39279cc2007-06-12 06:35:45 -04006886 int ret;
Josef Bacik3893e332011-01-31 16:03:11 -05006887 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006888 struct btrfs_trans_handle *trans;
Chris Masondbe674a2008-07-17 12:54:05 -04006889 u64 mask = root->sectorsize - 1;
Josef Bacik07127182011-08-19 10:29:59 -04006890 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04006891
Josef Bacik2aaa6652012-08-29 14:27:18 -04006892 ret = btrfs_truncate_page(inode, inode->i_size, 0, 0);
Josef Bacik5d5e1032009-10-13 16:46:49 -04006893 if (ret)
Josef Bacika41ad392011-01-31 15:30:16 -05006894 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00006895
Chris Mason4a096752008-07-21 10:29:44 -04006896 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
Yan, Zheng80825102009-11-12 09:35:36 +00006897 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006898
Josef Bacikfcb80c22011-05-03 10:40:22 -04006899 /*
6900 * Yes ladies and gentelment, this is indeed ugly. The fact is we have
6901 * 3 things going on here
6902 *
6903 * 1) We need to reserve space for our orphan item and the space to
6904 * delete our orphan item. Lord knows we don't want to have a dangling
6905 * orphan item because we didn't reserve space to remove it.
6906 *
6907 * 2) We need to reserve space to update our inode.
6908 *
6909 * 3) We need to have something to cache all the space that is going to
6910 * be free'd up by the truncate operation, but also have some slack
6911 * space reserved in case it uses space during the truncate (thank you
6912 * very much snapshotting).
6913 *
6914 * And we need these to all be seperate. The fact is we can use alot of
6915 * space doing the truncate, and we have no earthly idea how much space
6916 * we will use, so we need the truncate reservation to be seperate so it
6917 * doesn't end up using space reserved for updating the inode or
6918 * removing the orphan item. We also need to be able to stop the
6919 * transaction and start a new one, which means we need to be able to
6920 * update the inode several times, and we have no idea of knowing how
6921 * many times that will be, so we can't just reserve 1 item for the
6922 * entirety of the opration, so that has to be done seperately as well.
6923 * Then there is the orphan item, which does indeed need to be held on
6924 * to for the whole operation, and we need nobody to touch this reserved
6925 * space except the orphan code.
6926 *
6927 * So that leaves us with
6928 *
6929 * 1) root->orphan_block_rsv - for the orphan deletion.
6930 * 2) rsv - for the truncate reservation, which we will steal from the
6931 * transaction reservation.
6932 * 3) fs_info->trans_block_rsv - this will have 1 items worth left for
6933 * updating the inode.
6934 */
Miao Xie66d8f3d2012-09-06 04:02:28 -06006935 rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006936 if (!rsv)
6937 return -ENOMEM;
Josef Bacik4a338542011-08-29 11:01:31 -04006938 rsv->size = min_size;
Josef Bacikca7e70f2012-08-27 17:48:15 -04006939 rsv->failfast = 1;
Josef Bacikf0cd8462011-03-04 14:37:08 -05006940
Josef Bacik907cbce2011-08-08 13:46:15 -04006941 /*
Josef Bacik07127182011-08-19 10:29:59 -04006942 * 1 for the truncate slack space
Josef Bacik907cbce2011-08-08 13:46:15 -04006943 * 1 for the orphan item we're going to add
6944 * 1 for the orphan item deletion
6945 * 1 for updating the inode.
6946 */
Josef Bacikfcb80c22011-05-03 10:40:22 -04006947 trans = btrfs_start_transaction(root, 4);
6948 if (IS_ERR(trans)) {
6949 err = PTR_ERR(trans);
6950 goto out;
6951 }
Josef Bacikf0cd8462011-03-04 14:37:08 -05006952
Josef Bacik907cbce2011-08-08 13:46:15 -04006953 /* Migrate the slack space for the truncate to our reserve */
6954 ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv, rsv,
6955 min_size);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006956 BUG_ON(ret);
Josef Bacikf0cd8462011-03-04 14:37:08 -05006957
6958 ret = btrfs_orphan_add(trans, inode);
6959 if (ret) {
6960 btrfs_end_transaction(trans, root);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006961 goto out;
Josef Bacikf0cd8462011-03-04 14:37:08 -05006962 }
6963
Chris Mason5a3f23d2009-03-31 13:27:11 -04006964 /*
6965 * setattr is responsible for setting the ordered_data_close flag,
6966 * but that is only tested during the last file release. That
6967 * could happen well after the next commit, leaving a great big
6968 * window where new writes may get lost if someone chooses to write
6969 * to this file after truncating to zero
6970 *
6971 * The inode doesn't have any dirty data here, and so if we commit
6972 * this is a noop. If someone immediately starts writing to the inode
6973 * it is very likely we'll catch some of their writes in this
6974 * transaction, and the commit will find this file on the ordered
6975 * data list with good things to send down.
6976 *
6977 * This is a best effort solution, there is still a window where
6978 * using truncate to replace the contents of the file will
6979 * end up with a zero length file after a crash.
6980 */
Josef Bacik72ac3c02012-05-23 14:13:11 -04006981 if (inode->i_size == 0 && test_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
6982 &BTRFS_I(inode)->runtime_flags))
Chris Mason5a3f23d2009-03-31 13:27:11 -04006983 btrfs_add_ordered_operation(trans, root, inode);
6984
Josef Bacik5dc562c2012-08-17 13:14:17 -04006985 /*
6986 * So if we truncate and then write and fsync we normally would just
6987 * write the extents that changed, which is a problem if we need to
6988 * first truncate that entire inode. So set this flag so we write out
6989 * all of the extents in the inode to the sync log so we're completely
6990 * safe.
6991 */
6992 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
Josef Bacikca7e70f2012-08-27 17:48:15 -04006993 trans->block_rsv = rsv;
Josef Bacik5dc562c2012-08-17 13:14:17 -04006994
Yan, Zheng80825102009-11-12 09:35:36 +00006995 while (1) {
6996 ret = btrfs_truncate_inode_items(trans, root, inode,
6997 inode->i_size,
6998 BTRFS_EXTENT_DATA_KEY);
Josef Bacikca7e70f2012-08-27 17:48:15 -04006999 if (ret != -ENOSPC) {
Josef Bacik3893e332011-01-31 16:03:11 -05007000 err = ret;
Yan, Zheng80825102009-11-12 09:35:36 +00007001 break;
Josef Bacik3893e332011-01-31 16:03:11 -05007002 }
Chris Mason39279cc2007-06-12 06:35:45 -04007003
Josef Bacikfcb80c22011-05-03 10:40:22 -04007004 trans->block_rsv = &root->fs_info->trans_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00007005 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05007006 if (ret) {
7007 err = ret;
7008 break;
7009 }
Josef Bacikca7e70f2012-08-27 17:48:15 -04007010
Yan, Zheng80825102009-11-12 09:35:36 +00007011 btrfs_end_transaction(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00007012 btrfs_btree_balance_dirty(root);
Josef Bacikca7e70f2012-08-27 17:48:15 -04007013
7014 trans = btrfs_start_transaction(root, 2);
7015 if (IS_ERR(trans)) {
7016 ret = err = PTR_ERR(trans);
7017 trans = NULL;
7018 break;
7019 }
7020
7021 ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv,
7022 rsv, min_size);
7023 BUG_ON(ret); /* shouldn't happen */
7024 trans->block_rsv = rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00007025 }
7026
7027 if (ret == 0 && inode->i_nlink > 0) {
Josef Bacikfcb80c22011-05-03 10:40:22 -04007028 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00007029 ret = btrfs_orphan_del(trans, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05007030 if (ret)
7031 err = ret;
Josef Bacikded5db92011-03-04 14:09:46 -05007032 } else if (ret && inode->i_nlink > 0) {
7033 /*
7034 * Failed to do the truncate, remove us from the in memory
7035 * orphan list.
7036 */
7037 ret = btrfs_orphan_del(NULL, inode);
Yan, Zheng80825102009-11-12 09:35:36 +00007038 }
7039
Chris Mason917c16b2011-11-08 14:49:59 -05007040 if (trans) {
7041 trans->block_rsv = &root->fs_info->trans_block_rsv;
7042 ret = btrfs_update_inode(trans, root, inode);
7043 if (ret && !err)
7044 err = ret;
Josef Bacik7b128762008-07-24 12:17:14 -04007045
Josef Bacik7ad85bb2012-01-12 19:10:12 -05007046 ret = btrfs_end_transaction(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00007047 btrfs_btree_balance_dirty(root);
Chris Mason917c16b2011-11-08 14:49:59 -05007048 }
Josef Bacikfcb80c22011-05-03 10:40:22 -04007049
7050out:
7051 btrfs_free_block_rsv(root, rsv);
7052
Josef Bacik3893e332011-01-31 16:03:11 -05007053 if (ret && !err)
7054 err = ret;
Josef Bacika41ad392011-01-31 15:30:16 -05007055
Josef Bacik3893e332011-01-31 16:03:11 -05007056 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04007057}
7058
Sven Wegener3b963622008-06-09 21:57:42 -04007059/*
Chris Masond352ac62008-09-29 15:18:18 -04007060 * create a new subvolume directory/inode (helper for the ioctl).
7061 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05007062int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Josef Bacikd82a6f12011-05-11 15:26:06 -04007063 struct btrfs_root *new_root, u64 new_dirid)
Chris Mason39279cc2007-06-12 06:35:45 -04007064{
Chris Mason39279cc2007-06-12 06:35:45 -04007065 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04007066 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04007067 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007068
Florian Albrechtskirchinger12fc9d02012-02-10 22:15:54 +01007069 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2,
7070 new_dirid, new_dirid,
7071 S_IFDIR | (~current_umask() & S_IRWXUGO),
7072 &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04007073 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04007074 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007075 inode->i_op = &btrfs_dir_inode_operations;
7076 inode->i_fop = &btrfs_dir_file_operations;
7077
Miklos Szeredibfe86842011-10-28 14:13:29 +02007078 set_nlink(inode, 1);
Chris Masondbe674a2008-07-17 12:54:05 -04007079 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04007080
Yan, Zheng76dda932009-09-21 16:00:26 -04007081 err = btrfs_update_inode(trans, new_root, inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04007082
Yan, Zheng76dda932009-09-21 16:00:26 -04007083 iput(inode);
Mark Fashehce598972011-07-26 11:32:23 -07007084 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04007085}
7086
Chris Mason39279cc2007-06-12 06:35:45 -04007087struct inode *btrfs_alloc_inode(struct super_block *sb)
7088{
7089 struct btrfs_inode *ei;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007090 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04007091
7092 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
7093 if (!ei)
7094 return NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007095
7096 ei->root = NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007097 ei->generation = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04007098 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04007099 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04007100 ei->logged_trans = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007101 ei->delalloc_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007102 ei->disk_i_size = 0;
7103 ei->flags = 0;
Josef Bacik7709cde2011-08-04 10:25:02 -04007104 ei->csum_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007105 ei->index_cnt = (u64)-1;
7106 ei->last_unlink_trans = 0;
Liu Bo46d8bc32012-08-29 01:07:55 -06007107 ei->last_log_commit = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007108
Josef Bacik9e0baf62011-07-15 15:16:44 +00007109 spin_lock_init(&ei->lock);
7110 ei->outstanding_extents = 0;
7111 ei->reserved_extents = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007112
Josef Bacik72ac3c02012-05-23 14:13:11 -04007113 ei->runtime_flags = 0;
Li Zefan261507a02010-12-17 14:21:50 +08007114 ei->force_compress = BTRFS_COMPRESS_NONE;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007115
Miao Xie16cdcec2011-04-22 18:12:22 +08007116 ei->delayed_node = NULL;
7117
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007118 inode = &ei->vfs_inode;
David Sterbaa8067e02011-04-21 00:34:43 +02007119 extent_map_tree_init(&ei->extent_tree);
David Sterbaf993c882011-04-20 23:35:57 +02007120 extent_io_tree_init(&ei->io_tree, &inode->i_data);
7121 extent_io_tree_init(&ei->io_failure_tree, &inode->i_data);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04007122 ei->io_tree.track_uptodate = 1;
7123 ei->io_failure_tree.track_uptodate = 1;
Josef Bacikb812ce22012-11-16 13:56:32 -05007124 atomic_set(&ei->sync_writers, 0);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007125 mutex_init(&ei->log_mutex);
Josef Bacikf2486792012-01-13 12:09:22 -05007126 mutex_init(&ei->delalloc_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007127 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007128 INIT_LIST_HEAD(&ei->delalloc_inodes);
Chris Mason5a3f23d2009-03-31 13:27:11 -04007129 INIT_LIST_HEAD(&ei->ordered_operations);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007130 RB_CLEAR_NODE(&ei->rb_node);
7131
7132 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04007133}
7134
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11007135static void btrfs_i_callback(struct rcu_head *head)
7136{
7137 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11007138 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
7139}
7140
Chris Mason39279cc2007-06-12 06:35:45 -04007141void btrfs_destroy_inode(struct inode *inode)
7142{
Chris Masone6dcd2d2008-07-17 12:53:50 -04007143 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04007144 struct btrfs_root *root = BTRFS_I(inode)->root;
7145
Al Virob3d9b7a2012-06-09 13:51:19 -04007146 WARN_ON(!hlist_empty(&inode->i_dentry));
Chris Mason39279cc2007-06-12 06:35:45 -04007147 WARN_ON(inode->i_data.nrpages);
Josef Bacik9e0baf62011-07-15 15:16:44 +00007148 WARN_ON(BTRFS_I(inode)->outstanding_extents);
7149 WARN_ON(BTRFS_I(inode)->reserved_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04007150 WARN_ON(BTRFS_I(inode)->delalloc_bytes);
7151 WARN_ON(BTRFS_I(inode)->csum_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -04007152
Chris Mason5a3f23d2009-03-31 13:27:11 -04007153 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05007154 * This can happen where we create an inode, but somebody else also
7155 * created the same inode and we need to destroy the one we already
7156 * created.
7157 */
7158 if (!root)
7159 goto free;
7160
7161 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04007162 * Make sure we're properly removed from the ordered operation
7163 * lists.
7164 */
7165 smp_mb();
7166 if (!list_empty(&BTRFS_I(inode)->ordered_operations)) {
7167 spin_lock(&root->fs_info->ordered_extent_lock);
7168 list_del_init(&BTRFS_I(inode)->ordered_operations);
7169 spin_unlock(&root->fs_info->ordered_extent_lock);
7170 }
7171
Josef Bacik8a35d952012-05-23 14:26:42 -04007172 if (test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
7173 &BTRFS_I(inode)->runtime_flags)) {
Li Zefan33345d012011-04-20 10:31:50 +08007174 printk(KERN_INFO "BTRFS: inode %llu still on the orphan list\n",
7175 (unsigned long long)btrfs_ino(inode));
Josef Bacik8a35d952012-05-23 14:26:42 -04007176 atomic_dec(&root->orphan_inodes);
Josef Bacik7b128762008-07-24 12:17:14 -04007177 }
Josef Bacik7b128762008-07-24 12:17:14 -04007178
Chris Masond3977122009-01-05 21:25:51 -05007179 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04007180 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
7181 if (!ordered)
7182 break;
7183 else {
Chris Masond3977122009-01-05 21:25:51 -05007184 printk(KERN_ERR "btrfs found ordered "
7185 "extent %llu %llu on inode cleanup\n",
7186 (unsigned long long)ordered->file_offset,
7187 (unsigned long long)ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007188 btrfs_remove_ordered_extent(inode, ordered);
7189 btrfs_put_ordered_extent(ordered);
7190 btrfs_put_ordered_extent(ordered);
7191 }
7192 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007193 inode_tree_del(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007194 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
Josef Bacika6dbd422009-11-11 15:53:34 -05007195free:
Miao Xie16cdcec2011-04-22 18:12:22 +08007196 btrfs_remove_delayed_node(inode);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11007197 call_rcu(&inode->i_rcu, btrfs_i_callback);
Chris Mason39279cc2007-06-12 06:35:45 -04007198}
7199
Al Viro45321ac2010-06-07 13:43:19 -04007200int btrfs_drop_inode(struct inode *inode)
Yan, Zheng76dda932009-09-21 16:00:26 -04007201{
7202 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro45321ac2010-06-07 13:43:19 -04007203
Josef Bacik0af3d002010-06-21 14:48:16 -04007204 if (btrfs_root_refs(&root->root_item) == 0 &&
Liu Bo83eea1f2012-07-10 05:28:39 -06007205 !btrfs_is_free_space_inode(inode))
Al Viro45321ac2010-06-07 13:43:19 -04007206 return 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04007207 else
Al Viro45321ac2010-06-07 13:43:19 -04007208 return generic_drop_inode(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04007209}
7210
Sven Wegener0ee0fda2008-07-30 16:54:26 -04007211static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04007212{
7213 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
7214
7215 inode_init_once(&ei->vfs_inode);
7216}
7217
7218void btrfs_destroy_cachep(void)
7219{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +10007220 /*
7221 * Make sure all delayed rcu free inodes are flushed before we
7222 * destroy cache.
7223 */
7224 rcu_barrier();
Chris Mason39279cc2007-06-12 06:35:45 -04007225 if (btrfs_inode_cachep)
7226 kmem_cache_destroy(btrfs_inode_cachep);
7227 if (btrfs_trans_handle_cachep)
7228 kmem_cache_destroy(btrfs_trans_handle_cachep);
7229 if (btrfs_transaction_cachep)
7230 kmem_cache_destroy(btrfs_transaction_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04007231 if (btrfs_path_cachep)
7232 kmem_cache_destroy(btrfs_path_cachep);
Josef Bacikdc89e982011-01-28 17:05:48 -05007233 if (btrfs_free_space_cachep)
7234 kmem_cache_destroy(btrfs_free_space_cachep);
Miao Xie8ccf6f192012-10-25 09:28:04 +00007235 if (btrfs_delalloc_work_cachep)
7236 kmem_cache_destroy(btrfs_delalloc_work_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04007237}
7238
7239int btrfs_init_cachep(void)
7240{
David Sterba837e1972012-09-07 03:00:48 -06007241 btrfs_inode_cachep = kmem_cache_create("btrfs_inode",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007242 sizeof(struct btrfs_inode), 0,
7243 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04007244 if (!btrfs_inode_cachep)
7245 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007246
David Sterba837e1972012-09-07 03:00:48 -06007247 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007248 sizeof(struct btrfs_trans_handle), 0,
7249 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04007250 if (!btrfs_trans_handle_cachep)
7251 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007252
David Sterba837e1972012-09-07 03:00:48 -06007253 btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007254 sizeof(struct btrfs_transaction), 0,
7255 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04007256 if (!btrfs_transaction_cachep)
7257 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007258
David Sterba837e1972012-09-07 03:00:48 -06007259 btrfs_path_cachep = kmem_cache_create("btrfs_path",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007260 sizeof(struct btrfs_path), 0,
7261 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04007262 if (!btrfs_path_cachep)
7263 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007264
David Sterba837e1972012-09-07 03:00:48 -06007265 btrfs_free_space_cachep = kmem_cache_create("btrfs_free_space",
Josef Bacikdc89e982011-01-28 17:05:48 -05007266 sizeof(struct btrfs_free_space), 0,
7267 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
7268 if (!btrfs_free_space_cachep)
7269 goto fail;
7270
Miao Xie8ccf6f192012-10-25 09:28:04 +00007271 btrfs_delalloc_work_cachep = kmem_cache_create("btrfs_delalloc_work",
7272 sizeof(struct btrfs_delalloc_work), 0,
7273 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD,
7274 NULL);
7275 if (!btrfs_delalloc_work_cachep)
7276 goto fail;
7277
Chris Mason39279cc2007-06-12 06:35:45 -04007278 return 0;
7279fail:
7280 btrfs_destroy_cachep();
7281 return -ENOMEM;
7282}
7283
7284static int btrfs_getattr(struct vfsmount *mnt,
7285 struct dentry *dentry, struct kstat *stat)
7286{
7287 struct inode *inode = dentry->d_inode;
David Sterbafadc0d82011-11-20 07:33:38 -05007288 u32 blocksize = inode->i_sb->s_blocksize;
7289
Chris Mason39279cc2007-06-12 06:35:45 -04007290 generic_fillattr(inode, stat);
Al Viro0ee5dc62011-07-07 15:44:25 -04007291 stat->dev = BTRFS_I(inode)->root->anon_dev;
Chris Masond6667462008-01-03 14:51:00 -05007292 stat->blksize = PAGE_CACHE_SIZE;
David Sterbafadc0d82011-11-20 07:33:38 -05007293 stat->blocks = (ALIGN(inode_get_bytes(inode), blocksize) +
7294 ALIGN(BTRFS_I(inode)->delalloc_bytes, blocksize)) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04007295 return 0;
7296}
7297
Liu Bo75e7cb72011-03-22 10:12:20 +00007298/*
7299 * If a file is moved, it will inherit the cow and compression flags of the new
7300 * directory.
7301 */
7302static void fixup_inode_flags(struct inode *dir, struct inode *inode)
7303{
7304 struct btrfs_inode *b_dir = BTRFS_I(dir);
7305 struct btrfs_inode *b_inode = BTRFS_I(inode);
7306
7307 if (b_dir->flags & BTRFS_INODE_NODATACOW)
7308 b_inode->flags |= BTRFS_INODE_NODATACOW;
7309 else
7310 b_inode->flags &= ~BTRFS_INODE_NODATACOW;
7311
Liu Bobc178232012-06-14 02:23:18 -06007312 if (b_dir->flags & BTRFS_INODE_COMPRESS) {
Liu Bo75e7cb72011-03-22 10:12:20 +00007313 b_inode->flags |= BTRFS_INODE_COMPRESS;
Liu Bobc178232012-06-14 02:23:18 -06007314 b_inode->flags &= ~BTRFS_INODE_NOCOMPRESS;
7315 } else {
7316 b_inode->flags &= ~(BTRFS_INODE_COMPRESS |
7317 BTRFS_INODE_NOCOMPRESS);
7318 }
Liu Bo75e7cb72011-03-22 10:12:20 +00007319}
7320
Chris Masond3977122009-01-05 21:25:51 -05007321static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
7322 struct inode *new_dir, struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04007323{
7324 struct btrfs_trans_handle *trans;
7325 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007326 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04007327 struct inode *new_inode = new_dentry->d_inode;
7328 struct inode *old_inode = old_dentry->d_inode;
7329 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04007330 u64 index = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007331 u64 root_objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04007332 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08007333 u64 old_ino = btrfs_ino(old_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007334
Li Zefan33345d012011-04-20 10:31:50 +08007335 if (btrfs_ino(new_dir) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhengf679a842009-09-24 09:17:31 -04007336 return -EPERM;
7337
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007338 /* we only allow rename subvolume link between subvolumes */
Li Zefan33345d012011-04-20 10:31:50 +08007339 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05007340 return -EXDEV;
7341
Li Zefan33345d012011-04-20 10:31:50 +08007342 if (old_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
7343 (new_inode && btrfs_ino(new_inode) == BTRFS_FIRST_FREE_OBJECTID))
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007344 return -ENOTEMPTY;
7345
Chris Mason39279cc2007-06-12 06:35:45 -04007346 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007347 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04007348 return -ENOTEMPTY;
Chris Mason5a3f23d2009-03-31 13:27:11 -04007349 /*
7350 * we're using rename to replace one file with another.
7351 * and the replacement file is large. Start IO on it now so
7352 * we don't add too much work to the end of the transaction
7353 */
Bartlomiej Zolnierkiewicz4baf8c92009-08-07 13:47:08 -04007354 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size &&
Chris Mason5a3f23d2009-03-31 13:27:11 -04007355 old_inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
7356 filemap_flush(old_inode->i_mapping);
7357
Yan, Zheng76dda932009-09-21 16:00:26 -04007358 /* close the racy window with snapshot create/destroy ioctl */
Li Zefan33345d012011-04-20 10:31:50 +08007359 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04007360 down_read(&root->fs_info->subvol_sem);
Yan, Zhenga22285a2010-05-16 10:48:46 -04007361 /*
7362 * We want to reserve the absolute worst case amount of items. So if
7363 * both inodes are subvols and we need to unlink them then that would
7364 * require 4 item modifications, but if they are both normal inodes it
7365 * would require 5 item modifications, so we'll assume their normal
7366 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
7367 * should cover the worst case number of items we'll modify.
7368 */
7369 trans = btrfs_start_transaction(root, 20);
Johann Lombardib44c59a2011-03-31 13:23:47 +00007370 if (IS_ERR(trans)) {
7371 ret = PTR_ERR(trans);
7372 goto out_notrans;
7373 }
Chris Mason5f39d392007-10-15 16:14:19 -04007374
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007375 if (dest != root)
7376 btrfs_record_root_in_trans(trans, dest);
7377
Yan, Zhenga5719522009-09-24 09:17:31 -04007378 ret = btrfs_set_inode_index(new_dir, &index);
7379 if (ret)
7380 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04007381
Li Zefan33345d012011-04-20 10:31:50 +08007382 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007383 /* force full log commit if subvolume involved. */
7384 root->fs_info->last_trans_log_full_commit = trans->transid;
7385 } else {
Yan, Zhenga5719522009-09-24 09:17:31 -04007386 ret = btrfs_insert_inode_ref(trans, dest,
7387 new_dentry->d_name.name,
7388 new_dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08007389 old_ino,
7390 btrfs_ino(new_dir), index);
Yan, Zhenga5719522009-09-24 09:17:31 -04007391 if (ret)
7392 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007393 /*
7394 * this is an ugly little race, but the rename is required
7395 * to make sure that if we crash, the inode is either at the
7396 * old name or the new one. pinning the log transaction lets
7397 * us make sure we don't allow a log commit to come in after
7398 * we unlink the name but before we add the new name back in.
7399 */
7400 btrfs_pin_log_trans(root);
7401 }
Chris Mason12fcfd22009-03-24 10:24:20 -04007402 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04007403 * make sure the inode gets flushed if it is replacing
7404 * something.
7405 */
Li Zefan33345d012011-04-20 10:31:50 +08007406 if (new_inode && new_inode->i_size && S_ISREG(old_inode->i_mode))
Chris Mason5a3f23d2009-03-31 13:27:11 -04007407 btrfs_add_ordered_operation(trans, root, old_inode);
Chris Mason5a3f23d2009-03-31 13:27:11 -04007408
Josef Bacik0c4d2d92012-04-05 15:03:02 -04007409 inode_inc_iversion(old_dir);
7410 inode_inc_iversion(new_dir);
7411 inode_inc_iversion(old_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007412 old_dir->i_ctime = old_dir->i_mtime = ctime;
7413 new_dir->i_ctime = new_dir->i_mtime = ctime;
7414 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04007415
Chris Mason12fcfd22009-03-24 10:24:20 -04007416 if (old_dentry->d_parent != new_dentry->d_parent)
7417 btrfs_record_unlink_dir(trans, old_dir, old_inode, 1);
7418
Li Zefan33345d012011-04-20 10:31:50 +08007419 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007420 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
7421 ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid,
7422 old_dentry->d_name.name,
7423 old_dentry->d_name.len);
7424 } else {
Al Viro92986792011-03-04 17:14:37 +00007425 ret = __btrfs_unlink_inode(trans, root, old_dir,
7426 old_dentry->d_inode,
7427 old_dentry->d_name.name,
7428 old_dentry->d_name.len);
7429 if (!ret)
7430 ret = btrfs_update_inode(trans, root, old_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007431 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007432 if (ret) {
7433 btrfs_abort_transaction(trans, root, ret);
7434 goto out_fail;
7435 }
Chris Mason39279cc2007-06-12 06:35:45 -04007436
7437 if (new_inode) {
Josef Bacik0c4d2d92012-04-05 15:03:02 -04007438 inode_inc_iversion(new_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007439 new_inode->i_ctime = CURRENT_TIME;
Li Zefan33345d012011-04-20 10:31:50 +08007440 if (unlikely(btrfs_ino(new_inode) ==
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007441 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
7442 root_objectid = BTRFS_I(new_inode)->location.objectid;
7443 ret = btrfs_unlink_subvol(trans, dest, new_dir,
7444 root_objectid,
7445 new_dentry->d_name.name,
7446 new_dentry->d_name.len);
7447 BUG_ON(new_inode->i_nlink == 0);
7448 } else {
7449 ret = btrfs_unlink_inode(trans, dest, new_dir,
7450 new_dentry->d_inode,
7451 new_dentry->d_name.name,
7452 new_dentry->d_name.len);
7453 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007454 if (!ret && new_inode->i_nlink == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04007455 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007456 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04007457 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007458 if (ret) {
7459 btrfs_abort_transaction(trans, root, ret);
7460 goto out_fail;
7461 }
Chris Mason39279cc2007-06-12 06:35:45 -04007462 }
Josef Bacikaec74772008-07-24 12:12:38 -04007463
Liu Bo75e7cb72011-03-22 10:12:20 +00007464 fixup_inode_flags(new_dir, old_inode);
7465
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007466 ret = btrfs_add_link(trans, new_dir, old_inode,
7467 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04007468 new_dentry->d_name.len, 0, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007469 if (ret) {
7470 btrfs_abort_transaction(trans, root, ret);
7471 goto out_fail;
7472 }
Chris Mason39279cc2007-06-12 06:35:45 -04007473
Li Zefan33345d012011-04-20 10:31:50 +08007474 if (old_ino != BTRFS_FIRST_FREE_OBJECTID) {
Al Viro10d9f302011-07-16 23:09:10 -04007475 struct dentry *parent = new_dentry->d_parent;
Josef Bacik6a912212010-11-20 09:48:00 +00007476 btrfs_log_new_name(trans, old_inode, old_dir, parent);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007477 btrfs_end_log_trans(root);
7478 }
Chris Mason39279cc2007-06-12 06:35:45 -04007479out_fail:
Josef Bacik7ad85bb2012-01-12 19:10:12 -05007480 btrfs_end_transaction(trans, root);
Johann Lombardib44c59a2011-03-31 13:23:47 +00007481out_notrans:
Li Zefan33345d012011-04-20 10:31:50 +08007482 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04007483 up_read(&root->fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04007484
Chris Mason39279cc2007-06-12 06:35:45 -04007485 return ret;
7486}
7487
Miao Xie8ccf6f192012-10-25 09:28:04 +00007488static void btrfs_run_delalloc_work(struct btrfs_work *work)
7489{
7490 struct btrfs_delalloc_work *delalloc_work;
7491
7492 delalloc_work = container_of(work, struct btrfs_delalloc_work,
7493 work);
7494 if (delalloc_work->wait)
7495 btrfs_wait_ordered_range(delalloc_work->inode, 0, (u64)-1);
7496 else
7497 filemap_flush(delalloc_work->inode->i_mapping);
7498
7499 if (delalloc_work->delay_iput)
7500 btrfs_add_delayed_iput(delalloc_work->inode);
7501 else
7502 iput(delalloc_work->inode);
7503 complete(&delalloc_work->completion);
7504}
7505
7506struct btrfs_delalloc_work *btrfs_alloc_delalloc_work(struct inode *inode,
7507 int wait, int delay_iput)
7508{
7509 struct btrfs_delalloc_work *work;
7510
7511 work = kmem_cache_zalloc(btrfs_delalloc_work_cachep, GFP_NOFS);
7512 if (!work)
7513 return NULL;
7514
7515 init_completion(&work->completion);
7516 INIT_LIST_HEAD(&work->list);
7517 work->inode = inode;
7518 work->wait = wait;
7519 work->delay_iput = delay_iput;
7520 work->work.func = btrfs_run_delalloc_work;
7521
7522 return work;
7523}
7524
7525void btrfs_wait_and_free_delalloc_work(struct btrfs_delalloc_work *work)
7526{
7527 wait_for_completion(&work->completion);
7528 kmem_cache_free(btrfs_delalloc_work_cachep, work);
7529}
7530
Chris Masond352ac62008-09-29 15:18:18 -04007531/*
7532 * some fairly slow code that needs optimization. This walks the list
7533 * of all the inodes with pending delalloc and forces them to disk.
7534 */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00007535int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput)
Chris Masonea8c2812008-08-04 23:17:27 -04007536{
7537 struct list_head *head = &root->fs_info->delalloc_inodes;
7538 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007539 struct inode *inode;
Miao Xie8ccf6f192012-10-25 09:28:04 +00007540 struct btrfs_delalloc_work *work, *next;
7541 struct list_head works;
7542 int ret = 0;
Chris Masonea8c2812008-08-04 23:17:27 -04007543
Yan Zhengc146afa2008-11-12 14:34:12 -05007544 if (root->fs_info->sb->s_flags & MS_RDONLY)
7545 return -EROFS;
7546
Miao Xie8ccf6f192012-10-25 09:28:04 +00007547 INIT_LIST_HEAD(&works);
7548
Chris Mason75eff682008-12-15 15:54:40 -05007549 spin_lock(&root->fs_info->delalloc_lock);
Chris Masond3977122009-01-05 21:25:51 -05007550 while (!list_empty(head)) {
Chris Masonea8c2812008-08-04 23:17:27 -04007551 binode = list_entry(head->next, struct btrfs_inode,
7552 delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007553 inode = igrab(&binode->vfs_inode);
7554 if (!inode)
7555 list_del_init(&binode->delalloc_inodes);
Chris Mason75eff682008-12-15 15:54:40 -05007556 spin_unlock(&root->fs_info->delalloc_lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007557 if (inode) {
Miao Xie8ccf6f192012-10-25 09:28:04 +00007558 work = btrfs_alloc_delalloc_work(inode, 0, delay_iput);
7559 if (!work) {
7560 ret = -ENOMEM;
7561 goto out;
7562 }
7563 list_add_tail(&work->list, &works);
7564 btrfs_queue_worker(&root->fs_info->flush_workers,
7565 &work->work);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007566 }
7567 cond_resched();
Chris Mason75eff682008-12-15 15:54:40 -05007568 spin_lock(&root->fs_info->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04007569 }
Chris Mason75eff682008-12-15 15:54:40 -05007570 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -04007571
7572 /* the filemap_flush will queue IO into the worker threads, but
7573 * we have to make sure the IO is actually started and that
7574 * ordered extents get created before we return
7575 */
7576 atomic_inc(&root->fs_info->async_submit_draining);
Chris Masond3977122009-01-05 21:25:51 -05007577 while (atomic_read(&root->fs_info->nr_async_submits) ||
Chris Mason771ed682008-11-06 22:02:51 -05007578 atomic_read(&root->fs_info->async_delalloc_pages)) {
Chris Mason8c8bee12008-09-29 11:19:10 -04007579 wait_event(root->fs_info->async_submit_wait,
Chris Mason771ed682008-11-06 22:02:51 -05007580 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
7581 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee12008-09-29 11:19:10 -04007582 }
7583 atomic_dec(&root->fs_info->async_submit_draining);
Miao Xie8ccf6f192012-10-25 09:28:04 +00007584out:
7585 list_for_each_entry_safe(work, next, &works, list) {
7586 list_del_init(&work->list);
7587 btrfs_wait_and_free_delalloc_work(work);
7588 }
7589 return ret;
Chris Masonea8c2812008-08-04 23:17:27 -04007590}
7591
Chris Mason39279cc2007-06-12 06:35:45 -04007592static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
7593 const char *symname)
7594{
7595 struct btrfs_trans_handle *trans;
7596 struct btrfs_root *root = BTRFS_I(dir)->root;
7597 struct btrfs_path *path;
7598 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05007599 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04007600 int err;
7601 int drop_inode = 0;
7602 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04007603 u64 index = 0 ;
Chris Mason39279cc2007-06-12 06:35:45 -04007604 int name_len;
7605 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04007606 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04007607 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04007608 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04007609
7610 name_len = strlen(symname) + 1;
7611 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
7612 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05007613
Josef Bacik9ed74f22009-09-11 16:12:44 -04007614 /*
7615 * 2 items for inode item and ref
7616 * 2 items for dir items
7617 * 1 item for xattr if selinux is on
7618 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04007619 trans = btrfs_start_transaction(root, 5);
7620 if (IS_ERR(trans))
7621 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05007622
Li Zefan581bb052011-04-20 10:06:11 +08007623 err = btrfs_find_free_ino(root, &objectid);
7624 if (err)
7625 goto out_unlock;
7626
Josef Bacikaec74772008-07-24 12:12:38 -04007627 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08007628 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04007629 S_IFLNK|S_IRWXUGO, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04007630 if (IS_ERR(inode)) {
7631 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007632 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04007633 }
Chris Mason39279cc2007-06-12 06:35:45 -04007634
Eric Paris2a7dba32011-02-01 11:05:39 -05007635 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04007636 if (err) {
7637 drop_inode = 1;
7638 goto out_unlock;
7639 }
7640
Casey Schauflerad19db72011-12-15 10:09:07 -05007641 /*
7642 * If the active LSM wants to access the inode during
7643 * d_instantiate it needs these. Smack checks to see
7644 * if the filesystem supports xattrs by looking at the
7645 * ops vector.
7646 */
7647 inode->i_fop = &btrfs_file_operations;
7648 inode->i_op = &btrfs_file_inode_operations;
7649
Josef Bacika1b075d2010-11-19 20:36:11 +00007650 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04007651 if (err)
7652 drop_inode = 1;
7653 else {
7654 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04007655 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05007656 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04007657 }
Chris Mason39279cc2007-06-12 06:35:45 -04007658 if (drop_inode)
7659 goto out_unlock;
7660
7661 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07007662 if (!path) {
7663 err = -ENOMEM;
7664 drop_inode = 1;
7665 goto out_unlock;
7666 }
Li Zefan33345d012011-04-20 10:31:50 +08007667 key.objectid = btrfs_ino(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007668 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007669 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
7670 datasize = btrfs_file_extent_calc_inline_size(name_len);
7671 err = btrfs_insert_empty_item(trans, root, path, &key,
7672 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04007673 if (err) {
7674 drop_inode = 1;
Julia Lawallb0839162011-05-14 07:10:51 +00007675 btrfs_free_path(path);
Chris Mason54aa1f42007-06-22 14:16:25 -04007676 goto out_unlock;
7677 }
Chris Mason5f39d392007-10-15 16:14:19 -04007678 leaf = path->nodes[0];
7679 ei = btrfs_item_ptr(leaf, path->slots[0],
7680 struct btrfs_file_extent_item);
7681 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
7682 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04007683 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -04007684 btrfs_set_file_extent_encryption(leaf, ei, 0);
7685 btrfs_set_file_extent_compression(leaf, ei, 0);
7686 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
7687 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
7688
Chris Mason39279cc2007-06-12 06:35:45 -04007689 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04007690 write_extent_buffer(leaf, symname, ptr, name_len);
7691 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04007692 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04007693
Chris Mason39279cc2007-06-12 06:35:45 -04007694 inode->i_op = &btrfs_symlink_inode_operations;
7695 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04007696 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Yan Zhengd899e052008-10-30 14:25:28 -04007697 inode_set_bytes(inode, name_len);
Chris Masondbe674a2008-07-17 12:54:05 -04007698 btrfs_i_size_write(inode, name_len - 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04007699 err = btrfs_update_inode(trans, root, inode);
7700 if (err)
7701 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04007702
7703out_unlock:
Al Viro08c422c2011-12-23 07:58:13 -05007704 if (!err)
7705 d_instantiate(dentry, inode);
Josef Bacik7ad85bb2012-01-12 19:10:12 -05007706 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04007707 if (drop_inode) {
7708 inode_dec_link_count(inode);
7709 iput(inode);
7710 }
Liu Bob53d3f52012-11-14 14:34:34 +00007711 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04007712 return err;
7713}
Chris Mason16432982008-04-10 10:23:21 -04007714
Josef Bacik0af3d002010-06-21 14:48:16 -04007715static int __btrfs_prealloc_file_range(struct inode *inode, int mode,
7716 u64 start, u64 num_bytes, u64 min_size,
7717 loff_t actual_len, u64 *alloc_hint,
7718 struct btrfs_trans_handle *trans)
Yan Zhengd899e052008-10-30 14:25:28 -04007719{
Josef Bacik5dc562c2012-08-17 13:14:17 -04007720 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
7721 struct extent_map *em;
Yan Zhengd899e052008-10-30 14:25:28 -04007722 struct btrfs_root *root = BTRFS_I(inode)->root;
7723 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -04007724 u64 cur_offset = start;
Josef Bacik55a61d12010-11-22 18:50:32 +00007725 u64 i_size;
Yan Zhengd899e052008-10-30 14:25:28 -04007726 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04007727 bool own_trans = true;
Yan Zhengd899e052008-10-30 14:25:28 -04007728
Josef Bacik0af3d002010-06-21 14:48:16 -04007729 if (trans)
7730 own_trans = false;
Yan Zhengd899e052008-10-30 14:25:28 -04007731 while (num_bytes > 0) {
Josef Bacik0af3d002010-06-21 14:48:16 -04007732 if (own_trans) {
7733 trans = btrfs_start_transaction(root, 3);
7734 if (IS_ERR(trans)) {
7735 ret = PTR_ERR(trans);
7736 break;
7737 }
Yan Zhengd899e052008-10-30 14:25:28 -04007738 }
Yan, Zheng5a303d52009-11-12 09:34:52 +00007739
Yan, Zhengefa56462010-05-16 10:49:59 -04007740 ret = btrfs_reserve_extent(trans, root, num_bytes, min_size,
Josef Bacik81c9ad22012-01-18 10:56:06 -05007741 0, *alloc_hint, &ins, 1);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007742 if (ret) {
Josef Bacik0af3d002010-06-21 14:48:16 -04007743 if (own_trans)
7744 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04007745 break;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007746 }
7747
Yan Zhengd899e052008-10-30 14:25:28 -04007748 ret = insert_reserved_file_extent(trans, inode,
7749 cur_offset, ins.objectid,
7750 ins.offset, ins.offset,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00007751 ins.offset, 0, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04007752 BTRFS_FILE_EXTENT_PREALLOC);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007753 if (ret) {
7754 btrfs_abort_transaction(trans, root, ret);
7755 if (own_trans)
7756 btrfs_end_transaction(trans, root);
7757 break;
7758 }
Chris Masona1ed8352009-09-11 12:27:37 -04007759 btrfs_drop_extent_cache(inode, cur_offset,
7760 cur_offset + ins.offset -1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007761
Josef Bacik5dc562c2012-08-17 13:14:17 -04007762 em = alloc_extent_map();
7763 if (!em) {
7764 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
7765 &BTRFS_I(inode)->runtime_flags);
7766 goto next;
7767 }
7768
7769 em->start = cur_offset;
7770 em->orig_start = cur_offset;
7771 em->len = ins.offset;
7772 em->block_start = ins.objectid;
7773 em->block_len = ins.offset;
7774 em->bdev = root->fs_info->fs_devices->latest_bdev;
7775 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
7776 em->generation = trans->transid;
7777
7778 while (1) {
7779 write_lock(&em_tree->lock);
7780 ret = add_extent_mapping(em_tree, em);
7781 if (!ret)
7782 list_move(&em->list,
7783 &em_tree->modified_extents);
7784 write_unlock(&em_tree->lock);
7785 if (ret != -EEXIST)
7786 break;
7787 btrfs_drop_extent_cache(inode, cur_offset,
7788 cur_offset + ins.offset - 1,
7789 0);
7790 }
7791 free_extent_map(em);
7792next:
Yan Zhengd899e052008-10-30 14:25:28 -04007793 num_bytes -= ins.offset;
7794 cur_offset += ins.offset;
Yan, Zhengefa56462010-05-16 10:49:59 -04007795 *alloc_hint = ins.objectid + ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007796
Josef Bacik0c4d2d92012-04-05 15:03:02 -04007797 inode_inc_iversion(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04007798 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +02007799 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -04007800 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
Yan, Zhengefa56462010-05-16 10:49:59 -04007801 (actual_len > inode->i_size) &&
7802 (cur_offset > inode->i_size)) {
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00007803 if (cur_offset > actual_len)
Josef Bacik55a61d12010-11-22 18:50:32 +00007804 i_size = actual_len;
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00007805 else
Josef Bacik55a61d12010-11-22 18:50:32 +00007806 i_size = cur_offset;
7807 i_size_write(inode, i_size);
7808 btrfs_ordered_update_i_size(inode, i_size, NULL);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007809 }
7810
Yan Zhengd899e052008-10-30 14:25:28 -04007811 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007812
7813 if (ret) {
7814 btrfs_abort_transaction(trans, root, ret);
7815 if (own_trans)
7816 btrfs_end_transaction(trans, root);
7817 break;
7818 }
Yan Zhengd899e052008-10-30 14:25:28 -04007819
Josef Bacik0af3d002010-06-21 14:48:16 -04007820 if (own_trans)
7821 btrfs_end_transaction(trans, root);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007822 }
Yan Zhengd899e052008-10-30 14:25:28 -04007823 return ret;
7824}
7825
Josef Bacik0af3d002010-06-21 14:48:16 -04007826int btrfs_prealloc_file_range(struct inode *inode, int mode,
7827 u64 start, u64 num_bytes, u64 min_size,
7828 loff_t actual_len, u64 *alloc_hint)
7829{
7830 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
7831 min_size, actual_len, alloc_hint,
7832 NULL);
7833}
7834
7835int btrfs_prealloc_file_range_trans(struct inode *inode,
7836 struct btrfs_trans_handle *trans, int mode,
7837 u64 start, u64 num_bytes, u64 min_size,
7838 loff_t actual_len, u64 *alloc_hint)
7839{
7840 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
7841 min_size, actual_len, alloc_hint, trans);
7842}
7843
Chris Masone6dcd2d2008-07-17 12:53:50 -04007844static int btrfs_set_page_dirty(struct page *page)
7845{
Chris Masone6dcd2d2008-07-17 12:53:50 -04007846 return __set_page_dirty_nobuffers(page);
7847}
7848
Al Viro10556cb2011-06-20 19:28:19 -04007849static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -05007850{
Li Zefanb83cc962010-12-20 16:04:08 +08007851 struct btrfs_root *root = BTRFS_I(inode)->root;
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +00007852 umode_t mode = inode->i_mode;
Li Zefanb83cc962010-12-20 16:04:08 +08007853
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +00007854 if (mask & MAY_WRITE &&
7855 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) {
7856 if (btrfs_root_readonly(root))
7857 return -EROFS;
7858 if (BTRFS_I(inode)->flags & BTRFS_INODE_READONLY)
7859 return -EACCES;
7860 }
Al Viro2830ba72011-06-20 19:16:29 -04007861 return generic_permission(inode, mask);
Yanfdebe2b2008-01-14 13:26:08 -05007862}
Chris Mason39279cc2007-06-12 06:35:45 -04007863
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007864static const struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -05007865 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -04007866 .lookup = btrfs_lookup,
7867 .create = btrfs_create,
7868 .unlink = btrfs_unlink,
7869 .link = btrfs_link,
7870 .mkdir = btrfs_mkdir,
7871 .rmdir = btrfs_rmdir,
7872 .rename = btrfs_rename,
7873 .symlink = btrfs_symlink,
7874 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04007875 .mknod = btrfs_mknod,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007876 .setxattr = btrfs_setxattr,
7877 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05007878 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007879 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05007880 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007881 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04007882};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007883static const struct inode_operations btrfs_dir_ro_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007884 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05007885 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007886 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04007887};
Yan, Zheng76dda932009-09-21 16:00:26 -04007888
Alexey Dobriyan828c0952009-10-01 15:43:56 -07007889static const struct file_operations btrfs_dir_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007890 .llseek = generic_file_llseek,
7891 .read = generic_read_dir,
David Woodhousecbdf5a22008-08-06 19:42:33 +01007892 .readdir = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04007893 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04007894#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04007895 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04007896#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04007897 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -04007898 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -04007899};
7900
Chris Masond1310b22008-01-24 16:13:08 -05007901static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04007902 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05007903 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04007904 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04007905 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04007906 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04007907 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05007908 .set_bit_hook = btrfs_set_bit_hook,
7909 .clear_bit_hook = btrfs_clear_bit_hook,
Josef Bacik9ed74f22009-09-11 16:12:44 -04007910 .merge_extent_hook = btrfs_merge_extent_hook,
7911 .split_extent_hook = btrfs_split_extent_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04007912};
7913
Chris Mason35054392009-01-21 13:11:13 -05007914/*
7915 * btrfs doesn't support the bmap operation because swapfiles
7916 * use bmap to make a mapping of extents in the file. They assume
7917 * these extents won't change over the life of the file and they
7918 * use the bmap result to do IO directly to the drive.
7919 *
7920 * the btrfs bmap call would return logical addresses that aren't
7921 * suitable for IO and they also will change frequently as COW
7922 * operations happen. So, swapfile + btrfs == corruption.
7923 *
7924 * For now we're avoiding this by dropping bmap.
7925 */
Alexey Dobriyan7f094102009-09-21 17:01:10 -07007926static const struct address_space_operations btrfs_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04007927 .readpage = btrfs_readpage,
7928 .writepage = btrfs_writepage,
Chris Masonb293f022007-11-01 19:45:34 -04007929 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05007930 .readpages = btrfs_readpages,
Chris Mason16432982008-04-10 10:23:21 -04007931 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04007932 .invalidatepage = btrfs_invalidatepage,
7933 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04007934 .set_page_dirty = btrfs_set_page_dirty,
Andi Kleen465fdd92009-09-16 11:50:18 +02007935 .error_remove_page = generic_error_remove_page,
Chris Mason39279cc2007-06-12 06:35:45 -04007936};
7937
Alexey Dobriyan7f094102009-09-21 17:01:10 -07007938static const struct address_space_operations btrfs_symlink_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04007939 .readpage = btrfs_readpage,
7940 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04007941 .invalidatepage = btrfs_invalidatepage,
7942 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04007943};
7944
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007945static const struct inode_operations btrfs_file_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007946 .getattr = btrfs_getattr,
7947 .setattr = btrfs_setattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007948 .setxattr = btrfs_setxattr,
7949 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05007950 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007951 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05007952 .permission = btrfs_permission,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05007953 .fiemap = btrfs_fiemap,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007954 .get_acl = btrfs_get_acl,
Josef Bacike41f9412012-03-26 09:46:47 -04007955 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -04007956};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007957static const struct inode_operations btrfs_special_inode_operations = {
Josef Bacik618e21d2007-07-11 10:18:17 -04007958 .getattr = btrfs_getattr,
7959 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05007960 .permission = btrfs_permission,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007961 .setxattr = btrfs_setxattr,
7962 .getxattr = btrfs_getxattr,
Josef Bacik33268ea2008-07-24 12:16:36 -04007963 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007964 .removexattr = btrfs_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007965 .get_acl = btrfs_get_acl,
Josef Bacike41f9412012-03-26 09:46:47 -04007966 .update_time = btrfs_update_time,
Josef Bacik618e21d2007-07-11 10:18:17 -04007967};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007968static const struct inode_operations btrfs_symlink_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007969 .readlink = generic_readlink,
7970 .follow_link = page_follow_link_light,
7971 .put_link = page_put_link,
Li Zefanf2095612010-11-19 02:05:24 +00007972 .getattr = btrfs_getattr,
Josef Bacik22c44fe2011-11-30 10:45:38 -05007973 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05007974 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -05007975 .setxattr = btrfs_setxattr,
7976 .getxattr = btrfs_getxattr,
7977 .listxattr = btrfs_listxattr,
7978 .removexattr = btrfs_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007979 .get_acl = btrfs_get_acl,
Josef Bacike41f9412012-03-26 09:46:47 -04007980 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -04007981};
Yan, Zheng76dda932009-09-21 16:00:26 -04007982
Alexey Dobriyan82d339d2009-10-09 09:54:36 -04007983const struct dentry_operations btrfs_dentry_operations = {
Yan, Zheng76dda932009-09-21 16:00:26 -04007984 .d_delete = btrfs_dentry_delete,
Josef Bacikb4aff1f2011-06-28 16:18:59 -04007985 .d_release = btrfs_dentry_release,
Yan, Zheng76dda932009-09-21 16:00:26 -04007986};