blob: e8733fab2739a8816685ad21c320b7cc7c60d04e [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, Zhengc2167752009-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, Zhengc2167752009-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 Masonf03d9301f2009-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 Bacik7a7eaa42011-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, Zhengc2167752009-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, Zhengc2167752009-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 Masonf03d9301f2009-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 Bacik7a7eaa42011-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, Zhengc2167752009-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, Zhengc2167752009-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, Zhengc2167752009-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 Bacik7a7eaa42011-04-13 12:54:33 -04001171 trans = btrfs_join_transaction_nolock(root);
Li Zefan82d59022011-04-20 10:33:24 +08001172 else
Josef Bacik7a7eaa42011-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;
1552 struct btrfs_mapping_tree *map_tree;
Chris Masona62b9402008-10-03 16:31:08 -04001553 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001554 u64 length = 0;
1555 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001556 int ret;
1557
Chris Mason771ed682008-11-06 22:02:51 -05001558 if (bio_flags & EXTENT_BIO_COMPRESSED)
1559 return 0;
1560
Chris Masonf2d8d742008-04-21 10:03:05 -04001561 length = bio->bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001562 map_tree = &root->fs_info->mapping_tree;
1563 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04001564 ret = btrfs_map_block(map_tree, READ, logical,
Chris Masonf1885912008-04-09 16:28:12 -04001565 &map_length, NULL, 0);
Jeff Mahoney3444a972011-10-03 23:23:13 -04001566 /* Will always return 0 or 1 with map_multi == NULL */
1567 BUG_ON(ret < 0);
Chris Masond3977122009-01-05 21:25:51 -05001568 if (map_length < length + size)
Chris Mason239b14b2008-03-24 15:02:07 -04001569 return 1;
Jeff Mahoney3444a972011-10-03 23:23:13 -04001570 return 0;
Chris Mason239b14b2008-03-24 15:02:07 -04001571}
1572
Chris Masond352ac62008-09-29 15:18:18 -04001573/*
1574 * in order to insert checksums into the metadata in large chunks,
1575 * we wait until bio submission time. All the pages in the bio are
1576 * checksummed and sums are attached onto the ordered extent record.
1577 *
1578 * At IO completion time the cums attached on the ordered extent record
1579 * are inserted into the btree
1580 */
Chris Masond3977122009-01-05 21:25:51 -05001581static int __btrfs_submit_bio_start(struct inode *inode, int rw,
1582 struct bio *bio, int mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001583 unsigned long bio_flags,
1584 u64 bio_offset)
Chris Mason065631f2008-02-20 12:07:25 -05001585{
Chris Mason065631f2008-02-20 12:07:25 -05001586 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason065631f2008-02-20 12:07:25 -05001587 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001588
Chris Masond20f7042008-12-08 16:58:54 -05001589 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001590 BUG_ON(ret); /* -ENOMEM */
Chris Mason4a69a412008-11-06 22:03:00 -05001591 return 0;
1592}
Chris Masone0156402008-04-16 11:15:20 -04001593
Chris Mason4a69a412008-11-06 22:03:00 -05001594/*
1595 * in order to insert checksums into the metadata in large chunks,
1596 * we wait until bio submission time. All the pages in the bio are
1597 * checksummed and sums are attached onto the ordered extent record.
1598 *
1599 * At IO completion time the cums attached on the ordered extent record
1600 * are inserted into the btree
1601 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001602static int __btrfs_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001603 int mirror_num, unsigned long bio_flags,
1604 u64 bio_offset)
Chris Mason4a69a412008-11-06 22:03:00 -05001605{
1606 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason8b712842008-06-11 16:50:36 -04001607 return btrfs_map_bio(root, rw, bio, mirror_num, 1);
Chris Mason44b8bd72008-04-16 11:14:51 -04001608}
1609
Chris Masond352ac62008-09-29 15:18:18 -04001610/*
Chris Masoncad321a2008-12-17 14:51:42 -05001611 * extent_io.c submission hook. This does the right thing for csum calculation
1612 * on write, or reading the csums from the tree before a read
Chris Masond352ac62008-09-29 15:18:18 -04001613 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001614static int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001615 int mirror_num, unsigned long bio_flags,
1616 u64 bio_offset)
Chris Mason44b8bd72008-04-16 11:14:51 -04001617{
1618 struct btrfs_root *root = BTRFS_I(inode)->root;
1619 int ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001620 int skip_sum;
Jeff Mahoney04173412011-10-03 23:23:12 -04001621 int metadata = 0;
Chris Mason44b8bd72008-04-16 11:14:51 -04001622
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001623 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masoncad321a2008-12-17 14:51:42 -05001624
Liu Bo83eea1f2012-07-10 05:28:39 -06001625 if (btrfs_is_free_space_inode(inode))
Jeff Mahoney04173412011-10-03 23:23:12 -04001626 metadata = 2;
1627
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001628 if (!(rw & REQ_WRITE)) {
Josef Bacik5fd02042012-05-02 14:00:54 -04001629 ret = btrfs_bio_wq_end_io(root->fs_info, bio, metadata);
1630 if (ret)
1631 return ret;
1632
Chris Masond20f7042008-12-08 16:58:54 -05001633 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Chris Masonc8b97812008-10-29 14:49:59 -04001634 return btrfs_submit_compressed_read(inode, bio,
1635 mirror_num, bio_flags);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001636 } else if (!skip_sum) {
1637 ret = btrfs_lookup_bio_sums(root, inode, bio, NULL);
1638 if (ret)
1639 return ret;
1640 }
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001641 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001642 } else if (!skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001643 /* csum items have already been cloned */
1644 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1645 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001646 /* we're doing a write, do the async checksumming */
1647 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
Chris Mason44b8bd72008-04-16 11:14:51 -04001648 inode, rw, bio, mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001649 bio_flags, bio_offset,
1650 __btrfs_submit_bio_start,
Chris Mason4a69a412008-11-06 22:03:00 -05001651 __btrfs_submit_bio_done);
Chris Mason19b9bdb2008-10-30 14:23:13 -04001652 }
1653
Chris Mason0b86a832008-03-24 15:01:56 -04001654mapit:
Chris Mason8b712842008-06-11 16:50:36 -04001655 return btrfs_map_bio(root, rw, bio, mirror_num, 0);
Chris Mason065631f2008-02-20 12:07:25 -05001656}
Chris Mason6885f302008-02-20 16:11:05 -05001657
Chris Masond352ac62008-09-29 15:18:18 -04001658/*
1659 * given a list of ordered sums record them in the inode. This happens
1660 * at IO completion time based on sums calculated at bio submission time.
1661 */
Chris Masonba1da2f2008-07-17 12:54:15 -04001662static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -04001663 struct inode *inode, u64 file_offset,
1664 struct list_head *list)
1665{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001666 struct btrfs_ordered_sum *sum;
1667
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001668 list_for_each_entry(sum, list, list) {
Chris Masond20f7042008-12-08 16:58:54 -05001669 btrfs_csum_file_blocks(trans,
1670 BTRFS_I(inode)->root->fs_info->csum_root, sum);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001671 }
1672 return 0;
1673}
1674
Josef Bacik2ac55d42010-02-03 19:33:23 +00001675int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end,
1676 struct extent_state **cached_state)
Chris Masonea8c2812008-08-04 23:17:27 -04001677{
Julia Lawall6c1500f2012-11-03 20:30:18 +00001678 WARN_ON((end & (PAGE_CACHE_SIZE - 1)) == 0);
Chris Masonea8c2812008-08-04 23:17:27 -04001679 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001680 cached_state, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04001681}
1682
Chris Masond352ac62008-09-29 15:18:18 -04001683/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04001684struct btrfs_writepage_fixup {
1685 struct page *page;
1686 struct btrfs_work work;
1687};
1688
Christoph Hellwigb2950862008-12-02 09:54:17 -05001689static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04001690{
1691 struct btrfs_writepage_fixup *fixup;
1692 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001693 struct extent_state *cached_state = NULL;
Chris Mason247e7432008-07-17 12:53:51 -04001694 struct page *page;
1695 struct inode *inode;
1696 u64 page_start;
1697 u64 page_end;
Jeff Mahoney87826df2012-02-15 16:23:57 +01001698 int ret;
Chris Mason247e7432008-07-17 12:53:51 -04001699
1700 fixup = container_of(work, struct btrfs_writepage_fixup, work);
1701 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04001702again:
Chris Mason247e7432008-07-17 12:53:51 -04001703 lock_page(page);
1704 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
1705 ClearPageChecked(page);
1706 goto out_page;
1707 }
1708
1709 inode = page->mapping->host;
1710 page_start = page_offset(page);
1711 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
1712
Josef Bacik2ac55d42010-02-03 19:33:23 +00001713 lock_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001714 &cached_state);
Chris Mason4a096752008-07-21 10:29:44 -04001715
1716 /* already ordered? We're done */
Chris Mason8b62b722009-09-02 16:53:46 -04001717 if (PagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001718 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04001719
1720 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1721 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00001722 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start,
1723 page_end, &cached_state, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001724 unlock_page(page);
1725 btrfs_start_ordered_extent(inode, ordered, 1);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001726 btrfs_put_ordered_extent(ordered);
Chris Mason4a096752008-07-21 10:29:44 -04001727 goto again;
1728 }
Chris Mason247e7432008-07-17 12:53:51 -04001729
Jeff Mahoney87826df2012-02-15 16:23:57 +01001730 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
1731 if (ret) {
1732 mapping_set_error(page->mapping, ret);
1733 end_extent_writepage(page, ret, page_start, page_end);
1734 ClearPageChecked(page);
1735 goto out;
1736 }
1737
Josef Bacik2ac55d42010-02-03 19:33:23 +00001738 btrfs_set_extent_delalloc(inode, page_start, page_end, &cached_state);
Chris Mason247e7432008-07-17 12:53:51 -04001739 ClearPageChecked(page);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001740 set_page_dirty(page);
Chris Mason247e7432008-07-17 12:53:51 -04001741out:
Josef Bacik2ac55d42010-02-03 19:33:23 +00001742 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, page_end,
1743 &cached_state, GFP_NOFS);
Chris Mason247e7432008-07-17 12:53:51 -04001744out_page:
1745 unlock_page(page);
1746 page_cache_release(page);
Miao Xieb897abe2011-01-26 16:19:22 +08001747 kfree(fixup);
Chris Mason247e7432008-07-17 12:53:51 -04001748}
1749
1750/*
1751 * There are a few paths in the higher layers of the kernel that directly
1752 * set the page dirty bit without asking the filesystem if it is a
1753 * good idea. This causes problems because we want to make sure COW
1754 * properly happens and the data=ordered rules are followed.
1755 *
Chris Masonc8b97812008-10-29 14:49:59 -04001756 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04001757 * hasn't been properly setup for IO. We kick off an async process
1758 * to fix it up. The async helper will wait for ordered extents, set
1759 * the delalloc bit and make it safe to write the page.
1760 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001761static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04001762{
1763 struct inode *inode = page->mapping->host;
1764 struct btrfs_writepage_fixup *fixup;
1765 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason247e7432008-07-17 12:53:51 -04001766
Chris Mason8b62b722009-09-02 16:53:46 -04001767 /* this page is properly in the ordered list */
1768 if (TestClearPagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001769 return 0;
1770
1771 if (PageChecked(page))
1772 return -EAGAIN;
1773
1774 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
1775 if (!fixup)
1776 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04001777
Chris Mason247e7432008-07-17 12:53:51 -04001778 SetPageChecked(page);
1779 page_cache_get(page);
1780 fixup->work.func = btrfs_writepage_fixup_worker;
1781 fixup->page = page;
1782 btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001783 return -EBUSY;
Chris Mason247e7432008-07-17 12:53:51 -04001784}
1785
Yan Zhengd899e052008-10-30 14:25:28 -04001786static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
1787 struct inode *inode, u64 file_pos,
1788 u64 disk_bytenr, u64 disk_num_bytes,
1789 u64 num_bytes, u64 ram_bytes,
1790 u8 compression, u8 encryption,
1791 u16 other_encoding, int extent_type)
1792{
1793 struct btrfs_root *root = BTRFS_I(inode)->root;
1794 struct btrfs_file_extent_item *fi;
1795 struct btrfs_path *path;
1796 struct extent_buffer *leaf;
1797 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -04001798 int ret;
1799
1800 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07001801 if (!path)
1802 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -04001803
Chris Masonb9473432009-03-13 11:00:37 -04001804 path->leave_spinning = 1;
Chris Masona1ed8352009-09-11 12:27:37 -04001805
1806 /*
1807 * we may be replacing one extent in the tree with another.
1808 * The new extent is pinned in the extent map, and we don't want
1809 * to drop it from the cache until it is completely in the btree.
1810 *
1811 * So, tell btrfs_drop_extents to leave this extent in the cache.
1812 * the caller is expected to unpin it and allow it to be merged
1813 * with the others.
1814 */
Josef Bacik5dc562c2012-08-17 13:14:17 -04001815 ret = btrfs_drop_extents(trans, root, inode, file_pos,
Josef Bacik26714852012-08-29 12:24:27 -04001816 file_pos + num_bytes, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001817 if (ret)
1818 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04001819
Li Zefan33345d012011-04-20 10:31:50 +08001820 ins.objectid = btrfs_ino(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04001821 ins.offset = file_pos;
1822 ins.type = BTRFS_EXTENT_DATA_KEY;
1823 ret = btrfs_insert_empty_item(trans, root, path, &ins, sizeof(*fi));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001824 if (ret)
1825 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04001826 leaf = path->nodes[0];
1827 fi = btrfs_item_ptr(leaf, path->slots[0],
1828 struct btrfs_file_extent_item);
1829 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
1830 btrfs_set_file_extent_type(leaf, fi, extent_type);
1831 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
1832 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
1833 btrfs_set_file_extent_offset(leaf, fi, 0);
1834 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
1835 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
1836 btrfs_set_file_extent_compression(leaf, fi, compression);
1837 btrfs_set_file_extent_encryption(leaf, fi, encryption);
1838 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
Chris Masonb9473432009-03-13 11:00:37 -04001839
Yan Zhengd899e052008-10-30 14:25:28 -04001840 btrfs_mark_buffer_dirty(leaf);
Josef Bacikce195332012-09-25 15:26:16 -04001841 btrfs_release_path(path);
Yan Zhengd899e052008-10-30 14:25:28 -04001842
1843 inode_add_bytes(inode, num_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -04001844
1845 ins.objectid = disk_bytenr;
1846 ins.offset = disk_num_bytes;
1847 ins.type = BTRFS_EXTENT_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001848 ret = btrfs_alloc_reserved_file_extent(trans, root,
1849 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08001850 btrfs_ino(inode), file_pos, &ins);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001851out:
Yan Zhengd899e052008-10-30 14:25:28 -04001852 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04001853
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001854 return ret;
Yan Zhengd899e052008-10-30 14:25:28 -04001855}
1856
Chris Mason5d13a982009-03-13 11:41:46 -04001857/*
1858 * helper function for btrfs_finish_ordered_io, this
1859 * just reads in some of the csum leaves to prime them into ram
1860 * before we start the transaction. It limits the amount of btree
1861 * reads required while inside the transaction.
1862 */
Chris Masond352ac62008-09-29 15:18:18 -04001863/* as ordered data IO finishes, this gets called so we can finish
1864 * an ordered extent if the range of bytes in the file it covers are
1865 * fully written.
1866 */
Josef Bacik5fd02042012-05-02 14:00:54 -04001867static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001868{
Josef Bacik5fd02042012-05-02 14:00:54 -04001869 struct inode *inode = ordered_extent->inode;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001870 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001871 struct btrfs_trans_handle *trans = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001872 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001873 struct extent_state *cached_state = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08001874 int compress_type = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001875 int ret;
Li Zefan82d59022011-04-20 10:33:24 +08001876 bool nolock;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001877
Liu Bo83eea1f2012-07-10 05:28:39 -06001878 nolock = btrfs_is_free_space_inode(inode);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001879
Josef Bacik5fd02042012-05-02 14:00:54 -04001880 if (test_bit(BTRFS_ORDERED_IOERR, &ordered_extent->flags)) {
1881 ret = -EIO;
1882 goto out;
1883 }
1884
Yan, Zhengc2167752009-11-12 09:34:21 +00001885 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001886 BUG_ON(!list_empty(&ordered_extent->list)); /* Logic error */
Yan, Zhengc2167752009-11-12 09:34:21 +00001887 ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent);
1888 if (!ret) {
Josef Bacik0cb59c92010-07-02 12:14:14 -04001889 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001890 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001891 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001892 trans = btrfs_join_transaction(root);
Liu Bod280e5b2012-08-21 21:13:25 -06001893 if (IS_ERR(trans)) {
1894 ret = PTR_ERR(trans);
1895 trans = NULL;
1896 goto out;
1897 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001898 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason21151332011-11-10 20:39:08 -05001899 ret = btrfs_update_inode_fallback(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001900 if (ret) /* -ENOMEM or corruption */
1901 btrfs_abort_transaction(trans, root, ret);
Yan, Zhengc2167752009-11-12 09:34:21 +00001902 }
1903 goto out;
1904 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001905
Josef Bacik2ac55d42010-02-03 19:33:23 +00001906 lock_extent_bits(io_tree, ordered_extent->file_offset,
1907 ordered_extent->file_offset + ordered_extent->len - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001908 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001909
Josef Bacik0cb59c92010-07-02 12:14:14 -04001910 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001911 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001912 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001913 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001914 if (IS_ERR(trans)) {
1915 ret = PTR_ERR(trans);
1916 trans = NULL;
1917 goto out_unlock;
1918 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001919 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Yan, Zhengc2167752009-11-12 09:34:21 +00001920
Chris Masonc8b97812008-10-29 14:49:59 -04001921 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Li Zefan261507a02010-12-17 14:21:50 +08001922 compress_type = ordered_extent->compress_type;
Yan Zhengd899e052008-10-30 14:25:28 -04001923 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Li Zefan261507a02010-12-17 14:21:50 +08001924 BUG_ON(compress_type);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001925 ret = btrfs_mark_extent_written(trans, inode,
Yan Zhengd899e052008-10-30 14:25:28 -04001926 ordered_extent->file_offset,
1927 ordered_extent->file_offset +
1928 ordered_extent->len);
Yan Zhengd899e052008-10-30 14:25:28 -04001929 } else {
Josef Bacik0af3d002010-06-21 14:48:16 -04001930 BUG_ON(root == root->fs_info->tree_root);
Yan Zhengd899e052008-10-30 14:25:28 -04001931 ret = insert_reserved_file_extent(trans, inode,
1932 ordered_extent->file_offset,
1933 ordered_extent->start,
1934 ordered_extent->disk_len,
1935 ordered_extent->len,
1936 ordered_extent->len,
Li Zefan261507a02010-12-17 14:21:50 +08001937 compress_type, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04001938 BTRFS_FILE_EXTENT_REG);
Yan Zhengd899e052008-10-30 14:25:28 -04001939 }
Josef Bacik5dc562c2012-08-17 13:14:17 -04001940 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
1941 ordered_extent->file_offset, ordered_extent->len,
1942 trans->transid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001943 if (ret < 0) {
1944 btrfs_abort_transaction(trans, root, ret);
Josef Bacik5fd02042012-05-02 14:00:54 -04001945 goto out_unlock;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001946 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00001947
Chris Masone6dcd2d2008-07-17 12:53:50 -04001948 add_pending_csums(trans, inode, ordered_extent->file_offset,
1949 &ordered_extent->list);
1950
Josef Bacik1ef30be2011-04-05 19:25:36 -04001951 ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent);
Miao Xiea39f7522011-09-11 10:52:25 -04001952 if (!ret || !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Chris Mason21151332011-11-10 20:39:08 -05001953 ret = btrfs_update_inode_fallback(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001954 if (ret) { /* -ENOMEM or corruption */
1955 btrfs_abort_transaction(trans, root, ret);
Josef Bacik5fd02042012-05-02 14:00:54 -04001956 goto out_unlock;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001957 }
Josef Bacik7c735312012-08-13 15:43:26 -04001958 } else {
1959 btrfs_set_inode_last_trans(trans, inode);
Josef Bacik1ef30be2011-04-05 19:25:36 -04001960 }
1961 ret = 0;
Josef Bacik5fd02042012-05-02 14:00:54 -04001962out_unlock:
1963 unlock_extent_cached(io_tree, ordered_extent->file_offset,
1964 ordered_extent->file_offset +
1965 ordered_extent->len - 1, &cached_state, GFP_NOFS);
Yan, Zhengc2167752009-11-12 09:34:21 +00001966out:
Josef Bacik5b0e95b2011-10-06 08:58:24 -04001967 if (root != root->fs_info->tree_root)
Josef Bacik0cb59c92010-07-02 12:14:14 -04001968 btrfs_delalloc_release_metadata(inode, ordered_extent->len);
Miao Xiea698d0752012-09-20 01:51:59 -06001969 if (trans)
1970 btrfs_end_transaction(trans, root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001971
Josef Bacik5fd02042012-05-02 14:00:54 -04001972 if (ret)
1973 clear_extent_uptodate(io_tree, ordered_extent->file_offset,
1974 ordered_extent->file_offset +
1975 ordered_extent->len - 1, NULL, GFP_NOFS);
1976
1977 /*
Liu Bo8bad3c02012-06-18 12:14:23 +08001978 * This needs to be done to make sure anybody waiting knows we are done
1979 * updating everything for this ordered extent.
Josef Bacik5fd02042012-05-02 14:00:54 -04001980 */
1981 btrfs_remove_ordered_extent(inode, ordered_extent);
1982
Chris Masone6dcd2d2008-07-17 12:53:50 -04001983 /* once for us */
1984 btrfs_put_ordered_extent(ordered_extent);
1985 /* once for the tree */
1986 btrfs_put_ordered_extent(ordered_extent);
1987
Josef Bacik5fd02042012-05-02 14:00:54 -04001988 return ret;
1989}
1990
1991static void finish_ordered_fn(struct btrfs_work *work)
1992{
1993 struct btrfs_ordered_extent *ordered_extent;
1994 ordered_extent = container_of(work, struct btrfs_ordered_extent, work);
1995 btrfs_finish_ordered_io(ordered_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001996}
1997
Christoph Hellwigb2950862008-12-02 09:54:17 -05001998static int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04001999 struct extent_state *state, int uptodate)
2000{
Josef Bacik5fd02042012-05-02 14:00:54 -04002001 struct inode *inode = page->mapping->host;
2002 struct btrfs_root *root = BTRFS_I(inode)->root;
2003 struct btrfs_ordered_extent *ordered_extent = NULL;
2004 struct btrfs_workers *workers;
2005
liubo1abe9b82011-03-24 11:18:59 +00002006 trace_btrfs_writepage_end_io_hook(page, start, end, uptodate);
2007
Chris Mason8b62b722009-09-02 16:53:46 -04002008 ClearPagePrivate2(page);
Josef Bacik5fd02042012-05-02 14:00:54 -04002009 if (!btrfs_dec_test_ordered_pending(inode, &ordered_extent, start,
2010 end - start + 1, uptodate))
2011 return 0;
2012
2013 ordered_extent->work.func = finish_ordered_fn;
2014 ordered_extent->work.flags = 0;
2015
Liu Bo83eea1f2012-07-10 05:28:39 -06002016 if (btrfs_is_free_space_inode(inode))
Josef Bacik5fd02042012-05-02 14:00:54 -04002017 workers = &root->fs_info->endio_freespace_worker;
2018 else
2019 workers = &root->fs_info->endio_write_workers;
2020 btrfs_queue_worker(workers, &ordered_extent->work);
2021
2022 return 0;
Chris Mason211f90e2008-07-18 11:56:15 -04002023}
2024
Chris Masond352ac62008-09-29 15:18:18 -04002025/*
Chris Masond352ac62008-09-29 15:18:18 -04002026 * when reads are done, we need to check csums to verify the data is correct
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002027 * if there's a match, we allow the bio to finish. If not, the code in
2028 * extent_io.c will try to find good copies for us.
Chris Masond352ac62008-09-29 15:18:18 -04002029 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05002030static int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002031 struct extent_state *state, int mirror)
Chris Mason07157aa2007-08-30 08:50:51 -04002032{
Chris Mason35ebb932007-10-30 16:56:53 -04002033 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -04002034 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05002035 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -04002036 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -05002037 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -04002038 int ret;
Chris Masonff79f812007-10-15 16:22:25 -04002039 struct btrfs_root *root = BTRFS_I(inode)->root;
2040 u32 csum = ~(u32)0;
Chris Masond1310b22008-01-24 16:13:08 -05002041
Chris Masond20f7042008-12-08 16:58:54 -05002042 if (PageChecked(page)) {
2043 ClearPageChecked(page);
2044 goto good;
2045 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002046
2047 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Jan Schmidt08d2f342011-05-04 16:18:50 +02002048 goto good;
Chris Masond20f7042008-12-08 16:58:54 -05002049
Yan Zheng17d217f2008-12-12 10:03:38 -05002050 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04002051 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
Yan Zheng17d217f2008-12-12 10:03:38 -05002052 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM,
2053 GFP_NOFS);
2054 return 0;
2055 }
2056
Yanc2e639f2008-02-04 08:57:25 -05002057 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -05002058 private = state->private;
2059 ret = 0;
2060 } else {
2061 ret = get_state_private(io_tree, start, &private);
2062 }
Cong Wang7ac687d2011-11-25 23:14:28 +08002063 kaddr = kmap_atomic(page);
Chris Masond3977122009-01-05 21:25:51 -05002064 if (ret)
Chris Mason07157aa2007-08-30 08:50:51 -04002065 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05002066
Chris Masonff79f812007-10-15 16:22:25 -04002067 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
2068 btrfs_csum_final(csum, (char *)&csum);
Chris Masond3977122009-01-05 21:25:51 -05002069 if (csum != private)
Chris Mason07157aa2007-08-30 08:50:51 -04002070 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05002071
Cong Wang7ac687d2011-11-25 23:14:28 +08002072 kunmap_atomic(kaddr);
Chris Masond20f7042008-12-08 16:58:54 -05002073good:
Chris Mason07157aa2007-08-30 08:50:51 -04002074 return 0;
2075
2076zeroit:
Chris Mason945d8962011-05-22 12:33:42 -04002077 printk_ratelimited(KERN_INFO "btrfs csum failed ino %llu off %llu csum %u "
Li Zefan33345d012011-04-20 10:31:50 +08002078 "private %llu\n",
2079 (unsigned long long)btrfs_ino(page->mapping->host),
Chris Mason193f2842009-04-27 07:29:05 -04002080 (unsigned long long)start, csum,
2081 (unsigned long long)private);
Chris Masondb945352007-10-15 16:15:53 -04002082 memset(kaddr + offset, 1, end - start + 1);
2083 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002084 kunmap_atomic(kaddr);
Chris Mason3b951512008-04-17 11:29:12 -04002085 if (private == 0)
2086 return 0;
Chris Mason7e383262008-04-09 16:28:12 -04002087 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -04002088}
Chris Masonb888db22007-08-27 16:49:44 -04002089
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002090struct delayed_iput {
2091 struct list_head list;
2092 struct inode *inode;
2093};
2094
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002095/* JDM: If this is fs-wide, why can't we add a pointer to
2096 * btrfs_inode instead and avoid the allocation? */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002097void btrfs_add_delayed_iput(struct inode *inode)
2098{
2099 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2100 struct delayed_iput *delayed;
2101
2102 if (atomic_add_unless(&inode->i_count, -1, 1))
2103 return;
2104
2105 delayed = kmalloc(sizeof(*delayed), GFP_NOFS | __GFP_NOFAIL);
2106 delayed->inode = inode;
2107
2108 spin_lock(&fs_info->delayed_iput_lock);
2109 list_add_tail(&delayed->list, &fs_info->delayed_iputs);
2110 spin_unlock(&fs_info->delayed_iput_lock);
2111}
2112
2113void btrfs_run_delayed_iputs(struct btrfs_root *root)
2114{
2115 LIST_HEAD(list);
2116 struct btrfs_fs_info *fs_info = root->fs_info;
2117 struct delayed_iput *delayed;
2118 int empty;
2119
2120 spin_lock(&fs_info->delayed_iput_lock);
2121 empty = list_empty(&fs_info->delayed_iputs);
2122 spin_unlock(&fs_info->delayed_iput_lock);
2123 if (empty)
2124 return;
2125
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002126 spin_lock(&fs_info->delayed_iput_lock);
2127 list_splice_init(&fs_info->delayed_iputs, &list);
2128 spin_unlock(&fs_info->delayed_iput_lock);
2129
2130 while (!list_empty(&list)) {
2131 delayed = list_entry(list.next, struct delayed_iput, list);
2132 list_del(&delayed->list);
2133 iput(delayed->inode);
2134 kfree(delayed);
2135 }
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002136}
2137
Yan, Zhengd68fc572010-05-16 10:49:58 -04002138enum btrfs_orphan_cleanup_state {
2139 ORPHAN_CLEANUP_STARTED = 1,
2140 ORPHAN_CLEANUP_DONE = 2,
2141};
2142
2143/*
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08002144 * This is called in transaction commit time. If there are no orphan
Yan, Zhengd68fc572010-05-16 10:49:58 -04002145 * files in the subvolume, it removes orphan item and frees block_rsv
2146 * structure.
2147 */
2148void btrfs_orphan_commit_root(struct btrfs_trans_handle *trans,
2149 struct btrfs_root *root)
2150{
Josef Bacik90290e12011-12-02 15:44:12 -05002151 struct btrfs_block_rsv *block_rsv;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002152 int ret;
2153
Josef Bacik8a35d952012-05-23 14:26:42 -04002154 if (atomic_read(&root->orphan_inodes) ||
Yan, Zhengd68fc572010-05-16 10:49:58 -04002155 root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE)
2156 return;
2157
Josef Bacik90290e12011-12-02 15:44:12 -05002158 spin_lock(&root->orphan_lock);
Josef Bacik8a35d952012-05-23 14:26:42 -04002159 if (atomic_read(&root->orphan_inodes)) {
Josef Bacik90290e12011-12-02 15:44:12 -05002160 spin_unlock(&root->orphan_lock);
2161 return;
2162 }
2163
2164 if (root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE) {
2165 spin_unlock(&root->orphan_lock);
2166 return;
2167 }
2168
2169 block_rsv = root->orphan_block_rsv;
2170 root->orphan_block_rsv = NULL;
2171 spin_unlock(&root->orphan_lock);
2172
Yan, Zhengd68fc572010-05-16 10:49:58 -04002173 if (root->orphan_item_inserted &&
2174 btrfs_root_refs(&root->root_item) > 0) {
2175 ret = btrfs_del_orphan_item(trans, root->fs_info->tree_root,
2176 root->root_key.objectid);
2177 BUG_ON(ret);
2178 root->orphan_item_inserted = 0;
2179 }
2180
Josef Bacik90290e12011-12-02 15:44:12 -05002181 if (block_rsv) {
2182 WARN_ON(block_rsv->size > 0);
2183 btrfs_free_block_rsv(root, block_rsv);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002184 }
2185}
2186
2187/*
Josef Bacik7b128762008-07-24 12:17:14 -04002188 * This creates an orphan entry for the given inode in case something goes
2189 * wrong in the middle of an unlink/truncate.
Yan, Zhengd68fc572010-05-16 10:49:58 -04002190 *
2191 * NOTE: caller of this function should reserve 5 units of metadata for
2192 * this function.
Josef Bacik7b128762008-07-24 12:17:14 -04002193 */
2194int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
2195{
2196 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002197 struct btrfs_block_rsv *block_rsv = NULL;
2198 int reserve = 0;
2199 int insert = 0;
2200 int ret;
Josef Bacik7b128762008-07-24 12:17:14 -04002201
Yan, Zhengd68fc572010-05-16 10:49:58 -04002202 if (!root->orphan_block_rsv) {
Miao Xie66d8f3d2012-09-06 04:02:28 -06002203 block_rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP);
Tsutomu Itohb5324022011-07-19 07:27:20 +00002204 if (!block_rsv)
2205 return -ENOMEM;
Josef Bacik7b128762008-07-24 12:17:14 -04002206 }
2207
Yan, Zhengd68fc572010-05-16 10:49:58 -04002208 spin_lock(&root->orphan_lock);
2209 if (!root->orphan_block_rsv) {
2210 root->orphan_block_rsv = block_rsv;
2211 } else if (block_rsv) {
2212 btrfs_free_block_rsv(root, block_rsv);
2213 block_rsv = NULL;
2214 }
Josef Bacik7b128762008-07-24 12:17:14 -04002215
Josef Bacik8a35d952012-05-23 14:26:42 -04002216 if (!test_and_set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2217 &BTRFS_I(inode)->runtime_flags)) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04002218#if 0
2219 /*
2220 * For proper ENOSPC handling, we should do orphan
2221 * cleanup when mounting. But this introduces backward
2222 * compatibility issue.
2223 */
2224 if (!xchg(&root->orphan_item_inserted, 1))
2225 insert = 2;
2226 else
2227 insert = 1;
2228#endif
2229 insert = 1;
Miao Xie321f0e72012-08-28 22:13:02 -06002230 atomic_inc(&root->orphan_inodes);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002231 }
Josef Bacik7b128762008-07-24 12:17:14 -04002232
Josef Bacik72ac3c02012-05-23 14:13:11 -04002233 if (!test_and_set_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
2234 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04002235 reserve = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002236 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002237
Yan, Zhengd68fc572010-05-16 10:49:58 -04002238 /* grab metadata reservation from transaction handle */
2239 if (reserve) {
2240 ret = btrfs_orphan_reserve_metadata(trans, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002241 BUG_ON(ret); /* -ENOSPC in reservation; Logic error? JDM */
Yan, Zhengd68fc572010-05-16 10:49:58 -04002242 }
2243
2244 /* insert an orphan item to track this unlinked/truncated file */
2245 if (insert >= 1) {
Li Zefan33345d012011-04-20 10:31:50 +08002246 ret = btrfs_insert_orphan_item(trans, root, btrfs_ino(inode));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002247 if (ret && ret != -EEXIST) {
Josef Bacik8a35d952012-05-23 14:26:42 -04002248 clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2249 &BTRFS_I(inode)->runtime_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002250 btrfs_abort_transaction(trans, root, ret);
2251 return ret;
2252 }
2253 ret = 0;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002254 }
2255
2256 /* insert an orphan item to track subvolume contains orphan files */
2257 if (insert >= 2) {
2258 ret = btrfs_insert_orphan_item(trans, root->fs_info->tree_root,
2259 root->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002260 if (ret && ret != -EEXIST) {
2261 btrfs_abort_transaction(trans, root, ret);
2262 return ret;
2263 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002264 }
2265 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002266}
2267
2268/*
2269 * We have done the truncate/delete so we can go ahead and remove the orphan
2270 * item for this particular inode.
2271 */
2272int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode)
2273{
2274 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002275 int delete_item = 0;
2276 int release_rsv = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002277 int ret = 0;
2278
Yan, Zhengd68fc572010-05-16 10:49:58 -04002279 spin_lock(&root->orphan_lock);
Josef Bacik8a35d952012-05-23 14:26:42 -04002280 if (test_and_clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2281 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04002282 delete_item = 1;
Josef Bacik7b128762008-07-24 12:17:14 -04002283
Josef Bacik72ac3c02012-05-23 14:13:11 -04002284 if (test_and_clear_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
2285 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04002286 release_rsv = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002287 spin_unlock(&root->orphan_lock);
2288
2289 if (trans && delete_item) {
Li Zefan33345d012011-04-20 10:31:50 +08002290 ret = btrfs_del_orphan_item(trans, root, btrfs_ino(inode));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002291 BUG_ON(ret); /* -ENOMEM or corruption (JDM: Recheck) */
Josef Bacik7b128762008-07-24 12:17:14 -04002292 }
2293
Josef Bacik8a35d952012-05-23 14:26:42 -04002294 if (release_rsv) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04002295 btrfs_orphan_release_metadata(inode);
Josef Bacik8a35d952012-05-23 14:26:42 -04002296 atomic_dec(&root->orphan_inodes);
2297 }
Josef Bacik7b128762008-07-24 12:17:14 -04002298
Yan, Zhengd68fc572010-05-16 10:49:58 -04002299 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002300}
2301
2302/*
2303 * this cleans up any orphans that may be left on the list from the last use
2304 * of this root.
2305 */
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002306int btrfs_orphan_cleanup(struct btrfs_root *root)
Josef Bacik7b128762008-07-24 12:17:14 -04002307{
2308 struct btrfs_path *path;
2309 struct extent_buffer *leaf;
Josef Bacik7b128762008-07-24 12:17:14 -04002310 struct btrfs_key key, found_key;
2311 struct btrfs_trans_handle *trans;
2312 struct inode *inode;
Josef Bacik8f6d7f42011-09-26 15:55:20 -04002313 u64 last_objectid = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002314 int ret = 0, nr_unlink = 0, nr_truncate = 0;
2315
Yan, Zhengd68fc572010-05-16 10:49:58 -04002316 if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002317 return 0;
Yan, Zhengc71bf092009-11-12 09:34:40 +00002318
2319 path = btrfs_alloc_path();
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002320 if (!path) {
2321 ret = -ENOMEM;
2322 goto out;
2323 }
Josef Bacik7b128762008-07-24 12:17:14 -04002324 path->reada = -1;
2325
2326 key.objectid = BTRFS_ORPHAN_OBJECTID;
2327 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
2328 key.offset = (u64)-1;
2329
Josef Bacik7b128762008-07-24 12:17:14 -04002330 while (1) {
2331 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002332 if (ret < 0)
2333 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04002334
2335 /*
2336 * if ret == 0 means we found what we were searching for, which
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002337 * is weird, but possible, so only screw with path if we didn't
Josef Bacik7b128762008-07-24 12:17:14 -04002338 * find the key and see if we have stuff that matches
2339 */
2340 if (ret > 0) {
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002341 ret = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002342 if (path->slots[0] == 0)
2343 break;
2344 path->slots[0]--;
2345 }
2346
2347 /* pull out the item */
2348 leaf = path->nodes[0];
Josef Bacik7b128762008-07-24 12:17:14 -04002349 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2350
2351 /* make sure the item matches what we want */
2352 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
2353 break;
2354 if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY)
2355 break;
2356
2357 /* release the path since we're done with it */
David Sterbab3b4aa72011-04-21 01:20:15 +02002358 btrfs_release_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04002359
2360 /*
2361 * this is where we are basically btrfs_lookup, without the
2362 * crossing root thing. we store the inode number in the
2363 * offset of the orphan item.
2364 */
Josef Bacik8f6d7f42011-09-26 15:55:20 -04002365
2366 if (found_key.offset == last_objectid) {
2367 printk(KERN_ERR "btrfs: Error removing orphan entry, "
2368 "stopping orphan cleanup\n");
2369 ret = -EINVAL;
2370 goto out;
2371 }
2372
2373 last_objectid = found_key.offset;
2374
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002375 found_key.objectid = found_key.offset;
2376 found_key.type = BTRFS_INODE_ITEM_KEY;
2377 found_key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +00002378 inode = btrfs_iget(root->fs_info->sb, &found_key, root, NULL);
Josef Bacika8c9e572011-09-21 16:55:59 -04002379 ret = PTR_RET(inode);
2380 if (ret && ret != -ESTALE)
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002381 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04002382
Arne Jansenf8e9e0b2011-12-14 20:12:02 -05002383 if (ret == -ESTALE && root == root->fs_info->tree_root) {
2384 struct btrfs_root *dead_root;
2385 struct btrfs_fs_info *fs_info = root->fs_info;
2386 int is_dead_root = 0;
2387
2388 /*
2389 * this is an orphan in the tree root. Currently these
2390 * could come from 2 sources:
2391 * a) a snapshot deletion in progress
2392 * b) a free space cache inode
2393 * We need to distinguish those two, as the snapshot
2394 * orphan must not get deleted.
2395 * find_dead_roots already ran before us, so if this
2396 * is a snapshot deletion, we should find the root
2397 * in the dead_roots list
2398 */
2399 spin_lock(&fs_info->trans_lock);
2400 list_for_each_entry(dead_root, &fs_info->dead_roots,
2401 root_list) {
2402 if (dead_root->root_key.objectid ==
2403 found_key.objectid) {
2404 is_dead_root = 1;
2405 break;
2406 }
2407 }
2408 spin_unlock(&fs_info->trans_lock);
2409 if (is_dead_root) {
2410 /* prevent this orphan from being found again */
2411 key.offset = found_key.objectid - 1;
2412 continue;
2413 }
2414 }
Josef Bacika8c9e572011-09-21 16:55:59 -04002415 /*
2416 * Inode is already gone but the orphan item is still there,
2417 * kill the orphan item.
2418 */
2419 if (ret == -ESTALE) {
2420 trans = btrfs_start_transaction(root, 1);
2421 if (IS_ERR(trans)) {
2422 ret = PTR_ERR(trans);
2423 goto out;
2424 }
Josef Bacik8a35d952012-05-23 14:26:42 -04002425 printk(KERN_ERR "auto deleting %Lu\n",
2426 found_key.objectid);
Josef Bacika8c9e572011-09-21 16:55:59 -04002427 ret = btrfs_del_orphan_item(trans, root,
2428 found_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002429 BUG_ON(ret); /* -ENOMEM or corruption (JDM: Recheck) */
Josef Bacika8c9e572011-09-21 16:55:59 -04002430 btrfs_end_transaction(trans, root);
2431 continue;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002432 }
Josef Bacik7b128762008-07-24 12:17:14 -04002433
Josef Bacik7b128762008-07-24 12:17:14 -04002434 /*
2435 * add this inode to the orphan list so btrfs_orphan_del does
2436 * the proper thing when we hit it
2437 */
Josef Bacik8a35d952012-05-23 14:26:42 -04002438 set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2439 &BTRFS_I(inode)->runtime_flags);
Josef Bacik7b128762008-07-24 12:17:14 -04002440
Josef Bacik7b128762008-07-24 12:17:14 -04002441 /* if we have links, this was a truncate, lets do that */
2442 if (inode->i_nlink) {
Josef Bacika41ad392011-01-31 15:30:16 -05002443 if (!S_ISREG(inode->i_mode)) {
2444 WARN_ON(1);
2445 iput(inode);
2446 continue;
2447 }
Josef Bacik7b128762008-07-24 12:17:14 -04002448 nr_truncate++;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002449 ret = btrfs_truncate(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04002450 } else {
2451 nr_unlink++;
2452 }
2453
2454 /* this will do delete_inode and everything for us */
2455 iput(inode);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002456 if (ret)
2457 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04002458 }
Miao Xie3254c872011-11-10 20:45:05 -05002459 /* release the path since we're done with it */
2460 btrfs_release_path(path);
2461
Yan, Zhengd68fc572010-05-16 10:49:58 -04002462 root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE;
2463
2464 if (root->orphan_block_rsv)
2465 btrfs_block_rsv_release(root, root->orphan_block_rsv,
2466 (u64)-1);
2467
2468 if (root->orphan_block_rsv || root->orphan_item_inserted) {
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002469 trans = btrfs_join_transaction(root);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002470 if (!IS_ERR(trans))
2471 btrfs_end_transaction(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002472 }
Josef Bacik7b128762008-07-24 12:17:14 -04002473
2474 if (nr_unlink)
2475 printk(KERN_INFO "btrfs: unlinked %d orphans\n", nr_unlink);
2476 if (nr_truncate)
2477 printk(KERN_INFO "btrfs: truncated %d orphans\n", nr_truncate);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002478
2479out:
2480 if (ret)
2481 printk(KERN_CRIT "btrfs: could not do orphan cleanup %d\n", ret);
2482 btrfs_free_path(path);
2483 return ret;
Josef Bacik7b128762008-07-24 12:17:14 -04002484}
2485
Chris Masond352ac62008-09-29 15:18:18 -04002486/*
Chris Mason46a53cc2009-04-27 11:47:50 -04002487 * very simple check to peek ahead in the leaf looking for xattrs. If we
2488 * don't find any xattrs, we know there can't be any acls.
2489 *
2490 * slot is the slot the inode is in, objectid is the objectid of the inode
2491 */
2492static noinline int acls_after_inode_item(struct extent_buffer *leaf,
2493 int slot, u64 objectid)
2494{
2495 u32 nritems = btrfs_header_nritems(leaf);
2496 struct btrfs_key found_key;
2497 int scanned = 0;
2498
2499 slot++;
2500 while (slot < nritems) {
2501 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2502
2503 /* we found a different objectid, there must not be acls */
2504 if (found_key.objectid != objectid)
2505 return 0;
2506
2507 /* we found an xattr, assume we've got an acl */
2508 if (found_key.type == BTRFS_XATTR_ITEM_KEY)
2509 return 1;
2510
2511 /*
2512 * we found a key greater than an xattr key, there can't
2513 * be any acls later on
2514 */
2515 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
2516 return 0;
2517
2518 slot++;
2519 scanned++;
2520
2521 /*
2522 * it goes inode, inode backrefs, xattrs, extents,
2523 * so if there are a ton of hard links to an inode there can
2524 * be a lot of backrefs. Don't waste time searching too hard,
2525 * this is just an optimization
2526 */
2527 if (scanned >= 8)
2528 break;
2529 }
2530 /* we hit the end of the leaf before we found an xattr or
2531 * something larger than an xattr. We have to assume the inode
2532 * has acls
2533 */
2534 return 1;
2535}
2536
2537/*
Chris Masond352ac62008-09-29 15:18:18 -04002538 * read an inode from the btree into the in-memory inode
2539 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002540static void btrfs_read_locked_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002541{
2542 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002543 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002544 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -04002545 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -04002546 struct btrfs_root *root = BTRFS_I(inode)->root;
2547 struct btrfs_key location;
Chris Mason46a53cc2009-04-27 11:47:50 -04002548 int maybe_acls;
Josef Bacik618e21d2007-07-11 10:18:17 -04002549 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04002550 int ret;
Miao Xie2f7e33d2011-06-23 07:27:13 +00002551 bool filled = false;
2552
2553 ret = btrfs_fill_inode(inode, &rdev);
2554 if (!ret)
2555 filled = true;
Chris Mason39279cc2007-06-12 06:35:45 -04002556
2557 path = btrfs_alloc_path();
Mark Fasheh1748f842011-07-12 11:25:31 -07002558 if (!path)
2559 goto make_bad;
2560
Josef Bacikd90c7322011-05-17 09:50:54 -04002561 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002562 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05002563
Chris Mason39279cc2007-06-12 06:35:45 -04002564 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002565 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04002566 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -04002567
Chris Mason5f39d392007-10-15 16:14:19 -04002568 leaf = path->nodes[0];
Miao Xie2f7e33d2011-06-23 07:27:13 +00002569
2570 if (filled)
2571 goto cache_acl;
2572
Chris Mason5f39d392007-10-15 16:14:19 -04002573 inode_item = btrfs_item_ptr(leaf, path->slots[0],
2574 struct btrfs_inode_item);
Chris Mason5f39d392007-10-15 16:14:19 -04002575 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
Miklos Szeredibfe86842011-10-28 14:13:29 +02002576 set_nlink(inode, btrfs_inode_nlink(leaf, inode_item));
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -08002577 i_uid_write(inode, btrfs_inode_uid(leaf, inode_item));
2578 i_gid_write(inode, btrfs_inode_gid(leaf, inode_item));
Chris Masondbe674a2008-07-17 12:54:05 -04002579 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002580
2581 tspec = btrfs_inode_atime(inode_item);
2582 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2583 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2584
2585 tspec = btrfs_inode_mtime(inode_item);
2586 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2587 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2588
2589 tspec = btrfs_inode_ctime(inode_item);
2590 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2591 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2592
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002593 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04002594 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Josef Bacik5dc562c2012-08-17 13:14:17 -04002595 BTRFS_I(inode)->last_trans = btrfs_inode_transid(leaf, inode_item);
2596
2597 /*
2598 * If we were modified in the current generation and evicted from memory
2599 * and then re-read we need to do a full sync since we don't have any
2600 * idea about which extents were modified before we were evicted from
2601 * cache.
2602 */
2603 if (BTRFS_I(inode)->last_trans == root->fs_info->generation)
2604 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
2605 &BTRFS_I(inode)->runtime_flags);
2606
Josef Bacik0c4d2d92012-04-05 15:03:02 -04002607 inode->i_version = btrfs_inode_sequence(leaf, inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04002608 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04002609 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002610 rdev = btrfs_inode_rdev(leaf, inode_item);
2611
Josef Bacikaec74772008-07-24 12:12:38 -04002612 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05002613 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Miao Xie2f7e33d2011-06-23 07:27:13 +00002614cache_acl:
Chris Mason46a53cc2009-04-27 11:47:50 -04002615 /*
2616 * try to precache a NULL acl entry for files that don't have
2617 * any xattrs or acls
2618 */
Li Zefan33345d012011-04-20 10:31:50 +08002619 maybe_acls = acls_after_inode_item(leaf, path->slots[0],
2620 btrfs_ino(inode));
Al Viro72c04902009-06-24 16:58:48 -04002621 if (!maybe_acls)
2622 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04002623
Chris Mason39279cc2007-06-12 06:35:45 -04002624 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002625
Chris Mason39279cc2007-06-12 06:35:45 -04002626 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04002627 case S_IFREG:
2628 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04002629 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05002630 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04002631 inode->i_fop = &btrfs_file_operations;
2632 inode->i_op = &btrfs_file_inode_operations;
2633 break;
2634 case S_IFDIR:
2635 inode->i_fop = &btrfs_dir_file_operations;
2636 if (root == root->fs_info->tree_root)
2637 inode->i_op = &btrfs_dir_ro_inode_operations;
2638 else
2639 inode->i_op = &btrfs_dir_inode_operations;
2640 break;
2641 case S_IFLNK:
2642 inode->i_op = &btrfs_symlink_inode_operations;
2643 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04002644 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04002645 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04002646 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05002647 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04002648 init_special_inode(inode, inode->i_mode, rdev);
2649 break;
Chris Mason39279cc2007-06-12 06:35:45 -04002650 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002651
2652 btrfs_update_iflags(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002653 return;
2654
2655make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04002656 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002657 make_bad_inode(inode);
2658}
2659
Chris Masond352ac62008-09-29 15:18:18 -04002660/*
2661 * given a leaf and an inode, copy the inode fields into the leaf
2662 */
Chris Masone02119d2008-09-05 16:13:11 -04002663static void fill_inode_item(struct btrfs_trans_handle *trans,
2664 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04002665 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04002666 struct inode *inode)
2667{
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -08002668 btrfs_set_inode_uid(leaf, item, i_uid_read(inode));
2669 btrfs_set_inode_gid(leaf, item, i_gid_read(inode));
Chris Masondbe674a2008-07-17 12:54:05 -04002670 btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size);
Chris Mason5f39d392007-10-15 16:14:19 -04002671 btrfs_set_inode_mode(leaf, item, inode->i_mode);
2672 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
2673
2674 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
2675 inode->i_atime.tv_sec);
2676 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
2677 inode->i_atime.tv_nsec);
2678
2679 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
2680 inode->i_mtime.tv_sec);
2681 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
2682 inode->i_mtime.tv_nsec);
2683
2684 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
2685 inode->i_ctime.tv_sec);
2686 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
2687 inode->i_ctime.tv_nsec);
2688
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002689 btrfs_set_inode_nbytes(leaf, item, inode_get_bytes(inode));
Chris Masone02119d2008-09-05 16:13:11 -04002690 btrfs_set_inode_generation(leaf, item, BTRFS_I(inode)->generation);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04002691 btrfs_set_inode_sequence(leaf, item, inode->i_version);
Chris Masone02119d2008-09-05 16:13:11 -04002692 btrfs_set_inode_transid(leaf, item, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002693 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -05002694 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04002695 btrfs_set_inode_block_group(leaf, item, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002696}
2697
Chris Masond352ac62008-09-29 15:18:18 -04002698/*
2699 * copy everything in the in-memory inode into the btree.
2700 */
Chris Mason21151332011-11-10 20:39:08 -05002701static noinline int btrfs_update_inode_item(struct btrfs_trans_handle *trans,
Chris Masond3977122009-01-05 21:25:51 -05002702 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002703{
2704 struct btrfs_inode_item *inode_item;
2705 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002706 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002707 int ret;
2708
2709 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08002710 if (!path)
2711 return -ENOMEM;
2712
Chris Masonb9473432009-03-13 11:00:37 -04002713 path->leave_spinning = 1;
Miao Xie16cdcec2011-04-22 18:12:22 +08002714 ret = btrfs_lookup_inode(trans, root, path, &BTRFS_I(inode)->location,
2715 1);
Chris Mason39279cc2007-06-12 06:35:45 -04002716 if (ret) {
2717 if (ret > 0)
2718 ret = -ENOENT;
2719 goto failed;
2720 }
2721
Chris Masonb4ce94d2009-02-04 09:25:08 -05002722 btrfs_unlock_up_safe(path, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002723 leaf = path->nodes[0];
2724 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Miao Xie16cdcec2011-04-22 18:12:22 +08002725 struct btrfs_inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -04002726
Chris Masone02119d2008-09-05 16:13:11 -04002727 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002728 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002729 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002730 ret = 0;
2731failed:
Chris Mason39279cc2007-06-12 06:35:45 -04002732 btrfs_free_path(path);
2733 return ret;
2734}
2735
Chris Masond352ac62008-09-29 15:18:18 -04002736/*
Chris Mason21151332011-11-10 20:39:08 -05002737 * copy everything in the in-memory inode into the btree.
2738 */
2739noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
2740 struct btrfs_root *root, struct inode *inode)
2741{
2742 int ret;
2743
2744 /*
2745 * If the inode is a free space inode, we can deadlock during commit
2746 * if we put it into the delayed code.
2747 *
2748 * The data relocation inode should also be directly updated
2749 * without delay
2750 */
Liu Bo83eea1f2012-07-10 05:28:39 -06002751 if (!btrfs_is_free_space_inode(inode)
Chris Mason21151332011-11-10 20:39:08 -05002752 && root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID) {
Alexander Block8ea05e32012-07-25 17:35:53 +02002753 btrfs_update_root_times(trans, root);
2754
Chris Mason21151332011-11-10 20:39:08 -05002755 ret = btrfs_delayed_update_inode(trans, root, inode);
2756 if (!ret)
2757 btrfs_set_inode_last_trans(trans, inode);
2758 return ret;
2759 }
2760
2761 return btrfs_update_inode_item(trans, root, inode);
2762}
2763
Josef Bacikbe6aef62012-10-22 15:43:12 -04002764noinline int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans,
2765 struct btrfs_root *root,
2766 struct inode *inode)
Chris Mason21151332011-11-10 20:39:08 -05002767{
2768 int ret;
2769
2770 ret = btrfs_update_inode(trans, root, inode);
2771 if (ret == -ENOSPC)
2772 return btrfs_update_inode_item(trans, root, inode);
2773 return ret;
2774}
2775
2776/*
Chris Masond352ac62008-09-29 15:18:18 -04002777 * unlink helper that gets used here in inode.c and in the tree logging
2778 * recovery code. It remove a link in a directory with a given name, and
2779 * also drops the back refs in the inode to the directory
2780 */
Al Viro92986792011-03-04 17:14:37 +00002781static int __btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2782 struct btrfs_root *root,
2783 struct inode *dir, struct inode *inode,
2784 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04002785{
2786 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04002787 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002788 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002789 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04002790 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04002791 u64 index;
Li Zefan33345d012011-04-20 10:31:50 +08002792 u64 ino = btrfs_ino(inode);
2793 u64 dir_ino = btrfs_ino(dir);
Chris Mason39279cc2007-06-12 06:35:45 -04002794
2795 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002796 if (!path) {
2797 ret = -ENOMEM;
Tsutomu Itoh554233a2011-02-03 03:16:25 +00002798 goto out;
Chris Mason54aa1f42007-06-22 14:16:25 -04002799 }
2800
Chris Masonb9473432009-03-13 11:00:37 -04002801 path->leave_spinning = 1;
Li Zefan33345d012011-04-20 10:31:50 +08002802 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Chris Mason39279cc2007-06-12 06:35:45 -04002803 name, name_len, -1);
2804 if (IS_ERR(di)) {
2805 ret = PTR_ERR(di);
2806 goto err;
2807 }
2808 if (!di) {
2809 ret = -ENOENT;
2810 goto err;
2811 }
Chris Mason5f39d392007-10-15 16:14:19 -04002812 leaf = path->nodes[0];
2813 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04002814 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04002815 if (ret)
2816 goto err;
David Sterbab3b4aa72011-04-21 01:20:15 +02002817 btrfs_release_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002818
Li Zefan33345d012011-04-20 10:31:50 +08002819 ret = btrfs_del_inode_ref(trans, root, name, name_len, ino,
2820 dir_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04002821 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05002822 printk(KERN_INFO "btrfs failed to delete reference to %.*s, "
Li Zefan33345d012011-04-20 10:31:50 +08002823 "inode %llu parent %llu\n", name_len, name,
2824 (unsigned long long)ino, (unsigned long long)dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002825 btrfs_abort_transaction(trans, root, ret);
Josef Bacikaec74772008-07-24 12:12:38 -04002826 goto err;
2827 }
2828
Miao Xie16cdcec2011-04-22 18:12:22 +08002829 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002830 if (ret) {
2831 btrfs_abort_transaction(trans, root, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04002832 goto err;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002833 }
Chris Mason39279cc2007-06-12 06:35:45 -04002834
Chris Masone02119d2008-09-05 16:13:11 -04002835 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
Li Zefan33345d012011-04-20 10:31:50 +08002836 inode, dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002837 if (ret != 0 && ret != -ENOENT) {
2838 btrfs_abort_transaction(trans, root, ret);
2839 goto err;
2840 }
Chris Masone02119d2008-09-05 16:13:11 -04002841
2842 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
2843 dir, index);
Chris Mason6418c962010-10-30 07:34:24 -04002844 if (ret == -ENOENT)
2845 ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002846err:
2847 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002848 if (ret)
2849 goto out;
2850
2851 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04002852 inode_inc_iversion(inode);
2853 inode_inc_iversion(dir);
Chris Masone02119d2008-09-05 16:13:11 -04002854 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
Tsutomu Itohb9959292012-06-25 21:25:22 -06002855 ret = btrfs_update_inode(trans, root, dir);
Chris Masone02119d2008-09-05 16:13:11 -04002856out:
Chris Mason39279cc2007-06-12 06:35:45 -04002857 return ret;
2858}
2859
Al Viro92986792011-03-04 17:14:37 +00002860int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2861 struct btrfs_root *root,
2862 struct inode *dir, struct inode *inode,
2863 const char *name, int name_len)
2864{
2865 int ret;
2866 ret = __btrfs_unlink_inode(trans, root, dir, inode, name, name_len);
2867 if (!ret) {
2868 btrfs_drop_nlink(inode);
2869 ret = btrfs_update_inode(trans, root, inode);
2870 }
2871 return ret;
2872}
2873
2874
Yan, Zhenga22285a2010-05-16 10:48:46 -04002875/* helper to check if there is any shared block in the path */
2876static int check_path_shared(struct btrfs_root *root,
2877 struct btrfs_path *path)
2878{
2879 struct extent_buffer *eb;
2880 int level;
Dan Carpenter0e4dcbef2010-06-01 08:23:11 +00002881 u64 refs = 1;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002882
2883 for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
Josef Bacikdedefd72011-01-24 21:43:18 +00002884 int ret;
2885
Yan, Zhenga22285a2010-05-16 10:48:46 -04002886 if (!path->nodes[level])
2887 break;
2888 eb = path->nodes[level];
2889 if (!btrfs_block_can_be_shared(root, eb))
2890 continue;
2891 ret = btrfs_lookup_extent_info(NULL, root, eb->start, eb->len,
2892 &refs, NULL);
2893 if (refs > 1)
2894 return 1;
2895 }
Josef Bacikdedefd72011-01-24 21:43:18 +00002896 return 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002897}
2898
2899/*
2900 * helper to start transaction for unlink and rmdir.
2901 *
2902 * unlink and rmdir are special in btrfs, they do not always free space.
2903 * so in enospc case, we should make sure they will free space before
2904 * allowing them to use the global metadata reservation.
2905 */
2906static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir,
2907 struct dentry *dentry)
2908{
2909 struct btrfs_trans_handle *trans;
2910 struct btrfs_root *root = BTRFS_I(dir)->root;
2911 struct btrfs_path *path;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002912 struct btrfs_dir_item *di;
2913 struct inode *inode = dentry->d_inode;
2914 u64 index;
2915 int check_link = 1;
2916 int err = -ENOSPC;
2917 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08002918 u64 ino = btrfs_ino(inode);
2919 u64 dir_ino = btrfs_ino(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002920
Josef Bacike70bea52011-10-11 14:18:24 -04002921 /*
2922 * 1 for the possible orphan item
2923 * 1 for the dir item
2924 * 1 for the dir index
2925 * 1 for the inode ref
2926 * 1 for the inode ref in the tree log
2927 * 2 for the dir entries in the log
2928 * 1 for the inode
2929 */
2930 trans = btrfs_start_transaction(root, 8);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002931 if (!IS_ERR(trans) || PTR_ERR(trans) != -ENOSPC)
2932 return trans;
2933
Li Zefan33345d012011-04-20 10:31:50 +08002934 if (ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhenga22285a2010-05-16 10:48:46 -04002935 return ERR_PTR(-ENOSPC);
2936
2937 /* check if there is someone else holds reference */
2938 if (S_ISDIR(inode->i_mode) && atomic_read(&inode->i_count) > 1)
2939 return ERR_PTR(-ENOSPC);
2940
2941 if (atomic_read(&inode->i_count) > 2)
2942 return ERR_PTR(-ENOSPC);
2943
2944 if (xchg(&root->fs_info->enospc_unlink, 1))
2945 return ERR_PTR(-ENOSPC);
2946
2947 path = btrfs_alloc_path();
2948 if (!path) {
2949 root->fs_info->enospc_unlink = 0;
2950 return ERR_PTR(-ENOMEM);
2951 }
2952
Josef Bacik3880a1b2011-10-14 14:46:51 -04002953 /* 1 for the orphan item */
2954 trans = btrfs_start_transaction(root, 1);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002955 if (IS_ERR(trans)) {
2956 btrfs_free_path(path);
2957 root->fs_info->enospc_unlink = 0;
2958 return trans;
2959 }
2960
2961 path->skip_locking = 1;
2962 path->search_commit_root = 1;
2963
2964 ret = btrfs_lookup_inode(trans, root, path,
2965 &BTRFS_I(dir)->location, 0);
2966 if (ret < 0) {
2967 err = ret;
2968 goto out;
2969 }
2970 if (ret == 0) {
2971 if (check_path_shared(root, path))
2972 goto out;
2973 } else {
2974 check_link = 0;
2975 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002976 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002977
2978 ret = btrfs_lookup_inode(trans, root, path,
2979 &BTRFS_I(inode)->location, 0);
2980 if (ret < 0) {
2981 err = ret;
2982 goto out;
2983 }
2984 if (ret == 0) {
2985 if (check_path_shared(root, path))
2986 goto out;
2987 } else {
2988 check_link = 0;
2989 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002990 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002991
2992 if (ret == 0 && S_ISREG(inode->i_mode)) {
2993 ret = btrfs_lookup_file_extent(trans, root, path,
Li Zefan33345d012011-04-20 10:31:50 +08002994 ino, (u64)-1, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002995 if (ret < 0) {
2996 err = ret;
2997 goto out;
2998 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002999 BUG_ON(ret == 0); /* Corruption */
Yan, Zhenga22285a2010-05-16 10:48:46 -04003000 if (check_path_shared(root, path))
3001 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +02003002 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003003 }
3004
3005 if (!check_link) {
3006 err = 0;
3007 goto out;
3008 }
3009
Li Zefan33345d012011-04-20 10:31:50 +08003010 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zhenga22285a2010-05-16 10:48:46 -04003011 dentry->d_name.name, dentry->d_name.len, 0);
3012 if (IS_ERR(di)) {
3013 err = PTR_ERR(di);
3014 goto out;
3015 }
3016 if (di) {
3017 if (check_path_shared(root, path))
3018 goto out;
3019 } else {
3020 err = 0;
3021 goto out;
3022 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003023 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003024
Mark Fashehf1863732012-08-08 11:32:27 -07003025 ret = btrfs_get_inode_ref_index(trans, root, path, dentry->d_name.name,
3026 dentry->d_name.len, ino, dir_ino, 0,
3027 &index);
3028 if (ret) {
3029 err = ret;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003030 goto out;
3031 }
Mark Fashehf1863732012-08-08 11:32:27 -07003032
Yan, Zhenga22285a2010-05-16 10:48:46 -04003033 if (check_path_shared(root, path))
3034 goto out;
Mark Fashehf1863732012-08-08 11:32:27 -07003035
David Sterbab3b4aa72011-04-21 01:20:15 +02003036 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003037
Miao Xie16cdcec2011-04-22 18:12:22 +08003038 /*
3039 * This is a commit root search, if we can lookup inode item and other
3040 * relative items in the commit root, it means the transaction of
3041 * dir/file creation has been committed, and the dir index item that we
3042 * delay to insert has also been inserted into the commit root. So
3043 * we needn't worry about the delayed insertion of the dir index item
3044 * here.
3045 */
Li Zefan33345d012011-04-20 10:31:50 +08003046 di = btrfs_lookup_dir_index_item(trans, root, path, dir_ino, index,
Yan, Zhenga22285a2010-05-16 10:48:46 -04003047 dentry->d_name.name, dentry->d_name.len, 0);
3048 if (IS_ERR(di)) {
3049 err = PTR_ERR(di);
3050 goto out;
3051 }
3052 BUG_ON(ret == -ENOENT);
3053 if (check_path_shared(root, path))
3054 goto out;
3055
3056 err = 0;
3057out:
3058 btrfs_free_path(path);
Josef Bacik3880a1b2011-10-14 14:46:51 -04003059 /* Migrate the orphan reservation over */
3060 if (!err)
3061 err = btrfs_block_rsv_migrate(trans->block_rsv,
3062 &root->fs_info->global_block_rsv,
Josef Bacik5a77d762011-11-01 14:32:23 -04003063 trans->bytes_reserved);
Josef Bacik3880a1b2011-10-14 14:46:51 -04003064
Yan, Zhenga22285a2010-05-16 10:48:46 -04003065 if (err) {
3066 btrfs_end_transaction(trans, root);
3067 root->fs_info->enospc_unlink = 0;
3068 return ERR_PTR(err);
3069 }
3070
3071 trans->block_rsv = &root->fs_info->global_block_rsv;
3072 return trans;
3073}
3074
3075static void __unlink_end_trans(struct btrfs_trans_handle *trans,
3076 struct btrfs_root *root)
3077{
Miao Xie66d8f3d2012-09-06 04:02:28 -06003078 if (trans->block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL) {
Josef Bacik5a77d762011-11-01 14:32:23 -04003079 btrfs_block_rsv_release(root, trans->block_rsv,
3080 trans->bytes_reserved);
3081 trans->block_rsv = &root->fs_info->trans_block_rsv;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003082 BUG_ON(!root->fs_info->enospc_unlink);
3083 root->fs_info->enospc_unlink = 0;
3084 }
Josef Bacik7ad85bb2012-01-12 19:10:12 -05003085 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003086}
3087
Chris Mason39279cc2007-06-12 06:35:45 -04003088static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
3089{
Yan, Zhenga22285a2010-05-16 10:48:46 -04003090 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003091 struct btrfs_trans_handle *trans;
Josef Bacik7b128762008-07-24 12:17:14 -04003092 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04003093 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05003094 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003095
Yan, Zhenga22285a2010-05-16 10:48:46 -04003096 trans = __unlink_start_trans(dir, dentry);
3097 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003098 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04003099
Chris Mason12fcfd22009-03-24 10:24:20 -04003100 btrfs_record_unlink_dir(trans, dir, dentry->d_inode, 0);
3101
Chris Masone02119d2008-09-05 16:13:11 -04003102 ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
3103 dentry->d_name.name, dentry->d_name.len);
Tsutomu Itohb5324022011-07-19 07:27:20 +00003104 if (ret)
3105 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003106
Yan, Zhenga22285a2010-05-16 10:48:46 -04003107 if (inode->i_nlink == 0) {
Josef Bacik7b128762008-07-24 12:17:14 -04003108 ret = btrfs_orphan_add(trans, inode);
Tsutomu Itohb5324022011-07-19 07:27:20 +00003109 if (ret)
3110 goto out;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003111 }
Josef Bacik7b128762008-07-24 12:17:14 -04003112
Tsutomu Itohb5324022011-07-19 07:27:20 +00003113out:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003114 nr = trans->blocks_used;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003115 __unlink_end_trans(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003116 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003117 return ret;
3118}
3119
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003120int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
3121 struct btrfs_root *root,
3122 struct inode *dir, u64 objectid,
3123 const char *name, int name_len)
3124{
3125 struct btrfs_path *path;
3126 struct extent_buffer *leaf;
3127 struct btrfs_dir_item *di;
3128 struct btrfs_key key;
3129 u64 index;
3130 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08003131 u64 dir_ino = btrfs_ino(dir);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003132
3133 path = btrfs_alloc_path();
3134 if (!path)
3135 return -ENOMEM;
3136
Li Zefan33345d012011-04-20 10:31:50 +08003137 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003138 name, name_len, -1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003139 if (IS_ERR_OR_NULL(di)) {
3140 if (!di)
3141 ret = -ENOENT;
3142 else
3143 ret = PTR_ERR(di);
3144 goto out;
3145 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003146
3147 leaf = path->nodes[0];
3148 btrfs_dir_item_key_to_cpu(leaf, di, &key);
3149 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
3150 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003151 if (ret) {
3152 btrfs_abort_transaction(trans, root, ret);
3153 goto out;
3154 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003155 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003156
3157 ret = btrfs_del_root_ref(trans, root->fs_info->tree_root,
3158 objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08003159 dir_ino, &index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003160 if (ret < 0) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003161 if (ret != -ENOENT) {
3162 btrfs_abort_transaction(trans, root, ret);
3163 goto out;
3164 }
Li Zefan33345d012011-04-20 10:31:50 +08003165 di = btrfs_search_dir_index_item(root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003166 name, name_len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003167 if (IS_ERR_OR_NULL(di)) {
3168 if (!di)
3169 ret = -ENOENT;
3170 else
3171 ret = PTR_ERR(di);
3172 btrfs_abort_transaction(trans, root, ret);
3173 goto out;
3174 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003175
3176 leaf = path->nodes[0];
3177 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02003178 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003179 index = key.offset;
3180 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003181 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003182
Miao Xie16cdcec2011-04-22 18:12:22 +08003183 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003184 if (ret) {
3185 btrfs_abort_transaction(trans, root, ret);
3186 goto out;
3187 }
Miao Xie16cdcec2011-04-22 18:12:22 +08003188
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003189 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04003190 inode_inc_iversion(dir);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003191 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
Josef Bacik5a24e842012-08-08 10:12:59 -06003192 ret = btrfs_update_inode_fallback(trans, root, dir);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003193 if (ret)
3194 btrfs_abort_transaction(trans, root, ret);
3195out:
Josef Bacik71d7aed2011-06-14 14:24:32 -04003196 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003197 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003198}
3199
Chris Mason39279cc2007-06-12 06:35:45 -04003200static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
3201{
3202 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05003203 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003204 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003205 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -05003206 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003207
David Sterbab3ae2442012-09-13 16:04:34 -06003208 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Yan134d4512007-10-25 15:49:25 -04003209 return -ENOTEMPTY;
David Sterbab3ae2442012-09-13 16:04:34 -06003210 if (btrfs_ino(inode) == BTRFS_FIRST_FREE_OBJECTID)
3211 return -EPERM;
Yan134d4512007-10-25 15:49:25 -04003212
Yan, Zhenga22285a2010-05-16 10:48:46 -04003213 trans = __unlink_start_trans(dir, dentry);
3214 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003215 return PTR_ERR(trans);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003216
Li Zefan33345d012011-04-20 10:31:50 +08003217 if (unlikely(btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003218 err = btrfs_unlink_subvol(trans, root, dir,
3219 BTRFS_I(inode)->location.objectid,
3220 dentry->d_name.name,
3221 dentry->d_name.len);
3222 goto out;
3223 }
3224
Josef Bacik7b128762008-07-24 12:17:14 -04003225 err = btrfs_orphan_add(trans, inode);
3226 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003227 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003228
Chris Mason39279cc2007-06-12 06:35:45 -04003229 /* now the directory is empty */
Chris Masone02119d2008-09-05 16:13:11 -04003230 err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
3231 dentry->d_name.name, dentry->d_name.len);
Chris Masond3977122009-01-05 21:25:51 -05003232 if (!err)
Chris Masondbe674a2008-07-17 12:54:05 -04003233 btrfs_i_size_write(inode, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003234out:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003235 nr = trans->blocks_used;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003236 __unlink_end_trans(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003237 btrfs_btree_balance_dirty(root, nr);
Chris Mason39544012007-12-12 14:38:19 -05003238
Chris Mason39279cc2007-06-12 06:35:45 -04003239 return err;
3240}
3241
Chris Mason323ac952008-10-01 19:05:46 -04003242/*
Chris Mason39279cc2007-06-12 06:35:45 -04003243 * this can truncate away extent items, csum items and directory items.
3244 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04003245 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04003246 *
3247 * csum items that cross the new i_size are truncated to the new size
3248 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04003249 *
3250 * min_type is the minimum key type to truncate down to. If set to 0, this
3251 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04003252 */
Yan, Zheng80825102009-11-12 09:35:36 +00003253int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
3254 struct btrfs_root *root,
3255 struct inode *inode,
3256 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003257{
Chris Mason39279cc2007-06-12 06:35:45 -04003258 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003259 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003260 struct btrfs_file_extent_item *fi;
Yan, Zheng80825102009-11-12 09:35:36 +00003261 struct btrfs_key key;
3262 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04003263 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04003264 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003265 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003266 u64 item_end = 0;
Yan, Zheng80825102009-11-12 09:35:36 +00003267 u64 mask = root->sectorsize - 1;
3268 u32 found_type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -04003269 int found_extent;
3270 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05003271 int pending_del_nr = 0;
3272 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04003273 int extent_type = -1;
Yan, Zheng80825102009-11-12 09:35:36 +00003274 int ret;
3275 int err = 0;
Li Zefan33345d012011-04-20 10:31:50 +08003276 u64 ino = btrfs_ino(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003277
3278 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04003279
Mark Fasheh0eb0e192011-07-12 16:44:10 -07003280 path = btrfs_alloc_path();
3281 if (!path)
3282 return -ENOMEM;
3283 path->reada = -1;
3284
Josef Bacik5dc562c2012-08-17 13:14:17 -04003285 /*
3286 * We want to drop from the next block forward in case this new size is
3287 * not block aligned since we will be keeping the last block of the
3288 * extent just the way it is.
3289 */
Josef Bacik0af3d002010-06-21 14:48:16 -04003290 if (root->ref_cows || root == root->fs_info->tree_root)
Josef Bacik5dc562c2012-08-17 13:14:17 -04003291 btrfs_drop_extent_cache(inode, (new_size + mask) & (~mask), (u64)-1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003292
Miao Xie16cdcec2011-04-22 18:12:22 +08003293 /*
3294 * This function is also used to drop the items in the log tree before
3295 * we relog the inode, so if root != BTRFS_I(inode)->root, it means
3296 * it is used to drop the loged items. So we shouldn't kill the delayed
3297 * items.
3298 */
3299 if (min_type == 0 && root == BTRFS_I(inode)->root)
3300 btrfs_kill_delayed_inode_items(inode);
3301
Li Zefan33345d012011-04-20 10:31:50 +08003302 key.objectid = ino;
Chris Mason39279cc2007-06-12 06:35:45 -04003303 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04003304 key.type = (u8)-1;
3305
Chris Mason85e21ba2008-01-29 15:11:36 -05003306search_again:
Chris Masonb9473432009-03-13 11:00:37 -04003307 path->leave_spinning = 1;
Chris Mason85e21ba2008-01-29 15:11:36 -05003308 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Yan, Zheng80825102009-11-12 09:35:36 +00003309 if (ret < 0) {
3310 err = ret;
3311 goto out;
3312 }
Chris Masond3977122009-01-05 21:25:51 -05003313
Chris Mason85e21ba2008-01-29 15:11:36 -05003314 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003315 /* there are no items in the tree for us to truncate, we're
3316 * done
3317 */
Yan, Zheng80825102009-11-12 09:35:36 +00003318 if (path->slots[0] == 0)
3319 goto out;
Chris Mason85e21ba2008-01-29 15:11:36 -05003320 path->slots[0]--;
3321 }
3322
Chris Masond3977122009-01-05 21:25:51 -05003323 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04003324 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04003325 leaf = path->nodes[0];
3326 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3327 found_type = btrfs_key_type(&found_key);
Chris Mason39279cc2007-06-12 06:35:45 -04003328
Li Zefan33345d012011-04-20 10:31:50 +08003329 if (found_key.objectid != ino)
Chris Mason39279cc2007-06-12 06:35:45 -04003330 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003331
Chris Mason85e21ba2008-01-29 15:11:36 -05003332 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003333 break;
3334
Chris Mason5f39d392007-10-15 16:14:19 -04003335 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04003336 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04003337 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04003338 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04003339 extent_type = btrfs_file_extent_type(leaf, fi);
3340 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04003341 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04003342 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04003343 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04003344 item_end += btrfs_file_extent_inline_len(leaf,
Chris Masonc8b97812008-10-29 14:49:59 -04003345 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003346 }
Yan008630c2007-11-07 13:31:09 -05003347 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04003348 }
Yan, Zheng80825102009-11-12 09:35:36 +00003349 if (found_type > min_type) {
Chris Mason39279cc2007-06-12 06:35:45 -04003350 del_item = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00003351 } else {
3352 if (item_end < new_size)
3353 break;
3354 if (found_key.offset >= new_size)
3355 del_item = 1;
3356 else
3357 del_item = 0;
3358 }
Chris Mason39279cc2007-06-12 06:35:45 -04003359 found_extent = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003360 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04003361 if (found_type != BTRFS_EXTENT_DATA_KEY)
3362 goto delete;
3363
3364 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04003365 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04003366 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Miao Xief70a9a6b2012-01-12 19:10:12 -05003367 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -04003368 u64 orig_num_bytes =
3369 btrfs_file_extent_num_bytes(leaf, fi);
Chris Masone02119d2008-09-05 16:13:11 -04003370 extent_num_bytes = new_size -
Chris Mason5f39d392007-10-15 16:14:19 -04003371 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -05003372 extent_num_bytes = extent_num_bytes &
3373 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04003374 btrfs_set_file_extent_num_bytes(leaf, fi,
3375 extent_num_bytes);
3376 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05003377 extent_num_bytes);
Chris Masone02119d2008-09-05 16:13:11 -04003378 if (root->ref_cows && extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003379 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04003380 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003381 } else {
Chris Masondb945352007-10-15 16:15:53 -04003382 extent_num_bytes =
3383 btrfs_file_extent_disk_num_bytes(leaf,
3384 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003385 extent_offset = found_key.offset -
3386 btrfs_file_extent_offset(leaf, fi);
3387
Chris Mason39279cc2007-06-12 06:35:45 -04003388 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05003389 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003390 if (extent_start != 0) {
3391 found_extent = 1;
Chris Masone02119d2008-09-05 16:13:11 -04003392 if (root->ref_cows)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003393 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04003394 }
3395 }
Chris Mason90692182008-02-08 13:49:28 -05003396 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003397 /*
3398 * we can't truncate inline items that have had
3399 * special encodings
3400 */
3401 if (!del_item &&
3402 btrfs_file_extent_compression(leaf, fi) == 0 &&
3403 btrfs_file_extent_encryption(leaf, fi) == 0 &&
3404 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003405 u32 size = new_size - found_key.offset;
3406
3407 if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003408 inode_sub_bytes(inode, item_end + 1 -
3409 new_size);
Chris Masone02119d2008-09-05 16:13:11 -04003410 }
3411 size =
3412 btrfs_file_extent_calc_inline_size(size);
Jeff Mahoney143bede2012-03-01 14:56:26 +01003413 btrfs_truncate_item(trans, root, path,
3414 size, 1);
Chris Masone02119d2008-09-05 16:13:11 -04003415 } else if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003416 inode_sub_bytes(inode, item_end + 1 -
3417 found_key.offset);
Chris Mason90692182008-02-08 13:49:28 -05003418 }
Chris Mason39279cc2007-06-12 06:35:45 -04003419 }
Chris Mason179e29e2007-11-01 11:28:41 -04003420delete:
Chris Mason39279cc2007-06-12 06:35:45 -04003421 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05003422 if (!pending_del_nr) {
3423 /* no pending yet, add ourselves */
3424 pending_del_slot = path->slots[0];
3425 pending_del_nr = 1;
3426 } else if (pending_del_nr &&
3427 path->slots[0] + 1 == pending_del_slot) {
3428 /* hop on the pending chunk */
3429 pending_del_nr++;
3430 pending_del_slot = path->slots[0];
3431 } else {
Chris Masond3977122009-01-05 21:25:51 -05003432 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05003433 }
Chris Mason39279cc2007-06-12 06:35:45 -04003434 } else {
3435 break;
3436 }
Josef Bacik0af3d002010-06-21 14:48:16 -04003437 if (found_extent && (root->ref_cows ||
3438 root == root->fs_info->tree_root)) {
Chris Masonb9473432009-03-13 11:00:37 -04003439 btrfs_set_path_blocking(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003440 ret = btrfs_free_extent(trans, root, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003441 extent_num_bytes, 0,
3442 btrfs_header_owner(leaf),
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003443 ino, extent_offset, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04003444 BUG_ON(ret);
3445 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003446
Yan, Zheng80825102009-11-12 09:35:36 +00003447 if (found_type == BTRFS_INODE_ITEM_KEY)
3448 break;
3449
3450 if (path->slots[0] == 0 ||
3451 path->slots[0] != pending_del_slot) {
Yan, Zheng80825102009-11-12 09:35:36 +00003452 if (pending_del_nr) {
3453 ret = btrfs_del_items(trans, root, path,
3454 pending_del_slot,
3455 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003456 if (ret) {
3457 btrfs_abort_transaction(trans,
3458 root, ret);
3459 goto error;
3460 }
Yan, Zheng80825102009-11-12 09:35:36 +00003461 pending_del_nr = 0;
3462 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003463 btrfs_release_path(path);
Chris Mason85e21ba2008-01-29 15:11:36 -05003464 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00003465 } else {
3466 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05003467 }
Chris Mason39279cc2007-06-12 06:35:45 -04003468 }
Yan, Zheng80825102009-11-12 09:35:36 +00003469out:
Chris Mason85e21ba2008-01-29 15:11:36 -05003470 if (pending_del_nr) {
3471 ret = btrfs_del_items(trans, root, path, pending_del_slot,
3472 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003473 if (ret)
3474 btrfs_abort_transaction(trans, root, ret);
Chris Mason85e21ba2008-01-29 15:11:36 -05003475 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003476error:
Chris Mason39279cc2007-06-12 06:35:45 -04003477 btrfs_free_path(path);
Yan, Zheng80825102009-11-12 09:35:36 +00003478 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003479}
3480
Chris Masona52d9a82007-08-27 16:49:44 -04003481/*
Josef Bacik2aaa6652012-08-29 14:27:18 -04003482 * btrfs_truncate_page - read, zero a chunk and write a page
3483 * @inode - inode that we're zeroing
3484 * @from - the offset to start zeroing
3485 * @len - the length to zero, 0 to zero the entire range respective to the
3486 * offset
3487 * @front - zero up to the offset instead of from the offset on
3488 *
3489 * This will find the page for the "from" offset and cow the page and zero the
3490 * part we want to zero. This is used with truncate and hole punching.
Chris Masona52d9a82007-08-27 16:49:44 -04003491 */
Josef Bacik2aaa6652012-08-29 14:27:18 -04003492int btrfs_truncate_page(struct inode *inode, loff_t from, loff_t len,
3493 int front)
Chris Masona52d9a82007-08-27 16:49:44 -04003494{
Josef Bacik2aaa6652012-08-29 14:27:18 -04003495 struct address_space *mapping = inode->i_mapping;
Chris Masondb945352007-10-15 16:15:53 -04003496 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003497 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
3498 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003499 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003500 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04003501 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04003502 pgoff_t index = from >> PAGE_CACHE_SHIFT;
3503 unsigned offset = from & (PAGE_CACHE_SIZE-1);
3504 struct page *page;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04003505 gfp_t mask = btrfs_alloc_write_mask(mapping);
Chris Masona52d9a82007-08-27 16:49:44 -04003506 int ret = 0;
3507 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003508 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04003509
Josef Bacik2aaa6652012-08-29 14:27:18 -04003510 if ((offset & (blocksize - 1)) == 0 &&
3511 (!len || ((len & (blocksize - 1)) == 0)))
Chris Masona52d9a82007-08-27 16:49:44 -04003512 goto out;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003513 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003514 if (ret)
3515 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003516
3517 ret = -ENOMEM;
Chris Mason211c17f2008-05-15 09:13:45 -04003518again:
Josef Bacik3b16a4e2011-09-21 15:05:58 -04003519 page = find_or_create_page(mapping, index, mask);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003520 if (!page) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003521 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Masona52d9a82007-08-27 16:49:44 -04003522 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04003523 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003524
3525 page_start = page_offset(page);
3526 page_end = page_start + PAGE_CACHE_SIZE - 1;
3527
Chris Masona52d9a82007-08-27 16:49:44 -04003528 if (!PageUptodate(page)) {
3529 ret = btrfs_readpage(NULL, page);
3530 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04003531 if (page->mapping != mapping) {
3532 unlock_page(page);
3533 page_cache_release(page);
3534 goto again;
3535 }
Chris Masona52d9a82007-08-27 16:49:44 -04003536 if (!PageUptodate(page)) {
3537 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04003538 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04003539 }
3540 }
Chris Mason211c17f2008-05-15 09:13:45 -04003541 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003542
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003543 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003544 set_page_extent_mapped(page);
3545
3546 ordered = btrfs_lookup_ordered_extent(inode, page_start);
3547 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003548 unlock_extent_cached(io_tree, page_start, page_end,
3549 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003550 unlock_page(page);
3551 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04003552 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003553 btrfs_put_ordered_extent(ordered);
3554 goto again;
3555 }
3556
Josef Bacik2ac55d42010-02-03 19:33:23 +00003557 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Liu Bo9e8a4a82012-09-05 19:10:51 -06003558 EXTENT_DIRTY | EXTENT_DELALLOC |
3559 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003560 0, 0, &cached_state, GFP_NOFS);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003561
Josef Bacik2ac55d42010-02-03 19:33:23 +00003562 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
3563 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003564 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003565 unlock_extent_cached(io_tree, page_start, page_end,
3566 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003567 goto out_unlock;
3568 }
3569
Chris Masone6dcd2d2008-07-17 12:53:50 -04003570 ret = 0;
3571 if (offset != PAGE_CACHE_SIZE) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04003572 if (!len)
3573 len = PAGE_CACHE_SIZE - offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003574 kaddr = kmap(page);
Josef Bacik2aaa6652012-08-29 14:27:18 -04003575 if (front)
3576 memset(kaddr, 0, offset);
3577 else
3578 memset(kaddr + offset, 0, len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003579 flush_dcache_page(page);
3580 kunmap(page);
3581 }
Chris Mason247e7432008-07-17 12:53:51 -04003582 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003583 set_page_dirty(page);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003584 unlock_extent_cached(io_tree, page_start, page_end, &cached_state,
3585 GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04003586
Chris Mason89642222008-07-24 09:41:53 -04003587out_unlock:
Josef Bacik5d5e1032009-10-13 16:46:49 -04003588 if (ret)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003589 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason39279cc2007-06-12 06:35:45 -04003590 unlock_page(page);
3591 page_cache_release(page);
3592out:
3593 return ret;
3594}
3595
Josef Bacik695a0d02011-03-04 15:46:53 -05003596/*
3597 * This function puts in dummy file extents for the area we're creating a hole
3598 * for. So if we are truncating this file to a larger size we need to insert
3599 * these file extents so that btrfs_get_extent will return a EXTENT_MAP_HOLE for
3600 * the range between oldsize and size
3601 */
Josef Bacika41ad392011-01-31 15:30:16 -05003602int btrfs_cont_expand(struct inode *inode, loff_t oldsize, loff_t size)
Yan Zheng9036c102008-10-30 14:19:41 -04003603{
3604 struct btrfs_trans_handle *trans;
3605 struct btrfs_root *root = BTRFS_I(inode)->root;
3606 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003607 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003608 struct extent_state *cached_state = NULL;
Josef Bacik5dc562c2012-08-17 13:14:17 -04003609 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Yan Zheng9036c102008-10-30 14:19:41 -04003610 u64 mask = root->sectorsize - 1;
Josef Bacika41ad392011-01-31 15:30:16 -05003611 u64 hole_start = (oldsize + mask) & ~mask;
Yan Zheng9036c102008-10-30 14:19:41 -04003612 u64 block_end = (size + mask) & ~mask;
3613 u64 last_byte;
3614 u64 cur_offset;
3615 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003616 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003617
3618 if (size <= hole_start)
3619 return 0;
3620
Yan Zheng9036c102008-10-30 14:19:41 -04003621 while (1) {
3622 struct btrfs_ordered_extent *ordered;
3623 btrfs_wait_ordered_range(inode, hole_start,
3624 block_end - hole_start);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003625 lock_extent_bits(io_tree, hole_start, block_end - 1, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003626 &cached_state);
Yan Zheng9036c102008-10-30 14:19:41 -04003627 ordered = btrfs_lookup_ordered_extent(inode, hole_start);
3628 if (!ordered)
3629 break;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003630 unlock_extent_cached(io_tree, hole_start, block_end - 1,
3631 &cached_state, GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003632 btrfs_put_ordered_extent(ordered);
3633 }
3634
Yan Zheng9036c102008-10-30 14:19:41 -04003635 cur_offset = hole_start;
3636 while (1) {
3637 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
3638 block_end - cur_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003639 if (IS_ERR(em)) {
3640 err = PTR_ERR(em);
3641 break;
3642 }
Yan Zheng9036c102008-10-30 14:19:41 -04003643 last_byte = min(extent_map_end(em), block_end);
3644 last_byte = (last_byte + mask) & ~mask;
Yan, Zheng80825102009-11-12 09:35:36 +00003645 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Josef Bacik5dc562c2012-08-17 13:14:17 -04003646 struct extent_map *hole_em;
Yan Zheng9036c102008-10-30 14:19:41 -04003647 hole_size = last_byte - cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00003648
Miao Xie36423202011-12-14 20:12:02 -05003649 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003650 if (IS_ERR(trans)) {
3651 err = PTR_ERR(trans);
Chris Mason771ed682008-11-06 22:02:51 -05003652 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003653 }
Yan, Zheng80825102009-11-12 09:35:36 +00003654
Josef Bacik5dc562c2012-08-17 13:14:17 -04003655 err = btrfs_drop_extents(trans, root, inode,
3656 cur_offset,
Josef Bacik26714852012-08-29 12:24:27 -04003657 cur_offset + hole_size, 1);
Miao Xie5b397372011-09-11 10:52:24 -04003658 if (err) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003659 btrfs_abort_transaction(trans, root, err);
Miao Xie5b397372011-09-11 10:52:24 -04003660 btrfs_end_transaction(trans, root);
Josef Bacik3893e332011-01-31 16:03:11 -05003661 break;
Miao Xie5b397372011-09-11 10:52:24 -04003662 }
Josef Bacik9ed74f22009-09-11 16:12:44 -04003663
Yan Zheng9036c102008-10-30 14:19:41 -04003664 err = btrfs_insert_file_extent(trans, root,
Li Zefan33345d012011-04-20 10:31:50 +08003665 btrfs_ino(inode), cur_offset, 0,
Yan Zheng9036c102008-10-30 14:19:41 -04003666 0, hole_size, 0, hole_size,
3667 0, 0, 0);
Miao Xie5b397372011-09-11 10:52:24 -04003668 if (err) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003669 btrfs_abort_transaction(trans, root, err);
Miao Xie5b397372011-09-11 10:52:24 -04003670 btrfs_end_transaction(trans, root);
Josef Bacik3893e332011-01-31 16:03:11 -05003671 break;
Miao Xie5b397372011-09-11 10:52:24 -04003672 }
Yan, Zheng80825102009-11-12 09:35:36 +00003673
Josef Bacik5dc562c2012-08-17 13:14:17 -04003674 btrfs_drop_extent_cache(inode, cur_offset,
3675 cur_offset + hole_size - 1, 0);
3676 hole_em = alloc_extent_map();
3677 if (!hole_em) {
3678 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3679 &BTRFS_I(inode)->runtime_flags);
3680 goto next;
3681 }
3682 hole_em->start = cur_offset;
3683 hole_em->len = hole_size;
3684 hole_em->orig_start = cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00003685
Josef Bacik5dc562c2012-08-17 13:14:17 -04003686 hole_em->block_start = EXTENT_MAP_HOLE;
3687 hole_em->block_len = 0;
3688 hole_em->bdev = root->fs_info->fs_devices->latest_bdev;
3689 hole_em->compress_type = BTRFS_COMPRESS_NONE;
3690 hole_em->generation = trans->transid;
3691
3692 while (1) {
3693 write_lock(&em_tree->lock);
3694 err = add_extent_mapping(em_tree, hole_em);
3695 if (!err)
3696 list_move(&hole_em->list,
3697 &em_tree->modified_extents);
3698 write_unlock(&em_tree->lock);
3699 if (err != -EEXIST)
3700 break;
3701 btrfs_drop_extent_cache(inode, cur_offset,
3702 cur_offset +
3703 hole_size - 1, 0);
3704 }
3705 free_extent_map(hole_em);
3706next:
Miao Xie36423202011-12-14 20:12:02 -05003707 btrfs_update_inode(trans, root, inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003708 btrfs_end_transaction(trans, root);
Yan Zheng9036c102008-10-30 14:19:41 -04003709 }
3710 free_extent_map(em);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003711 em = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04003712 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00003713 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04003714 break;
3715 }
3716
Yan, Zhenga22285a2010-05-16 10:48:46 -04003717 free_extent_map(em);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003718 unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state,
3719 GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003720 return err;
3721}
3722
Josef Bacika41ad392011-01-31 15:30:16 -05003723static int btrfs_setsize(struct inode *inode, loff_t newsize)
Yan, Zheng80825102009-11-12 09:35:36 +00003724{
Miao Xief4a2f4c2011-12-14 20:12:01 -05003725 struct btrfs_root *root = BTRFS_I(inode)->root;
3726 struct btrfs_trans_handle *trans;
Josef Bacika41ad392011-01-31 15:30:16 -05003727 loff_t oldsize = i_size_read(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003728 int ret;
3729
Josef Bacika41ad392011-01-31 15:30:16 -05003730 if (newsize == oldsize)
Yan, Zheng80825102009-11-12 09:35:36 +00003731 return 0;
3732
Josef Bacika41ad392011-01-31 15:30:16 -05003733 if (newsize > oldsize) {
Josef Bacika41ad392011-01-31 15:30:16 -05003734 truncate_pagecache(inode, oldsize, newsize);
3735 ret = btrfs_cont_expand(inode, oldsize, newsize);
Miao Xief4a2f4c2011-12-14 20:12:01 -05003736 if (ret)
Yan, Zheng80825102009-11-12 09:35:36 +00003737 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00003738
Miao Xief4a2f4c2011-12-14 20:12:01 -05003739 trans = btrfs_start_transaction(root, 1);
3740 if (IS_ERR(trans))
3741 return PTR_ERR(trans);
3742
3743 i_size_write(inode, newsize);
3744 btrfs_ordered_update_i_size(inode, i_size_read(inode), NULL);
3745 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik7ad85bb2012-01-12 19:10:12 -05003746 btrfs_end_transaction(trans, root);
Josef Bacika41ad392011-01-31 15:30:16 -05003747 } else {
Yan, Zheng80825102009-11-12 09:35:36 +00003748
Josef Bacika41ad392011-01-31 15:30:16 -05003749 /*
3750 * We're truncating a file that used to have good data down to
3751 * zero. Make sure it gets into the ordered flush list so that
3752 * any new writes get down to disk quickly.
3753 */
3754 if (newsize == 0)
Josef Bacik72ac3c02012-05-23 14:13:11 -04003755 set_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
3756 &BTRFS_I(inode)->runtime_flags);
Yan, Zheng80825102009-11-12 09:35:36 +00003757
Josef Bacika41ad392011-01-31 15:30:16 -05003758 /* we don't support swapfiles, so vmtruncate shouldn't fail */
3759 truncate_setsize(inode, newsize);
3760 ret = btrfs_truncate(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003761 }
3762
Josef Bacika41ad392011-01-31 15:30:16 -05003763 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00003764}
3765
Chris Mason39279cc2007-06-12 06:35:45 -04003766static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
3767{
3768 struct inode *inode = dentry->d_inode;
Li Zefanb83cc962010-12-20 16:04:08 +08003769 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003770 int err;
3771
Li Zefanb83cc962010-12-20 16:04:08 +08003772 if (btrfs_root_readonly(root))
3773 return -EROFS;
3774
Chris Mason39279cc2007-06-12 06:35:45 -04003775 err = inode_change_ok(inode, attr);
3776 if (err)
3777 return err;
3778
Chris Mason5a3f23d2009-03-31 13:27:11 -04003779 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Josef Bacika41ad392011-01-31 15:30:16 -05003780 err = btrfs_setsize(inode, attr->ia_size);
Yan, Zheng80825102009-11-12 09:35:36 +00003781 if (err)
3782 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003783 }
Yan Zheng9036c102008-10-30 14:19:41 -04003784
Christoph Hellwig10257742010-06-04 11:30:02 +02003785 if (attr->ia_valid) {
3786 setattr_copy(inode, attr);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04003787 inode_inc_iversion(inode);
Josef Bacik22c44fe2011-11-30 10:45:38 -05003788 err = btrfs_dirty_inode(inode);
Josef Bacik33268ea2008-07-24 12:16:36 -04003789
Josef Bacik22c44fe2011-11-30 10:45:38 -05003790 if (!err && attr->ia_valid & ATTR_MODE)
Christoph Hellwig10257742010-06-04 11:30:02 +02003791 err = btrfs_acl_chmod(inode);
3792 }
3793
Chris Mason39279cc2007-06-12 06:35:45 -04003794 return err;
3795}
Chris Mason61295eb2008-01-14 16:24:38 -05003796
Al Virobd555972010-06-07 11:35:40 -04003797void btrfs_evict_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003798{
3799 struct btrfs_trans_handle *trans;
3800 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik726c35f2011-09-26 15:46:06 -04003801 struct btrfs_block_rsv *rsv, *global_rsv;
Josef Bacik07127182011-08-19 10:29:59 -04003802 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003803 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04003804 int ret;
3805
liubo1abe9b82011-03-24 11:18:59 +00003806 trace_btrfs_inode_evict(inode);
3807
Chris Mason39279cc2007-06-12 06:35:45 -04003808 truncate_inode_pages(&inode->i_data, 0);
Josef Bacik0af3d002010-06-21 14:48:16 -04003809 if (inode->i_nlink && (btrfs_root_refs(&root->root_item) != 0 ||
Liu Bo83eea1f2012-07-10 05:28:39 -06003810 btrfs_is_free_space_inode(inode)))
Al Virobd555972010-06-07 11:35:40 -04003811 goto no_delete;
3812
Chris Mason39279cc2007-06-12 06:35:45 -04003813 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04003814 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003815 goto no_delete;
3816 }
Al Virobd555972010-06-07 11:35:40 -04003817 /* do we really want it for ->i_nlink > 0 and zero btrfs_root_refs? */
Chris Mason4a096752008-07-21 10:29:44 -04003818 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04003819
Yan, Zhengc71bf092009-11-12 09:34:40 +00003820 if (root->fs_info->log_root_recovering) {
Liu Bo6bf02312012-06-25 21:59:09 -06003821 BUG_ON(test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
Josef Bacik8a35d952012-05-23 14:26:42 -04003822 &BTRFS_I(inode)->runtime_flags));
Yan, Zhengc71bf092009-11-12 09:34:40 +00003823 goto no_delete;
3824 }
3825
Yan, Zheng76dda932009-09-21 16:00:26 -04003826 if (inode->i_nlink > 0) {
3827 BUG_ON(btrfs_root_refs(&root->root_item) != 0);
3828 goto no_delete;
3829 }
3830
Miao Xie66d8f3d2012-09-06 04:02:28 -06003831 rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP);
Josef Bacik4289a662011-08-05 13:22:24 -04003832 if (!rsv) {
3833 btrfs_orphan_del(NULL, inode);
3834 goto no_delete;
3835 }
Josef Bacik4a338542011-08-29 11:01:31 -04003836 rsv->size = min_size;
Josef Bacikca7e70f2012-08-27 17:48:15 -04003837 rsv->failfast = 1;
Josef Bacik726c35f2011-09-26 15:46:06 -04003838 global_rsv = &root->fs_info->global_block_rsv;
Josef Bacik4289a662011-08-05 13:22:24 -04003839
Chris Masondbe674a2008-07-17 12:54:05 -04003840 btrfs_i_size_write(inode, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003841
Josef Bacik4289a662011-08-05 13:22:24 -04003842 /*
Miao Xie8407aa42012-09-07 01:43:32 -06003843 * This is a bit simpler than btrfs_truncate since we've already
3844 * reserved our space for our orphan item in the unlink, so we just
3845 * need to reserve some slack space in case we add bytes and update
3846 * inode item when doing the truncate.
Josef Bacik4289a662011-08-05 13:22:24 -04003847 */
Yan, Zheng80825102009-11-12 09:35:36 +00003848 while (1) {
Miao Xie08e007d2012-10-16 11:33:38 +00003849 ret = btrfs_block_rsv_refill(root, rsv, min_size,
3850 BTRFS_RESERVE_FLUSH_LIMIT);
Yan, Zheng80825102009-11-12 09:35:36 +00003851
Josef Bacik726c35f2011-09-26 15:46:06 -04003852 /*
3853 * Try and steal from the global reserve since we will
3854 * likely not use this space anyway, we want to try as
3855 * hard as possible to get this to work.
3856 */
3857 if (ret)
3858 ret = btrfs_block_rsv_migrate(global_rsv, rsv, min_size);
3859
Yan, Zhengd68fc572010-05-16 10:49:58 -04003860 if (ret) {
Josef Bacik4289a662011-08-05 13:22:24 -04003861 printk(KERN_WARNING "Could not get space for a "
Josef Bacik482e6dc2011-08-19 10:31:56 -04003862 "delete, will truncate on mount %d\n", ret);
Josef Bacik4289a662011-08-05 13:22:24 -04003863 btrfs_orphan_del(NULL, inode);
3864 btrfs_free_block_rsv(root, rsv);
3865 goto no_delete;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003866 }
3867
Miao Xie08e007d2012-10-16 11:33:38 +00003868 trans = btrfs_start_transaction_lflush(root, 1);
Josef Bacik4289a662011-08-05 13:22:24 -04003869 if (IS_ERR(trans)) {
3870 btrfs_orphan_del(NULL, inode);
3871 btrfs_free_block_rsv(root, rsv);
3872 goto no_delete;
3873 }
3874
3875 trans->block_rsv = rsv;
3876
Yan, Zhengd68fc572010-05-16 10:49:58 -04003877 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
Josef Bacikca7e70f2012-08-27 17:48:15 -04003878 if (ret != -ENOSPC)
Yan, Zheng80825102009-11-12 09:35:36 +00003879 break;
3880
Miao Xie8407aa42012-09-07 01:43:32 -06003881 trans->block_rsv = &root->fs_info->trans_block_rsv;
3882 ret = btrfs_update_inode(trans, root, inode);
3883 BUG_ON(ret);
3884
Yan, Zheng80825102009-11-12 09:35:36 +00003885 nr = trans->blocks_used;
3886 btrfs_end_transaction(trans, root);
3887 trans = NULL;
3888 btrfs_btree_balance_dirty(root, nr);
Josef Bacik7b128762008-07-24 12:17:14 -04003889 }
3890
Josef Bacik4289a662011-08-05 13:22:24 -04003891 btrfs_free_block_rsv(root, rsv);
3892
Yan, Zheng80825102009-11-12 09:35:36 +00003893 if (ret == 0) {
Josef Bacik4289a662011-08-05 13:22:24 -04003894 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00003895 ret = btrfs_orphan_del(trans, inode);
3896 BUG_ON(ret);
3897 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003898
Josef Bacik4289a662011-08-05 13:22:24 -04003899 trans->block_rsv = &root->fs_info->trans_block_rsv;
Li Zefan581bb052011-04-20 10:06:11 +08003900 if (!(root == root->fs_info->tree_root ||
3901 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID))
Li Zefan33345d012011-04-20 10:31:50 +08003902 btrfs_return_ino(root, btrfs_ino(inode));
Li Zefan581bb052011-04-20 10:06:11 +08003903
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003904 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04003905 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003906 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003907no_delete:
Jan Karadbd57682012-05-03 14:48:02 +02003908 clear_inode(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003909 return;
Chris Mason39279cc2007-06-12 06:35:45 -04003910}
3911
3912/*
3913 * this returns the key found in the dir entry in the location pointer.
3914 * If no dir entries were found, location->objectid is 0.
3915 */
3916static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
3917 struct btrfs_key *location)
3918{
3919 const char *name = dentry->d_name.name;
3920 int namelen = dentry->d_name.len;
3921 struct btrfs_dir_item *di;
3922 struct btrfs_path *path;
3923 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04003924 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003925
3926 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07003927 if (!path)
3928 return -ENOMEM;
Chris Mason39544012007-12-12 14:38:19 -05003929
Li Zefan33345d012011-04-20 10:31:50 +08003930 di = btrfs_lookup_dir_item(NULL, root, path, btrfs_ino(dir), name,
Chris Mason39279cc2007-06-12 06:35:45 -04003931 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04003932 if (IS_ERR(di))
3933 ret = PTR_ERR(di);
Chris Masond3977122009-01-05 21:25:51 -05003934
David Sterbac7040052011-04-19 18:00:01 +02003935 if (IS_ERR_OR_NULL(di))
Chris Mason39544012007-12-12 14:38:19 -05003936 goto out_err;
Chris Masond3977122009-01-05 21:25:51 -05003937
Chris Mason5f39d392007-10-15 16:14:19 -04003938 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04003939out:
Chris Mason39279cc2007-06-12 06:35:45 -04003940 btrfs_free_path(path);
3941 return ret;
Chris Mason39544012007-12-12 14:38:19 -05003942out_err:
3943 location->objectid = 0;
3944 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04003945}
3946
3947/*
3948 * when we hit a tree root in a directory, the btrfs part of the inode
3949 * needs to be changed to reflect the root directory of the tree root. This
3950 * is kind of like crossing a mount point.
3951 */
3952static int fixup_tree_root_location(struct btrfs_root *root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003953 struct inode *dir,
3954 struct dentry *dentry,
3955 struct btrfs_key *location,
3956 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04003957{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003958 struct btrfs_path *path;
3959 struct btrfs_root *new_root;
3960 struct btrfs_root_ref *ref;
3961 struct extent_buffer *leaf;
3962 int ret;
3963 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003964
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003965 path = btrfs_alloc_path();
3966 if (!path) {
3967 err = -ENOMEM;
3968 goto out;
3969 }
Chris Mason39279cc2007-06-12 06:35:45 -04003970
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003971 err = -ENOENT;
3972 ret = btrfs_find_root_ref(root->fs_info->tree_root, path,
3973 BTRFS_I(dir)->root->root_key.objectid,
3974 location->objectid);
3975 if (ret) {
3976 if (ret < 0)
3977 err = ret;
3978 goto out;
3979 }
Chris Mason39279cc2007-06-12 06:35:45 -04003980
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003981 leaf = path->nodes[0];
3982 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
Li Zefan33345d012011-04-20 10:31:50 +08003983 if (btrfs_root_ref_dirid(leaf, ref) != btrfs_ino(dir) ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003984 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
3985 goto out;
3986
3987 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
3988 (unsigned long)(ref + 1),
3989 dentry->d_name.len);
3990 if (ret)
3991 goto out;
3992
David Sterbab3b4aa72011-04-21 01:20:15 +02003993 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003994
3995 new_root = btrfs_read_fs_root_no_name(root->fs_info, location);
3996 if (IS_ERR(new_root)) {
3997 err = PTR_ERR(new_root);
3998 goto out;
3999 }
4000
4001 if (btrfs_root_refs(&new_root->root_item) == 0) {
4002 err = -ENOENT;
4003 goto out;
4004 }
4005
4006 *sub_root = new_root;
4007 location->objectid = btrfs_root_dirid(&new_root->root_item);
4008 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04004009 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004010 err = 0;
4011out:
4012 btrfs_free_path(path);
4013 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04004014}
4015
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004016static void inode_tree_add(struct inode *inode)
4017{
4018 struct btrfs_root *root = BTRFS_I(inode)->root;
4019 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004020 struct rb_node **p;
4021 struct rb_node *parent;
Li Zefan33345d012011-04-20 10:31:50 +08004022 u64 ino = btrfs_ino(inode);
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004023again:
4024 p = &root->inode_tree.rb_node;
4025 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004026
Al Viro1d3382cb2010-10-23 15:19:20 -04004027 if (inode_unhashed(inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04004028 return;
4029
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004030 spin_lock(&root->inode_lock);
4031 while (*p) {
4032 parent = *p;
4033 entry = rb_entry(parent, struct btrfs_inode, rb_node);
4034
Li Zefan33345d012011-04-20 10:31:50 +08004035 if (ino < btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004036 p = &parent->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08004037 else if (ino > btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004038 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004039 else {
4040 WARN_ON(!(entry->vfs_inode.i_state &
Al Viroa4ffdde2010-06-02 17:38:30 -04004041 (I_WILL_FREE | I_FREEING)));
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004042 rb_erase(parent, &root->inode_tree);
4043 RB_CLEAR_NODE(parent);
4044 spin_unlock(&root->inode_lock);
4045 goto again;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004046 }
4047 }
4048 rb_link_node(&BTRFS_I(inode)->rb_node, parent, p);
4049 rb_insert_color(&BTRFS_I(inode)->rb_node, &root->inode_tree);
4050 spin_unlock(&root->inode_lock);
4051}
4052
4053static void inode_tree_del(struct inode *inode)
4054{
4055 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04004056 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004057
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004058 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004059 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004060 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004061 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04004062 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004063 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004064 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04004065
Josef Bacik0af3d002010-06-21 14:48:16 -04004066 /*
4067 * Free space cache has inodes in the tree root, but the tree root has a
4068 * root_refs of 0, so this could end up dropping the tree root as a
4069 * snapshot, so we need the extra !root->fs_info->tree_root check to
4070 * make sure we don't drop it.
4071 */
4072 if (empty && btrfs_root_refs(&root->root_item) == 0 &&
4073 root != root->fs_info->tree_root) {
Yan, Zheng76dda932009-09-21 16:00:26 -04004074 synchronize_srcu(&root->fs_info->subvol_srcu);
4075 spin_lock(&root->inode_lock);
4076 empty = RB_EMPTY_ROOT(&root->inode_tree);
4077 spin_unlock(&root->inode_lock);
4078 if (empty)
4079 btrfs_add_dead_root(root);
4080 }
4081}
4082
Jeff Mahoney143bede2012-03-01 14:56:26 +01004083void btrfs_invalidate_inodes(struct btrfs_root *root)
Yan, Zheng76dda932009-09-21 16:00:26 -04004084{
4085 struct rb_node *node;
4086 struct rb_node *prev;
4087 struct btrfs_inode *entry;
4088 struct inode *inode;
4089 u64 objectid = 0;
4090
4091 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
4092
4093 spin_lock(&root->inode_lock);
4094again:
4095 node = root->inode_tree.rb_node;
4096 prev = NULL;
4097 while (node) {
4098 prev = node;
4099 entry = rb_entry(node, struct btrfs_inode, rb_node);
4100
Li Zefan33345d012011-04-20 10:31:50 +08004101 if (objectid < btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04004102 node = node->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08004103 else if (objectid > btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04004104 node = node->rb_right;
4105 else
4106 break;
4107 }
4108 if (!node) {
4109 while (prev) {
4110 entry = rb_entry(prev, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08004111 if (objectid <= btrfs_ino(&entry->vfs_inode)) {
Yan, Zheng76dda932009-09-21 16:00:26 -04004112 node = prev;
4113 break;
4114 }
4115 prev = rb_next(prev);
4116 }
4117 }
4118 while (node) {
4119 entry = rb_entry(node, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08004120 objectid = btrfs_ino(&entry->vfs_inode) + 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04004121 inode = igrab(&entry->vfs_inode);
4122 if (inode) {
4123 spin_unlock(&root->inode_lock);
4124 if (atomic_read(&inode->i_count) > 1)
4125 d_prune_aliases(inode);
4126 /*
Al Viro45321ac2010-06-07 13:43:19 -04004127 * btrfs_drop_inode will have it removed from
Yan, Zheng76dda932009-09-21 16:00:26 -04004128 * the inode cache when its usage count
4129 * hits zero.
4130 */
4131 iput(inode);
4132 cond_resched();
4133 spin_lock(&root->inode_lock);
4134 goto again;
4135 }
4136
4137 if (cond_resched_lock(&root->inode_lock))
4138 goto again;
4139
4140 node = rb_next(node);
4141 }
4142 spin_unlock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004143}
4144
Chris Masone02119d2008-09-05 16:13:11 -04004145static int btrfs_init_locked_inode(struct inode *inode, void *p)
4146{
4147 struct btrfs_iget_args *args = p;
4148 inode->i_ino = args->ino;
Chris Masone02119d2008-09-05 16:13:11 -04004149 BTRFS_I(inode)->root = args->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004150 return 0;
4151}
4152
4153static int btrfs_find_actor(struct inode *inode, void *opaque)
4154{
4155 struct btrfs_iget_args *args = opaque;
Li Zefan33345d012011-04-20 10:31:50 +08004156 return args->ino == btrfs_ino(inode) &&
Chris Masond3977122009-01-05 21:25:51 -05004157 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004158}
4159
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004160static struct inode *btrfs_iget_locked(struct super_block *s,
4161 u64 objectid,
4162 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04004163{
4164 struct inode *inode;
4165 struct btrfs_iget_args args;
4166 args.ino = objectid;
4167 args.root = root;
4168
4169 inode = iget5_locked(s, objectid, btrfs_find_actor,
4170 btrfs_init_locked_inode,
4171 (void *)&args);
4172 return inode;
4173}
4174
Balaji Rao1a54ef82008-07-21 02:01:04 +05304175/* Get an inode object given its location and corresponding root.
4176 * Returns in *is_new if the inode was read from disk
4177 */
4178struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
Josef Bacik73f73412009-12-04 17:38:27 +00004179 struct btrfs_root *root, int *new)
Balaji Rao1a54ef82008-07-21 02:01:04 +05304180{
4181 struct inode *inode;
4182
4183 inode = btrfs_iget_locked(s, location->objectid, root);
4184 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004185 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05304186
4187 if (inode->i_state & I_NEW) {
4188 BTRFS_I(inode)->root = root;
4189 memcpy(&BTRFS_I(inode)->location, location, sizeof(*location));
4190 btrfs_read_locked_inode(inode);
Mark Fasheh1748f842011-07-12 11:25:31 -07004191 if (!is_bad_inode(inode)) {
4192 inode_tree_add(inode);
4193 unlock_new_inode(inode);
4194 if (new)
4195 *new = 1;
4196 } else {
Sergei Trofimoviche0b6d652011-09-11 10:52:24 -04004197 unlock_new_inode(inode);
4198 iput(inode);
4199 inode = ERR_PTR(-ESTALE);
Mark Fasheh1748f842011-07-12 11:25:31 -07004200 }
4201 }
4202
Balaji Rao1a54ef82008-07-21 02:01:04 +05304203 return inode;
4204}
4205
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004206static struct inode *new_simple_dir(struct super_block *s,
4207 struct btrfs_key *key,
4208 struct btrfs_root *root)
4209{
4210 struct inode *inode = new_inode(s);
4211
4212 if (!inode)
4213 return ERR_PTR(-ENOMEM);
4214
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004215 BTRFS_I(inode)->root = root;
4216 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
Josef Bacik72ac3c02012-05-23 14:13:11 -04004217 set_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004218
4219 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
Li Zefan848cce02012-02-21 17:04:28 +08004220 inode->i_op = &btrfs_dir_ro_inode_operations;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004221 inode->i_fop = &simple_dir_operations;
4222 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
4223 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
4224
4225 return inode;
4226}
4227
Chris Mason3de45862008-11-17 21:02:50 -05004228struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04004229{
Chris Masond3977122009-01-05 21:25:51 -05004230 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004231 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004232 struct btrfs_root *sub_root = root;
4233 struct btrfs_key location;
Yan, Zheng76dda932009-09-21 16:00:26 -04004234 int index;
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004235 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004236
4237 if (dentry->d_name.len > BTRFS_NAME_LEN)
4238 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04004239
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004240 if (unlikely(d_need_lookup(dentry))) {
4241 memcpy(&location, dentry->d_fsdata, sizeof(struct btrfs_key));
4242 kfree(dentry->d_fsdata);
4243 dentry->d_fsdata = NULL;
Josef Bacika66e7cc2011-09-18 10:34:03 -04004244 /* This thing is hashed, drop it for now */
4245 d_drop(dentry);
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004246 } else {
4247 ret = btrfs_inode_by_name(dir, dentry, &location);
4248 }
Chris Mason5f39d392007-10-15 16:14:19 -04004249
Chris Mason39279cc2007-06-12 06:35:45 -04004250 if (ret < 0)
4251 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04004252
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004253 if (location.objectid == 0)
4254 return NULL;
4255
4256 if (location.type == BTRFS_INODE_ITEM_KEY) {
Josef Bacik73f73412009-12-04 17:38:27 +00004257 inode = btrfs_iget(dir->i_sb, &location, root, NULL);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004258 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004259 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004260
4261 BUG_ON(location.type != BTRFS_ROOT_ITEM_KEY);
4262
Yan, Zheng76dda932009-09-21 16:00:26 -04004263 index = srcu_read_lock(&root->fs_info->subvol_srcu);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004264 ret = fixup_tree_root_location(root, dir, dentry,
4265 &location, &sub_root);
4266 if (ret < 0) {
4267 if (ret != -ENOENT)
4268 inode = ERR_PTR(ret);
4269 else
4270 inode = new_simple_dir(dir->i_sb, &location, sub_root);
4271 } else {
Josef Bacik73f73412009-12-04 17:38:27 +00004272 inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004273 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004274 srcu_read_unlock(&root->fs_info->subvol_srcu, index);
4275
Julia Lawall34d19ba2011-01-24 19:55:19 +00004276 if (!IS_ERR(inode) && root != sub_root) {
Yan, Zhengc71bf092009-11-12 09:34:40 +00004277 down_read(&root->fs_info->cleanup_work_sem);
4278 if (!(inode->i_sb->s_flags & MS_RDONLY))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05004279 ret = btrfs_orphan_cleanup(sub_root);
Yan, Zhengc71bf092009-11-12 09:34:40 +00004280 up_read(&root->fs_info->cleanup_work_sem);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05004281 if (ret)
4282 inode = ERR_PTR(ret);
Yan, Zhengc71bf092009-11-12 09:34:40 +00004283 }
4284
Chris Mason3de45862008-11-17 21:02:50 -05004285 return inode;
4286}
4287
Nick Pigginfe15ce42011-01-07 17:49:23 +11004288static int btrfs_dentry_delete(const struct dentry *dentry)
Yan, Zheng76dda932009-09-21 16:00:26 -04004289{
4290 struct btrfs_root *root;
Li Zefan848cce02012-02-21 17:04:28 +08004291 struct inode *inode = dentry->d_inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04004292
Li Zefan848cce02012-02-21 17:04:28 +08004293 if (!inode && !IS_ROOT(dentry))
4294 inode = dentry->d_parent->d_inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04004295
Li Zefan848cce02012-02-21 17:04:28 +08004296 if (inode) {
4297 root = BTRFS_I(inode)->root;
Yan, Zhengefefb142009-10-09 09:25:16 -04004298 if (btrfs_root_refs(&root->root_item) == 0)
4299 return 1;
Li Zefan848cce02012-02-21 17:04:28 +08004300
4301 if (btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
4302 return 1;
Yan, Zhengefefb142009-10-09 09:25:16 -04004303 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004304 return 0;
4305}
4306
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004307static void btrfs_dentry_release(struct dentry *dentry)
4308{
4309 if (dentry->d_fsdata)
4310 kfree(dentry->d_fsdata);
4311}
4312
Chris Mason3de45862008-11-17 21:02:50 -05004313static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -04004314 unsigned int flags)
Chris Mason3de45862008-11-17 21:02:50 -05004315{
Josef Bacika66e7cc2011-09-18 10:34:03 -04004316 struct dentry *ret;
4317
4318 ret = d_splice_alias(btrfs_lookup_dentry(dir, dentry), dentry);
4319 if (unlikely(d_need_lookup(dentry))) {
4320 spin_lock(&dentry->d_lock);
4321 dentry->d_flags &= ~DCACHE_NEED_LOOKUP;
4322 spin_unlock(&dentry->d_lock);
4323 }
4324 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004325}
4326
Miao Xie16cdcec2011-04-22 18:12:22 +08004327unsigned char btrfs_filetype_table[] = {
Chris Mason39279cc2007-06-12 06:35:45 -04004328 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
4329};
4330
David Woodhousecbdf5a22008-08-06 19:42:33 +01004331static int btrfs_real_readdir(struct file *filp, void *dirent,
4332 filldir_t filldir)
Chris Mason39279cc2007-06-12 06:35:45 -04004333{
Chris Mason6da6aba2007-12-18 16:15:09 -05004334 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004335 struct btrfs_root *root = BTRFS_I(inode)->root;
4336 struct btrfs_item *item;
4337 struct btrfs_dir_item *di;
4338 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04004339 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04004340 struct btrfs_path *path;
Miao Xie16cdcec2011-04-22 18:12:22 +08004341 struct list_head ins_list;
4342 struct list_head del_list;
Chris Mason39279cc2007-06-12 06:35:45 -04004343 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04004344 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04004345 int slot;
Chris Mason39279cc2007-06-12 06:35:45 -04004346 unsigned char d_type;
4347 int over = 0;
4348 u32 di_cur;
4349 u32 di_total;
4350 u32 di_len;
4351 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004352 char tmp_name[32];
4353 char *name_ptr;
4354 int name_len;
Miao Xie16cdcec2011-04-22 18:12:22 +08004355 int is_curr = 0; /* filp->f_pos points to the current index? */
Chris Mason39279cc2007-06-12 06:35:45 -04004356
4357 /* FIXME, use a real flag for deciding about the key type */
4358 if (root->fs_info->tree_root == root)
4359 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004360
Chris Mason39544012007-12-12 14:38:19 -05004361 /* special case for "." */
4362 if (filp->f_pos == 0) {
Hidetoshi Seto3765fef2011-09-18 10:20:46 -04004363 over = filldir(dirent, ".", 1,
4364 filp->f_pos, btrfs_ino(inode), DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05004365 if (over)
4366 return 0;
4367 filp->f_pos = 1;
4368 }
Chris Mason39544012007-12-12 14:38:19 -05004369 /* special case for .., just use the back ref */
4370 if (filp->f_pos == 1) {
David Woodhouse5ecc7e52008-08-17 15:14:48 +01004371 u64 pino = parent_ino(filp->f_path.dentry);
Chris Mason39544012007-12-12 14:38:19 -05004372 over = filldir(dirent, "..", 2,
Hidetoshi Seto3765fef2011-09-18 10:20:46 -04004373 filp->f_pos, pino, DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05004374 if (over)
David Woodhouse49593bf2008-08-17 17:08:36 +01004375 return 0;
Chris Mason39544012007-12-12 14:38:19 -05004376 filp->f_pos = 2;
4377 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004378 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08004379 if (!path)
4380 return -ENOMEM;
Chris Masonff5714c2011-05-28 07:00:39 -04004381
Josef Bacik026fd312011-05-13 10:32:11 -04004382 path->reada = 1;
David Woodhouse49593bf2008-08-17 17:08:36 +01004383
Miao Xie16cdcec2011-04-22 18:12:22 +08004384 if (key_type == BTRFS_DIR_INDEX_KEY) {
4385 INIT_LIST_HEAD(&ins_list);
4386 INIT_LIST_HEAD(&del_list);
4387 btrfs_get_delayed_items(inode, &ins_list, &del_list);
4388 }
4389
Chris Mason39279cc2007-06-12 06:35:45 -04004390 btrfs_set_key_type(&key, key_type);
4391 key.offset = filp->f_pos;
Li Zefan33345d012011-04-20 10:31:50 +08004392 key.objectid = btrfs_ino(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004393
Chris Mason39279cc2007-06-12 06:35:45 -04004394 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4395 if (ret < 0)
4396 goto err;
David Woodhouse49593bf2008-08-17 17:08:36 +01004397
4398 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04004399 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -04004400 slot = path->slots[0];
Li Zefanb9e03af2011-03-23 10:43:58 +08004401 if (slot >= btrfs_header_nritems(leaf)) {
4402 ret = btrfs_next_leaf(root, path);
4403 if (ret < 0)
4404 goto err;
4405 else if (ret > 0)
4406 break;
4407 continue;
Chris Mason39279cc2007-06-12 06:35:45 -04004408 }
Chris Mason3de45862008-11-17 21:02:50 -05004409
Chris Mason5f39d392007-10-15 16:14:19 -04004410 item = btrfs_item_nr(leaf, slot);
4411 btrfs_item_key_to_cpu(leaf, &found_key, slot);
4412
4413 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04004414 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004415 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004416 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004417 if (found_key.offset < filp->f_pos)
Li Zefanb9e03af2011-03-23 10:43:58 +08004418 goto next;
Miao Xie16cdcec2011-04-22 18:12:22 +08004419 if (key_type == BTRFS_DIR_INDEX_KEY &&
4420 btrfs_should_delete_dir_index(&del_list,
4421 found_key.offset))
4422 goto next;
Chris Mason5f39d392007-10-15 16:14:19 -04004423
4424 filp->f_pos = found_key.offset;
Miao Xie16cdcec2011-04-22 18:12:22 +08004425 is_curr = 1;
David Woodhouse49593bf2008-08-17 17:08:36 +01004426
Chris Mason39279cc2007-06-12 06:35:45 -04004427 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
4428 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04004429 di_total = btrfs_item_size(leaf, item);
David Woodhouse49593bf2008-08-17 17:08:36 +01004430
4431 while (di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04004432 struct btrfs_key location;
4433
Josef Bacik22a94d42011-03-16 16:47:17 -04004434 if (verify_dir_item(root, leaf, di))
4435 break;
4436
Chris Mason5f39d392007-10-15 16:14:19 -04004437 name_len = btrfs_dir_name_len(leaf, di);
David Woodhouse49593bf2008-08-17 17:08:36 +01004438 if (name_len <= sizeof(tmp_name)) {
Chris Mason5f39d392007-10-15 16:14:19 -04004439 name_ptr = tmp_name;
4440 } else {
4441 name_ptr = kmalloc(name_len, GFP_NOFS);
David Woodhouse49593bf2008-08-17 17:08:36 +01004442 if (!name_ptr) {
4443 ret = -ENOMEM;
4444 goto err;
4445 }
Chris Mason5f39d392007-10-15 16:14:19 -04004446 }
4447 read_extent_buffer(leaf, name_ptr,
4448 (unsigned long)(di + 1), name_len);
4449
4450 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
4451 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason3de45862008-11-17 21:02:50 -05004452
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004453
Chris Mason3de45862008-11-17 21:02:50 -05004454 /* is this a reference to our own snapshot? If so
Arne Jansen8c9c2bf2012-02-25 09:09:30 +01004455 * skip it.
4456 *
4457 * In contrast to old kernels, we insert the snapshot's
4458 * dir item and dir index after it has been created, so
4459 * we won't find a reference to our own snapshot. We
4460 * still keep the following code for backward
4461 * compatibility.
Chris Mason3de45862008-11-17 21:02:50 -05004462 */
4463 if (location.type == BTRFS_ROOT_ITEM_KEY &&
4464 location.objectid == root->root_key.objectid) {
4465 over = 0;
4466 goto skip;
4467 }
Chris Mason5f39d392007-10-15 16:14:19 -04004468 over = filldir(dirent, name_ptr, name_len,
David Woodhouse49593bf2008-08-17 17:08:36 +01004469 found_key.offset, location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04004470 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04004471
Chris Mason3de45862008-11-17 21:02:50 -05004472skip:
Chris Mason5f39d392007-10-15 16:14:19 -04004473 if (name_ptr != tmp_name)
4474 kfree(name_ptr);
4475
Chris Mason39279cc2007-06-12 06:35:45 -04004476 if (over)
4477 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05004478 di_len = btrfs_dir_name_len(leaf, di) +
David Woodhouse49593bf2008-08-17 17:08:36 +01004479 btrfs_dir_data_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04004480 di_cur += di_len;
4481 di = (struct btrfs_dir_item *)((char *)di + di_len);
4482 }
Li Zefanb9e03af2011-03-23 10:43:58 +08004483next:
4484 path->slots[0]++;
Chris Mason39279cc2007-06-12 06:35:45 -04004485 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004486
Miao Xie16cdcec2011-04-22 18:12:22 +08004487 if (key_type == BTRFS_DIR_INDEX_KEY) {
4488 if (is_curr)
4489 filp->f_pos++;
4490 ret = btrfs_readdir_delayed_dir_index(filp, dirent, filldir,
4491 &ins_list);
4492 if (ret)
4493 goto nopos;
4494 }
4495
David Woodhouse49593bf2008-08-17 17:08:36 +01004496 /* Reached end of directory/root. Bump pos past the last item. */
Yan Zheng5e591a02008-02-19 11:41:02 -05004497 if (key_type == BTRFS_DIR_INDEX_KEY)
Jan Engelhardt406266a2009-12-09 22:00:38 +00004498 /*
4499 * 32-bit glibc will use getdents64, but then strtol -
4500 * so the last number we can serve is this.
4501 */
4502 filp->f_pos = 0x7fffffff;
Yan Zheng5e591a02008-02-19 11:41:02 -05004503 else
4504 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04004505nopos:
4506 ret = 0;
4507err:
Miao Xie16cdcec2011-04-22 18:12:22 +08004508 if (key_type == BTRFS_DIR_INDEX_KEY)
4509 btrfs_put_delayed_items(&ins_list, &del_list);
Chris Mason39279cc2007-06-12 06:35:45 -04004510 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004511 return ret;
4512}
4513
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004514int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc)
Chris Mason39279cc2007-06-12 06:35:45 -04004515{
4516 struct btrfs_root *root = BTRFS_I(inode)->root;
4517 struct btrfs_trans_handle *trans;
4518 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04004519 bool nolock = false;
Chris Mason39279cc2007-06-12 06:35:45 -04004520
Josef Bacik72ac3c02012-05-23 14:13:11 -04004521 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Chris Mason4ca8b412008-08-05 13:30:48 -04004522 return 0;
4523
Liu Bo83eea1f2012-07-10 05:28:39 -06004524 if (btrfs_fs_closing(root->fs_info) && btrfs_is_free_space_inode(inode))
Li Zefan82d59022011-04-20 10:33:24 +08004525 nolock = true;
Josef Bacik0af3d002010-06-21 14:48:16 -04004526
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004527 if (wbc->sync_mode == WB_SYNC_ALL) {
Josef Bacik0af3d002010-06-21 14:48:16 -04004528 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004529 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0af3d002010-06-21 14:48:16 -04004530 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004531 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00004532 if (IS_ERR(trans))
4533 return PTR_ERR(trans);
Miao Xiea698d0752012-09-20 01:51:59 -06004534 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004535 }
4536 return ret;
4537}
4538
4539/*
Chris Mason54aa1f42007-06-22 14:16:25 -04004540 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04004541 * inode changes. But, it is most likely to find the inode in cache.
4542 * FIXME, needs more benchmarking...there are no reasons other than performance
4543 * to keep or drop this code.
4544 */
Josef Bacik22c44fe2011-11-30 10:45:38 -05004545int btrfs_dirty_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04004546{
4547 struct btrfs_root *root = BTRFS_I(inode)->root;
4548 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004549 int ret;
4550
Josef Bacik72ac3c02012-05-23 14:13:11 -04004551 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Josef Bacik22c44fe2011-11-30 10:45:38 -05004552 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004553
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004554 trans = btrfs_join_transaction(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004555 if (IS_ERR(trans))
4556 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004557
4558 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04004559 if (ret && ret == -ENOSPC) {
4560 /* whoops, lets try again with the full transaction */
4561 btrfs_end_transaction(trans, root);
4562 trans = btrfs_start_transaction(root, 1);
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
Chris Mason94b60442010-05-26 11:02:00 -04004566 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04004567 }
Chris Mason39279cc2007-06-12 06:35:45 -04004568 btrfs_end_transaction(trans, root);
Miao Xie16cdcec2011-04-22 18:12:22 +08004569 if (BTRFS_I(inode)->delayed_node)
4570 btrfs_balance_delayed_items(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004571
4572 return ret;
4573}
4574
4575/*
4576 * This is a copy of file_update_time. We need this so we can return error on
4577 * ENOSPC for updating the inode in the case of file write and mmap writes.
4578 */
Josef Bacike41f9412012-03-26 09:46:47 -04004579static int btrfs_update_time(struct inode *inode, struct timespec *now,
4580 int flags)
Josef Bacik22c44fe2011-11-30 10:45:38 -05004581{
Alexander Block2bc5565282012-06-15 09:49:33 +02004582 struct btrfs_root *root = BTRFS_I(inode)->root;
4583
4584 if (btrfs_root_readonly(root))
4585 return -EROFS;
4586
Josef Bacike41f9412012-03-26 09:46:47 -04004587 if (flags & S_VERSION)
Josef Bacik22c44fe2011-11-30 10:45:38 -05004588 inode_inc_iversion(inode);
Josef Bacike41f9412012-03-26 09:46:47 -04004589 if (flags & S_CTIME)
4590 inode->i_ctime = *now;
4591 if (flags & S_MTIME)
4592 inode->i_mtime = *now;
4593 if (flags & S_ATIME)
4594 inode->i_atime = *now;
4595 return btrfs_dirty_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004596}
4597
Chris Masond352ac62008-09-29 15:18:18 -04004598/*
4599 * find the highest existing sequence number in a directory
4600 * and then set the in-memory index_cnt variable to reflect
4601 * free sequence numbers
4602 */
Josef Bacikaec74772008-07-24 12:12:38 -04004603static int btrfs_set_inode_index_count(struct inode *inode)
4604{
4605 struct btrfs_root *root = BTRFS_I(inode)->root;
4606 struct btrfs_key key, found_key;
4607 struct btrfs_path *path;
4608 struct extent_buffer *leaf;
4609 int ret;
4610
Li Zefan33345d012011-04-20 10:31:50 +08004611 key.objectid = btrfs_ino(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004612 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
4613 key.offset = (u64)-1;
4614
4615 path = btrfs_alloc_path();
4616 if (!path)
4617 return -ENOMEM;
4618
4619 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4620 if (ret < 0)
4621 goto out;
4622 /* FIXME: we should be able to handle this */
4623 if (ret == 0)
4624 goto out;
4625 ret = 0;
4626
4627 /*
4628 * MAGIC NUMBER EXPLANATION:
4629 * since we search a directory based on f_pos we have to start at 2
4630 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
4631 * else has to start at 2
4632 */
4633 if (path->slots[0] == 0) {
4634 BTRFS_I(inode)->index_cnt = 2;
4635 goto out;
4636 }
4637
4638 path->slots[0]--;
4639
4640 leaf = path->nodes[0];
4641 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4642
Li Zefan33345d012011-04-20 10:31:50 +08004643 if (found_key.objectid != btrfs_ino(inode) ||
Josef Bacikaec74772008-07-24 12:12:38 -04004644 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
4645 BTRFS_I(inode)->index_cnt = 2;
4646 goto out;
4647 }
4648
4649 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
4650out:
4651 btrfs_free_path(path);
4652 return ret;
4653}
4654
Chris Masond352ac62008-09-29 15:18:18 -04004655/*
4656 * helper to find a free sequence number in a given directory. This current
4657 * code is very simple, later versions will do smarter things in the btree
4658 */
Chris Mason3de45862008-11-17 21:02:50 -05004659int btrfs_set_inode_index(struct inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04004660{
4661 int ret = 0;
4662
4663 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
Miao Xie16cdcec2011-04-22 18:12:22 +08004664 ret = btrfs_inode_delayed_dir_index_count(dir);
4665 if (ret) {
4666 ret = btrfs_set_inode_index_count(dir);
4667 if (ret)
4668 return ret;
4669 }
Josef Bacikaec74772008-07-24 12:12:38 -04004670 }
4671
Chris Mason00e4e6b2008-08-05 11:18:09 -04004672 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04004673 BTRFS_I(dir)->index_cnt++;
4674
4675 return ret;
4676}
4677
Chris Mason39279cc2007-06-12 06:35:45 -04004678static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
4679 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04004680 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05004681 const char *name, int name_len,
Al Viro175a4eb2011-07-26 03:30:54 -04004682 u64 ref_objectid, u64 objectid,
4683 umode_t mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04004684{
4685 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004686 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04004687 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04004688 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05004689 struct btrfs_inode_ref *ref;
4690 struct btrfs_key key[2];
4691 u32 sizes[2];
4692 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04004693 int ret;
4694 int owner;
4695
Chris Mason5f39d392007-10-15 16:14:19 -04004696 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07004697 if (!path)
4698 return ERR_PTR(-ENOMEM);
Chris Mason5f39d392007-10-15 16:14:19 -04004699
Chris Mason39279cc2007-06-12 06:35:45 -04004700 inode = new_inode(root->fs_info->sb);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004701 if (!inode) {
4702 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004703 return ERR_PTR(-ENOMEM);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004704 }
Chris Mason39279cc2007-06-12 06:35:45 -04004705
Li Zefan581bb052011-04-20 10:06:11 +08004706 /*
4707 * we have to initialize this early, so we can reclaim the inode
4708 * number if we fail afterwards in this function.
4709 */
4710 inode->i_ino = objectid;
4711
Josef Bacikaec74772008-07-24 12:12:38 -04004712 if (dir) {
liubo1abe9b82011-03-24 11:18:59 +00004713 trace_btrfs_inode_request(dir);
4714
Chris Mason3de45862008-11-17 21:02:50 -05004715 ret = btrfs_set_inode_index(dir, index);
Shen Feng09771432009-04-02 16:46:06 -04004716 if (ret) {
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004717 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004718 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004719 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04004720 }
Josef Bacikaec74772008-07-24 12:12:38 -04004721 }
4722 /*
4723 * index_cnt is ignored for everything but a dir,
4724 * btrfs_get_inode_index_count has an explanation for the magic
4725 * number
4726 */
4727 BTRFS_I(inode)->index_cnt = 2;
Chris Mason39279cc2007-06-12 06:35:45 -04004728 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04004729 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik76195852010-11-19 02:18:02 +00004730 inode->i_generation = BTRFS_I(inode)->generation;
Chris Masonb888db22007-08-27 16:49:44 -04004731
Josef Bacik5dc562c2012-08-17 13:14:17 -04004732 /*
4733 * We could have gotten an inode number from somebody who was fsynced
4734 * and then removed in this same transaction, so let's just set full
4735 * sync since it will be a full sync anyway and this will blow away the
4736 * old info in the log.
4737 */
4738 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
4739
Al Viro569254b2011-07-24 17:08:40 -04004740 if (S_ISDIR(mode))
Chris Mason39279cc2007-06-12 06:35:45 -04004741 owner = 0;
4742 else
4743 owner = 1;
Chris Mason9c583092008-01-29 15:15:18 -05004744
4745 key[0].objectid = objectid;
4746 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
4747 key[0].offset = 0;
4748
Mark Fashehf1863732012-08-08 11:32:27 -07004749 /*
4750 * Start new inodes with an inode_ref. This is slightly more
4751 * efficient for small numbers of hard links since they will
4752 * be packed into one item. Extended refs will kick in if we
4753 * add more hard links than can fit in the ref item.
4754 */
Chris Mason9c583092008-01-29 15:15:18 -05004755 key[1].objectid = objectid;
4756 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
4757 key[1].offset = ref_objectid;
4758
4759 sizes[0] = sizeof(struct btrfs_inode_item);
4760 sizes[1] = name_len + sizeof(*ref);
4761
Chris Masonb9473432009-03-13 11:00:37 -04004762 path->leave_spinning = 1;
Chris Mason9c583092008-01-29 15:15:18 -05004763 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
4764 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04004765 goto fail;
4766
Dmitry Monakhovecc11fab2010-03-04 17:31:47 +03004767 inode_init_owner(inode, dir, mode);
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004768 inode_set_bytes(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004769 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04004770 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
4771 struct btrfs_inode_item);
Li Zefan293f7e02012-07-10 00:58:58 -06004772 memset_extent_buffer(path->nodes[0], 0, (unsigned long)inode_item,
4773 sizeof(*inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04004774 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05004775
4776 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
4777 struct btrfs_inode_ref);
4778 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004779 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
Chris Mason9c583092008-01-29 15:15:18 -05004780 ptr = (unsigned long)(ref + 1);
4781 write_extent_buffer(path->nodes[0], name, ptr, name_len);
4782
Chris Mason5f39d392007-10-15 16:14:19 -04004783 btrfs_mark_buffer_dirty(path->nodes[0]);
4784 btrfs_free_path(path);
4785
Chris Mason39279cc2007-06-12 06:35:45 -04004786 location = &BTRFS_I(inode)->location;
4787 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04004788 location->offset = 0;
4789 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
4790
Christoph Hellwig6cbff002009-04-17 10:37:41 +02004791 btrfs_inherit_iflags(inode, dir);
4792
Al Viro569254b2011-07-24 17:08:40 -04004793 if (S_ISREG(mode)) {
Chris Mason94272162009-07-02 12:26:06 -04004794 if (btrfs_test_opt(root, NODATASUM))
4795 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
Liu Bo75e7cb72011-03-22 10:12:20 +00004796 if (btrfs_test_opt(root, NODATACOW) ||
4797 (BTRFS_I(dir)->flags & BTRFS_INODE_NODATACOW))
Chris Mason94272162009-07-02 12:26:06 -04004798 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
4799 }
4800
Chris Mason39279cc2007-06-12 06:35:45 -04004801 insert_inode_hash(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004802 inode_tree_add(inode);
liubo1abe9b82011-03-24 11:18:59 +00004803
4804 trace_btrfs_inode_new(inode);
Chris Mason1973f0f2011-06-24 13:13:29 -04004805 btrfs_set_inode_last_trans(trans, inode);
liubo1abe9b82011-03-24 11:18:59 +00004806
Alexander Block8ea05e32012-07-25 17:35:53 +02004807 btrfs_update_root_times(trans, root);
4808
Chris Mason39279cc2007-06-12 06:35:45 -04004809 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004810fail:
Josef Bacikaec74772008-07-24 12:12:38 -04004811 if (dir)
4812 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04004813 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004814 iput(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004815 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004816}
4817
4818static inline u8 btrfs_inode_type(struct inode *inode)
4819{
4820 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
4821}
4822
Chris Masond352ac62008-09-29 15:18:18 -04004823/*
4824 * utility function to add 'inode' into 'parent_inode' with
4825 * a give name and a given sequence number.
4826 * if 'add_backref' is true, also insert a backref from the
4827 * inode to the parent directory.
4828 */
Chris Masone02119d2008-09-05 16:13:11 -04004829int btrfs_add_link(struct btrfs_trans_handle *trans,
4830 struct inode *parent_inode, struct inode *inode,
4831 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004832{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004833 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004834 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04004835 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Li Zefan33345d012011-04-20 10:31:50 +08004836 u64 ino = btrfs_ino(inode);
4837 u64 parent_ino = btrfs_ino(parent_inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004838
Li Zefan33345d012011-04-20 10:31:50 +08004839 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004840 memcpy(&key, &BTRFS_I(inode)->root->root_key, sizeof(key));
4841 } else {
Li Zefan33345d012011-04-20 10:31:50 +08004842 key.objectid = ino;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004843 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
4844 key.offset = 0;
4845 }
Chris Mason39279cc2007-06-12 06:35:45 -04004846
Li Zefan33345d012011-04-20 10:31:50 +08004847 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004848 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
4849 key.objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08004850 parent_ino, index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004851 } else if (add_backref) {
Li Zefan33345d012011-04-20 10:31:50 +08004852 ret = btrfs_insert_inode_ref(trans, root, name, name_len, ino,
4853 parent_ino, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004854 }
4855
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004856 /* Nothing to clean up yet */
4857 if (ret)
4858 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004859
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004860 ret = btrfs_insert_dir_item(trans, root, name, name_len,
4861 parent_inode, &key,
4862 btrfs_inode_type(inode), index);
4863 if (ret == -EEXIST)
4864 goto fail_dir_item;
4865 else if (ret) {
4866 btrfs_abort_transaction(trans, root, ret);
4867 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004868 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004869
4870 btrfs_i_size_write(parent_inode, parent_inode->i_size +
4871 name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04004872 inode_inc_iversion(parent_inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004873 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
4874 ret = btrfs_update_inode(trans, root, parent_inode);
4875 if (ret)
4876 btrfs_abort_transaction(trans, root, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004877 return ret;
Chris Masonfe66a052012-02-20 08:40:56 -05004878
4879fail_dir_item:
4880 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
4881 u64 local_index;
4882 int err;
4883 err = btrfs_del_root_ref(trans, root->fs_info->tree_root,
4884 key.objectid, root->root_key.objectid,
4885 parent_ino, &local_index, name, name_len);
4886
4887 } else if (add_backref) {
4888 u64 local_index;
4889 int err;
4890
4891 err = btrfs_del_inode_ref(trans, root, name, name_len,
4892 ino, parent_ino, &local_index);
4893 }
4894 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004895}
4896
4897static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Josef Bacika1b075d2010-11-19 20:36:11 +00004898 struct inode *dir, struct dentry *dentry,
4899 struct inode *inode, int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004900{
Josef Bacika1b075d2010-11-19 20:36:11 +00004901 int err = btrfs_add_link(trans, dir, inode,
4902 dentry->d_name.name, dentry->d_name.len,
4903 backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004904 if (err > 0)
4905 err = -EEXIST;
4906 return err;
4907}
4908
Josef Bacik618e21d2007-07-11 10:18:17 -04004909static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -04004910 umode_t mode, dev_t rdev)
Josef Bacik618e21d2007-07-11 10:18:17 -04004911{
4912 struct btrfs_trans_handle *trans;
4913 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004914 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04004915 int err;
4916 int drop_inode = 0;
4917 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05004918 unsigned long nr = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004919 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04004920
4921 if (!new_valid_dev(rdev))
4922 return -EINVAL;
4923
Josef Bacik9ed74f22009-09-11 16:12:44 -04004924 /*
4925 * 2 for inode item and ref
4926 * 2 for dir items
4927 * 1 for xattr if selinux is on
4928 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004929 trans = btrfs_start_transaction(root, 5);
4930 if (IS_ERR(trans))
4931 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05004932
Li Zefan581bb052011-04-20 10:06:11 +08004933 err = btrfs_find_free_ino(root, &objectid);
4934 if (err)
4935 goto out_unlock;
4936
Josef Bacikaec74772008-07-24 12:12:38 -04004937 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08004938 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04004939 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004940 if (IS_ERR(inode)) {
4941 err = PTR_ERR(inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04004942 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004943 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004944
Eric Paris2a7dba32011-02-01 11:05:39 -05004945 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04004946 if (err) {
4947 drop_inode = 1;
4948 goto out_unlock;
4949 }
4950
Casey Schauflerad19db72011-12-15 10:09:07 -05004951 /*
4952 * If the active LSM wants to access the inode during
4953 * d_instantiate it needs these. Smack checks to see
4954 * if the filesystem supports xattrs by looking at the
4955 * ops vector.
4956 */
4957
4958 inode->i_op = &btrfs_special_inode_operations;
Josef Bacika1b075d2010-11-19 20:36:11 +00004959 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Josef Bacik618e21d2007-07-11 10:18:17 -04004960 if (err)
4961 drop_inode = 1;
4962 else {
Josef Bacik618e21d2007-07-11 10:18:17 -04004963 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04004964 btrfs_update_inode(trans, root, inode);
Al Viro08c422c2011-12-23 07:58:13 -05004965 d_instantiate(dentry, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04004966 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004967out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004968 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05004969 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004970 btrfs_btree_balance_dirty(root, nr);
Josef Bacik618e21d2007-07-11 10:18:17 -04004971 if (drop_inode) {
4972 inode_dec_link_count(inode);
4973 iput(inode);
4974 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004975 return err;
4976}
4977
Chris Mason39279cc2007-06-12 06:35:45 -04004978static int btrfs_create(struct inode *dir, struct dentry *dentry,
Al Viroebfc3b42012-06-10 18:05:36 -04004979 umode_t mode, bool excl)
Chris Mason39279cc2007-06-12 06:35:45 -04004980{
4981 struct btrfs_trans_handle *trans;
4982 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004983 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004984 int drop_inode = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004985 int err;
Chris Mason1832a6d2007-12-21 16:27:21 -05004986 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004987 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004988 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004989
Josef Bacik9ed74f22009-09-11 16:12:44 -04004990 /*
4991 * 2 for inode item and ref
4992 * 2 for dir items
4993 * 1 for xattr if selinux is on
4994 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004995 trans = btrfs_start_transaction(root, 5);
4996 if (IS_ERR(trans))
4997 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004998
Li Zefan581bb052011-04-20 10:06:11 +08004999 err = btrfs_find_free_ino(root, &objectid);
5000 if (err)
5001 goto out_unlock;
5002
Josef Bacikaec74772008-07-24 12:12:38 -04005003 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08005004 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04005005 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04005006 if (IS_ERR(inode)) {
5007 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04005008 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04005009 }
Chris Mason39279cc2007-06-12 06:35:45 -04005010
Eric Paris2a7dba32011-02-01 11:05:39 -05005011 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04005012 if (err) {
5013 drop_inode = 1;
5014 goto out_unlock;
5015 }
5016
Casey Schauflerad19db72011-12-15 10:09:07 -05005017 /*
5018 * If the active LSM wants to access the inode during
5019 * d_instantiate it needs these. Smack checks to see
5020 * if the filesystem supports xattrs by looking at the
5021 * ops vector.
5022 */
5023 inode->i_fop = &btrfs_file_operations;
5024 inode->i_op = &btrfs_file_inode_operations;
5025
Josef Bacika1b075d2010-11-19 20:36:11 +00005026 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04005027 if (err)
5028 drop_inode = 1;
5029 else {
5030 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04005031 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05005032 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Al Viro08c422c2011-12-23 07:58:13 -05005033 d_instantiate(dentry, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04005034 }
Chris Mason39279cc2007-06-12 06:35:45 -04005035out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005036 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05005037 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04005038 if (drop_inode) {
5039 inode_dec_link_count(inode);
5040 iput(inode);
5041 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005042 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04005043 return err;
5044}
5045
5046static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
5047 struct dentry *dentry)
5048{
5049 struct btrfs_trans_handle *trans;
5050 struct btrfs_root *root = BTRFS_I(dir)->root;
5051 struct inode *inode = old_dentry->d_inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005052 u64 index;
Chris Mason1832a6d2007-12-21 16:27:21 -05005053 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005054 int err;
5055 int drop_inode = 0;
5056
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00005057 /* do not allow sys_link's with other subvols of the same device */
5058 if (root->objectid != BTRFS_I(inode)->root->objectid)
Mark Fasheh3ab35642011-03-22 17:20:26 +00005059 return -EXDEV;
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00005060
Mark Fashehf1863732012-08-08 11:32:27 -07005061 if (inode->i_nlink >= BTRFS_LINK_MAX)
Al Viroc055e992011-03-04 17:15:18 +00005062 return -EMLINK;
Josef Bacik9ed74f22009-09-11 16:12:44 -04005063
Chris Mason3de45862008-11-17 21:02:50 -05005064 err = btrfs_set_inode_index(dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04005065 if (err)
5066 goto fail;
5067
Yan, Zhenga22285a2010-05-16 10:48:46 -04005068 /*
Miao Xie7e6b6462011-02-18 09:21:17 +00005069 * 2 items for inode and inode ref
Yan, Zhenga22285a2010-05-16 10:48:46 -04005070 * 2 items for dir items
Miao Xie7e6b6462011-02-18 09:21:17 +00005071 * 1 item for parent inode
Yan, Zhenga22285a2010-05-16 10:48:46 -04005072 */
Miao Xie7e6b6462011-02-18 09:21:17 +00005073 trans = btrfs_start_transaction(root, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005074 if (IS_ERR(trans)) {
5075 err = PTR_ERR(trans);
5076 goto fail;
5077 }
Chris Mason5f39d392007-10-15 16:14:19 -04005078
Miao Xie31534952011-04-13 13:19:21 +08005079 btrfs_inc_nlink(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04005080 inode_inc_iversion(inode);
Miao Xie31534952011-04-13 13:19:21 +08005081 inode->i_ctime = CURRENT_TIME;
Al Viro7de9c6ee2010-10-23 11:11:40 -04005082 ihold(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04005083
Josef Bacika1b075d2010-11-19 20:36:11 +00005084 err = btrfs_add_nondir(trans, dir, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04005085
Yan, Zhenga5719522009-09-24 09:17:31 -04005086 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04005087 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04005088 } else {
Al Viro10d9f302011-07-16 23:09:10 -04005089 struct dentry *parent = dentry->d_parent;
Yan, Zhenga5719522009-09-24 09:17:31 -04005090 err = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005091 if (err)
5092 goto fail;
Al Viro08c422c2011-12-23 07:58:13 -05005093 d_instantiate(dentry, inode);
Josef Bacik6a912212010-11-20 09:48:00 +00005094 btrfs_log_new_name(trans, inode, NULL, parent);
Yan, Zhenga5719522009-09-24 09:17:31 -04005095 }
Chris Mason39279cc2007-06-12 06:35:45 -04005096
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005097 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05005098 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05005099fail:
Chris Mason39279cc2007-06-12 06:35:45 -04005100 if (drop_inode) {
5101 inode_dec_link_count(inode);
5102 iput(inode);
5103 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005104 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04005105 return err;
5106}
5107
Al Viro18bb1db2011-07-26 01:41:39 -04005108static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Chris Mason39279cc2007-06-12 06:35:45 -04005109{
Chris Masonb9d86662008-05-02 16:13:49 -04005110 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04005111 struct btrfs_trans_handle *trans;
5112 struct btrfs_root *root = BTRFS_I(dir)->root;
5113 int err = 0;
5114 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04005115 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005116 u64 index = 0;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005117 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04005118
Josef Bacik9ed74f22009-09-11 16:12:44 -04005119 /*
5120 * 2 items for inode and ref
5121 * 2 items for dir items
5122 * 1 for xattr if selinux is on
5123 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04005124 trans = btrfs_start_transaction(root, 5);
5125 if (IS_ERR(trans))
5126 return PTR_ERR(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04005127
Li Zefan581bb052011-04-20 10:06:11 +08005128 err = btrfs_find_free_ino(root, &objectid);
5129 if (err)
5130 goto out_fail;
5131
Josef Bacikaec74772008-07-24 12:12:38 -04005132 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08005133 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04005134 S_IFDIR | mode, &index);
Chris Mason39279cc2007-06-12 06:35:45 -04005135 if (IS_ERR(inode)) {
5136 err = PTR_ERR(inode);
5137 goto out_fail;
5138 }
Chris Mason5f39d392007-10-15 16:14:19 -04005139
Chris Mason39279cc2007-06-12 06:35:45 -04005140 drop_on_err = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -04005141
Eric Paris2a7dba32011-02-01 11:05:39 -05005142 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04005143 if (err)
5144 goto out_fail;
5145
Chris Mason39279cc2007-06-12 06:35:45 -04005146 inode->i_op = &btrfs_dir_inode_operations;
5147 inode->i_fop = &btrfs_dir_file_operations;
Chris Mason39279cc2007-06-12 06:35:45 -04005148
Chris Masondbe674a2008-07-17 12:54:05 -04005149 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04005150 err = btrfs_update_inode(trans, root, inode);
5151 if (err)
5152 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04005153
Josef Bacika1b075d2010-11-19 20:36:11 +00005154 err = btrfs_add_link(trans, dir, inode, dentry->d_name.name,
5155 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04005156 if (err)
5157 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04005158
Chris Mason39279cc2007-06-12 06:35:45 -04005159 d_instantiate(dentry, inode);
5160 drop_on_err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005161
5162out_fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005163 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05005164 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04005165 if (drop_on_err)
5166 iput(inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005167 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04005168 return err;
5169}
5170
Chris Masond352ac62008-09-29 15:18:18 -04005171/* helper for btfs_get_extent. Given an existing extent in the tree,
5172 * and an extent that you want to insert, deal with overlap and insert
5173 * the new extent into the tree.
5174 */
Chris Mason3b951512008-04-17 11:29:12 -04005175static int merge_extent_mapping(struct extent_map_tree *em_tree,
5176 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005177 struct extent_map *em,
5178 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04005179{
5180 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04005181
Chris Masone6dcd2d2008-07-17 12:53:50 -04005182 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
5183 start_diff = map_start - em->start;
5184 em->start = map_start;
5185 em->len = map_len;
Chris Masonc8b97812008-10-29 14:49:59 -04005186 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
5187 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04005188 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04005189 em->block_len -= start_diff;
5190 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005191 return add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04005192}
5193
Chris Masonc8b97812008-10-29 14:49:59 -04005194static noinline int uncompress_inline(struct btrfs_path *path,
5195 struct inode *inode, struct page *page,
5196 size_t pg_offset, u64 extent_offset,
5197 struct btrfs_file_extent_item *item)
5198{
5199 int ret;
5200 struct extent_buffer *leaf = path->nodes[0];
5201 char *tmp;
5202 size_t max_size;
5203 unsigned long inline_size;
5204 unsigned long ptr;
Li Zefan261507a02010-12-17 14:21:50 +08005205 int compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04005206
5207 WARN_ON(pg_offset != 0);
Li Zefan261507a02010-12-17 14:21:50 +08005208 compress_type = btrfs_file_extent_compression(leaf, item);
Chris Masonc8b97812008-10-29 14:49:59 -04005209 max_size = btrfs_file_extent_ram_bytes(leaf, item);
5210 inline_size = btrfs_file_extent_inline_item_len(leaf,
5211 btrfs_item_nr(leaf, path->slots[0]));
5212 tmp = kmalloc(inline_size, GFP_NOFS);
Tsutomu Itoh8d413712011-04-25 19:43:52 -04005213 if (!tmp)
5214 return -ENOMEM;
Chris Masonc8b97812008-10-29 14:49:59 -04005215 ptr = btrfs_file_extent_inline_start(item);
5216
5217 read_extent_buffer(leaf, tmp, ptr, inline_size);
5218
Chris Mason5b050f02008-11-11 09:34:41 -05005219 max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size);
Li Zefan261507a02010-12-17 14:21:50 +08005220 ret = btrfs_decompress(compress_type, tmp, page,
5221 extent_offset, inline_size, max_size);
Chris Masonc8b97812008-10-29 14:49:59 -04005222 if (ret) {
Cong Wang7ac687d2011-11-25 23:14:28 +08005223 char *kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04005224 unsigned long copy_size = min_t(u64,
5225 PAGE_CACHE_SIZE - pg_offset,
5226 max_size - extent_offset);
5227 memset(kaddr + pg_offset, 0, copy_size);
Cong Wang7ac687d2011-11-25 23:14:28 +08005228 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -04005229 }
5230 kfree(tmp);
5231 return 0;
5232}
5233
Chris Masond352ac62008-09-29 15:18:18 -04005234/*
5235 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05005236 * the ugly parts come from merging extents from the disk with the in-ram
5237 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04005238 * where the in-ram extents might be locked pending data=ordered completion.
5239 *
5240 * This also copies inline extents directly into the page.
5241 */
Chris Masond3977122009-01-05 21:25:51 -05005242
Chris Masona52d9a82007-08-27 16:49:44 -04005243struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05005244 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04005245 int create)
5246{
5247 int ret;
5248 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04005249 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04005250 u64 extent_start = 0;
5251 u64 extent_end = 0;
Li Zefan33345d012011-04-20 10:31:50 +08005252 u64 objectid = btrfs_ino(inode);
Chris Masona52d9a82007-08-27 16:49:44 -04005253 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04005254 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04005255 struct btrfs_root *root = BTRFS_I(inode)->root;
5256 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04005257 struct extent_buffer *leaf;
5258 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04005259 struct extent_map *em = NULL;
5260 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05005261 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04005262 struct btrfs_trans_handle *trans = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08005263 int compress_type;
Chris Masona52d9a82007-08-27 16:49:44 -04005264
Chris Masona52d9a82007-08-27 16:49:44 -04005265again:
Chris Mason890871b2009-09-02 16:24:52 -04005266 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05005267 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04005268 if (em)
5269 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04005270 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05005271
Chris Masona52d9a82007-08-27 16:49:44 -04005272 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04005273 if (em->start > start || em->start + em->len <= start)
5274 free_extent_map(em);
5275 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05005276 free_extent_map(em);
5277 else
5278 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005279 }
David Sterba172ddd62011-04-21 00:48:27 +02005280 em = alloc_extent_map();
Chris Masona52d9a82007-08-27 16:49:44 -04005281 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05005282 err = -ENOMEM;
5283 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005284 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005285 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05005286 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05005287 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05005288 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04005289 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04005290
5291 if (!path) {
5292 path = btrfs_alloc_path();
Josef Bacik026fd312011-05-13 10:32:11 -04005293 if (!path) {
5294 err = -ENOMEM;
5295 goto out;
5296 }
5297 /*
5298 * Chances are we'll be called again, so go ahead and do
5299 * readahead
5300 */
5301 path->reada = 1;
Chris Masonf4219502008-07-22 11:18:09 -04005302 }
5303
Chris Mason179e29e2007-11-01 11:28:41 -04005304 ret = btrfs_lookup_file_extent(trans, root, path,
5305 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04005306 if (ret < 0) {
5307 err = ret;
5308 goto out;
5309 }
5310
5311 if (ret != 0) {
5312 if (path->slots[0] == 0)
5313 goto not_found;
5314 path->slots[0]--;
5315 }
5316
Chris Mason5f39d392007-10-15 16:14:19 -04005317 leaf = path->nodes[0];
5318 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04005319 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04005320 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04005321 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5322 found_type = btrfs_key_type(&found_key);
5323 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04005324 found_type != BTRFS_EXTENT_DATA_KEY) {
5325 goto not_found;
5326 }
5327
Chris Mason5f39d392007-10-15 16:14:19 -04005328 found_type = btrfs_file_extent_type(leaf, item);
5329 extent_start = found_key.offset;
Li Zefan261507a02010-12-17 14:21:50 +08005330 compress_type = btrfs_file_extent_compression(leaf, item);
Yan Zhengd899e052008-10-30 14:25:28 -04005331 if (found_type == BTRFS_FILE_EXTENT_REG ||
5332 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04005333 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04005334 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04005335 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
5336 size_t size;
5337 size = btrfs_file_extent_inline_len(leaf, item);
5338 extent_end = (extent_start + size + root->sectorsize - 1) &
5339 ~((u64)root->sectorsize - 1);
5340 }
5341
5342 if (start >= extent_end) {
5343 path->slots[0]++;
5344 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
5345 ret = btrfs_next_leaf(root, path);
5346 if (ret < 0) {
5347 err = ret;
5348 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005349 }
Yan Zheng9036c102008-10-30 14:19:41 -04005350 if (ret > 0)
5351 goto not_found;
5352 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04005353 }
Yan Zheng9036c102008-10-30 14:19:41 -04005354 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5355 if (found_key.objectid != objectid ||
5356 found_key.type != BTRFS_EXTENT_DATA_KEY)
5357 goto not_found;
5358 if (start + len <= found_key.offset)
5359 goto not_found;
5360 em->start = start;
5361 em->len = found_key.offset - start;
5362 goto not_found_em;
5363 }
5364
Yan Zhengd899e052008-10-30 14:25:28 -04005365 if (found_type == BTRFS_FILE_EXTENT_REG ||
5366 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng9036c102008-10-30 14:19:41 -04005367 em->start = extent_start;
5368 em->len = extent_end - extent_start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005369 em->orig_start = extent_start -
5370 btrfs_file_extent_offset(leaf, item);
Chris Masondb945352007-10-15 16:15:53 -04005371 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
5372 if (bytenr == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04005373 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04005374 goto insert;
5375 }
Li Zefan261507a02010-12-17 14:21:50 +08005376 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04005377 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08005378 em->compress_type = compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04005379 em->block_start = bytenr;
5380 em->block_len = btrfs_file_extent_disk_num_bytes(leaf,
5381 item);
5382 } else {
5383 bytenr += btrfs_file_extent_offset(leaf, item);
5384 em->block_start = bytenr;
5385 em->block_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04005386 if (found_type == BTRFS_FILE_EXTENT_PREALLOC)
5387 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -04005388 }
Chris Masona52d9a82007-08-27 16:49:44 -04005389 goto insert;
5390 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04005391 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04005392 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04005393 size_t size;
5394 size_t extent_offset;
5395 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04005396
Chris Masona52d9a82007-08-27 16:49:44 -04005397 em->block_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04005398 if (!page || create) {
Yan689f9342007-10-29 11:41:07 -04005399 em->start = extent_start;
Yan Zheng9036c102008-10-30 14:19:41 -04005400 em->len = extent_end - extent_start;
Yan689f9342007-10-29 11:41:07 -04005401 goto out;
5402 }
5403
Yan Zheng9036c102008-10-30 14:19:41 -04005404 size = btrfs_file_extent_inline_len(leaf, item);
5405 extent_offset = page_offset(page) + pg_offset - extent_start;
Chris Mason70dec802008-01-29 09:59:12 -05005406 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04005407 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04005408 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05005409 em->len = (copy_size + root->sectorsize - 1) &
5410 ~((u64)root->sectorsize - 1);
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005411 em->orig_start = EXTENT_MAP_INLINE;
Li Zefan261507a02010-12-17 14:21:50 +08005412 if (compress_type) {
Chris Masonc8b97812008-10-29 14:49:59 -04005413 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08005414 em->compress_type = compress_type;
5415 }
Yan689f9342007-10-29 11:41:07 -04005416 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04005417 if (create == 0 && !PageUptodate(page)) {
Li Zefan261507a02010-12-17 14:21:50 +08005418 if (btrfs_file_extent_compression(leaf, item) !=
5419 BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04005420 ret = uncompress_inline(path, inode, page,
5421 pg_offset,
5422 extent_offset, item);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005423 BUG_ON(ret); /* -ENOMEM */
Chris Masonc8b97812008-10-29 14:49:59 -04005424 } else {
5425 map = kmap(page);
5426 read_extent_buffer(leaf, map + pg_offset, ptr,
5427 copy_size);
Chris Mason93c82d52009-09-11 12:36:29 -04005428 if (pg_offset + copy_size < PAGE_CACHE_SIZE) {
5429 memset(map + pg_offset + copy_size, 0,
5430 PAGE_CACHE_SIZE - pg_offset -
5431 copy_size);
5432 }
Chris Masonc8b97812008-10-29 14:49:59 -04005433 kunmap(page);
5434 }
Chris Mason179e29e2007-11-01 11:28:41 -04005435 flush_dcache_page(page);
5436 } else if (create && PageUptodate(page)) {
Jan Schmidt6bf7e082011-12-01 14:35:19 +01005437 BUG();
Chris Mason179e29e2007-11-01 11:28:41 -04005438 if (!trans) {
5439 kunmap(page);
5440 free_extent_map(em);
5441 em = NULL;
Chris Masonff5714c2011-05-28 07:00:39 -04005442
David Sterbab3b4aa72011-04-21 01:20:15 +02005443 btrfs_release_path(path);
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005444 trans = btrfs_join_transaction(root);
Chris Masonff5714c2011-05-28 07:00:39 -04005445
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005446 if (IS_ERR(trans))
5447 return ERR_CAST(trans);
Chris Mason179e29e2007-11-01 11:28:41 -04005448 goto again;
5449 }
Chris Masonc8b97812008-10-29 14:49:59 -04005450 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05005451 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04005452 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04005453 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04005454 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04005455 }
Chris Masond1310b22008-01-24 16:13:08 -05005456 set_extent_uptodate(io_tree, em->start,
Arne Jansen507903b2011-04-06 10:02:20 +00005457 extent_map_end(em) - 1, NULL, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04005458 goto insert;
5459 } else {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00005460 WARN(1, KERN_ERR "btrfs unknown found_type %d\n", found_type);
Chris Masona52d9a82007-08-27 16:49:44 -04005461 }
5462not_found:
5463 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05005464 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04005465not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04005466 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04005467 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04005468insert:
David Sterbab3b4aa72011-04-21 01:20:15 +02005469 btrfs_release_path(path);
Chris Masond1310b22008-01-24 16:13:08 -05005470 if (em->start > start || extent_map_end(em) <= start) {
Chris Masond3977122009-01-05 21:25:51 -05005471 printk(KERN_ERR "Btrfs: bad extent! em: [%llu %llu] passed "
5472 "[%llu %llu]\n", (unsigned long long)em->start,
5473 (unsigned long long)em->len,
5474 (unsigned long long)start,
5475 (unsigned long long)len);
Chris Masona52d9a82007-08-27 16:49:44 -04005476 err = -EIO;
5477 goto out;
5478 }
Chris Masond1310b22008-01-24 16:13:08 -05005479
5480 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04005481 write_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005482 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04005483 /* it is possible that someone inserted the extent into the tree
5484 * while we had the lock dropped. It is also possible that
5485 * an overlapping map exists in the tree
5486 */
Chris Masona52d9a82007-08-27 16:49:44 -04005487 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04005488 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005489
5490 ret = 0;
5491
Chris Mason3b951512008-04-17 11:29:12 -04005492 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04005493 if (existing && (existing->start > start ||
5494 existing->start + existing->len <= start)) {
5495 free_extent_map(existing);
5496 existing = NULL;
5497 }
Chris Mason3b951512008-04-17 11:29:12 -04005498 if (!existing) {
5499 existing = lookup_extent_mapping(em_tree, em->start,
5500 em->len);
5501 if (existing) {
5502 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005503 em, start,
5504 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04005505 free_extent_map(existing);
5506 if (err) {
5507 free_extent_map(em);
5508 em = NULL;
5509 }
5510 } else {
5511 err = -EIO;
Chris Mason3b951512008-04-17 11:29:12 -04005512 free_extent_map(em);
5513 em = NULL;
5514 }
5515 } else {
5516 free_extent_map(em);
5517 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005518 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04005519 }
Chris Masona52d9a82007-08-27 16:49:44 -04005520 }
Chris Mason890871b2009-09-02 16:24:52 -04005521 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005522out:
liubo1abe9b82011-03-24 11:18:59 +00005523
Tsutomu Itohf0bd95e2012-10-01 03:08:37 -06005524 if (em)
5525 trace_btrfs_get_extent(root, em);
liubo1abe9b82011-03-24 11:18:59 +00005526
Chris Masonf4219502008-07-22 11:18:09 -04005527 if (path)
5528 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04005529 if (trans) {
5530 ret = btrfs_end_transaction(trans, root);
Chris Masond3977122009-01-05 21:25:51 -05005531 if (!err)
Chris Masona52d9a82007-08-27 16:49:44 -04005532 err = ret;
5533 }
Chris Masona52d9a82007-08-27 16:49:44 -04005534 if (err) {
5535 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04005536 return ERR_PTR(err);
5537 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005538 BUG_ON(!em); /* Error is always set */
Chris Masona52d9a82007-08-27 16:49:44 -04005539 return em;
5540}
5541
Chris Masonec29ed52011-02-23 16:23:20 -05005542struct extent_map *btrfs_get_extent_fiemap(struct inode *inode, struct page *page,
5543 size_t pg_offset, u64 start, u64 len,
5544 int create)
5545{
5546 struct extent_map *em;
5547 struct extent_map *hole_em = NULL;
5548 u64 range_start = start;
5549 u64 end;
5550 u64 found;
5551 u64 found_end;
5552 int err = 0;
5553
5554 em = btrfs_get_extent(inode, page, pg_offset, start, len, create);
5555 if (IS_ERR(em))
5556 return em;
5557 if (em) {
5558 /*
5559 * if our em maps to a hole, there might
5560 * actually be delalloc bytes behind it
5561 */
5562 if (em->block_start != EXTENT_MAP_HOLE)
5563 return em;
5564 else
5565 hole_em = em;
5566 }
5567
5568 /* check to see if we've wrapped (len == -1 or similar) */
5569 end = start + len;
5570 if (end < start)
5571 end = (u64)-1;
5572 else
5573 end -= 1;
5574
5575 em = NULL;
5576
5577 /* ok, we didn't find anything, lets look for delalloc */
5578 found = count_range_bits(&BTRFS_I(inode)->io_tree, &range_start,
5579 end, len, EXTENT_DELALLOC, 1);
5580 found_end = range_start + found;
5581 if (found_end < range_start)
5582 found_end = (u64)-1;
5583
5584 /*
5585 * we didn't find anything useful, return
5586 * the original results from get_extent()
5587 */
5588 if (range_start > end || found_end <= start) {
5589 em = hole_em;
5590 hole_em = NULL;
5591 goto out;
5592 }
5593
5594 /* adjust the range_start to make sure it doesn't
5595 * go backwards from the start they passed in
5596 */
5597 range_start = max(start,range_start);
5598 found = found_end - range_start;
5599
5600 if (found > 0) {
5601 u64 hole_start = start;
5602 u64 hole_len = len;
5603
David Sterba172ddd62011-04-21 00:48:27 +02005604 em = alloc_extent_map();
Chris Masonec29ed52011-02-23 16:23:20 -05005605 if (!em) {
5606 err = -ENOMEM;
5607 goto out;
5608 }
5609 /*
5610 * when btrfs_get_extent can't find anything it
5611 * returns one huge hole
5612 *
5613 * make sure what it found really fits our range, and
5614 * adjust to make sure it is based on the start from
5615 * the caller
5616 */
5617 if (hole_em) {
5618 u64 calc_end = extent_map_end(hole_em);
5619
5620 if (calc_end <= start || (hole_em->start > end)) {
5621 free_extent_map(hole_em);
5622 hole_em = NULL;
5623 } else {
5624 hole_start = max(hole_em->start, start);
5625 hole_len = calc_end - hole_start;
5626 }
5627 }
5628 em->bdev = NULL;
5629 if (hole_em && range_start > hole_start) {
5630 /* our hole starts before our delalloc, so we
5631 * have to return just the parts of the hole
5632 * that go until the delalloc starts
5633 */
5634 em->len = min(hole_len,
5635 range_start - hole_start);
5636 em->start = hole_start;
5637 em->orig_start = hole_start;
5638 /*
5639 * don't adjust block start at all,
5640 * it is fixed at EXTENT_MAP_HOLE
5641 */
5642 em->block_start = hole_em->block_start;
5643 em->block_len = hole_len;
5644 } else {
5645 em->start = range_start;
5646 em->len = found;
5647 em->orig_start = range_start;
5648 em->block_start = EXTENT_MAP_DELALLOC;
5649 em->block_len = found;
5650 }
5651 } else if (hole_em) {
5652 return hole_em;
5653 }
5654out:
5655
5656 free_extent_map(hole_em);
5657 if (err) {
5658 free_extent_map(em);
5659 return ERR_PTR(err);
5660 }
5661 return em;
5662}
5663
Josef Bacik4b46fce2010-05-23 11:00:55 -04005664static struct extent_map *btrfs_new_extent_direct(struct inode *inode,
Josef Bacik16d299a2011-04-06 14:53:07 -04005665 struct extent_map *em,
Josef Bacik4b46fce2010-05-23 11:00:55 -04005666 u64 start, u64 len)
5667{
5668 struct btrfs_root *root = BTRFS_I(inode)->root;
5669 struct btrfs_trans_handle *trans;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005670 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
5671 struct btrfs_key ins;
5672 u64 alloc_hint;
5673 int ret;
Josef Bacik16d299a2011-04-06 14:53:07 -04005674 bool insert = false;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005675
Josef Bacik16d299a2011-04-06 14:53:07 -04005676 /*
5677 * Ok if the extent map we looked up is a hole and is for the exact
5678 * range we want, there is no reason to allocate a new one, however if
5679 * it is not right then we need to free this one and drop the cache for
5680 * our range.
5681 */
5682 if (em->block_start != EXTENT_MAP_HOLE || em->start != start ||
5683 em->len != len) {
5684 free_extent_map(em);
5685 em = NULL;
5686 insert = true;
5687 btrfs_drop_extent_cache(inode, start, start + len - 1, 0);
5688 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005689
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005690 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005691 if (IS_ERR(trans))
5692 return ERR_CAST(trans);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005693
Chris Mason4cb53002011-05-24 15:35:30 -04005694 if (start <= BTRFS_I(inode)->disk_i_size && len < 64 * 1024)
5695 btrfs_add_inode_defrag(trans, inode);
5696
Josef Bacik4b46fce2010-05-23 11:00:55 -04005697 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
5698
5699 alloc_hint = get_extent_allocation_hint(inode, start, len);
5700 ret = btrfs_reserve_extent(trans, root, len, root->sectorsize, 0,
Josef Bacik81c9ad22012-01-18 10:56:06 -05005701 alloc_hint, &ins, 1);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005702 if (ret) {
5703 em = ERR_PTR(ret);
5704 goto out;
5705 }
5706
Josef Bacik4b46fce2010-05-23 11:00:55 -04005707 if (!em) {
David Sterba172ddd62011-04-21 00:48:27 +02005708 em = alloc_extent_map();
Josef Bacik16d299a2011-04-06 14:53:07 -04005709 if (!em) {
5710 em = ERR_PTR(-ENOMEM);
5711 goto out;
5712 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005713 }
5714
5715 em->start = start;
5716 em->orig_start = em->start;
5717 em->len = ins.offset;
5718
5719 em->block_start = ins.objectid;
5720 em->block_len = ins.offset;
5721 em->bdev = root->fs_info->fs_devices->latest_bdev;
Josef Bacik16d299a2011-04-06 14:53:07 -04005722
5723 /*
5724 * We need to do this because if we're using the original em we searched
5725 * for, we could have EXTENT_FLAG_VACANCY set, and we don't want that.
5726 */
5727 em->flags = 0;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005728 set_bit(EXTENT_FLAG_PINNED, &em->flags);
5729
Josef Bacik16d299a2011-04-06 14:53:07 -04005730 while (insert) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04005731 write_lock(&em_tree->lock);
5732 ret = add_extent_mapping(em_tree, em);
5733 write_unlock(&em_tree->lock);
5734 if (ret != -EEXIST)
5735 break;
5736 btrfs_drop_extent_cache(inode, start, start + em->len - 1, 0);
5737 }
5738
5739 ret = btrfs_add_ordered_extent_dio(inode, start, ins.objectid,
5740 ins.offset, ins.offset, 0);
5741 if (ret) {
5742 btrfs_free_reserved_extent(root, ins.objectid, ins.offset);
5743 em = ERR_PTR(ret);
5744 }
5745out:
5746 btrfs_end_transaction(trans, root);
5747 return em;
5748}
5749
Chris Mason46bfbb52010-05-26 11:04:10 -04005750/*
5751 * returns 1 when the nocow is safe, < 1 on error, 0 if the
5752 * block must be cow'd
5753 */
5754static noinline int can_nocow_odirect(struct btrfs_trans_handle *trans,
5755 struct inode *inode, u64 offset, u64 len)
5756{
5757 struct btrfs_path *path;
5758 int ret;
5759 struct extent_buffer *leaf;
5760 struct btrfs_root *root = BTRFS_I(inode)->root;
5761 struct btrfs_file_extent_item *fi;
5762 struct btrfs_key key;
5763 u64 disk_bytenr;
5764 u64 backref_offset;
5765 u64 extent_end;
5766 u64 num_bytes;
5767 int slot;
5768 int found_type;
5769
5770 path = btrfs_alloc_path();
5771 if (!path)
5772 return -ENOMEM;
5773
Li Zefan33345d012011-04-20 10:31:50 +08005774 ret = btrfs_lookup_file_extent(trans, root, path, btrfs_ino(inode),
Chris Mason46bfbb52010-05-26 11:04:10 -04005775 offset, 0);
5776 if (ret < 0)
5777 goto out;
5778
5779 slot = path->slots[0];
5780 if (ret == 1) {
5781 if (slot == 0) {
5782 /* can't find the item, must cow */
5783 ret = 0;
5784 goto out;
5785 }
5786 slot--;
5787 }
5788 ret = 0;
5789 leaf = path->nodes[0];
5790 btrfs_item_key_to_cpu(leaf, &key, slot);
Li Zefan33345d012011-04-20 10:31:50 +08005791 if (key.objectid != btrfs_ino(inode) ||
Chris Mason46bfbb52010-05-26 11:04:10 -04005792 key.type != BTRFS_EXTENT_DATA_KEY) {
5793 /* not our file or wrong item type, must cow */
5794 goto out;
5795 }
5796
5797 if (key.offset > offset) {
5798 /* Wrong offset, must cow */
5799 goto out;
5800 }
5801
5802 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
5803 found_type = btrfs_file_extent_type(leaf, fi);
5804 if (found_type != BTRFS_FILE_EXTENT_REG &&
5805 found_type != BTRFS_FILE_EXTENT_PREALLOC) {
5806 /* not a regular extent, must cow */
5807 goto out;
5808 }
5809 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
5810 backref_offset = btrfs_file_extent_offset(leaf, fi);
5811
5812 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
5813 if (extent_end < offset + len) {
5814 /* extent doesn't include our full range, must cow */
5815 goto out;
5816 }
5817
5818 if (btrfs_extent_readonly(root, disk_bytenr))
5819 goto out;
5820
5821 /*
5822 * look for other files referencing this extent, if we
5823 * find any we must cow
5824 */
Li Zefan33345d012011-04-20 10:31:50 +08005825 if (btrfs_cross_ref_exist(trans, root, btrfs_ino(inode),
Chris Mason46bfbb52010-05-26 11:04:10 -04005826 key.offset - backref_offset, disk_bytenr))
5827 goto out;
5828
5829 /*
5830 * adjust disk_bytenr and num_bytes to cover just the bytes
5831 * in this extent we are about to write. If there
5832 * are any csums in that range we have to cow in order
5833 * to keep the csums correct
5834 */
5835 disk_bytenr += backref_offset;
5836 disk_bytenr += offset - key.offset;
5837 num_bytes = min(offset + len, extent_end) - offset;
5838 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
5839 goto out;
5840 /*
5841 * all of the above have passed, it is safe to overwrite this extent
5842 * without cow
5843 */
5844 ret = 1;
5845out:
5846 btrfs_free_path(path);
5847 return ret;
5848}
5849
Josef Bacikeb838e72012-07-31 16:28:48 -04005850static int lock_extent_direct(struct inode *inode, u64 lockstart, u64 lockend,
5851 struct extent_state **cached_state, int writing)
5852{
5853 struct btrfs_ordered_extent *ordered;
5854 int ret = 0;
5855
5856 while (1) {
5857 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
5858 0, cached_state);
5859 /*
5860 * We're concerned with the entire range that we're going to be
5861 * doing DIO to, so we need to make sure theres no ordered
5862 * extents in this range.
5863 */
5864 ordered = btrfs_lookup_ordered_range(inode, lockstart,
5865 lockend - lockstart + 1);
5866
5867 /*
5868 * We need to make sure there are no buffered pages in this
5869 * range either, we could have raced between the invalidate in
5870 * generic_file_direct_write and locking the extent. The
5871 * invalidate needs to happen so that reads after a write do not
5872 * get stale data.
5873 */
5874 if (!ordered && (!writing ||
5875 !test_range_bit(&BTRFS_I(inode)->io_tree,
5876 lockstart, lockend, EXTENT_UPTODATE, 0,
5877 *cached_state)))
5878 break;
5879
5880 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
5881 cached_state, GFP_NOFS);
5882
5883 if (ordered) {
5884 btrfs_start_ordered_extent(inode, ordered, 1);
5885 btrfs_put_ordered_extent(ordered);
5886 } else {
5887 /* Screw you mmap */
5888 ret = filemap_write_and_wait_range(inode->i_mapping,
5889 lockstart,
5890 lockend);
5891 if (ret)
5892 break;
5893
5894 /*
5895 * If we found a page that couldn't be invalidated just
5896 * fall back to buffered.
5897 */
5898 ret = invalidate_inode_pages2_range(inode->i_mapping,
5899 lockstart >> PAGE_CACHE_SHIFT,
5900 lockend >> PAGE_CACHE_SHIFT);
5901 if (ret)
5902 break;
5903 }
5904
5905 cond_resched();
5906 }
5907
5908 return ret;
5909}
5910
Josef Bacik69ffb542012-09-11 15:40:07 -04005911static struct extent_map *create_pinned_em(struct inode *inode, u64 start,
5912 u64 len, u64 orig_start,
5913 u64 block_start, u64 block_len,
5914 int type)
5915{
5916 struct extent_map_tree *em_tree;
5917 struct extent_map *em;
5918 struct btrfs_root *root = BTRFS_I(inode)->root;
5919 int ret;
5920
5921 em_tree = &BTRFS_I(inode)->extent_tree;
5922 em = alloc_extent_map();
5923 if (!em)
5924 return ERR_PTR(-ENOMEM);
5925
5926 em->start = start;
5927 em->orig_start = orig_start;
5928 em->len = len;
5929 em->block_len = block_len;
5930 em->block_start = block_start;
5931 em->bdev = root->fs_info->fs_devices->latest_bdev;
5932 set_bit(EXTENT_FLAG_PINNED, &em->flags);
5933 if (type == BTRFS_ORDERED_PREALLOC)
5934 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
5935
5936 do {
5937 btrfs_drop_extent_cache(inode, em->start,
5938 em->start + em->len - 1, 0);
5939 write_lock(&em_tree->lock);
5940 ret = add_extent_mapping(em_tree, em);
5941 write_unlock(&em_tree->lock);
5942 } while (ret == -EEXIST);
5943
5944 if (ret) {
5945 free_extent_map(em);
5946 return ERR_PTR(ret);
5947 }
5948
5949 return em;
5950}
5951
5952
Josef Bacik4b46fce2010-05-23 11:00:55 -04005953static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock,
5954 struct buffer_head *bh_result, int create)
5955{
5956 struct extent_map *em;
5957 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikeb838e72012-07-31 16:28:48 -04005958 struct extent_state *cached_state = NULL;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005959 u64 start = iblock << inode->i_blkbits;
Josef Bacikeb838e72012-07-31 16:28:48 -04005960 u64 lockstart, lockend;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005961 u64 len = bh_result->b_size;
Chris Mason46bfbb52010-05-26 11:04:10 -04005962 struct btrfs_trans_handle *trans;
Josef Bacikeb838e72012-07-31 16:28:48 -04005963 int unlock_bits = EXTENT_LOCKED;
5964 int ret;
5965
Josef Bacikeb838e72012-07-31 16:28:48 -04005966 if (create) {
5967 ret = btrfs_delalloc_reserve_space(inode, len);
5968 if (ret)
5969 return ret;
5970 unlock_bits |= EXTENT_DELALLOC | EXTENT_DIRTY;
Josef Bacikc3298612012-08-03 16:49:19 -04005971 } else {
5972 len = min_t(u64, len, root->sectorsize);
Josef Bacikeb838e72012-07-31 16:28:48 -04005973 }
5974
Josef Bacikc3298612012-08-03 16:49:19 -04005975 lockstart = start;
5976 lockend = start + len - 1;
5977
Josef Bacikeb838e72012-07-31 16:28:48 -04005978 /*
5979 * If this errors out it's because we couldn't invalidate pagecache for
5980 * this range and we need to fallback to buffered.
5981 */
5982 if (lock_extent_direct(inode, lockstart, lockend, &cached_state, create))
5983 return -ENOTBLK;
5984
5985 if (create) {
5986 ret = set_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
5987 lockend, EXTENT_DELALLOC, NULL,
5988 &cached_state, GFP_NOFS);
5989 if (ret)
5990 goto unlock_err;
5991 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005992
5993 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
Josef Bacikeb838e72012-07-31 16:28:48 -04005994 if (IS_ERR(em)) {
5995 ret = PTR_ERR(em);
5996 goto unlock_err;
5997 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005998
5999 /*
6000 * Ok for INLINE and COMPRESSED extents we need to fallback on buffered
6001 * io. INLINE is special, and we could probably kludge it in here, but
6002 * it's still buffered so for safety lets just fall back to the generic
6003 * buffered path.
6004 *
6005 * For COMPRESSED we _have_ to read the entire extent in so we can
6006 * decompress it, so there will be buffering required no matter what we
6007 * do, so go ahead and fallback to buffered.
6008 *
6009 * We return -ENOTBLK because thats what makes DIO go ahead and go back
6010 * to buffered IO. Don't blame me, this is the price we pay for using
6011 * the generic code.
6012 */
6013 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) ||
6014 em->block_start == EXTENT_MAP_INLINE) {
6015 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04006016 ret = -ENOTBLK;
6017 goto unlock_err;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006018 }
6019
6020 /* Just a good old fashioned hole, return */
6021 if (!create && (em->block_start == EXTENT_MAP_HOLE ||
6022 test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
6023 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04006024 ret = 0;
6025 goto unlock_err;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006026 }
6027
6028 /*
6029 * We don't allocate a new extent in the following cases
6030 *
6031 * 1) The inode is marked as NODATACOW. In this case we'll just use the
6032 * existing extent.
6033 * 2) The extent is marked as PREALLOC. We're good to go here and can
6034 * just use the extent.
6035 *
6036 */
Chris Mason46bfbb52010-05-26 11:04:10 -04006037 if (!create) {
Josef Bacikeb838e72012-07-31 16:28:48 -04006038 len = min(len, em->len - (start - em->start));
6039 lockstart = start + len;
6040 goto unlock;
Chris Mason46bfbb52010-05-26 11:04:10 -04006041 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04006042
6043 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
6044 ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
6045 em->block_start != EXTENT_MAP_HOLE)) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04006046 int type;
6047 int ret;
Chris Mason46bfbb52010-05-26 11:04:10 -04006048 u64 block_start;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006049
6050 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
6051 type = BTRFS_ORDERED_PREALLOC;
6052 else
6053 type = BTRFS_ORDERED_NOCOW;
Chris Mason46bfbb52010-05-26 11:04:10 -04006054 len = min(len, em->len - (start - em->start));
Josef Bacik4b46fce2010-05-23 11:00:55 -04006055 block_start = em->block_start + (start - em->start);
Chris Mason46bfbb52010-05-26 11:04:10 -04006056
6057 /*
6058 * we're not going to log anything, but we do need
6059 * to make sure the current transaction stays open
6060 * while we look for nocow cross refs
6061 */
Josef Bacik7a7eaa42011-04-13 12:54:33 -04006062 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00006063 if (IS_ERR(trans))
Chris Mason46bfbb52010-05-26 11:04:10 -04006064 goto must_cow;
6065
6066 if (can_nocow_odirect(trans, inode, start, len) == 1) {
Josef Bacik69ffb542012-09-11 15:40:07 -04006067 u64 orig_start = em->start;
6068
6069 if (type == BTRFS_ORDERED_PREALLOC) {
6070 free_extent_map(em);
6071 em = create_pinned_em(inode, start, len,
6072 orig_start,
6073 block_start, len, type);
6074 if (IS_ERR(em)) {
6075 btrfs_end_transaction(trans, root);
6076 goto unlock_err;
6077 }
6078 }
6079
Chris Mason46bfbb52010-05-26 11:04:10 -04006080 ret = btrfs_add_ordered_extent_dio(inode, start,
6081 block_start, len, len, type);
6082 btrfs_end_transaction(trans, root);
6083 if (ret) {
6084 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04006085 goto unlock_err;
Chris Mason46bfbb52010-05-26 11:04:10 -04006086 }
6087 goto unlock;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006088 }
Chris Mason46bfbb52010-05-26 11:04:10 -04006089 btrfs_end_transaction(trans, root);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006090 }
Chris Mason46bfbb52010-05-26 11:04:10 -04006091must_cow:
6092 /*
6093 * this will cow the extent, reset the len in case we changed
6094 * it above
6095 */
6096 len = bh_result->b_size;
Josef Bacik16d299a2011-04-06 14:53:07 -04006097 em = btrfs_new_extent_direct(inode, em, start, len);
Josef Bacikeb838e72012-07-31 16:28:48 -04006098 if (IS_ERR(em)) {
6099 ret = PTR_ERR(em);
6100 goto unlock_err;
6101 }
Chris Mason46bfbb52010-05-26 11:04:10 -04006102 len = min(len, em->len - (start - em->start));
6103unlock:
Josef Bacik4b46fce2010-05-23 11:00:55 -04006104 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
6105 inode->i_blkbits;
Chris Mason46bfbb52010-05-26 11:04:10 -04006106 bh_result->b_size = len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006107 bh_result->b_bdev = em->bdev;
6108 set_buffer_mapped(bh_result);
Josef Bacikc3473e82012-06-19 10:59:00 -04006109 if (create) {
6110 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
6111 set_buffer_new(bh_result);
6112
6113 /*
6114 * Need to update the i_size under the extent lock so buffered
6115 * readers will get the updated i_size when we unlock.
6116 */
6117 if (start + len > i_size_read(inode))
6118 i_size_write(inode, start + len);
6119 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04006120
Josef Bacikeb838e72012-07-31 16:28:48 -04006121 /*
6122 * In the case of write we need to clear and unlock the entire range,
6123 * in the case of read we need to unlock only the end area that we
6124 * aren't using if there is any left over space.
6125 */
Liu Bo24c03fa2012-08-22 20:10:38 -06006126 if (lockstart < lockend) {
6127 if (create && len < lockend - lockstart) {
6128 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
Liu Bo9e8a4a82012-09-05 19:10:51 -06006129 lockstart + len - 1,
6130 unlock_bits | EXTENT_DEFRAG, 1, 0,
Liu Bo24c03fa2012-08-22 20:10:38 -06006131 &cached_state, GFP_NOFS);
6132 /*
6133 * Beside unlock, we also need to cleanup reserved space
6134 * for the left range by attaching EXTENT_DO_ACCOUNTING.
6135 */
6136 clear_extent_bit(&BTRFS_I(inode)->io_tree,
6137 lockstart + len, lockend,
Liu Bo9e8a4a82012-09-05 19:10:51 -06006138 unlock_bits | EXTENT_DO_ACCOUNTING |
6139 EXTENT_DEFRAG, 1, 0, NULL, GFP_NOFS);
Liu Bo24c03fa2012-08-22 20:10:38 -06006140 } else {
6141 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
6142 lockend, unlock_bits, 1, 0,
6143 &cached_state, GFP_NOFS);
6144 }
6145 } else {
Josef Bacikeb838e72012-07-31 16:28:48 -04006146 free_extent_state(cached_state);
Liu Bo24c03fa2012-08-22 20:10:38 -06006147 }
Josef Bacikeb838e72012-07-31 16:28:48 -04006148
Josef Bacik4b46fce2010-05-23 11:00:55 -04006149 free_extent_map(em);
6150
6151 return 0;
Josef Bacikeb838e72012-07-31 16:28:48 -04006152
6153unlock_err:
6154 if (create)
6155 unlock_bits |= EXTENT_DO_ACCOUNTING;
6156
6157 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6158 unlock_bits, 1, 0, &cached_state, GFP_NOFS);
6159 return ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006160}
6161
6162struct btrfs_dio_private {
6163 struct inode *inode;
6164 u64 logical_offset;
6165 u64 disk_bytenr;
6166 u64 bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006167 void *private;
Miao Xiee65e1532010-11-22 03:04:43 +00006168
6169 /* number of bios pending for this dio */
6170 atomic_t pending_bios;
6171
6172 /* IO errors */
6173 int errors;
6174
6175 struct bio *orig_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006176};
6177
6178static void btrfs_endio_direct_read(struct bio *bio, int err)
6179{
Miao Xiee65e1532010-11-22 03:04:43 +00006180 struct btrfs_dio_private *dip = bio->bi_private;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006181 struct bio_vec *bvec_end = bio->bi_io_vec + bio->bi_vcnt - 1;
6182 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006183 struct inode *inode = dip->inode;
6184 struct btrfs_root *root = BTRFS_I(inode)->root;
6185 u64 start;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006186
6187 start = dip->logical_offset;
6188 do {
6189 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)) {
6190 struct page *page = bvec->bv_page;
6191 char *kaddr;
6192 u32 csum = ~(u32)0;
Josef Bacikc3298612012-08-03 16:49:19 -04006193 u64 private = ~(u32)0;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006194 unsigned long flags;
6195
Josef Bacikc3298612012-08-03 16:49:19 -04006196 if (get_state_private(&BTRFS_I(inode)->io_tree,
6197 start, &private))
6198 goto failed;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006199 local_irq_save(flags);
Cong Wang7ac687d2011-11-25 23:14:28 +08006200 kaddr = kmap_atomic(page);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006201 csum = btrfs_csum_data(root, kaddr + bvec->bv_offset,
6202 csum, bvec->bv_len);
6203 btrfs_csum_final(csum, (char *)&csum);
Cong Wang7ac687d2011-11-25 23:14:28 +08006204 kunmap_atomic(kaddr);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006205 local_irq_restore(flags);
6206
6207 flush_dcache_page(bvec->bv_page);
Josef Bacikc3298612012-08-03 16:49:19 -04006208 if (csum != private) {
6209failed:
Li Zefan33345d012011-04-20 10:31:50 +08006210 printk(KERN_ERR "btrfs csum failed ino %llu off"
Josef Bacik4b46fce2010-05-23 11:00:55 -04006211 " %llu csum %u private %u\n",
Li Zefan33345d012011-04-20 10:31:50 +08006212 (unsigned long long)btrfs_ino(inode),
6213 (unsigned long long)start,
Josef Bacikc3298612012-08-03 16:49:19 -04006214 csum, (unsigned)private);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006215 err = -EIO;
6216 }
6217 }
6218
6219 start += bvec->bv_len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006220 bvec++;
6221 } while (bvec <= bvec_end);
6222
6223 unlock_extent(&BTRFS_I(inode)->io_tree, dip->logical_offset,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006224 dip->logical_offset + dip->bytes - 1);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006225 bio->bi_private = dip->private;
6226
Josef Bacik4b46fce2010-05-23 11:00:55 -04006227 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04006228
6229 /* If we had a csum failure make sure to clear the uptodate flag */
6230 if (err)
6231 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006232 dio_end_io(bio, err);
6233}
6234
6235static void btrfs_endio_direct_write(struct bio *bio, int err)
6236{
6237 struct btrfs_dio_private *dip = bio->bi_private;
6238 struct inode *inode = dip->inode;
6239 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006240 struct btrfs_ordered_extent *ordered = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05006241 u64 ordered_offset = dip->logical_offset;
6242 u64 ordered_bytes = dip->bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006243 int ret;
6244
6245 if (err)
6246 goto out_done;
Chris Mason163cf092010-11-28 19:56:33 -05006247again:
6248 ret = btrfs_dec_test_first_ordered_pending(inode, &ordered,
6249 &ordered_offset,
Josef Bacik5fd02042012-05-02 14:00:54 -04006250 ordered_bytes, !err);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006251 if (!ret)
Chris Mason163cf092010-11-28 19:56:33 -05006252 goto out_test;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006253
Josef Bacik5fd02042012-05-02 14:00:54 -04006254 ordered->work.func = finish_ordered_fn;
6255 ordered->work.flags = 0;
6256 btrfs_queue_worker(&root->fs_info->endio_write_workers,
6257 &ordered->work);
Chris Mason163cf092010-11-28 19:56:33 -05006258out_test:
6259 /*
6260 * our bio might span multiple ordered extents. If we haven't
6261 * completed the accounting for the whole dio, go back and try again
6262 */
6263 if (ordered_offset < dip->logical_offset + dip->bytes) {
6264 ordered_bytes = dip->logical_offset + dip->bytes -
6265 ordered_offset;
Josef Bacik5fd02042012-05-02 14:00:54 -04006266 ordered = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05006267 goto again;
6268 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04006269out_done:
6270 bio->bi_private = dip->private;
6271
Josef Bacik4b46fce2010-05-23 11:00:55 -04006272 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04006273
6274 /* If we had an error make sure to clear the uptodate flag */
6275 if (err)
6276 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006277 dio_end_io(bio, err);
6278}
6279
Chris Masoneaf25d92010-05-25 09:48:28 -04006280static int __btrfs_submit_bio_start_direct_io(struct inode *inode, int rw,
6281 struct bio *bio, int mirror_num,
6282 unsigned long bio_flags, u64 offset)
6283{
6284 int ret;
6285 struct btrfs_root *root = BTRFS_I(inode)->root;
6286 ret = btrfs_csum_one_bio(root, inode, bio, offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006287 BUG_ON(ret); /* -ENOMEM */
Chris Masoneaf25d92010-05-25 09:48:28 -04006288 return 0;
6289}
6290
Miao Xiee65e1532010-11-22 03:04:43 +00006291static void btrfs_end_dio_bio(struct bio *bio, int err)
6292{
6293 struct btrfs_dio_private *dip = bio->bi_private;
6294
6295 if (err) {
Li Zefan33345d012011-04-20 10:31:50 +08006296 printk(KERN_ERR "btrfs direct IO failed ino %llu rw %lu "
Jan Beulich3dd14622010-12-07 14:54:09 +00006297 "sector %#Lx len %u err no %d\n",
Li Zefan33345d012011-04-20 10:31:50 +08006298 (unsigned long long)btrfs_ino(dip->inode), bio->bi_rw,
Jan Beulich3dd14622010-12-07 14:54:09 +00006299 (unsigned long long)bio->bi_sector, bio->bi_size, err);
Miao Xiee65e1532010-11-22 03:04:43 +00006300 dip->errors = 1;
6301
6302 /*
6303 * before atomic variable goto zero, we must make sure
6304 * dip->errors is perceived to be set.
6305 */
6306 smp_mb__before_atomic_dec();
6307 }
6308
6309 /* if there are more bios still pending for this dio, just exit */
6310 if (!atomic_dec_and_test(&dip->pending_bios))
6311 goto out;
6312
6313 if (dip->errors)
6314 bio_io_error(dip->orig_bio);
6315 else {
6316 set_bit(BIO_UPTODATE, &dip->orig_bio->bi_flags);
6317 bio_endio(dip->orig_bio, 0);
6318 }
6319out:
6320 bio_put(bio);
6321}
6322
6323static struct bio *btrfs_dio_bio_alloc(struct block_device *bdev,
6324 u64 first_sector, gfp_t gfp_flags)
6325{
6326 int nr_vecs = bio_get_nr_vecs(bdev);
6327 return btrfs_bio_alloc(bdev, first_sector, nr_vecs, gfp_flags);
6328}
6329
6330static inline int __btrfs_submit_dio_bio(struct bio *bio, struct inode *inode,
6331 int rw, u64 file_offset, int skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04006332 int async_submit)
Miao Xiee65e1532010-11-22 03:04:43 +00006333{
6334 int write = rw & REQ_WRITE;
6335 struct btrfs_root *root = BTRFS_I(inode)->root;
6336 int ret;
6337
6338 bio_get(bio);
Josef Bacik5fd02042012-05-02 14:00:54 -04006339
6340 if (!write) {
6341 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
6342 if (ret)
6343 goto err;
6344 }
Miao Xiee65e1532010-11-22 03:04:43 +00006345
Josef Bacik1ae39932011-04-06 14:41:34 -04006346 if (skip_sum)
6347 goto map;
6348
6349 if (write && async_submit) {
Miao Xiee65e1532010-11-22 03:04:43 +00006350 ret = btrfs_wq_submit_bio(root->fs_info,
6351 inode, rw, bio, 0, 0,
6352 file_offset,
6353 __btrfs_submit_bio_start_direct_io,
6354 __btrfs_submit_bio_done);
6355 goto err;
Josef Bacik1ae39932011-04-06 14:41:34 -04006356 } else if (write) {
6357 /*
6358 * If we aren't doing async submit, calculate the csum of the
6359 * bio now.
6360 */
6361 ret = btrfs_csum_one_bio(root, inode, bio, file_offset, 1);
6362 if (ret)
6363 goto err;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00006364 } else if (!skip_sum) {
Josef Bacikc3298612012-08-03 16:49:19 -04006365 ret = btrfs_lookup_bio_sums_dio(root, inode, bio, file_offset);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00006366 if (ret)
6367 goto err;
6368 }
Miao Xiee65e1532010-11-22 03:04:43 +00006369
Josef Bacik1ae39932011-04-06 14:41:34 -04006370map:
6371 ret = btrfs_map_bio(root, rw, bio, 0, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00006372err:
6373 bio_put(bio);
6374 return ret;
6375}
6376
6377static int btrfs_submit_direct_hook(int rw, struct btrfs_dio_private *dip,
6378 int skip_sum)
6379{
6380 struct inode *inode = dip->inode;
6381 struct btrfs_root *root = BTRFS_I(inode)->root;
6382 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
6383 struct bio *bio;
6384 struct bio *orig_bio = dip->orig_bio;
6385 struct bio_vec *bvec = orig_bio->bi_io_vec;
6386 u64 start_sector = orig_bio->bi_sector;
6387 u64 file_offset = dip->logical_offset;
6388 u64 submit_len = 0;
6389 u64 map_length;
6390 int nr_pages = 0;
Miao Xiee65e1532010-11-22 03:04:43 +00006391 int ret = 0;
Josef Bacik1ae39932011-04-06 14:41:34 -04006392 int async_submit = 0;
Miao Xiee65e1532010-11-22 03:04:43 +00006393
Miao Xiee65e1532010-11-22 03:04:43 +00006394 map_length = orig_bio->bi_size;
6395 ret = btrfs_map_block(map_tree, READ, start_sector << 9,
6396 &map_length, NULL, 0);
6397 if (ret) {
Josef Bacik64728bb2011-04-25 19:43:52 -04006398 bio_put(orig_bio);
Miao Xiee65e1532010-11-22 03:04:43 +00006399 return -EIO;
6400 }
6401
Josef Bacik02f57c72011-04-06 14:25:44 -04006402 if (map_length >= orig_bio->bi_size) {
6403 bio = orig_bio;
6404 goto submit;
6405 }
6406
Josef Bacik1ae39932011-04-06 14:41:34 -04006407 async_submit = 1;
Josef Bacik02f57c72011-04-06 14:25:44 -04006408 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev, start_sector, GFP_NOFS);
6409 if (!bio)
6410 return -ENOMEM;
6411 bio->bi_private = dip;
6412 bio->bi_end_io = btrfs_end_dio_bio;
6413 atomic_inc(&dip->pending_bios);
6414
Miao Xiee65e1532010-11-22 03:04:43 +00006415 while (bvec <= (orig_bio->bi_io_vec + orig_bio->bi_vcnt - 1)) {
6416 if (unlikely(map_length < submit_len + bvec->bv_len ||
6417 bio_add_page(bio, bvec->bv_page, bvec->bv_len,
6418 bvec->bv_offset) < bvec->bv_len)) {
6419 /*
6420 * inc the count before we submit the bio so
6421 * we know the end IO handler won't happen before
6422 * we inc the count. Otherwise, the dip might get freed
6423 * before we're done setting it up
6424 */
6425 atomic_inc(&dip->pending_bios);
6426 ret = __btrfs_submit_dio_bio(bio, inode, rw,
6427 file_offset, skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04006428 async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00006429 if (ret) {
6430 bio_put(bio);
6431 atomic_dec(&dip->pending_bios);
6432 goto out_err;
6433 }
6434
Miao Xiee65e1532010-11-22 03:04:43 +00006435 start_sector += submit_len >> 9;
6436 file_offset += submit_len;
6437
6438 submit_len = 0;
6439 nr_pages = 0;
6440
6441 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev,
6442 start_sector, GFP_NOFS);
6443 if (!bio)
6444 goto out_err;
6445 bio->bi_private = dip;
6446 bio->bi_end_io = btrfs_end_dio_bio;
6447
6448 map_length = orig_bio->bi_size;
6449 ret = btrfs_map_block(map_tree, READ, start_sector << 9,
6450 &map_length, NULL, 0);
6451 if (ret) {
6452 bio_put(bio);
6453 goto out_err;
6454 }
6455 } else {
6456 submit_len += bvec->bv_len;
6457 nr_pages ++;
6458 bvec++;
6459 }
6460 }
6461
Josef Bacik02f57c72011-04-06 14:25:44 -04006462submit:
Miao Xiee65e1532010-11-22 03:04:43 +00006463 ret = __btrfs_submit_dio_bio(bio, inode, rw, file_offset, skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04006464 async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00006465 if (!ret)
6466 return 0;
6467
6468 bio_put(bio);
6469out_err:
6470 dip->errors = 1;
6471 /*
6472 * before atomic variable goto zero, we must
6473 * make sure dip->errors is perceived to be set.
6474 */
6475 smp_mb__before_atomic_dec();
6476 if (atomic_dec_and_test(&dip->pending_bios))
6477 bio_io_error(dip->orig_bio);
6478
6479 /* bio_end_io() will handle error, so we needn't return it */
6480 return 0;
6481}
6482
Josef Bacik4b46fce2010-05-23 11:00:55 -04006483static void btrfs_submit_direct(int rw, struct bio *bio, struct inode *inode,
6484 loff_t file_offset)
6485{
6486 struct btrfs_root *root = BTRFS_I(inode)->root;
6487 struct btrfs_dio_private *dip;
6488 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006489 int skip_sum;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02006490 int write = rw & REQ_WRITE;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006491 int ret = 0;
6492
6493 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
6494
6495 dip = kmalloc(sizeof(*dip), GFP_NOFS);
6496 if (!dip) {
6497 ret = -ENOMEM;
6498 goto free_ordered;
6499 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04006500
6501 dip->private = bio->bi_private;
6502 dip->inode = inode;
6503 dip->logical_offset = file_offset;
6504
Josef Bacik4b46fce2010-05-23 11:00:55 -04006505 dip->bytes = 0;
6506 do {
6507 dip->bytes += bvec->bv_len;
6508 bvec++;
6509 } while (bvec <= (bio->bi_io_vec + bio->bi_vcnt - 1));
6510
Chris Mason46bfbb52010-05-26 11:04:10 -04006511 dip->disk_bytenr = (u64)bio->bi_sector << 9;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006512 bio->bi_private = dip;
Miao Xiee65e1532010-11-22 03:04:43 +00006513 dip->errors = 0;
6514 dip->orig_bio = bio;
6515 atomic_set(&dip->pending_bios, 0);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006516
6517 if (write)
6518 bio->bi_end_io = btrfs_endio_direct_write;
6519 else
6520 bio->bi_end_io = btrfs_endio_direct_read;
6521
Miao Xiee65e1532010-11-22 03:04:43 +00006522 ret = btrfs_submit_direct_hook(rw, dip, skip_sum);
6523 if (!ret)
Chris Masoneaf25d92010-05-25 09:48:28 -04006524 return;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006525free_ordered:
6526 /*
6527 * If this is a write, we need to clean up the reserved space and kill
6528 * the ordered extent.
6529 */
6530 if (write) {
6531 struct btrfs_ordered_extent *ordered;
Josef Bacik955256f2010-11-19 09:41:10 -05006532 ordered = btrfs_lookup_ordered_extent(inode, file_offset);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006533 if (!test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags) &&
6534 !test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags))
6535 btrfs_free_reserved_extent(root, ordered->start,
6536 ordered->disk_len);
6537 btrfs_put_ordered_extent(ordered);
6538 btrfs_put_ordered_extent(ordered);
6539 }
6540 bio_endio(bio, ret);
6541}
6542
Chris Mason5a5f79b2010-05-26 21:33:37 -04006543static ssize_t check_direct_IO(struct btrfs_root *root, int rw, struct kiocb *iocb,
6544 const struct iovec *iov, loff_t offset,
6545 unsigned long nr_segs)
6546{
6547 int seg;
Josef Bacika1b75f72011-04-08 15:51:18 +00006548 int i;
Chris Mason5a5f79b2010-05-26 21:33:37 -04006549 size_t size;
6550 unsigned long addr;
6551 unsigned blocksize_mask = root->sectorsize - 1;
6552 ssize_t retval = -EINVAL;
6553 loff_t end = offset;
6554
6555 if (offset & blocksize_mask)
6556 goto out;
6557
6558 /* Check the memory alignment. Blocks cannot straddle pages */
6559 for (seg = 0; seg < nr_segs; seg++) {
6560 addr = (unsigned long)iov[seg].iov_base;
6561 size = iov[seg].iov_len;
6562 end += size;
Josef Bacika1b75f72011-04-08 15:51:18 +00006563 if ((addr & blocksize_mask) || (size & blocksize_mask))
Chris Mason5a5f79b2010-05-26 21:33:37 -04006564 goto out;
Josef Bacika1b75f72011-04-08 15:51:18 +00006565
6566 /* If this is a write we don't need to check anymore */
6567 if (rw & WRITE)
6568 continue;
6569
6570 /*
6571 * Check to make sure we don't have duplicate iov_base's in this
6572 * iovec, if so return EINVAL, otherwise we'll get csum errors
6573 * when reading back.
6574 */
6575 for (i = seg + 1; i < nr_segs; i++) {
6576 if (iov[seg].iov_base == iov[i].iov_base)
6577 goto out;
6578 }
Chris Mason5a5f79b2010-05-26 21:33:37 -04006579 }
6580 retval = 0;
6581out:
6582 return retval;
6583}
Josef Bacikeb838e72012-07-31 16:28:48 -04006584
Chris Mason16432982008-04-10 10:23:21 -04006585static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
6586 const struct iovec *iov, loff_t offset,
6587 unsigned long nr_segs)
6588{
Josef Bacik4b46fce2010-05-23 11:00:55 -04006589 struct file *file = iocb->ki_filp;
6590 struct inode *inode = file->f_mapping->host;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006591
Chris Mason5a5f79b2010-05-26 21:33:37 -04006592 if (check_direct_IO(BTRFS_I(inode)->root, rw, iocb, iov,
Josef Bacikeb838e72012-07-31 16:28:48 -04006593 offset, nr_segs))
Chris Mason5a5f79b2010-05-26 21:33:37 -04006594 return 0;
Chris Mason5a5f79b2010-05-26 21:33:37 -04006595
Josef Bacikeb838e72012-07-31 16:28:48 -04006596 return __blockdev_direct_IO(rw, iocb, inode,
Chris Mason5a5f79b2010-05-26 21:33:37 -04006597 BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev,
6598 iov, offset, nr_segs, btrfs_get_blocks_direct, NULL,
6599 btrfs_submit_direct, 0);
Chris Mason16432982008-04-10 10:23:21 -04006600}
6601
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006602static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
6603 __u64 start, __u64 len)
6604{
Chris Masonec29ed52011-02-23 16:23:20 -05006605 return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent_fiemap);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006606}
6607
Chris Mason9ebefb182007-06-15 13:50:00 -04006608int btrfs_readpage(struct file *file, struct page *page)
6609{
Chris Masond1310b22008-01-24 16:13:08 -05006610 struct extent_io_tree *tree;
6611 tree = &BTRFS_I(page->mapping->host)->io_tree;
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02006612 return extent_read_full_page(tree, page, btrfs_get_extent, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04006613}
Chris Mason1832a6d2007-12-21 16:27:21 -05006614
Chris Mason39279cc2007-06-12 06:35:45 -04006615static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
6616{
Chris Masond1310b22008-01-24 16:13:08 -05006617 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04006618
6619
6620 if (current->flags & PF_MEMALLOC) {
6621 redirty_page_for_writepage(wbc, page);
6622 unlock_page(page);
6623 return 0;
6624 }
Chris Masond1310b22008-01-24 16:13:08 -05006625 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04006626 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
6627}
Chris Mason39279cc2007-06-12 06:35:45 -04006628
Chris Masonf4219502008-07-22 11:18:09 -04006629int btrfs_writepages(struct address_space *mapping,
6630 struct writeback_control *wbc)
Chris Masonb293f02e2007-11-01 19:45:34 -04006631{
Chris Masond1310b22008-01-24 16:13:08 -05006632 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05006633
Chris Masond1310b22008-01-24 16:13:08 -05006634 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f02e2007-11-01 19:45:34 -04006635 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
6636}
6637
Chris Mason3ab2fb52007-11-08 10:59:22 -05006638static int
6639btrfs_readpages(struct file *file, struct address_space *mapping,
6640 struct list_head *pages, unsigned nr_pages)
6641{
Chris Masond1310b22008-01-24 16:13:08 -05006642 struct extent_io_tree *tree;
6643 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05006644 return extent_readpages(tree, mapping, pages, nr_pages,
6645 btrfs_get_extent);
6646}
Chris Masone6dcd2d2008-07-17 12:53:50 -04006647static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04006648{
Chris Masond1310b22008-01-24 16:13:08 -05006649 struct extent_io_tree *tree;
6650 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04006651 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006652
Chris Masond1310b22008-01-24 16:13:08 -05006653 tree = &BTRFS_I(page->mapping->host)->io_tree;
6654 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05006655 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04006656 if (ret == 1) {
6657 ClearPagePrivate(page);
6658 set_page_private(page, 0);
6659 page_cache_release(page);
6660 }
6661 return ret;
6662}
Chris Mason39279cc2007-06-12 06:35:45 -04006663
Chris Masone6dcd2d2008-07-17 12:53:50 -04006664static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
6665{
Chris Mason98509cf2008-09-11 15:51:43 -04006666 if (PageWriteback(page) || PageDirty(page))
6667 return 0;
Yan Zhengb335b002009-02-12 10:06:04 -05006668 return __btrfs_releasepage(page, gfp_flags & GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006669}
6670
Chris Masona52d9a82007-08-27 16:49:44 -04006671static void btrfs_invalidatepage(struct page *page, unsigned long offset)
6672{
Josef Bacik5fd02042012-05-02 14:00:54 -04006673 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05006674 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006675 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006676 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006677 u64 page_start = page_offset(page);
6678 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006679
Chris Mason8b62b722009-09-02 16:53:46 -04006680 /*
6681 * we have the page locked, so new writeback can't start,
6682 * and the dirty bit won't be cleared while we are here.
6683 *
6684 * Wait for IO on this page so that we can safely clear
6685 * the PagePrivate2 bit and do ordered accounting
6686 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006687 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04006688
Josef Bacik5fd02042012-05-02 14:00:54 -04006689 tree = &BTRFS_I(inode)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006690 if (offset) {
6691 btrfs_releasepage(page, GFP_NOFS);
6692 return;
6693 }
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006694 lock_extent_bits(tree, page_start, page_end, 0, &cached_state);
Josef Bacik5fd02042012-05-02 14:00:54 -04006695 ordered = btrfs_lookup_ordered_extent(inode,
Chris Masone6dcd2d2008-07-17 12:53:50 -04006696 page_offset(page));
6697 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04006698 /*
6699 * IO on this page will never be started, so we need
6700 * to account for any ordered extents now
6701 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006702 clear_extent_bit(tree, page_start, page_end,
6703 EXTENT_DIRTY | EXTENT_DELALLOC |
Liu Bo9e8a4a82012-09-05 19:10:51 -06006704 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING |
6705 EXTENT_DEFRAG, 1, 0, &cached_state, GFP_NOFS);
Chris Mason8b62b722009-09-02 16:53:46 -04006706 /*
6707 * whoever cleared the private bit is responsible
6708 * for the finish_ordered_io
6709 */
Josef Bacik5fd02042012-05-02 14:00:54 -04006710 if (TestClearPagePrivate2(page) &&
6711 btrfs_dec_test_ordered_pending(inode, &ordered, page_start,
6712 PAGE_CACHE_SIZE, 1)) {
6713 btrfs_finish_ordered_io(ordered);
Chris Mason8b62b722009-09-02 16:53:46 -04006714 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006715 btrfs_put_ordered_extent(ordered);
Josef Bacik2ac55d42010-02-03 19:33:23 +00006716 cached_state = NULL;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006717 lock_extent_bits(tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006718 }
6719 clear_extent_bit(tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04006720 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
Liu Bo9e8a4a82012-09-05 19:10:51 -06006721 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 1, 1,
6722 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006723 __btrfs_releasepage(page, GFP_NOFS);
6724
Chris Mason4a096752008-07-21 10:29:44 -04006725 ClearPageChecked(page);
Chris Mason9ad6b7bc2008-04-18 16:11:30 -04006726 if (PagePrivate(page)) {
Chris Mason9ad6b7bc2008-04-18 16:11:30 -04006727 ClearPagePrivate(page);
6728 set_page_private(page, 0);
6729 page_cache_release(page);
6730 }
Chris Mason39279cc2007-06-12 06:35:45 -04006731}
6732
Chris Mason9ebefb182007-06-15 13:50:00 -04006733/*
6734 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
6735 * called from a page fault handler when a page is first dirtied. Hence we must
6736 * be careful to check for EOF conditions here. We set the page up correctly
6737 * for a written page which means we get ENOSPC checking when writing into
6738 * holes and correct delalloc and unwritten extent mapping on filesystems that
6739 * support these features.
6740 *
6741 * We are not allowed to take the i_mutex here so we have to play games to
6742 * protect against truncate races as the page could now be beyond EOF. Because
6743 * vmtruncate() writes the inode size before removing pages, once we have the
6744 * page lock we can determine safely if the page is beyond EOF. If it is not
6745 * beyond EOF, then the page is guaranteed safe against truncation until we
6746 * unlock the page.
6747 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07006748int btrfs_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04006749{
Nick Pigginc2ec1752009-03-31 15:23:21 -07006750 struct page *page = vmf->page;
Chris Mason6da6aba2007-12-18 16:15:09 -05006751 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05006752 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006753 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
6754 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006755 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006756 char *kaddr;
6757 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04006758 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05006759 int ret;
Chris Mason9998eb72012-01-25 13:47:40 -05006760 int reserved = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04006761 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006762 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04006763
Jan Karab2b5ef52012-06-12 16:20:45 +02006764 sb_start_pagefault(inode->i_sb);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006765 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Chris Mason9998eb72012-01-25 13:47:40 -05006766 if (!ret) {
Josef Bacike41f9412012-03-26 09:46:47 -04006767 ret = file_update_time(vma->vm_file);
Chris Mason9998eb72012-01-25 13:47:40 -05006768 reserved = 1;
6769 }
Nick Piggin56a76f82009-03-31 15:23:23 -07006770 if (ret) {
6771 if (ret == -ENOMEM)
6772 ret = VM_FAULT_OOM;
6773 else /* -ENOSPC, -EIO, etc */
6774 ret = VM_FAULT_SIGBUS;
Chris Mason9998eb72012-01-25 13:47:40 -05006775 if (reserved)
6776 goto out;
6777 goto out_noreserve;
Nick Piggin56a76f82009-03-31 15:23:23 -07006778 }
Chris Mason1832a6d2007-12-21 16:27:21 -05006779
Nick Piggin56a76f82009-03-31 15:23:23 -07006780 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006781again:
Chris Mason9ebefb182007-06-15 13:50:00 -04006782 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04006783 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006784 page_start = page_offset(page);
6785 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006786
Chris Mason9ebefb182007-06-15 13:50:00 -04006787 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04006788 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04006789 /* page got truncated out from underneath us */
6790 goto out_unlock;
6791 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006792 wait_on_page_writeback(page);
6793
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006794 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006795 set_page_extent_mapped(page);
6796
Chris Masoneb84ae02008-07-17 13:53:27 -04006797 /*
6798 * we can't set the delalloc bits if there are pending ordered
6799 * extents. Drop our locks and wait for them to finish
6800 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006801 ordered = btrfs_lookup_ordered_extent(inode, page_start);
6802 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006803 unlock_extent_cached(io_tree, page_start, page_end,
6804 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006805 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04006806 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006807 btrfs_put_ordered_extent(ordered);
6808 goto again;
6809 }
6810
Josef Bacikfbf19082009-10-01 17:10:23 -04006811 /*
6812 * XXX - page_mkwrite gets called every time the page is dirtied, even
6813 * if it was already dirty, so for space accounting reasons we need to
6814 * clear any delalloc bits for the range we are fixing to save. There
6815 * is probably a better way to do this, but for now keep consistent with
6816 * prepare_pages in the normal write path.
6817 */
Josef Bacik2ac55d42010-02-03 19:33:23 +00006818 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Liu Bo9e8a4a82012-09-05 19:10:51 -06006819 EXTENT_DIRTY | EXTENT_DELALLOC |
6820 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
Josef Bacik2ac55d42010-02-03 19:33:23 +00006821 0, 0, &cached_state, GFP_NOFS);
Josef Bacikfbf19082009-10-01 17:10:23 -04006822
Josef Bacik2ac55d42010-02-03 19:33:23 +00006823 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
6824 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006825 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006826 unlock_extent_cached(io_tree, page_start, page_end,
6827 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006828 ret = VM_FAULT_SIGBUS;
6829 goto out_unlock;
6830 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006831 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04006832
6833 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04006834 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04006835 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04006836 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04006837 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04006838
Chris Masone6dcd2d2008-07-17 12:53:50 -04006839 if (zero_start != PAGE_CACHE_SIZE) {
6840 kaddr = kmap(page);
6841 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
6842 flush_dcache_page(page);
6843 kunmap(page);
6844 }
Chris Mason247e7432008-07-17 12:53:51 -04006845 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006846 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04006847 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04006848
Chris Mason257c62e2009-10-13 13:21:08 -04006849 BTRFS_I(inode)->last_trans = root->fs_info->generation;
6850 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
Liu Bo46d8bc32012-08-29 01:07:55 -06006851 BTRFS_I(inode)->last_log_commit = BTRFS_I(inode)->root->last_log_commit;
Chris Mason257c62e2009-10-13 13:21:08 -04006852
Josef Bacik2ac55d42010-02-03 19:33:23 +00006853 unlock_extent_cached(io_tree, page_start, page_end, &cached_state, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04006854
6855out_unlock:
Jan Karab2b5ef52012-06-12 16:20:45 +02006856 if (!ret) {
6857 sb_end_pagefault(inode->i_sb);
Chris Mason50a9b212009-09-11 12:33:12 -04006858 return VM_FAULT_LOCKED;
Jan Karab2b5ef52012-06-12 16:20:45 +02006859 }
Chris Mason9ebefb182007-06-15 13:50:00 -04006860 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05006861out:
Josef Bacikec39e182012-01-12 19:10:12 -05006862 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason9998eb72012-01-25 13:47:40 -05006863out_noreserve:
Jan Karab2b5ef52012-06-12 16:20:45 +02006864 sb_end_pagefault(inode->i_sb);
Chris Mason9ebefb182007-06-15 13:50:00 -04006865 return ret;
6866}
6867
Josef Bacika41ad392011-01-31 15:30:16 -05006868static int btrfs_truncate(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04006869{
6870 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikfcb80c22011-05-03 10:40:22 -04006871 struct btrfs_block_rsv *rsv;
Chris Mason39279cc2007-06-12 06:35:45 -04006872 int ret;
Josef Bacik3893e332011-01-31 16:03:11 -05006873 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006874 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04006875 unsigned long nr;
Chris Masondbe674a2008-07-17 12:54:05 -04006876 u64 mask = root->sectorsize - 1;
Josef Bacik07127182011-08-19 10:29:59 -04006877 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04006878
Josef Bacik2aaa6652012-08-29 14:27:18 -04006879 ret = btrfs_truncate_page(inode, inode->i_size, 0, 0);
Josef Bacik5d5e1032009-10-13 16:46:49 -04006880 if (ret)
Josef Bacika41ad392011-01-31 15:30:16 -05006881 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00006882
Chris Mason4a096752008-07-21 10:29:44 -04006883 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
Yan, Zheng80825102009-11-12 09:35:36 +00006884 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006885
Josef Bacikfcb80c22011-05-03 10:40:22 -04006886 /*
6887 * Yes ladies and gentelment, this is indeed ugly. The fact is we have
6888 * 3 things going on here
6889 *
6890 * 1) We need to reserve space for our orphan item and the space to
6891 * delete our orphan item. Lord knows we don't want to have a dangling
6892 * orphan item because we didn't reserve space to remove it.
6893 *
6894 * 2) We need to reserve space to update our inode.
6895 *
6896 * 3) We need to have something to cache all the space that is going to
6897 * be free'd up by the truncate operation, but also have some slack
6898 * space reserved in case it uses space during the truncate (thank you
6899 * very much snapshotting).
6900 *
6901 * And we need these to all be seperate. The fact is we can use alot of
6902 * space doing the truncate, and we have no earthly idea how much space
6903 * we will use, so we need the truncate reservation to be seperate so it
6904 * doesn't end up using space reserved for updating the inode or
6905 * removing the orphan item. We also need to be able to stop the
6906 * transaction and start a new one, which means we need to be able to
6907 * update the inode several times, and we have no idea of knowing how
6908 * many times that will be, so we can't just reserve 1 item for the
6909 * entirety of the opration, so that has to be done seperately as well.
6910 * Then there is the orphan item, which does indeed need to be held on
6911 * to for the whole operation, and we need nobody to touch this reserved
6912 * space except the orphan code.
6913 *
6914 * So that leaves us with
6915 *
6916 * 1) root->orphan_block_rsv - for the orphan deletion.
6917 * 2) rsv - for the truncate reservation, which we will steal from the
6918 * transaction reservation.
6919 * 3) fs_info->trans_block_rsv - this will have 1 items worth left for
6920 * updating the inode.
6921 */
Miao Xie66d8f3d2012-09-06 04:02:28 -06006922 rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006923 if (!rsv)
6924 return -ENOMEM;
Josef Bacik4a338542011-08-29 11:01:31 -04006925 rsv->size = min_size;
Josef Bacikca7e70f2012-08-27 17:48:15 -04006926 rsv->failfast = 1;
Josef Bacikf0cd8462011-03-04 14:37:08 -05006927
Josef Bacik907cbce2011-08-08 13:46:15 -04006928 /*
Josef Bacik07127182011-08-19 10:29:59 -04006929 * 1 for the truncate slack space
Josef Bacik907cbce2011-08-08 13:46:15 -04006930 * 1 for the orphan item we're going to add
6931 * 1 for the orphan item deletion
6932 * 1 for updating the inode.
6933 */
Josef Bacikfcb80c22011-05-03 10:40:22 -04006934 trans = btrfs_start_transaction(root, 4);
6935 if (IS_ERR(trans)) {
6936 err = PTR_ERR(trans);
6937 goto out;
6938 }
Josef Bacikf0cd8462011-03-04 14:37:08 -05006939
Josef Bacik907cbce2011-08-08 13:46:15 -04006940 /* Migrate the slack space for the truncate to our reserve */
6941 ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv, rsv,
6942 min_size);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006943 BUG_ON(ret);
Josef Bacikf0cd8462011-03-04 14:37:08 -05006944
6945 ret = btrfs_orphan_add(trans, inode);
6946 if (ret) {
6947 btrfs_end_transaction(trans, root);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006948 goto out;
Josef Bacikf0cd8462011-03-04 14:37:08 -05006949 }
6950
Chris Mason5a3f23d2009-03-31 13:27:11 -04006951 /*
6952 * setattr is responsible for setting the ordered_data_close flag,
6953 * but that is only tested during the last file release. That
6954 * could happen well after the next commit, leaving a great big
6955 * window where new writes may get lost if someone chooses to write
6956 * to this file after truncating to zero
6957 *
6958 * The inode doesn't have any dirty data here, and so if we commit
6959 * this is a noop. If someone immediately starts writing to the inode
6960 * it is very likely we'll catch some of their writes in this
6961 * transaction, and the commit will find this file on the ordered
6962 * data list with good things to send down.
6963 *
6964 * This is a best effort solution, there is still a window where
6965 * using truncate to replace the contents of the file will
6966 * end up with a zero length file after a crash.
6967 */
Josef Bacik72ac3c02012-05-23 14:13:11 -04006968 if (inode->i_size == 0 && test_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
6969 &BTRFS_I(inode)->runtime_flags))
Chris Mason5a3f23d2009-03-31 13:27:11 -04006970 btrfs_add_ordered_operation(trans, root, inode);
6971
Josef Bacik5dc562c2012-08-17 13:14:17 -04006972 /*
6973 * So if we truncate and then write and fsync we normally would just
6974 * write the extents that changed, which is a problem if we need to
6975 * first truncate that entire inode. So set this flag so we write out
6976 * all of the extents in the inode to the sync log so we're completely
6977 * safe.
6978 */
6979 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
Josef Bacikca7e70f2012-08-27 17:48:15 -04006980 trans->block_rsv = rsv;
Josef Bacik5dc562c2012-08-17 13:14:17 -04006981
Yan, Zheng80825102009-11-12 09:35:36 +00006982 while (1) {
6983 ret = btrfs_truncate_inode_items(trans, root, inode,
6984 inode->i_size,
6985 BTRFS_EXTENT_DATA_KEY);
Josef Bacikca7e70f2012-08-27 17:48:15 -04006986 if (ret != -ENOSPC) {
Josef Bacik3893e332011-01-31 16:03:11 -05006987 err = ret;
Yan, Zheng80825102009-11-12 09:35:36 +00006988 break;
Josef Bacik3893e332011-01-31 16:03:11 -05006989 }
Chris Mason39279cc2007-06-12 06:35:45 -04006990
Josef Bacikfcb80c22011-05-03 10:40:22 -04006991 trans->block_rsv = &root->fs_info->trans_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00006992 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05006993 if (ret) {
6994 err = ret;
6995 break;
6996 }
Josef Bacikca7e70f2012-08-27 17:48:15 -04006997
Yan, Zheng80825102009-11-12 09:35:36 +00006998 nr = trans->blocks_used;
6999 btrfs_end_transaction(trans, root);
7000 btrfs_btree_balance_dirty(root, nr);
Josef Bacikca7e70f2012-08-27 17:48:15 -04007001
7002 trans = btrfs_start_transaction(root, 2);
7003 if (IS_ERR(trans)) {
7004 ret = err = PTR_ERR(trans);
7005 trans = NULL;
7006 break;
7007 }
7008
7009 ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv,
7010 rsv, min_size);
7011 BUG_ON(ret); /* shouldn't happen */
7012 trans->block_rsv = rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00007013 }
7014
7015 if (ret == 0 && inode->i_nlink > 0) {
Josef Bacikfcb80c22011-05-03 10:40:22 -04007016 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00007017 ret = btrfs_orphan_del(trans, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05007018 if (ret)
7019 err = ret;
Josef Bacikded5db92011-03-04 14:09:46 -05007020 } else if (ret && inode->i_nlink > 0) {
7021 /*
7022 * Failed to do the truncate, remove us from the in memory
7023 * orphan list.
7024 */
7025 ret = btrfs_orphan_del(NULL, inode);
Yan, Zheng80825102009-11-12 09:35:36 +00007026 }
7027
Chris Mason917c16b2011-11-08 14:49:59 -05007028 if (trans) {
7029 trans->block_rsv = &root->fs_info->trans_block_rsv;
7030 ret = btrfs_update_inode(trans, root, inode);
7031 if (ret && !err)
7032 err = ret;
Josef Bacik7b128762008-07-24 12:17:14 -04007033
Chris Mason917c16b2011-11-08 14:49:59 -05007034 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05007035 ret = btrfs_end_transaction(trans, root);
Chris Mason917c16b2011-11-08 14:49:59 -05007036 btrfs_btree_balance_dirty(root, nr);
7037 }
Josef Bacikfcb80c22011-05-03 10:40:22 -04007038
7039out:
7040 btrfs_free_block_rsv(root, rsv);
7041
Josef Bacik3893e332011-01-31 16:03:11 -05007042 if (ret && !err)
7043 err = ret;
Josef Bacika41ad392011-01-31 15:30:16 -05007044
Josef Bacik3893e332011-01-31 16:03:11 -05007045 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04007046}
7047
Sven Wegener3b963622008-06-09 21:57:42 -04007048/*
Chris Masond352ac62008-09-29 15:18:18 -04007049 * create a new subvolume directory/inode (helper for the ioctl).
7050 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05007051int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04007052 struct btrfs_root *new_root, u64 new_dirid)
Chris Mason39279cc2007-06-12 06:35:45 -04007053{
Chris Mason39279cc2007-06-12 06:35:45 -04007054 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04007055 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04007056 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007057
Florian Albrechtskirchinger12fc9d02012-02-10 22:15:54 +01007058 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2,
7059 new_dirid, new_dirid,
7060 S_IFDIR | (~current_umask() & S_IRWXUGO),
7061 &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04007062 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04007063 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007064 inode->i_op = &btrfs_dir_inode_operations;
7065 inode->i_fop = &btrfs_dir_file_operations;
7066
Miklos Szeredibfe86842011-10-28 14:13:29 +02007067 set_nlink(inode, 1);
Chris Masondbe674a2008-07-17 12:54:05 -04007068 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04007069
Yan, Zheng76dda932009-09-21 16:00:26 -04007070 err = btrfs_update_inode(trans, new_root, inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04007071
Yan, Zheng76dda932009-09-21 16:00:26 -04007072 iput(inode);
Mark Fashehce598972011-07-26 11:32:23 -07007073 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04007074}
7075
Chris Mason39279cc2007-06-12 06:35:45 -04007076struct inode *btrfs_alloc_inode(struct super_block *sb)
7077{
7078 struct btrfs_inode *ei;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007079 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04007080
7081 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
7082 if (!ei)
7083 return NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007084
7085 ei->root = NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007086 ei->generation = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04007087 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04007088 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04007089 ei->logged_trans = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007090 ei->delalloc_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007091 ei->disk_i_size = 0;
7092 ei->flags = 0;
Josef Bacik7709cde2011-08-04 10:25:02 -04007093 ei->csum_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007094 ei->index_cnt = (u64)-1;
7095 ei->last_unlink_trans = 0;
Liu Bo46d8bc32012-08-29 01:07:55 -06007096 ei->last_log_commit = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007097
Josef Bacik9e0baf62011-07-15 15:16:44 +00007098 spin_lock_init(&ei->lock);
7099 ei->outstanding_extents = 0;
7100 ei->reserved_extents = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007101
Josef Bacik72ac3c02012-05-23 14:13:11 -04007102 ei->runtime_flags = 0;
Li Zefan261507a02010-12-17 14:21:50 +08007103 ei->force_compress = BTRFS_COMPRESS_NONE;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007104
Miao Xie16cdcec2011-04-22 18:12:22 +08007105 ei->delayed_node = NULL;
7106
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007107 inode = &ei->vfs_inode;
David Sterbaa8067e02011-04-21 00:34:43 +02007108 extent_map_tree_init(&ei->extent_tree);
David Sterbaf993c882011-04-20 23:35:57 +02007109 extent_io_tree_init(&ei->io_tree, &inode->i_data);
7110 extent_io_tree_init(&ei->io_failure_tree, &inode->i_data);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04007111 ei->io_tree.track_uptodate = 1;
7112 ei->io_failure_tree.track_uptodate = 1;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007113 mutex_init(&ei->log_mutex);
Josef Bacikf2486792012-01-13 12:09:22 -05007114 mutex_init(&ei->delalloc_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007115 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007116 INIT_LIST_HEAD(&ei->delalloc_inodes);
Chris Mason5a3f23d2009-03-31 13:27:11 -04007117 INIT_LIST_HEAD(&ei->ordered_operations);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007118 RB_CLEAR_NODE(&ei->rb_node);
7119
7120 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04007121}
7122
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11007123static void btrfs_i_callback(struct rcu_head *head)
7124{
7125 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11007126 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
7127}
7128
Chris Mason39279cc2007-06-12 06:35:45 -04007129void btrfs_destroy_inode(struct inode *inode)
7130{
Chris Masone6dcd2d2008-07-17 12:53:50 -04007131 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04007132 struct btrfs_root *root = BTRFS_I(inode)->root;
7133
Al Virob3d9b7a2012-06-09 13:51:19 -04007134 WARN_ON(!hlist_empty(&inode->i_dentry));
Chris Mason39279cc2007-06-12 06:35:45 -04007135 WARN_ON(inode->i_data.nrpages);
Josef Bacik9e0baf62011-07-15 15:16:44 +00007136 WARN_ON(BTRFS_I(inode)->outstanding_extents);
7137 WARN_ON(BTRFS_I(inode)->reserved_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04007138 WARN_ON(BTRFS_I(inode)->delalloc_bytes);
7139 WARN_ON(BTRFS_I(inode)->csum_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -04007140
Chris Mason5a3f23d2009-03-31 13:27:11 -04007141 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05007142 * This can happen where we create an inode, but somebody else also
7143 * created the same inode and we need to destroy the one we already
7144 * created.
7145 */
7146 if (!root)
7147 goto free;
7148
7149 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04007150 * Make sure we're properly removed from the ordered operation
7151 * lists.
7152 */
7153 smp_mb();
7154 if (!list_empty(&BTRFS_I(inode)->ordered_operations)) {
7155 spin_lock(&root->fs_info->ordered_extent_lock);
7156 list_del_init(&BTRFS_I(inode)->ordered_operations);
7157 spin_unlock(&root->fs_info->ordered_extent_lock);
7158 }
7159
Josef Bacik8a35d952012-05-23 14:26:42 -04007160 if (test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
7161 &BTRFS_I(inode)->runtime_flags)) {
Li Zefan33345d012011-04-20 10:31:50 +08007162 printk(KERN_INFO "BTRFS: inode %llu still on the orphan list\n",
7163 (unsigned long long)btrfs_ino(inode));
Josef Bacik8a35d952012-05-23 14:26:42 -04007164 atomic_dec(&root->orphan_inodes);
Josef Bacik7b128762008-07-24 12:17:14 -04007165 }
Josef Bacik7b128762008-07-24 12:17:14 -04007166
Chris Masond3977122009-01-05 21:25:51 -05007167 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04007168 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
7169 if (!ordered)
7170 break;
7171 else {
Chris Masond3977122009-01-05 21:25:51 -05007172 printk(KERN_ERR "btrfs found ordered "
7173 "extent %llu %llu on inode cleanup\n",
7174 (unsigned long long)ordered->file_offset,
7175 (unsigned long long)ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007176 btrfs_remove_ordered_extent(inode, ordered);
7177 btrfs_put_ordered_extent(ordered);
7178 btrfs_put_ordered_extent(ordered);
7179 }
7180 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007181 inode_tree_del(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007182 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
Josef Bacika6dbd422009-11-11 15:53:34 -05007183free:
Miao Xie16cdcec2011-04-22 18:12:22 +08007184 btrfs_remove_delayed_node(inode);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11007185 call_rcu(&inode->i_rcu, btrfs_i_callback);
Chris Mason39279cc2007-06-12 06:35:45 -04007186}
7187
Al Viro45321ac2010-06-07 13:43:19 -04007188int btrfs_drop_inode(struct inode *inode)
Yan, Zheng76dda932009-09-21 16:00:26 -04007189{
7190 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro45321ac2010-06-07 13:43:19 -04007191
Josef Bacik0af3d002010-06-21 14:48:16 -04007192 if (btrfs_root_refs(&root->root_item) == 0 &&
Liu Bo83eea1f2012-07-10 05:28:39 -06007193 !btrfs_is_free_space_inode(inode))
Al Viro45321ac2010-06-07 13:43:19 -04007194 return 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04007195 else
Al Viro45321ac2010-06-07 13:43:19 -04007196 return generic_drop_inode(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04007197}
7198
Sven Wegener0ee0fda2008-07-30 16:54:26 -04007199static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04007200{
7201 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
7202
7203 inode_init_once(&ei->vfs_inode);
7204}
7205
7206void btrfs_destroy_cachep(void)
7207{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +10007208 /*
7209 * Make sure all delayed rcu free inodes are flushed before we
7210 * destroy cache.
7211 */
7212 rcu_barrier();
Chris Mason39279cc2007-06-12 06:35:45 -04007213 if (btrfs_inode_cachep)
7214 kmem_cache_destroy(btrfs_inode_cachep);
7215 if (btrfs_trans_handle_cachep)
7216 kmem_cache_destroy(btrfs_trans_handle_cachep);
7217 if (btrfs_transaction_cachep)
7218 kmem_cache_destroy(btrfs_transaction_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04007219 if (btrfs_path_cachep)
7220 kmem_cache_destroy(btrfs_path_cachep);
Josef Bacikdc89e982011-01-28 17:05:48 -05007221 if (btrfs_free_space_cachep)
7222 kmem_cache_destroy(btrfs_free_space_cachep);
Miao Xie8ccf6f192012-10-25 09:28:04 +00007223 if (btrfs_delalloc_work_cachep)
7224 kmem_cache_destroy(btrfs_delalloc_work_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04007225}
7226
7227int btrfs_init_cachep(void)
7228{
David Sterba837e1972012-09-07 03:00:48 -06007229 btrfs_inode_cachep = kmem_cache_create("btrfs_inode",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007230 sizeof(struct btrfs_inode), 0,
7231 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04007232 if (!btrfs_inode_cachep)
7233 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007234
David Sterba837e1972012-09-07 03:00:48 -06007235 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007236 sizeof(struct btrfs_trans_handle), 0,
7237 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04007238 if (!btrfs_trans_handle_cachep)
7239 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007240
David Sterba837e1972012-09-07 03:00:48 -06007241 btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007242 sizeof(struct btrfs_transaction), 0,
7243 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04007244 if (!btrfs_transaction_cachep)
7245 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007246
David Sterba837e1972012-09-07 03:00:48 -06007247 btrfs_path_cachep = kmem_cache_create("btrfs_path",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007248 sizeof(struct btrfs_path), 0,
7249 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04007250 if (!btrfs_path_cachep)
7251 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007252
David Sterba837e1972012-09-07 03:00:48 -06007253 btrfs_free_space_cachep = kmem_cache_create("btrfs_free_space",
Josef Bacikdc89e982011-01-28 17:05:48 -05007254 sizeof(struct btrfs_free_space), 0,
7255 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
7256 if (!btrfs_free_space_cachep)
7257 goto fail;
7258
Miao Xie8ccf6f192012-10-25 09:28:04 +00007259 btrfs_delalloc_work_cachep = kmem_cache_create("btrfs_delalloc_work",
7260 sizeof(struct btrfs_delalloc_work), 0,
7261 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD,
7262 NULL);
7263 if (!btrfs_delalloc_work_cachep)
7264 goto fail;
7265
Chris Mason39279cc2007-06-12 06:35:45 -04007266 return 0;
7267fail:
7268 btrfs_destroy_cachep();
7269 return -ENOMEM;
7270}
7271
7272static int btrfs_getattr(struct vfsmount *mnt,
7273 struct dentry *dentry, struct kstat *stat)
7274{
7275 struct inode *inode = dentry->d_inode;
David Sterbafadc0d82011-11-20 07:33:38 -05007276 u32 blocksize = inode->i_sb->s_blocksize;
7277
Chris Mason39279cc2007-06-12 06:35:45 -04007278 generic_fillattr(inode, stat);
Al Viro0ee5dc62011-07-07 15:44:25 -04007279 stat->dev = BTRFS_I(inode)->root->anon_dev;
Chris Masond6667462008-01-03 14:51:00 -05007280 stat->blksize = PAGE_CACHE_SIZE;
David Sterbafadc0d82011-11-20 07:33:38 -05007281 stat->blocks = (ALIGN(inode_get_bytes(inode), blocksize) +
7282 ALIGN(BTRFS_I(inode)->delalloc_bytes, blocksize)) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04007283 return 0;
7284}
7285
Liu Bo75e7cb72011-03-22 10:12:20 +00007286/*
7287 * If a file is moved, it will inherit the cow and compression flags of the new
7288 * directory.
7289 */
7290static void fixup_inode_flags(struct inode *dir, struct inode *inode)
7291{
7292 struct btrfs_inode *b_dir = BTRFS_I(dir);
7293 struct btrfs_inode *b_inode = BTRFS_I(inode);
7294
7295 if (b_dir->flags & BTRFS_INODE_NODATACOW)
7296 b_inode->flags |= BTRFS_INODE_NODATACOW;
7297 else
7298 b_inode->flags &= ~BTRFS_INODE_NODATACOW;
7299
Liu Bobc178232012-06-14 02:23:18 -06007300 if (b_dir->flags & BTRFS_INODE_COMPRESS) {
Liu Bo75e7cb72011-03-22 10:12:20 +00007301 b_inode->flags |= BTRFS_INODE_COMPRESS;
Liu Bobc178232012-06-14 02:23:18 -06007302 b_inode->flags &= ~BTRFS_INODE_NOCOMPRESS;
7303 } else {
7304 b_inode->flags &= ~(BTRFS_INODE_COMPRESS |
7305 BTRFS_INODE_NOCOMPRESS);
7306 }
Liu Bo75e7cb72011-03-22 10:12:20 +00007307}
7308
Chris Masond3977122009-01-05 21:25:51 -05007309static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
7310 struct inode *new_dir, struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04007311{
7312 struct btrfs_trans_handle *trans;
7313 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007314 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04007315 struct inode *new_inode = new_dentry->d_inode;
7316 struct inode *old_inode = old_dentry->d_inode;
7317 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04007318 u64 index = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007319 u64 root_objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04007320 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08007321 u64 old_ino = btrfs_ino(old_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007322
Li Zefan33345d012011-04-20 10:31:50 +08007323 if (btrfs_ino(new_dir) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhengf679a842009-09-24 09:17:31 -04007324 return -EPERM;
7325
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007326 /* we only allow rename subvolume link between subvolumes */
Li Zefan33345d012011-04-20 10:31:50 +08007327 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05007328 return -EXDEV;
7329
Li Zefan33345d012011-04-20 10:31:50 +08007330 if (old_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
7331 (new_inode && btrfs_ino(new_inode) == BTRFS_FIRST_FREE_OBJECTID))
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007332 return -ENOTEMPTY;
7333
Chris Mason39279cc2007-06-12 06:35:45 -04007334 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007335 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04007336 return -ENOTEMPTY;
Chris Mason5a3f23d2009-03-31 13:27:11 -04007337 /*
7338 * we're using rename to replace one file with another.
7339 * and the replacement file is large. Start IO on it now so
7340 * we don't add too much work to the end of the transaction
7341 */
Bartlomiej Zolnierkiewicz4baf8c92009-08-07 13:47:08 -04007342 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size &&
Chris Mason5a3f23d2009-03-31 13:27:11 -04007343 old_inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
7344 filemap_flush(old_inode->i_mapping);
7345
Yan, Zheng76dda932009-09-21 16:00:26 -04007346 /* close the racy window with snapshot create/destroy ioctl */
Li Zefan33345d012011-04-20 10:31:50 +08007347 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04007348 down_read(&root->fs_info->subvol_sem);
Yan, Zhenga22285a2010-05-16 10:48:46 -04007349 /*
7350 * We want to reserve the absolute worst case amount of items. So if
7351 * both inodes are subvols and we need to unlink them then that would
7352 * require 4 item modifications, but if they are both normal inodes it
7353 * would require 5 item modifications, so we'll assume their normal
7354 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
7355 * should cover the worst case number of items we'll modify.
7356 */
7357 trans = btrfs_start_transaction(root, 20);
Johann Lombardib44c59a2011-03-31 13:23:47 +00007358 if (IS_ERR(trans)) {
7359 ret = PTR_ERR(trans);
7360 goto out_notrans;
7361 }
Chris Mason5f39d392007-10-15 16:14:19 -04007362
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007363 if (dest != root)
7364 btrfs_record_root_in_trans(trans, dest);
7365
Yan, Zhenga5719522009-09-24 09:17:31 -04007366 ret = btrfs_set_inode_index(new_dir, &index);
7367 if (ret)
7368 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04007369
Li Zefan33345d012011-04-20 10:31:50 +08007370 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007371 /* force full log commit if subvolume involved. */
7372 root->fs_info->last_trans_log_full_commit = trans->transid;
7373 } else {
Yan, Zhenga5719522009-09-24 09:17:31 -04007374 ret = btrfs_insert_inode_ref(trans, dest,
7375 new_dentry->d_name.name,
7376 new_dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08007377 old_ino,
7378 btrfs_ino(new_dir), index);
Yan, Zhenga5719522009-09-24 09:17:31 -04007379 if (ret)
7380 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007381 /*
7382 * this is an ugly little race, but the rename is required
7383 * to make sure that if we crash, the inode is either at the
7384 * old name or the new one. pinning the log transaction lets
7385 * us make sure we don't allow a log commit to come in after
7386 * we unlink the name but before we add the new name back in.
7387 */
7388 btrfs_pin_log_trans(root);
7389 }
Chris Mason12fcfd22009-03-24 10:24:20 -04007390 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04007391 * make sure the inode gets flushed if it is replacing
7392 * something.
7393 */
Li Zefan33345d012011-04-20 10:31:50 +08007394 if (new_inode && new_inode->i_size && S_ISREG(old_inode->i_mode))
Chris Mason5a3f23d2009-03-31 13:27:11 -04007395 btrfs_add_ordered_operation(trans, root, old_inode);
Chris Mason5a3f23d2009-03-31 13:27:11 -04007396
Josef Bacik0c4d2d92012-04-05 15:03:02 -04007397 inode_inc_iversion(old_dir);
7398 inode_inc_iversion(new_dir);
7399 inode_inc_iversion(old_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007400 old_dir->i_ctime = old_dir->i_mtime = ctime;
7401 new_dir->i_ctime = new_dir->i_mtime = ctime;
7402 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04007403
Chris Mason12fcfd22009-03-24 10:24:20 -04007404 if (old_dentry->d_parent != new_dentry->d_parent)
7405 btrfs_record_unlink_dir(trans, old_dir, old_inode, 1);
7406
Li Zefan33345d012011-04-20 10:31:50 +08007407 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007408 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
7409 ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid,
7410 old_dentry->d_name.name,
7411 old_dentry->d_name.len);
7412 } else {
Al Viro92986792011-03-04 17:14:37 +00007413 ret = __btrfs_unlink_inode(trans, root, old_dir,
7414 old_dentry->d_inode,
7415 old_dentry->d_name.name,
7416 old_dentry->d_name.len);
7417 if (!ret)
7418 ret = btrfs_update_inode(trans, root, old_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007419 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007420 if (ret) {
7421 btrfs_abort_transaction(trans, root, ret);
7422 goto out_fail;
7423 }
Chris Mason39279cc2007-06-12 06:35:45 -04007424
7425 if (new_inode) {
Josef Bacik0c4d2d92012-04-05 15:03:02 -04007426 inode_inc_iversion(new_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007427 new_inode->i_ctime = CURRENT_TIME;
Li Zefan33345d012011-04-20 10:31:50 +08007428 if (unlikely(btrfs_ino(new_inode) ==
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007429 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
7430 root_objectid = BTRFS_I(new_inode)->location.objectid;
7431 ret = btrfs_unlink_subvol(trans, dest, new_dir,
7432 root_objectid,
7433 new_dentry->d_name.name,
7434 new_dentry->d_name.len);
7435 BUG_ON(new_inode->i_nlink == 0);
7436 } else {
7437 ret = btrfs_unlink_inode(trans, dest, new_dir,
7438 new_dentry->d_inode,
7439 new_dentry->d_name.name,
7440 new_dentry->d_name.len);
7441 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007442 if (!ret && new_inode->i_nlink == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04007443 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007444 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04007445 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007446 if (ret) {
7447 btrfs_abort_transaction(trans, root, ret);
7448 goto out_fail;
7449 }
Chris Mason39279cc2007-06-12 06:35:45 -04007450 }
Josef Bacikaec74772008-07-24 12:12:38 -04007451
Liu Bo75e7cb72011-03-22 10:12:20 +00007452 fixup_inode_flags(new_dir, old_inode);
7453
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007454 ret = btrfs_add_link(trans, new_dir, old_inode,
7455 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04007456 new_dentry->d_name.len, 0, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007457 if (ret) {
7458 btrfs_abort_transaction(trans, root, ret);
7459 goto out_fail;
7460 }
Chris Mason39279cc2007-06-12 06:35:45 -04007461
Li Zefan33345d012011-04-20 10:31:50 +08007462 if (old_ino != BTRFS_FIRST_FREE_OBJECTID) {
Al Viro10d9f302011-07-16 23:09:10 -04007463 struct dentry *parent = new_dentry->d_parent;
Josef Bacik6a912212010-11-20 09:48:00 +00007464 btrfs_log_new_name(trans, old_inode, old_dir, parent);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007465 btrfs_end_log_trans(root);
7466 }
Chris Mason39279cc2007-06-12 06:35:45 -04007467out_fail:
Josef Bacik7ad85bb2012-01-12 19:10:12 -05007468 btrfs_end_transaction(trans, root);
Johann Lombardib44c59a2011-03-31 13:23:47 +00007469out_notrans:
Li Zefan33345d012011-04-20 10:31:50 +08007470 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04007471 up_read(&root->fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04007472
Chris Mason39279cc2007-06-12 06:35:45 -04007473 return ret;
7474}
7475
Miao Xie8ccf6f192012-10-25 09:28:04 +00007476static void btrfs_run_delalloc_work(struct btrfs_work *work)
7477{
7478 struct btrfs_delalloc_work *delalloc_work;
7479
7480 delalloc_work = container_of(work, struct btrfs_delalloc_work,
7481 work);
7482 if (delalloc_work->wait)
7483 btrfs_wait_ordered_range(delalloc_work->inode, 0, (u64)-1);
7484 else
7485 filemap_flush(delalloc_work->inode->i_mapping);
7486
7487 if (delalloc_work->delay_iput)
7488 btrfs_add_delayed_iput(delalloc_work->inode);
7489 else
7490 iput(delalloc_work->inode);
7491 complete(&delalloc_work->completion);
7492}
7493
7494struct btrfs_delalloc_work *btrfs_alloc_delalloc_work(struct inode *inode,
7495 int wait, int delay_iput)
7496{
7497 struct btrfs_delalloc_work *work;
7498
7499 work = kmem_cache_zalloc(btrfs_delalloc_work_cachep, GFP_NOFS);
7500 if (!work)
7501 return NULL;
7502
7503 init_completion(&work->completion);
7504 INIT_LIST_HEAD(&work->list);
7505 work->inode = inode;
7506 work->wait = wait;
7507 work->delay_iput = delay_iput;
7508 work->work.func = btrfs_run_delalloc_work;
7509
7510 return work;
7511}
7512
7513void btrfs_wait_and_free_delalloc_work(struct btrfs_delalloc_work *work)
7514{
7515 wait_for_completion(&work->completion);
7516 kmem_cache_free(btrfs_delalloc_work_cachep, work);
7517}
7518
Chris Masond352ac62008-09-29 15:18:18 -04007519/*
7520 * some fairly slow code that needs optimization. This walks the list
7521 * of all the inodes with pending delalloc and forces them to disk.
7522 */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00007523int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput)
Chris Masonea8c2812008-08-04 23:17:27 -04007524{
7525 struct list_head *head = &root->fs_info->delalloc_inodes;
7526 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007527 struct inode *inode;
Miao Xie8ccf6f192012-10-25 09:28:04 +00007528 struct btrfs_delalloc_work *work, *next;
7529 struct list_head works;
7530 int ret = 0;
Chris Masonea8c2812008-08-04 23:17:27 -04007531
Yan Zhengc146afa2008-11-12 14:34:12 -05007532 if (root->fs_info->sb->s_flags & MS_RDONLY)
7533 return -EROFS;
7534
Miao Xie8ccf6f192012-10-25 09:28:04 +00007535 INIT_LIST_HEAD(&works);
7536
Chris Mason75eff682008-12-15 15:54:40 -05007537 spin_lock(&root->fs_info->delalloc_lock);
Chris Masond3977122009-01-05 21:25:51 -05007538 while (!list_empty(head)) {
Chris Masonea8c2812008-08-04 23:17:27 -04007539 binode = list_entry(head->next, struct btrfs_inode,
7540 delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007541 inode = igrab(&binode->vfs_inode);
7542 if (!inode)
7543 list_del_init(&binode->delalloc_inodes);
Chris Mason75eff682008-12-15 15:54:40 -05007544 spin_unlock(&root->fs_info->delalloc_lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007545 if (inode) {
Miao Xie8ccf6f192012-10-25 09:28:04 +00007546 work = btrfs_alloc_delalloc_work(inode, 0, delay_iput);
7547 if (!work) {
7548 ret = -ENOMEM;
7549 goto out;
7550 }
7551 list_add_tail(&work->list, &works);
7552 btrfs_queue_worker(&root->fs_info->flush_workers,
7553 &work->work);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007554 }
7555 cond_resched();
Chris Mason75eff682008-12-15 15:54:40 -05007556 spin_lock(&root->fs_info->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04007557 }
Chris Mason75eff682008-12-15 15:54:40 -05007558 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -04007559
7560 /* the filemap_flush will queue IO into the worker threads, but
7561 * we have to make sure the IO is actually started and that
7562 * ordered extents get created before we return
7563 */
7564 atomic_inc(&root->fs_info->async_submit_draining);
Chris Masond3977122009-01-05 21:25:51 -05007565 while (atomic_read(&root->fs_info->nr_async_submits) ||
Chris Mason771ed682008-11-06 22:02:51 -05007566 atomic_read(&root->fs_info->async_delalloc_pages)) {
Chris Mason8c8bee12008-09-29 11:19:10 -04007567 wait_event(root->fs_info->async_submit_wait,
Chris Mason771ed682008-11-06 22:02:51 -05007568 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
7569 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee12008-09-29 11:19:10 -04007570 }
7571 atomic_dec(&root->fs_info->async_submit_draining);
Miao Xie8ccf6f192012-10-25 09:28:04 +00007572out:
7573 list_for_each_entry_safe(work, next, &works, list) {
7574 list_del_init(&work->list);
7575 btrfs_wait_and_free_delalloc_work(work);
7576 }
7577 return ret;
Chris Masonea8c2812008-08-04 23:17:27 -04007578}
7579
Chris Mason39279cc2007-06-12 06:35:45 -04007580static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
7581 const char *symname)
7582{
7583 struct btrfs_trans_handle *trans;
7584 struct btrfs_root *root = BTRFS_I(dir)->root;
7585 struct btrfs_path *path;
7586 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05007587 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04007588 int err;
7589 int drop_inode = 0;
7590 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04007591 u64 index = 0 ;
Chris Mason39279cc2007-06-12 06:35:45 -04007592 int name_len;
7593 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04007594 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04007595 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04007596 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05007597 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007598
7599 name_len = strlen(symname) + 1;
7600 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
7601 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05007602
Josef Bacik9ed74f22009-09-11 16:12:44 -04007603 /*
7604 * 2 items for inode item and ref
7605 * 2 items for dir items
7606 * 1 item for xattr if selinux is on
7607 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04007608 trans = btrfs_start_transaction(root, 5);
7609 if (IS_ERR(trans))
7610 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05007611
Li Zefan581bb052011-04-20 10:06:11 +08007612 err = btrfs_find_free_ino(root, &objectid);
7613 if (err)
7614 goto out_unlock;
7615
Josef Bacikaec74772008-07-24 12:12:38 -04007616 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08007617 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04007618 S_IFLNK|S_IRWXUGO, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04007619 if (IS_ERR(inode)) {
7620 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007621 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04007622 }
Chris Mason39279cc2007-06-12 06:35:45 -04007623
Eric Paris2a7dba32011-02-01 11:05:39 -05007624 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04007625 if (err) {
7626 drop_inode = 1;
7627 goto out_unlock;
7628 }
7629
Casey Schauflerad19db72011-12-15 10:09:07 -05007630 /*
7631 * If the active LSM wants to access the inode during
7632 * d_instantiate it needs these. Smack checks to see
7633 * if the filesystem supports xattrs by looking at the
7634 * ops vector.
7635 */
7636 inode->i_fop = &btrfs_file_operations;
7637 inode->i_op = &btrfs_file_inode_operations;
7638
Josef Bacika1b075d2010-11-19 20:36:11 +00007639 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04007640 if (err)
7641 drop_inode = 1;
7642 else {
7643 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04007644 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05007645 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04007646 }
Chris Mason39279cc2007-06-12 06:35:45 -04007647 if (drop_inode)
7648 goto out_unlock;
7649
7650 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07007651 if (!path) {
7652 err = -ENOMEM;
7653 drop_inode = 1;
7654 goto out_unlock;
7655 }
Li Zefan33345d012011-04-20 10:31:50 +08007656 key.objectid = btrfs_ino(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007657 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007658 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
7659 datasize = btrfs_file_extent_calc_inline_size(name_len);
7660 err = btrfs_insert_empty_item(trans, root, path, &key,
7661 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04007662 if (err) {
7663 drop_inode = 1;
Julia Lawallb0839162011-05-14 07:10:51 +00007664 btrfs_free_path(path);
Chris Mason54aa1f42007-06-22 14:16:25 -04007665 goto out_unlock;
7666 }
Chris Mason5f39d392007-10-15 16:14:19 -04007667 leaf = path->nodes[0];
7668 ei = btrfs_item_ptr(leaf, path->slots[0],
7669 struct btrfs_file_extent_item);
7670 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
7671 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04007672 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -04007673 btrfs_set_file_extent_encryption(leaf, ei, 0);
7674 btrfs_set_file_extent_compression(leaf, ei, 0);
7675 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
7676 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
7677
Chris Mason39279cc2007-06-12 06:35:45 -04007678 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04007679 write_extent_buffer(leaf, symname, ptr, name_len);
7680 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04007681 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04007682
Chris Mason39279cc2007-06-12 06:35:45 -04007683 inode->i_op = &btrfs_symlink_inode_operations;
7684 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04007685 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Yan Zhengd899e052008-10-30 14:25:28 -04007686 inode_set_bytes(inode, name_len);
Chris Masondbe674a2008-07-17 12:54:05 -04007687 btrfs_i_size_write(inode, name_len - 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04007688 err = btrfs_update_inode(trans, root, inode);
7689 if (err)
7690 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04007691
7692out_unlock:
Al Viro08c422c2011-12-23 07:58:13 -05007693 if (!err)
7694 d_instantiate(dentry, inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04007695 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05007696 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04007697 if (drop_inode) {
7698 inode_dec_link_count(inode);
7699 iput(inode);
7700 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04007701 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04007702 return err;
7703}
Chris Mason16432982008-04-10 10:23:21 -04007704
Josef Bacik0af3d002010-06-21 14:48:16 -04007705static int __btrfs_prealloc_file_range(struct inode *inode, int mode,
7706 u64 start, u64 num_bytes, u64 min_size,
7707 loff_t actual_len, u64 *alloc_hint,
7708 struct btrfs_trans_handle *trans)
Yan Zhengd899e052008-10-30 14:25:28 -04007709{
Josef Bacik5dc562c2012-08-17 13:14:17 -04007710 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
7711 struct extent_map *em;
Yan Zhengd899e052008-10-30 14:25:28 -04007712 struct btrfs_root *root = BTRFS_I(inode)->root;
7713 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -04007714 u64 cur_offset = start;
Josef Bacik55a61d12010-11-22 18:50:32 +00007715 u64 i_size;
Yan Zhengd899e052008-10-30 14:25:28 -04007716 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04007717 bool own_trans = true;
Yan Zhengd899e052008-10-30 14:25:28 -04007718
Josef Bacik0af3d002010-06-21 14:48:16 -04007719 if (trans)
7720 own_trans = false;
Yan Zhengd899e052008-10-30 14:25:28 -04007721 while (num_bytes > 0) {
Josef Bacik0af3d002010-06-21 14:48:16 -04007722 if (own_trans) {
7723 trans = btrfs_start_transaction(root, 3);
7724 if (IS_ERR(trans)) {
7725 ret = PTR_ERR(trans);
7726 break;
7727 }
Yan Zhengd899e052008-10-30 14:25:28 -04007728 }
Yan, Zheng5a303d52009-11-12 09:34:52 +00007729
Yan, Zhengefa56462010-05-16 10:49:59 -04007730 ret = btrfs_reserve_extent(trans, root, num_bytes, min_size,
Josef Bacik81c9ad22012-01-18 10:56:06 -05007731 0, *alloc_hint, &ins, 1);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007732 if (ret) {
Josef Bacik0af3d002010-06-21 14:48:16 -04007733 if (own_trans)
7734 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04007735 break;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007736 }
7737
Yan Zhengd899e052008-10-30 14:25:28 -04007738 ret = insert_reserved_file_extent(trans, inode,
7739 cur_offset, ins.objectid,
7740 ins.offset, ins.offset,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00007741 ins.offset, 0, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04007742 BTRFS_FILE_EXTENT_PREALLOC);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007743 if (ret) {
7744 btrfs_abort_transaction(trans, root, ret);
7745 if (own_trans)
7746 btrfs_end_transaction(trans, root);
7747 break;
7748 }
Chris Masona1ed8352009-09-11 12:27:37 -04007749 btrfs_drop_extent_cache(inode, cur_offset,
7750 cur_offset + ins.offset -1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007751
Josef Bacik5dc562c2012-08-17 13:14:17 -04007752 em = alloc_extent_map();
7753 if (!em) {
7754 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
7755 &BTRFS_I(inode)->runtime_flags);
7756 goto next;
7757 }
7758
7759 em->start = cur_offset;
7760 em->orig_start = cur_offset;
7761 em->len = ins.offset;
7762 em->block_start = ins.objectid;
7763 em->block_len = ins.offset;
7764 em->bdev = root->fs_info->fs_devices->latest_bdev;
7765 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
7766 em->generation = trans->transid;
7767
7768 while (1) {
7769 write_lock(&em_tree->lock);
7770 ret = add_extent_mapping(em_tree, em);
7771 if (!ret)
7772 list_move(&em->list,
7773 &em_tree->modified_extents);
7774 write_unlock(&em_tree->lock);
7775 if (ret != -EEXIST)
7776 break;
7777 btrfs_drop_extent_cache(inode, cur_offset,
7778 cur_offset + ins.offset - 1,
7779 0);
7780 }
7781 free_extent_map(em);
7782next:
Yan Zhengd899e052008-10-30 14:25:28 -04007783 num_bytes -= ins.offset;
7784 cur_offset += ins.offset;
Yan, Zhengefa56462010-05-16 10:49:59 -04007785 *alloc_hint = ins.objectid + ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007786
Josef Bacik0c4d2d92012-04-05 15:03:02 -04007787 inode_inc_iversion(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04007788 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +02007789 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -04007790 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
Yan, Zhengefa56462010-05-16 10:49:59 -04007791 (actual_len > inode->i_size) &&
7792 (cur_offset > inode->i_size)) {
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00007793 if (cur_offset > actual_len)
Josef Bacik55a61d12010-11-22 18:50:32 +00007794 i_size = actual_len;
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00007795 else
Josef Bacik55a61d12010-11-22 18:50:32 +00007796 i_size = cur_offset;
7797 i_size_write(inode, i_size);
7798 btrfs_ordered_update_i_size(inode, i_size, NULL);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007799 }
7800
Yan Zhengd899e052008-10-30 14:25:28 -04007801 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007802
7803 if (ret) {
7804 btrfs_abort_transaction(trans, root, ret);
7805 if (own_trans)
7806 btrfs_end_transaction(trans, root);
7807 break;
7808 }
Yan Zhengd899e052008-10-30 14:25:28 -04007809
Josef Bacik0af3d002010-06-21 14:48:16 -04007810 if (own_trans)
7811 btrfs_end_transaction(trans, root);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007812 }
Yan Zhengd899e052008-10-30 14:25:28 -04007813 return ret;
7814}
7815
Josef Bacik0af3d002010-06-21 14:48:16 -04007816int btrfs_prealloc_file_range(struct inode *inode, int mode,
7817 u64 start, u64 num_bytes, u64 min_size,
7818 loff_t actual_len, u64 *alloc_hint)
7819{
7820 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
7821 min_size, actual_len, alloc_hint,
7822 NULL);
7823}
7824
7825int btrfs_prealloc_file_range_trans(struct inode *inode,
7826 struct btrfs_trans_handle *trans, 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, trans);
7832}
7833
Chris Masone6dcd2d2008-07-17 12:53:50 -04007834static int btrfs_set_page_dirty(struct page *page)
7835{
Chris Masone6dcd2d2008-07-17 12:53:50 -04007836 return __set_page_dirty_nobuffers(page);
7837}
7838
Al Viro10556cb22011-06-20 19:28:19 -04007839static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -05007840{
Li Zefanb83cc962010-12-20 16:04:08 +08007841 struct btrfs_root *root = BTRFS_I(inode)->root;
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +00007842 umode_t mode = inode->i_mode;
Li Zefanb83cc962010-12-20 16:04:08 +08007843
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +00007844 if (mask & MAY_WRITE &&
7845 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) {
7846 if (btrfs_root_readonly(root))
7847 return -EROFS;
7848 if (BTRFS_I(inode)->flags & BTRFS_INODE_READONLY)
7849 return -EACCES;
7850 }
Al Viro2830ba72011-06-20 19:16:29 -04007851 return generic_permission(inode, mask);
Yanfdebe2b2008-01-14 13:26:08 -05007852}
Chris Mason39279cc2007-06-12 06:35:45 -04007853
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007854static const struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -05007855 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -04007856 .lookup = btrfs_lookup,
7857 .create = btrfs_create,
7858 .unlink = btrfs_unlink,
7859 .link = btrfs_link,
7860 .mkdir = btrfs_mkdir,
7861 .rmdir = btrfs_rmdir,
7862 .rename = btrfs_rename,
7863 .symlink = btrfs_symlink,
7864 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04007865 .mknod = btrfs_mknod,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007866 .setxattr = btrfs_setxattr,
7867 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05007868 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007869 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05007870 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007871 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04007872};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007873static const struct inode_operations btrfs_dir_ro_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007874 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05007875 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007876 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04007877};
Yan, Zheng76dda932009-09-21 16:00:26 -04007878
Alexey Dobriyan828c0952009-10-01 15:43:56 -07007879static const struct file_operations btrfs_dir_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007880 .llseek = generic_file_llseek,
7881 .read = generic_read_dir,
David Woodhousecbdf5a22008-08-06 19:42:33 +01007882 .readdir = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04007883 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04007884#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04007885 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04007886#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04007887 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -04007888 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -04007889};
7890
Chris Masond1310b22008-01-24 16:13:08 -05007891static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04007892 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05007893 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04007894 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04007895 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04007896 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04007897 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05007898 .set_bit_hook = btrfs_set_bit_hook,
7899 .clear_bit_hook = btrfs_clear_bit_hook,
Josef Bacik9ed74f22009-09-11 16:12:44 -04007900 .merge_extent_hook = btrfs_merge_extent_hook,
7901 .split_extent_hook = btrfs_split_extent_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04007902};
7903
Chris Mason35054392009-01-21 13:11:13 -05007904/*
7905 * btrfs doesn't support the bmap operation because swapfiles
7906 * use bmap to make a mapping of extents in the file. They assume
7907 * these extents won't change over the life of the file and they
7908 * use the bmap result to do IO directly to the drive.
7909 *
7910 * the btrfs bmap call would return logical addresses that aren't
7911 * suitable for IO and they also will change frequently as COW
7912 * operations happen. So, swapfile + btrfs == corruption.
7913 *
7914 * For now we're avoiding this by dropping bmap.
7915 */
Alexey Dobriyan7f094102009-09-21 17:01:10 -07007916static const struct address_space_operations btrfs_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04007917 .readpage = btrfs_readpage,
7918 .writepage = btrfs_writepage,
Chris Masonb293f02e2007-11-01 19:45:34 -04007919 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05007920 .readpages = btrfs_readpages,
Chris Mason16432982008-04-10 10:23:21 -04007921 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04007922 .invalidatepage = btrfs_invalidatepage,
7923 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04007924 .set_page_dirty = btrfs_set_page_dirty,
Andi Kleen465fdd92009-09-16 11:50:18 +02007925 .error_remove_page = generic_error_remove_page,
Chris Mason39279cc2007-06-12 06:35:45 -04007926};
7927
Alexey Dobriyan7f094102009-09-21 17:01:10 -07007928static const struct address_space_operations btrfs_symlink_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04007929 .readpage = btrfs_readpage,
7930 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04007931 .invalidatepage = btrfs_invalidatepage,
7932 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04007933};
7934
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007935static const struct inode_operations btrfs_file_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007936 .getattr = btrfs_getattr,
7937 .setattr = btrfs_setattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007938 .setxattr = btrfs_setxattr,
7939 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05007940 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007941 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05007942 .permission = btrfs_permission,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05007943 .fiemap = btrfs_fiemap,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007944 .get_acl = btrfs_get_acl,
Josef Bacike41f9412012-03-26 09:46:47 -04007945 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -04007946};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007947static const struct inode_operations btrfs_special_inode_operations = {
Josef Bacik618e21d2007-07-11 10:18:17 -04007948 .getattr = btrfs_getattr,
7949 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05007950 .permission = btrfs_permission,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007951 .setxattr = btrfs_setxattr,
7952 .getxattr = btrfs_getxattr,
Josef Bacik33268ea2008-07-24 12:16:36 -04007953 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007954 .removexattr = btrfs_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007955 .get_acl = btrfs_get_acl,
Josef Bacike41f9412012-03-26 09:46:47 -04007956 .update_time = btrfs_update_time,
Josef Bacik618e21d2007-07-11 10:18:17 -04007957};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007958static const struct inode_operations btrfs_symlink_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007959 .readlink = generic_readlink,
7960 .follow_link = page_follow_link_light,
7961 .put_link = page_put_link,
Li Zefanf2095612010-11-19 02:05:24 +00007962 .getattr = btrfs_getattr,
Josef Bacik22c44fe2011-11-30 10:45:38 -05007963 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05007964 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -05007965 .setxattr = btrfs_setxattr,
7966 .getxattr = btrfs_getxattr,
7967 .listxattr = btrfs_listxattr,
7968 .removexattr = btrfs_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007969 .get_acl = btrfs_get_acl,
Josef Bacike41f9412012-03-26 09:46:47 -04007970 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -04007971};
Yan, Zheng76dda932009-09-21 16:00:26 -04007972
Alexey Dobriyan82d339d2009-10-09 09:54:36 -04007973const struct dentry_operations btrfs_dentry_operations = {
Yan, Zheng76dda932009-09-21 16:00:26 -04007974 .d_delete = btrfs_dentry_delete,
Josef Bacikb4aff1f2011-06-28 16:18:59 -04007975 .d_release = btrfs_dentry_release,
Yan, Zheng76dda932009-09-21 16:00:26 -04007976};