blob: 6dca345fd1b692b75fe9a326ef7707816b9eb91f [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 Masonb888db2b2007-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 Masonb888db2b2007-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 Masonb888db2b2007-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 Masonb888db2b2007-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{
Chris Masond3977122009-01-05 21:25:51 -05001678 if ((end & (PAGE_CACHE_SIZE - 1)) == 0)
Chris Mason771ed682008-11-06 22:02:51 -05001679 WARN_ON(1);
Chris Masonea8c2812008-08-04 23:17:27 -04001680 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001681 cached_state, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04001682}
1683
Chris Masond352ac62008-09-29 15:18:18 -04001684/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04001685struct btrfs_writepage_fixup {
1686 struct page *page;
1687 struct btrfs_work work;
1688};
1689
Christoph Hellwigb2950862008-12-02 09:54:17 -05001690static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04001691{
1692 struct btrfs_writepage_fixup *fixup;
1693 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001694 struct extent_state *cached_state = NULL;
Chris Mason247e7432008-07-17 12:53:51 -04001695 struct page *page;
1696 struct inode *inode;
1697 u64 page_start;
1698 u64 page_end;
Jeff Mahoney87826df2012-02-15 16:23:57 +01001699 int ret;
Chris Mason247e7432008-07-17 12:53:51 -04001700
1701 fixup = container_of(work, struct btrfs_writepage_fixup, work);
1702 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04001703again:
Chris Mason247e7432008-07-17 12:53:51 -04001704 lock_page(page);
1705 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
1706 ClearPageChecked(page);
1707 goto out_page;
1708 }
1709
1710 inode = page->mapping->host;
1711 page_start = page_offset(page);
1712 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
1713
Josef Bacik2ac55d42010-02-03 19:33:23 +00001714 lock_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001715 &cached_state);
Chris Mason4a096752008-07-21 10:29:44 -04001716
1717 /* already ordered? We're done */
Chris Mason8b62b722009-09-02 16:53:46 -04001718 if (PagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001719 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04001720
1721 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1722 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00001723 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start,
1724 page_end, &cached_state, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001725 unlock_page(page);
1726 btrfs_start_ordered_extent(inode, ordered, 1);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001727 btrfs_put_ordered_extent(ordered);
Chris Mason4a096752008-07-21 10:29:44 -04001728 goto again;
1729 }
Chris Mason247e7432008-07-17 12:53:51 -04001730
Jeff Mahoney87826df2012-02-15 16:23:57 +01001731 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
1732 if (ret) {
1733 mapping_set_error(page->mapping, ret);
1734 end_extent_writepage(page, ret, page_start, page_end);
1735 ClearPageChecked(page);
1736 goto out;
1737 }
1738
Josef Bacik2ac55d42010-02-03 19:33:23 +00001739 btrfs_set_extent_delalloc(inode, page_start, page_end, &cached_state);
Chris Mason247e7432008-07-17 12:53:51 -04001740 ClearPageChecked(page);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001741 set_page_dirty(page);
Chris Mason247e7432008-07-17 12:53:51 -04001742out:
Josef Bacik2ac55d42010-02-03 19:33:23 +00001743 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, page_end,
1744 &cached_state, GFP_NOFS);
Chris Mason247e7432008-07-17 12:53:51 -04001745out_page:
1746 unlock_page(page);
1747 page_cache_release(page);
Miao Xieb897abe2011-01-26 16:19:22 +08001748 kfree(fixup);
Chris Mason247e7432008-07-17 12:53:51 -04001749}
1750
1751/*
1752 * There are a few paths in the higher layers of the kernel that directly
1753 * set the page dirty bit without asking the filesystem if it is a
1754 * good idea. This causes problems because we want to make sure COW
1755 * properly happens and the data=ordered rules are followed.
1756 *
Chris Masonc8b97812008-10-29 14:49:59 -04001757 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04001758 * hasn't been properly setup for IO. We kick off an async process
1759 * to fix it up. The async helper will wait for ordered extents, set
1760 * the delalloc bit and make it safe to write the page.
1761 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001762static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04001763{
1764 struct inode *inode = page->mapping->host;
1765 struct btrfs_writepage_fixup *fixup;
1766 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason247e7432008-07-17 12:53:51 -04001767
Chris Mason8b62b722009-09-02 16:53:46 -04001768 /* this page is properly in the ordered list */
1769 if (TestClearPagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001770 return 0;
1771
1772 if (PageChecked(page))
1773 return -EAGAIN;
1774
1775 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
1776 if (!fixup)
1777 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04001778
Chris Mason247e7432008-07-17 12:53:51 -04001779 SetPageChecked(page);
1780 page_cache_get(page);
1781 fixup->work.func = btrfs_writepage_fixup_worker;
1782 fixup->page = page;
1783 btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001784 return -EBUSY;
Chris Mason247e7432008-07-17 12:53:51 -04001785}
1786
Yan Zhengd899e052008-10-30 14:25:28 -04001787static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
1788 struct inode *inode, u64 file_pos,
1789 u64 disk_bytenr, u64 disk_num_bytes,
1790 u64 num_bytes, u64 ram_bytes,
1791 u8 compression, u8 encryption,
1792 u16 other_encoding, int extent_type)
1793{
1794 struct btrfs_root *root = BTRFS_I(inode)->root;
1795 struct btrfs_file_extent_item *fi;
1796 struct btrfs_path *path;
1797 struct extent_buffer *leaf;
1798 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -04001799 int ret;
1800
1801 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07001802 if (!path)
1803 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -04001804
Chris Masonb9473432009-03-13 11:00:37 -04001805 path->leave_spinning = 1;
Chris Masona1ed8352009-09-11 12:27:37 -04001806
1807 /*
1808 * we may be replacing one extent in the tree with another.
1809 * The new extent is pinned in the extent map, and we don't want
1810 * to drop it from the cache until it is completely in the btree.
1811 *
1812 * So, tell btrfs_drop_extents to leave this extent in the cache.
1813 * the caller is expected to unpin it and allow it to be merged
1814 * with the others.
1815 */
Josef Bacik5dc562c2012-08-17 13:14:17 -04001816 ret = btrfs_drop_extents(trans, root, inode, file_pos,
Josef Bacik26714852012-08-29 12:24:27 -04001817 file_pos + num_bytes, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001818 if (ret)
1819 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04001820
Li Zefan33345d012011-04-20 10:31:50 +08001821 ins.objectid = btrfs_ino(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04001822 ins.offset = file_pos;
1823 ins.type = BTRFS_EXTENT_DATA_KEY;
1824 ret = btrfs_insert_empty_item(trans, root, path, &ins, sizeof(*fi));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001825 if (ret)
1826 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04001827 leaf = path->nodes[0];
1828 fi = btrfs_item_ptr(leaf, path->slots[0],
1829 struct btrfs_file_extent_item);
1830 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
1831 btrfs_set_file_extent_type(leaf, fi, extent_type);
1832 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
1833 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
1834 btrfs_set_file_extent_offset(leaf, fi, 0);
1835 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
1836 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
1837 btrfs_set_file_extent_compression(leaf, fi, compression);
1838 btrfs_set_file_extent_encryption(leaf, fi, encryption);
1839 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
Chris Masonb9473432009-03-13 11:00:37 -04001840
Yan Zhengd899e052008-10-30 14:25:28 -04001841 btrfs_mark_buffer_dirty(leaf);
Josef Bacikce195332012-09-25 15:26:16 -04001842 btrfs_release_path(path);
Yan Zhengd899e052008-10-30 14:25:28 -04001843
1844 inode_add_bytes(inode, num_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -04001845
1846 ins.objectid = disk_bytenr;
1847 ins.offset = disk_num_bytes;
1848 ins.type = BTRFS_EXTENT_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001849 ret = btrfs_alloc_reserved_file_extent(trans, root,
1850 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08001851 btrfs_ino(inode), file_pos, &ins);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001852out:
Yan Zhengd899e052008-10-30 14:25:28 -04001853 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04001854
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001855 return ret;
Yan Zhengd899e052008-10-30 14:25:28 -04001856}
1857
Chris Mason5d13a982009-03-13 11:41:46 -04001858/*
1859 * helper function for btrfs_finish_ordered_io, this
1860 * just reads in some of the csum leaves to prime them into ram
1861 * before we start the transaction. It limits the amount of btree
1862 * reads required while inside the transaction.
1863 */
Chris Masond352ac62008-09-29 15:18:18 -04001864/* as ordered data IO finishes, this gets called so we can finish
1865 * an ordered extent if the range of bytes in the file it covers are
1866 * fully written.
1867 */
Josef Bacik5fd02042012-05-02 14:00:54 -04001868static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001869{
Josef Bacik5fd02042012-05-02 14:00:54 -04001870 struct inode *inode = ordered_extent->inode;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001871 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001872 struct btrfs_trans_handle *trans = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001873 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001874 struct extent_state *cached_state = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08001875 int compress_type = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001876 int ret;
Li Zefan82d59022011-04-20 10:33:24 +08001877 bool nolock;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001878
Liu Bo83eea1f2012-07-10 05:28:39 -06001879 nolock = btrfs_is_free_space_inode(inode);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001880
Josef Bacik5fd02042012-05-02 14:00:54 -04001881 if (test_bit(BTRFS_ORDERED_IOERR, &ordered_extent->flags)) {
1882 ret = -EIO;
1883 goto out;
1884 }
1885
Yan, Zhengc2167752009-11-12 09:34:21 +00001886 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001887 BUG_ON(!list_empty(&ordered_extent->list)); /* Logic error */
Yan, Zhengc2167752009-11-12 09:34:21 +00001888 ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent);
1889 if (!ret) {
Josef Bacik0cb59c92010-07-02 12:14:14 -04001890 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001891 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001892 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001893 trans = btrfs_join_transaction(root);
Liu Bod280e5b2012-08-21 21:13:25 -06001894 if (IS_ERR(trans)) {
1895 ret = PTR_ERR(trans);
1896 trans = NULL;
1897 goto out;
1898 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001899 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason21151332011-11-10 20:39:08 -05001900 ret = btrfs_update_inode_fallback(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001901 if (ret) /* -ENOMEM or corruption */
1902 btrfs_abort_transaction(trans, root, ret);
Yan, Zhengc2167752009-11-12 09:34:21 +00001903 }
1904 goto out;
1905 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001906
Josef Bacik2ac55d42010-02-03 19:33:23 +00001907 lock_extent_bits(io_tree, ordered_extent->file_offset,
1908 ordered_extent->file_offset + ordered_extent->len - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001909 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001910
Josef Bacik0cb59c92010-07-02 12:14:14 -04001911 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001912 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001913 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001914 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001915 if (IS_ERR(trans)) {
1916 ret = PTR_ERR(trans);
1917 trans = NULL;
1918 goto out_unlock;
1919 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001920 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Yan, Zhengc2167752009-11-12 09:34:21 +00001921
Chris Masonc8b97812008-10-29 14:49:59 -04001922 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Li Zefan261507a02010-12-17 14:21:50 +08001923 compress_type = ordered_extent->compress_type;
Yan Zhengd899e052008-10-30 14:25:28 -04001924 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Li Zefan261507a02010-12-17 14:21:50 +08001925 BUG_ON(compress_type);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001926 ret = btrfs_mark_extent_written(trans, inode,
Yan Zhengd899e052008-10-30 14:25:28 -04001927 ordered_extent->file_offset,
1928 ordered_extent->file_offset +
1929 ordered_extent->len);
Yan Zhengd899e052008-10-30 14:25:28 -04001930 } else {
Josef Bacik0af3d002010-06-21 14:48:16 -04001931 BUG_ON(root == root->fs_info->tree_root);
Yan Zhengd899e052008-10-30 14:25:28 -04001932 ret = insert_reserved_file_extent(trans, inode,
1933 ordered_extent->file_offset,
1934 ordered_extent->start,
1935 ordered_extent->disk_len,
1936 ordered_extent->len,
1937 ordered_extent->len,
Li Zefan261507a02010-12-17 14:21:50 +08001938 compress_type, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04001939 BTRFS_FILE_EXTENT_REG);
Yan Zhengd899e052008-10-30 14:25:28 -04001940 }
Josef Bacik5dc562c2012-08-17 13:14:17 -04001941 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
1942 ordered_extent->file_offset, ordered_extent->len,
1943 trans->transid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001944 if (ret < 0) {
1945 btrfs_abort_transaction(trans, root, ret);
Josef Bacik5fd02042012-05-02 14:00:54 -04001946 goto out_unlock;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001947 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00001948
Chris Masone6dcd2d2008-07-17 12:53:50 -04001949 add_pending_csums(trans, inode, ordered_extent->file_offset,
1950 &ordered_extent->list);
1951
Josef Bacik1ef30be2011-04-05 19:25:36 -04001952 ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent);
Miao Xiea39f7522011-09-11 10:52:25 -04001953 if (!ret || !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Chris Mason21151332011-11-10 20:39:08 -05001954 ret = btrfs_update_inode_fallback(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001955 if (ret) { /* -ENOMEM or corruption */
1956 btrfs_abort_transaction(trans, root, ret);
Josef Bacik5fd02042012-05-02 14:00:54 -04001957 goto out_unlock;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001958 }
Josef Bacik7c735312012-08-13 15:43:26 -04001959 } else {
1960 btrfs_set_inode_last_trans(trans, inode);
Josef Bacik1ef30be2011-04-05 19:25:36 -04001961 }
1962 ret = 0;
Josef Bacik5fd02042012-05-02 14:00:54 -04001963out_unlock:
1964 unlock_extent_cached(io_tree, ordered_extent->file_offset,
1965 ordered_extent->file_offset +
1966 ordered_extent->len - 1, &cached_state, GFP_NOFS);
Yan, Zhengc2167752009-11-12 09:34:21 +00001967out:
Josef Bacik5b0e95b2011-10-06 08:58:24 -04001968 if (root != root->fs_info->tree_root)
Josef Bacik0cb59c92010-07-02 12:14:14 -04001969 btrfs_delalloc_release_metadata(inode, ordered_extent->len);
Miao Xiea698d0752012-09-20 01:51:59 -06001970 if (trans)
1971 btrfs_end_transaction(trans, root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001972
Josef Bacik5fd02042012-05-02 14:00:54 -04001973 if (ret)
1974 clear_extent_uptodate(io_tree, ordered_extent->file_offset,
1975 ordered_extent->file_offset +
1976 ordered_extent->len - 1, NULL, GFP_NOFS);
1977
1978 /*
Liu Bo8bad3c02012-06-18 12:14:23 +08001979 * This needs to be done to make sure anybody waiting knows we are done
1980 * updating everything for this ordered extent.
Josef Bacik5fd02042012-05-02 14:00:54 -04001981 */
1982 btrfs_remove_ordered_extent(inode, ordered_extent);
1983
Chris Masone6dcd2d2008-07-17 12:53:50 -04001984 /* once for us */
1985 btrfs_put_ordered_extent(ordered_extent);
1986 /* once for the tree */
1987 btrfs_put_ordered_extent(ordered_extent);
1988
Josef Bacik5fd02042012-05-02 14:00:54 -04001989 return ret;
1990}
1991
1992static void finish_ordered_fn(struct btrfs_work *work)
1993{
1994 struct btrfs_ordered_extent *ordered_extent;
1995 ordered_extent = container_of(work, struct btrfs_ordered_extent, work);
1996 btrfs_finish_ordered_io(ordered_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001997}
1998
Christoph Hellwigb2950862008-12-02 09:54:17 -05001999static int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04002000 struct extent_state *state, int uptodate)
2001{
Josef Bacik5fd02042012-05-02 14:00:54 -04002002 struct inode *inode = page->mapping->host;
2003 struct btrfs_root *root = BTRFS_I(inode)->root;
2004 struct btrfs_ordered_extent *ordered_extent = NULL;
2005 struct btrfs_workers *workers;
2006
liubo1abe9b82011-03-24 11:18:59 +00002007 trace_btrfs_writepage_end_io_hook(page, start, end, uptodate);
2008
Chris Mason8b62b722009-09-02 16:53:46 -04002009 ClearPagePrivate2(page);
Josef Bacik5fd02042012-05-02 14:00:54 -04002010 if (!btrfs_dec_test_ordered_pending(inode, &ordered_extent, start,
2011 end - start + 1, uptodate))
2012 return 0;
2013
2014 ordered_extent->work.func = finish_ordered_fn;
2015 ordered_extent->work.flags = 0;
2016
Liu Bo83eea1f2012-07-10 05:28:39 -06002017 if (btrfs_is_free_space_inode(inode))
Josef Bacik5fd02042012-05-02 14:00:54 -04002018 workers = &root->fs_info->endio_freespace_worker;
2019 else
2020 workers = &root->fs_info->endio_write_workers;
2021 btrfs_queue_worker(workers, &ordered_extent->work);
2022
2023 return 0;
Chris Mason211f90e2008-07-18 11:56:15 -04002024}
2025
Chris Masond352ac62008-09-29 15:18:18 -04002026/*
Chris Masond352ac62008-09-29 15:18:18 -04002027 * when reads are done, we need to check csums to verify the data is correct
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002028 * if there's a match, we allow the bio to finish. If not, the code in
2029 * extent_io.c will try to find good copies for us.
Chris Masond352ac62008-09-29 15:18:18 -04002030 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05002031static int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002032 struct extent_state *state, int mirror)
Chris Mason07157aa2007-08-30 08:50:51 -04002033{
Chris Mason35ebb932007-10-30 16:56:53 -04002034 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -04002035 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05002036 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -04002037 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -05002038 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -04002039 int ret;
Chris Masonff79f812007-10-15 16:22:25 -04002040 struct btrfs_root *root = BTRFS_I(inode)->root;
2041 u32 csum = ~(u32)0;
Chris Masond1310b22008-01-24 16:13:08 -05002042
Chris Masond20f7042008-12-08 16:58:54 -05002043 if (PageChecked(page)) {
2044 ClearPageChecked(page);
2045 goto good;
2046 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002047
2048 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Jan Schmidt08d2f342011-05-04 16:18:50 +02002049 goto good;
Chris Masond20f7042008-12-08 16:58:54 -05002050
Yan Zheng17d217f2008-12-12 10:03:38 -05002051 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04002052 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
Yan Zheng17d217f2008-12-12 10:03:38 -05002053 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM,
2054 GFP_NOFS);
2055 return 0;
2056 }
2057
Yanc2e639f2008-02-04 08:57:25 -05002058 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -05002059 private = state->private;
2060 ret = 0;
2061 } else {
2062 ret = get_state_private(io_tree, start, &private);
2063 }
Cong Wang7ac687d2011-11-25 23:14:28 +08002064 kaddr = kmap_atomic(page);
Chris Masond3977122009-01-05 21:25:51 -05002065 if (ret)
Chris Mason07157aa2007-08-30 08:50:51 -04002066 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05002067
Chris Masonff79f812007-10-15 16:22:25 -04002068 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
2069 btrfs_csum_final(csum, (char *)&csum);
Chris Masond3977122009-01-05 21:25:51 -05002070 if (csum != private)
Chris Mason07157aa2007-08-30 08:50:51 -04002071 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05002072
Cong Wang7ac687d2011-11-25 23:14:28 +08002073 kunmap_atomic(kaddr);
Chris Masond20f7042008-12-08 16:58:54 -05002074good:
Chris Mason07157aa2007-08-30 08:50:51 -04002075 return 0;
2076
2077zeroit:
Chris Mason945d8962011-05-22 12:33:42 -04002078 printk_ratelimited(KERN_INFO "btrfs csum failed ino %llu off %llu csum %u "
Li Zefan33345d012011-04-20 10:31:50 +08002079 "private %llu\n",
2080 (unsigned long long)btrfs_ino(page->mapping->host),
Chris Mason193f2842009-04-27 07:29:05 -04002081 (unsigned long long)start, csum,
2082 (unsigned long long)private);
Chris Masondb945352007-10-15 16:15:53 -04002083 memset(kaddr + offset, 1, end - start + 1);
2084 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002085 kunmap_atomic(kaddr);
Chris Mason3b951512008-04-17 11:29:12 -04002086 if (private == 0)
2087 return 0;
Chris Mason7e383262008-04-09 16:28:12 -04002088 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -04002089}
Chris Masonb888db2b2007-08-27 16:49:44 -04002090
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002091struct delayed_iput {
2092 struct list_head list;
2093 struct inode *inode;
2094};
2095
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002096/* JDM: If this is fs-wide, why can't we add a pointer to
2097 * btrfs_inode instead and avoid the allocation? */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002098void btrfs_add_delayed_iput(struct inode *inode)
2099{
2100 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2101 struct delayed_iput *delayed;
2102
2103 if (atomic_add_unless(&inode->i_count, -1, 1))
2104 return;
2105
2106 delayed = kmalloc(sizeof(*delayed), GFP_NOFS | __GFP_NOFAIL);
2107 delayed->inode = inode;
2108
2109 spin_lock(&fs_info->delayed_iput_lock);
2110 list_add_tail(&delayed->list, &fs_info->delayed_iputs);
2111 spin_unlock(&fs_info->delayed_iput_lock);
2112}
2113
2114void btrfs_run_delayed_iputs(struct btrfs_root *root)
2115{
2116 LIST_HEAD(list);
2117 struct btrfs_fs_info *fs_info = root->fs_info;
2118 struct delayed_iput *delayed;
2119 int empty;
2120
2121 spin_lock(&fs_info->delayed_iput_lock);
2122 empty = list_empty(&fs_info->delayed_iputs);
2123 spin_unlock(&fs_info->delayed_iput_lock);
2124 if (empty)
2125 return;
2126
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002127 spin_lock(&fs_info->delayed_iput_lock);
2128 list_splice_init(&fs_info->delayed_iputs, &list);
2129 spin_unlock(&fs_info->delayed_iput_lock);
2130
2131 while (!list_empty(&list)) {
2132 delayed = list_entry(list.next, struct delayed_iput, list);
2133 list_del(&delayed->list);
2134 iput(delayed->inode);
2135 kfree(delayed);
2136 }
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002137}
2138
Yan, Zhengd68fc572010-05-16 10:49:58 -04002139enum btrfs_orphan_cleanup_state {
2140 ORPHAN_CLEANUP_STARTED = 1,
2141 ORPHAN_CLEANUP_DONE = 2,
2142};
2143
2144/*
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08002145 * This is called in transaction commit time. If there are no orphan
Yan, Zhengd68fc572010-05-16 10:49:58 -04002146 * files in the subvolume, it removes orphan item and frees block_rsv
2147 * structure.
2148 */
2149void btrfs_orphan_commit_root(struct btrfs_trans_handle *trans,
2150 struct btrfs_root *root)
2151{
Josef Bacik90290e12011-12-02 15:44:12 -05002152 struct btrfs_block_rsv *block_rsv;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002153 int ret;
2154
Josef Bacik8a35d952012-05-23 14:26:42 -04002155 if (atomic_read(&root->orphan_inodes) ||
Yan, Zhengd68fc572010-05-16 10:49:58 -04002156 root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE)
2157 return;
2158
Josef Bacik90290e12011-12-02 15:44:12 -05002159 spin_lock(&root->orphan_lock);
Josef Bacik8a35d952012-05-23 14:26:42 -04002160 if (atomic_read(&root->orphan_inodes)) {
Josef Bacik90290e12011-12-02 15:44:12 -05002161 spin_unlock(&root->orphan_lock);
2162 return;
2163 }
2164
2165 if (root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE) {
2166 spin_unlock(&root->orphan_lock);
2167 return;
2168 }
2169
2170 block_rsv = root->orphan_block_rsv;
2171 root->orphan_block_rsv = NULL;
2172 spin_unlock(&root->orphan_lock);
2173
Yan, Zhengd68fc572010-05-16 10:49:58 -04002174 if (root->orphan_item_inserted &&
2175 btrfs_root_refs(&root->root_item) > 0) {
2176 ret = btrfs_del_orphan_item(trans, root->fs_info->tree_root,
2177 root->root_key.objectid);
2178 BUG_ON(ret);
2179 root->orphan_item_inserted = 0;
2180 }
2181
Josef Bacik90290e12011-12-02 15:44:12 -05002182 if (block_rsv) {
2183 WARN_ON(block_rsv->size > 0);
2184 btrfs_free_block_rsv(root, block_rsv);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002185 }
2186}
2187
2188/*
Josef Bacik7b128762008-07-24 12:17:14 -04002189 * This creates an orphan entry for the given inode in case something goes
2190 * wrong in the middle of an unlink/truncate.
Yan, Zhengd68fc572010-05-16 10:49:58 -04002191 *
2192 * NOTE: caller of this function should reserve 5 units of metadata for
2193 * this function.
Josef Bacik7b128762008-07-24 12:17:14 -04002194 */
2195int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
2196{
2197 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002198 struct btrfs_block_rsv *block_rsv = NULL;
2199 int reserve = 0;
2200 int insert = 0;
2201 int ret;
Josef Bacik7b128762008-07-24 12:17:14 -04002202
Yan, Zhengd68fc572010-05-16 10:49:58 -04002203 if (!root->orphan_block_rsv) {
Miao Xie66d8f3d2012-09-06 04:02:28 -06002204 block_rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP);
Tsutomu Itohb5324022011-07-19 07:27:20 +00002205 if (!block_rsv)
2206 return -ENOMEM;
Josef Bacik7b128762008-07-24 12:17:14 -04002207 }
2208
Yan, Zhengd68fc572010-05-16 10:49:58 -04002209 spin_lock(&root->orphan_lock);
2210 if (!root->orphan_block_rsv) {
2211 root->orphan_block_rsv = block_rsv;
2212 } else if (block_rsv) {
2213 btrfs_free_block_rsv(root, block_rsv);
2214 block_rsv = NULL;
2215 }
Josef Bacik7b128762008-07-24 12:17:14 -04002216
Josef Bacik8a35d952012-05-23 14:26:42 -04002217 if (!test_and_set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2218 &BTRFS_I(inode)->runtime_flags)) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04002219#if 0
2220 /*
2221 * For proper ENOSPC handling, we should do orphan
2222 * cleanup when mounting. But this introduces backward
2223 * compatibility issue.
2224 */
2225 if (!xchg(&root->orphan_item_inserted, 1))
2226 insert = 2;
2227 else
2228 insert = 1;
2229#endif
2230 insert = 1;
Miao Xie321f0e72012-08-28 22:13:02 -06002231 atomic_inc(&root->orphan_inodes);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002232 }
Josef Bacik7b128762008-07-24 12:17:14 -04002233
Josef Bacik72ac3c02012-05-23 14:13:11 -04002234 if (!test_and_set_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
2235 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04002236 reserve = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002237 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002238
Yan, Zhengd68fc572010-05-16 10:49:58 -04002239 /* grab metadata reservation from transaction handle */
2240 if (reserve) {
2241 ret = btrfs_orphan_reserve_metadata(trans, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002242 BUG_ON(ret); /* -ENOSPC in reservation; Logic error? JDM */
Yan, Zhengd68fc572010-05-16 10:49:58 -04002243 }
2244
2245 /* insert an orphan item to track this unlinked/truncated file */
2246 if (insert >= 1) {
Li Zefan33345d012011-04-20 10:31:50 +08002247 ret = btrfs_insert_orphan_item(trans, root, btrfs_ino(inode));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002248 if (ret && ret != -EEXIST) {
Josef Bacik8a35d952012-05-23 14:26:42 -04002249 clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2250 &BTRFS_I(inode)->runtime_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002251 btrfs_abort_transaction(trans, root, ret);
2252 return ret;
2253 }
2254 ret = 0;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002255 }
2256
2257 /* insert an orphan item to track subvolume contains orphan files */
2258 if (insert >= 2) {
2259 ret = btrfs_insert_orphan_item(trans, root->fs_info->tree_root,
2260 root->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002261 if (ret && ret != -EEXIST) {
2262 btrfs_abort_transaction(trans, root, ret);
2263 return ret;
2264 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002265 }
2266 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002267}
2268
2269/*
2270 * We have done the truncate/delete so we can go ahead and remove the orphan
2271 * item for this particular inode.
2272 */
2273int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode)
2274{
2275 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002276 int delete_item = 0;
2277 int release_rsv = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002278 int ret = 0;
2279
Yan, Zhengd68fc572010-05-16 10:49:58 -04002280 spin_lock(&root->orphan_lock);
Josef Bacik8a35d952012-05-23 14:26:42 -04002281 if (test_and_clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2282 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04002283 delete_item = 1;
Josef Bacik7b128762008-07-24 12:17:14 -04002284
Josef Bacik72ac3c02012-05-23 14:13:11 -04002285 if (test_and_clear_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
2286 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04002287 release_rsv = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002288 spin_unlock(&root->orphan_lock);
2289
2290 if (trans && delete_item) {
Li Zefan33345d012011-04-20 10:31:50 +08002291 ret = btrfs_del_orphan_item(trans, root, btrfs_ino(inode));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002292 BUG_ON(ret); /* -ENOMEM or corruption (JDM: Recheck) */
Josef Bacik7b128762008-07-24 12:17:14 -04002293 }
2294
Josef Bacik8a35d952012-05-23 14:26:42 -04002295 if (release_rsv) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04002296 btrfs_orphan_release_metadata(inode);
Josef Bacik8a35d952012-05-23 14:26:42 -04002297 atomic_dec(&root->orphan_inodes);
2298 }
Josef Bacik7b128762008-07-24 12:17:14 -04002299
Yan, Zhengd68fc572010-05-16 10:49:58 -04002300 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002301}
2302
2303/*
2304 * this cleans up any orphans that may be left on the list from the last use
2305 * of this root.
2306 */
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002307int btrfs_orphan_cleanup(struct btrfs_root *root)
Josef Bacik7b128762008-07-24 12:17:14 -04002308{
2309 struct btrfs_path *path;
2310 struct extent_buffer *leaf;
Josef Bacik7b128762008-07-24 12:17:14 -04002311 struct btrfs_key key, found_key;
2312 struct btrfs_trans_handle *trans;
2313 struct inode *inode;
Josef Bacik8f6d7f42011-09-26 15:55:20 -04002314 u64 last_objectid = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002315 int ret = 0, nr_unlink = 0, nr_truncate = 0;
2316
Yan, Zhengd68fc572010-05-16 10:49:58 -04002317 if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002318 return 0;
Yan, Zhengc71bf092009-11-12 09:34:40 +00002319
2320 path = btrfs_alloc_path();
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002321 if (!path) {
2322 ret = -ENOMEM;
2323 goto out;
2324 }
Josef Bacik7b128762008-07-24 12:17:14 -04002325 path->reada = -1;
2326
2327 key.objectid = BTRFS_ORPHAN_OBJECTID;
2328 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
2329 key.offset = (u64)-1;
2330
Josef Bacik7b128762008-07-24 12:17:14 -04002331 while (1) {
2332 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002333 if (ret < 0)
2334 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04002335
2336 /*
2337 * if ret == 0 means we found what we were searching for, which
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002338 * is weird, but possible, so only screw with path if we didn't
Josef Bacik7b128762008-07-24 12:17:14 -04002339 * find the key and see if we have stuff that matches
2340 */
2341 if (ret > 0) {
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002342 ret = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002343 if (path->slots[0] == 0)
2344 break;
2345 path->slots[0]--;
2346 }
2347
2348 /* pull out the item */
2349 leaf = path->nodes[0];
Josef Bacik7b128762008-07-24 12:17:14 -04002350 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2351
2352 /* make sure the item matches what we want */
2353 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
2354 break;
2355 if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY)
2356 break;
2357
2358 /* release the path since we're done with it */
David Sterbab3b4aa72011-04-21 01:20:15 +02002359 btrfs_release_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04002360
2361 /*
2362 * this is where we are basically btrfs_lookup, without the
2363 * crossing root thing. we store the inode number in the
2364 * offset of the orphan item.
2365 */
Josef Bacik8f6d7f42011-09-26 15:55:20 -04002366
2367 if (found_key.offset == last_objectid) {
2368 printk(KERN_ERR "btrfs: Error removing orphan entry, "
2369 "stopping orphan cleanup\n");
2370 ret = -EINVAL;
2371 goto out;
2372 }
2373
2374 last_objectid = found_key.offset;
2375
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002376 found_key.objectid = found_key.offset;
2377 found_key.type = BTRFS_INODE_ITEM_KEY;
2378 found_key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +00002379 inode = btrfs_iget(root->fs_info->sb, &found_key, root, NULL);
Josef Bacika8c9e572011-09-21 16:55:59 -04002380 ret = PTR_RET(inode);
2381 if (ret && ret != -ESTALE)
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002382 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04002383
Arne Jansenf8e9e0b2011-12-14 20:12:02 -05002384 if (ret == -ESTALE && root == root->fs_info->tree_root) {
2385 struct btrfs_root *dead_root;
2386 struct btrfs_fs_info *fs_info = root->fs_info;
2387 int is_dead_root = 0;
2388
2389 /*
2390 * this is an orphan in the tree root. Currently these
2391 * could come from 2 sources:
2392 * a) a snapshot deletion in progress
2393 * b) a free space cache inode
2394 * We need to distinguish those two, as the snapshot
2395 * orphan must not get deleted.
2396 * find_dead_roots already ran before us, so if this
2397 * is a snapshot deletion, we should find the root
2398 * in the dead_roots list
2399 */
2400 spin_lock(&fs_info->trans_lock);
2401 list_for_each_entry(dead_root, &fs_info->dead_roots,
2402 root_list) {
2403 if (dead_root->root_key.objectid ==
2404 found_key.objectid) {
2405 is_dead_root = 1;
2406 break;
2407 }
2408 }
2409 spin_unlock(&fs_info->trans_lock);
2410 if (is_dead_root) {
2411 /* prevent this orphan from being found again */
2412 key.offset = found_key.objectid - 1;
2413 continue;
2414 }
2415 }
Josef Bacika8c9e572011-09-21 16:55:59 -04002416 /*
2417 * Inode is already gone but the orphan item is still there,
2418 * kill the orphan item.
2419 */
2420 if (ret == -ESTALE) {
2421 trans = btrfs_start_transaction(root, 1);
2422 if (IS_ERR(trans)) {
2423 ret = PTR_ERR(trans);
2424 goto out;
2425 }
Josef Bacik8a35d952012-05-23 14:26:42 -04002426 printk(KERN_ERR "auto deleting %Lu\n",
2427 found_key.objectid);
Josef Bacika8c9e572011-09-21 16:55:59 -04002428 ret = btrfs_del_orphan_item(trans, root,
2429 found_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002430 BUG_ON(ret); /* -ENOMEM or corruption (JDM: Recheck) */
Josef Bacika8c9e572011-09-21 16:55:59 -04002431 btrfs_end_transaction(trans, root);
2432 continue;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002433 }
Josef Bacik7b128762008-07-24 12:17:14 -04002434
Josef Bacik7b128762008-07-24 12:17:14 -04002435 /*
2436 * add this inode to the orphan list so btrfs_orphan_del does
2437 * the proper thing when we hit it
2438 */
Josef Bacik8a35d952012-05-23 14:26:42 -04002439 set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2440 &BTRFS_I(inode)->runtime_flags);
Josef Bacik7b128762008-07-24 12:17:14 -04002441
Josef Bacik7b128762008-07-24 12:17:14 -04002442 /* if we have links, this was a truncate, lets do that */
2443 if (inode->i_nlink) {
Josef Bacika41ad392011-01-31 15:30:16 -05002444 if (!S_ISREG(inode->i_mode)) {
2445 WARN_ON(1);
2446 iput(inode);
2447 continue;
2448 }
Josef Bacik7b128762008-07-24 12:17:14 -04002449 nr_truncate++;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002450 ret = btrfs_truncate(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04002451 } else {
2452 nr_unlink++;
2453 }
2454
2455 /* this will do delete_inode and everything for us */
2456 iput(inode);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002457 if (ret)
2458 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04002459 }
Miao Xie3254c872011-11-10 20:45:05 -05002460 /* release the path since we're done with it */
2461 btrfs_release_path(path);
2462
Yan, Zhengd68fc572010-05-16 10:49:58 -04002463 root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE;
2464
2465 if (root->orphan_block_rsv)
2466 btrfs_block_rsv_release(root, root->orphan_block_rsv,
2467 (u64)-1);
2468
2469 if (root->orphan_block_rsv || root->orphan_item_inserted) {
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002470 trans = btrfs_join_transaction(root);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002471 if (!IS_ERR(trans))
2472 btrfs_end_transaction(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002473 }
Josef Bacik7b128762008-07-24 12:17:14 -04002474
2475 if (nr_unlink)
2476 printk(KERN_INFO "btrfs: unlinked %d orphans\n", nr_unlink);
2477 if (nr_truncate)
2478 printk(KERN_INFO "btrfs: truncated %d orphans\n", nr_truncate);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002479
2480out:
2481 if (ret)
2482 printk(KERN_CRIT "btrfs: could not do orphan cleanup %d\n", ret);
2483 btrfs_free_path(path);
2484 return ret;
Josef Bacik7b128762008-07-24 12:17:14 -04002485}
2486
Chris Masond352ac62008-09-29 15:18:18 -04002487/*
Chris Mason46a53cc2009-04-27 11:47:50 -04002488 * very simple check to peek ahead in the leaf looking for xattrs. If we
2489 * don't find any xattrs, we know there can't be any acls.
2490 *
2491 * slot is the slot the inode is in, objectid is the objectid of the inode
2492 */
2493static noinline int acls_after_inode_item(struct extent_buffer *leaf,
2494 int slot, u64 objectid)
2495{
2496 u32 nritems = btrfs_header_nritems(leaf);
2497 struct btrfs_key found_key;
2498 int scanned = 0;
2499
2500 slot++;
2501 while (slot < nritems) {
2502 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2503
2504 /* we found a different objectid, there must not be acls */
2505 if (found_key.objectid != objectid)
2506 return 0;
2507
2508 /* we found an xattr, assume we've got an acl */
2509 if (found_key.type == BTRFS_XATTR_ITEM_KEY)
2510 return 1;
2511
2512 /*
2513 * we found a key greater than an xattr key, there can't
2514 * be any acls later on
2515 */
2516 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
2517 return 0;
2518
2519 slot++;
2520 scanned++;
2521
2522 /*
2523 * it goes inode, inode backrefs, xattrs, extents,
2524 * so if there are a ton of hard links to an inode there can
2525 * be a lot of backrefs. Don't waste time searching too hard,
2526 * this is just an optimization
2527 */
2528 if (scanned >= 8)
2529 break;
2530 }
2531 /* we hit the end of the leaf before we found an xattr or
2532 * something larger than an xattr. We have to assume the inode
2533 * has acls
2534 */
2535 return 1;
2536}
2537
2538/*
Chris Masond352ac62008-09-29 15:18:18 -04002539 * read an inode from the btree into the in-memory inode
2540 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002541static void btrfs_read_locked_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002542{
2543 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002544 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002545 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -04002546 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -04002547 struct btrfs_root *root = BTRFS_I(inode)->root;
2548 struct btrfs_key location;
Chris Mason46a53cc2009-04-27 11:47:50 -04002549 int maybe_acls;
Josef Bacik618e21d2007-07-11 10:18:17 -04002550 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04002551 int ret;
Miao Xie2f7e33d2011-06-23 07:27:13 +00002552 bool filled = false;
2553
2554 ret = btrfs_fill_inode(inode, &rdev);
2555 if (!ret)
2556 filled = true;
Chris Mason39279cc2007-06-12 06:35:45 -04002557
2558 path = btrfs_alloc_path();
Mark Fasheh1748f842011-07-12 11:25:31 -07002559 if (!path)
2560 goto make_bad;
2561
Josef Bacikd90c7322011-05-17 09:50:54 -04002562 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002563 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05002564
Chris Mason39279cc2007-06-12 06:35:45 -04002565 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002566 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04002567 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -04002568
Chris Mason5f39d392007-10-15 16:14:19 -04002569 leaf = path->nodes[0];
Miao Xie2f7e33d2011-06-23 07:27:13 +00002570
2571 if (filled)
2572 goto cache_acl;
2573
Chris Mason5f39d392007-10-15 16:14:19 -04002574 inode_item = btrfs_item_ptr(leaf, path->slots[0],
2575 struct btrfs_inode_item);
Chris Mason5f39d392007-10-15 16:14:19 -04002576 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
Miklos Szeredibfe86842011-10-28 14:13:29 +02002577 set_nlink(inode, btrfs_inode_nlink(leaf, inode_item));
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -08002578 i_uid_write(inode, btrfs_inode_uid(leaf, inode_item));
2579 i_gid_write(inode, btrfs_inode_gid(leaf, inode_item));
Chris Masondbe674a2008-07-17 12:54:05 -04002580 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002581
2582 tspec = btrfs_inode_atime(inode_item);
2583 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2584 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2585
2586 tspec = btrfs_inode_mtime(inode_item);
2587 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2588 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2589
2590 tspec = btrfs_inode_ctime(inode_item);
2591 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2592 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2593
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002594 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04002595 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Josef Bacik5dc562c2012-08-17 13:14:17 -04002596 BTRFS_I(inode)->last_trans = btrfs_inode_transid(leaf, inode_item);
2597
2598 /*
2599 * If we were modified in the current generation and evicted from memory
2600 * and then re-read we need to do a full sync since we don't have any
2601 * idea about which extents were modified before we were evicted from
2602 * cache.
2603 */
2604 if (BTRFS_I(inode)->last_trans == root->fs_info->generation)
2605 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
2606 &BTRFS_I(inode)->runtime_flags);
2607
Josef Bacik0c4d2d92012-04-05 15:03:02 -04002608 inode->i_version = btrfs_inode_sequence(leaf, inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04002609 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04002610 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002611 rdev = btrfs_inode_rdev(leaf, inode_item);
2612
Josef Bacikaec74772008-07-24 12:12:38 -04002613 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05002614 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Miao Xie2f7e33d2011-06-23 07:27:13 +00002615cache_acl:
Chris Mason46a53cc2009-04-27 11:47:50 -04002616 /*
2617 * try to precache a NULL acl entry for files that don't have
2618 * any xattrs or acls
2619 */
Li Zefan33345d012011-04-20 10:31:50 +08002620 maybe_acls = acls_after_inode_item(leaf, path->slots[0],
2621 btrfs_ino(inode));
Al Viro72c04902009-06-24 16:58:48 -04002622 if (!maybe_acls)
2623 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04002624
Chris Mason39279cc2007-06-12 06:35:45 -04002625 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002626
Chris Mason39279cc2007-06-12 06:35:45 -04002627 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04002628 case S_IFREG:
2629 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04002630 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05002631 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04002632 inode->i_fop = &btrfs_file_operations;
2633 inode->i_op = &btrfs_file_inode_operations;
2634 break;
2635 case S_IFDIR:
2636 inode->i_fop = &btrfs_dir_file_operations;
2637 if (root == root->fs_info->tree_root)
2638 inode->i_op = &btrfs_dir_ro_inode_operations;
2639 else
2640 inode->i_op = &btrfs_dir_inode_operations;
2641 break;
2642 case S_IFLNK:
2643 inode->i_op = &btrfs_symlink_inode_operations;
2644 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04002645 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04002646 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04002647 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05002648 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04002649 init_special_inode(inode, inode->i_mode, rdev);
2650 break;
Chris Mason39279cc2007-06-12 06:35:45 -04002651 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002652
2653 btrfs_update_iflags(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002654 return;
2655
2656make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04002657 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002658 make_bad_inode(inode);
2659}
2660
Chris Masond352ac62008-09-29 15:18:18 -04002661/*
2662 * given a leaf and an inode, copy the inode fields into the leaf
2663 */
Chris Masone02119d2008-09-05 16:13:11 -04002664static void fill_inode_item(struct btrfs_trans_handle *trans,
2665 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04002666 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04002667 struct inode *inode)
2668{
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -08002669 btrfs_set_inode_uid(leaf, item, i_uid_read(inode));
2670 btrfs_set_inode_gid(leaf, item, i_gid_read(inode));
Chris Masondbe674a2008-07-17 12:54:05 -04002671 btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size);
Chris Mason5f39d392007-10-15 16:14:19 -04002672 btrfs_set_inode_mode(leaf, item, inode->i_mode);
2673 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
2674
2675 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
2676 inode->i_atime.tv_sec);
2677 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
2678 inode->i_atime.tv_nsec);
2679
2680 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
2681 inode->i_mtime.tv_sec);
2682 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
2683 inode->i_mtime.tv_nsec);
2684
2685 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
2686 inode->i_ctime.tv_sec);
2687 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
2688 inode->i_ctime.tv_nsec);
2689
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002690 btrfs_set_inode_nbytes(leaf, item, inode_get_bytes(inode));
Chris Masone02119d2008-09-05 16:13:11 -04002691 btrfs_set_inode_generation(leaf, item, BTRFS_I(inode)->generation);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04002692 btrfs_set_inode_sequence(leaf, item, inode->i_version);
Chris Masone02119d2008-09-05 16:13:11 -04002693 btrfs_set_inode_transid(leaf, item, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002694 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -05002695 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04002696 btrfs_set_inode_block_group(leaf, item, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002697}
2698
Chris Masond352ac62008-09-29 15:18:18 -04002699/*
2700 * copy everything in the in-memory inode into the btree.
2701 */
Chris Mason21151332011-11-10 20:39:08 -05002702static noinline int btrfs_update_inode_item(struct btrfs_trans_handle *trans,
Chris Masond3977122009-01-05 21:25:51 -05002703 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002704{
2705 struct btrfs_inode_item *inode_item;
2706 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002707 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002708 int ret;
2709
2710 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08002711 if (!path)
2712 return -ENOMEM;
2713
Chris Masonb9473432009-03-13 11:00:37 -04002714 path->leave_spinning = 1;
Miao Xie16cdcec2011-04-22 18:12:22 +08002715 ret = btrfs_lookup_inode(trans, root, path, &BTRFS_I(inode)->location,
2716 1);
Chris Mason39279cc2007-06-12 06:35:45 -04002717 if (ret) {
2718 if (ret > 0)
2719 ret = -ENOENT;
2720 goto failed;
2721 }
2722
Chris Masonb4ce94d2009-02-04 09:25:08 -05002723 btrfs_unlock_up_safe(path, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002724 leaf = path->nodes[0];
2725 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Miao Xie16cdcec2011-04-22 18:12:22 +08002726 struct btrfs_inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -04002727
Chris Masone02119d2008-09-05 16:13:11 -04002728 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002729 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002730 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002731 ret = 0;
2732failed:
Chris Mason39279cc2007-06-12 06:35:45 -04002733 btrfs_free_path(path);
2734 return ret;
2735}
2736
Chris Masond352ac62008-09-29 15:18:18 -04002737/*
Chris Mason21151332011-11-10 20:39:08 -05002738 * copy everything in the in-memory inode into the btree.
2739 */
2740noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
2741 struct btrfs_root *root, struct inode *inode)
2742{
2743 int ret;
2744
2745 /*
2746 * If the inode is a free space inode, we can deadlock during commit
2747 * if we put it into the delayed code.
2748 *
2749 * The data relocation inode should also be directly updated
2750 * without delay
2751 */
Liu Bo83eea1f2012-07-10 05:28:39 -06002752 if (!btrfs_is_free_space_inode(inode)
Chris Mason21151332011-11-10 20:39:08 -05002753 && root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID) {
Alexander Block8ea05e32012-07-25 17:35:53 +02002754 btrfs_update_root_times(trans, root);
2755
Chris Mason21151332011-11-10 20:39:08 -05002756 ret = btrfs_delayed_update_inode(trans, root, inode);
2757 if (!ret)
2758 btrfs_set_inode_last_trans(trans, inode);
2759 return ret;
2760 }
2761
2762 return btrfs_update_inode_item(trans, root, inode);
2763}
2764
Josef Bacikbe6aef62012-10-22 15:43:12 -04002765noinline int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans,
2766 struct btrfs_root *root,
2767 struct inode *inode)
Chris Mason21151332011-11-10 20:39:08 -05002768{
2769 int ret;
2770
2771 ret = btrfs_update_inode(trans, root, inode);
2772 if (ret == -ENOSPC)
2773 return btrfs_update_inode_item(trans, root, inode);
2774 return ret;
2775}
2776
2777/*
Chris Masond352ac62008-09-29 15:18:18 -04002778 * unlink helper that gets used here in inode.c and in the tree logging
2779 * recovery code. It remove a link in a directory with a given name, and
2780 * also drops the back refs in the inode to the directory
2781 */
Al Viro92986792011-03-04 17:14:37 +00002782static int __btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2783 struct btrfs_root *root,
2784 struct inode *dir, struct inode *inode,
2785 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04002786{
2787 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04002788 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002789 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002790 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04002791 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04002792 u64 index;
Li Zefan33345d012011-04-20 10:31:50 +08002793 u64 ino = btrfs_ino(inode);
2794 u64 dir_ino = btrfs_ino(dir);
Chris Mason39279cc2007-06-12 06:35:45 -04002795
2796 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002797 if (!path) {
2798 ret = -ENOMEM;
Tsutomu Itoh554233a2011-02-03 03:16:25 +00002799 goto out;
Chris Mason54aa1f42007-06-22 14:16:25 -04002800 }
2801
Chris Masonb9473432009-03-13 11:00:37 -04002802 path->leave_spinning = 1;
Li Zefan33345d012011-04-20 10:31:50 +08002803 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Chris Mason39279cc2007-06-12 06:35:45 -04002804 name, name_len, -1);
2805 if (IS_ERR(di)) {
2806 ret = PTR_ERR(di);
2807 goto err;
2808 }
2809 if (!di) {
2810 ret = -ENOENT;
2811 goto err;
2812 }
Chris Mason5f39d392007-10-15 16:14:19 -04002813 leaf = path->nodes[0];
2814 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04002815 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04002816 if (ret)
2817 goto err;
David Sterbab3b4aa72011-04-21 01:20:15 +02002818 btrfs_release_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002819
Li Zefan33345d012011-04-20 10:31:50 +08002820 ret = btrfs_del_inode_ref(trans, root, name, name_len, ino,
2821 dir_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04002822 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05002823 printk(KERN_INFO "btrfs failed to delete reference to %.*s, "
Li Zefan33345d012011-04-20 10:31:50 +08002824 "inode %llu parent %llu\n", name_len, name,
2825 (unsigned long long)ino, (unsigned long long)dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002826 btrfs_abort_transaction(trans, root, ret);
Josef Bacikaec74772008-07-24 12:12:38 -04002827 goto err;
2828 }
2829
Miao Xie16cdcec2011-04-22 18:12:22 +08002830 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002831 if (ret) {
2832 btrfs_abort_transaction(trans, root, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04002833 goto err;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002834 }
Chris Mason39279cc2007-06-12 06:35:45 -04002835
Chris Masone02119d2008-09-05 16:13:11 -04002836 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
Li Zefan33345d012011-04-20 10:31:50 +08002837 inode, dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002838 if (ret != 0 && ret != -ENOENT) {
2839 btrfs_abort_transaction(trans, root, ret);
2840 goto err;
2841 }
Chris Masone02119d2008-09-05 16:13:11 -04002842
2843 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
2844 dir, index);
Chris Mason6418c962010-10-30 07:34:24 -04002845 if (ret == -ENOENT)
2846 ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002847err:
2848 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002849 if (ret)
2850 goto out;
2851
2852 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04002853 inode_inc_iversion(inode);
2854 inode_inc_iversion(dir);
Chris Masone02119d2008-09-05 16:13:11 -04002855 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
Tsutomu Itohb9959292012-06-25 21:25:22 -06002856 ret = btrfs_update_inode(trans, root, dir);
Chris Masone02119d2008-09-05 16:13:11 -04002857out:
Chris Mason39279cc2007-06-12 06:35:45 -04002858 return ret;
2859}
2860
Al Viro92986792011-03-04 17:14:37 +00002861int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2862 struct btrfs_root *root,
2863 struct inode *dir, struct inode *inode,
2864 const char *name, int name_len)
2865{
2866 int ret;
2867 ret = __btrfs_unlink_inode(trans, root, dir, inode, name, name_len);
2868 if (!ret) {
2869 btrfs_drop_nlink(inode);
2870 ret = btrfs_update_inode(trans, root, inode);
2871 }
2872 return ret;
2873}
2874
2875
Yan, Zhenga22285a2010-05-16 10:48:46 -04002876/* helper to check if there is any shared block in the path */
2877static int check_path_shared(struct btrfs_root *root,
2878 struct btrfs_path *path)
2879{
2880 struct extent_buffer *eb;
2881 int level;
Dan Carpenter0e4dcbef2010-06-01 08:23:11 +00002882 u64 refs = 1;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002883
2884 for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
Josef Bacikdedefd72011-01-24 21:43:18 +00002885 int ret;
2886
Yan, Zhenga22285a2010-05-16 10:48:46 -04002887 if (!path->nodes[level])
2888 break;
2889 eb = path->nodes[level];
2890 if (!btrfs_block_can_be_shared(root, eb))
2891 continue;
2892 ret = btrfs_lookup_extent_info(NULL, root, eb->start, eb->len,
2893 &refs, NULL);
2894 if (refs > 1)
2895 return 1;
2896 }
Josef Bacikdedefd72011-01-24 21:43:18 +00002897 return 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002898}
2899
2900/*
2901 * helper to start transaction for unlink and rmdir.
2902 *
2903 * unlink and rmdir are special in btrfs, they do not always free space.
2904 * so in enospc case, we should make sure they will free space before
2905 * allowing them to use the global metadata reservation.
2906 */
2907static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir,
2908 struct dentry *dentry)
2909{
2910 struct btrfs_trans_handle *trans;
2911 struct btrfs_root *root = BTRFS_I(dir)->root;
2912 struct btrfs_path *path;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002913 struct btrfs_dir_item *di;
2914 struct inode *inode = dentry->d_inode;
2915 u64 index;
2916 int check_link = 1;
2917 int err = -ENOSPC;
2918 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08002919 u64 ino = btrfs_ino(inode);
2920 u64 dir_ino = btrfs_ino(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002921
Josef Bacike70bea52011-10-11 14:18:24 -04002922 /*
2923 * 1 for the possible orphan item
2924 * 1 for the dir item
2925 * 1 for the dir index
2926 * 1 for the inode ref
2927 * 1 for the inode ref in the tree log
2928 * 2 for the dir entries in the log
2929 * 1 for the inode
2930 */
2931 trans = btrfs_start_transaction(root, 8);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002932 if (!IS_ERR(trans) || PTR_ERR(trans) != -ENOSPC)
2933 return trans;
2934
Li Zefan33345d012011-04-20 10:31:50 +08002935 if (ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhenga22285a2010-05-16 10:48:46 -04002936 return ERR_PTR(-ENOSPC);
2937
2938 /* check if there is someone else holds reference */
2939 if (S_ISDIR(inode->i_mode) && atomic_read(&inode->i_count) > 1)
2940 return ERR_PTR(-ENOSPC);
2941
2942 if (atomic_read(&inode->i_count) > 2)
2943 return ERR_PTR(-ENOSPC);
2944
2945 if (xchg(&root->fs_info->enospc_unlink, 1))
2946 return ERR_PTR(-ENOSPC);
2947
2948 path = btrfs_alloc_path();
2949 if (!path) {
2950 root->fs_info->enospc_unlink = 0;
2951 return ERR_PTR(-ENOMEM);
2952 }
2953
Josef Bacik3880a1b2011-10-14 14:46:51 -04002954 /* 1 for the orphan item */
2955 trans = btrfs_start_transaction(root, 1);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002956 if (IS_ERR(trans)) {
2957 btrfs_free_path(path);
2958 root->fs_info->enospc_unlink = 0;
2959 return trans;
2960 }
2961
2962 path->skip_locking = 1;
2963 path->search_commit_root = 1;
2964
2965 ret = btrfs_lookup_inode(trans, root, path,
2966 &BTRFS_I(dir)->location, 0);
2967 if (ret < 0) {
2968 err = ret;
2969 goto out;
2970 }
2971 if (ret == 0) {
2972 if (check_path_shared(root, path))
2973 goto out;
2974 } else {
2975 check_link = 0;
2976 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002977 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002978
2979 ret = btrfs_lookup_inode(trans, root, path,
2980 &BTRFS_I(inode)->location, 0);
2981 if (ret < 0) {
2982 err = ret;
2983 goto out;
2984 }
2985 if (ret == 0) {
2986 if (check_path_shared(root, path))
2987 goto out;
2988 } else {
2989 check_link = 0;
2990 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002991 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002992
2993 if (ret == 0 && S_ISREG(inode->i_mode)) {
2994 ret = btrfs_lookup_file_extent(trans, root, path,
Li Zefan33345d012011-04-20 10:31:50 +08002995 ino, (u64)-1, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002996 if (ret < 0) {
2997 err = ret;
2998 goto out;
2999 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003000 BUG_ON(ret == 0); /* Corruption */
Yan, Zhenga22285a2010-05-16 10:48:46 -04003001 if (check_path_shared(root, path))
3002 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +02003003 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003004 }
3005
3006 if (!check_link) {
3007 err = 0;
3008 goto out;
3009 }
3010
Li Zefan33345d012011-04-20 10:31:50 +08003011 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zhenga22285a2010-05-16 10:48:46 -04003012 dentry->d_name.name, dentry->d_name.len, 0);
3013 if (IS_ERR(di)) {
3014 err = PTR_ERR(di);
3015 goto out;
3016 }
3017 if (di) {
3018 if (check_path_shared(root, path))
3019 goto out;
3020 } else {
3021 err = 0;
3022 goto out;
3023 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003024 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003025
Mark Fashehf1863732012-08-08 11:32:27 -07003026 ret = btrfs_get_inode_ref_index(trans, root, path, dentry->d_name.name,
3027 dentry->d_name.len, ino, dir_ino, 0,
3028 &index);
3029 if (ret) {
3030 err = ret;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003031 goto out;
3032 }
Mark Fashehf1863732012-08-08 11:32:27 -07003033
Yan, Zhenga22285a2010-05-16 10:48:46 -04003034 if (check_path_shared(root, path))
3035 goto out;
Mark Fashehf1863732012-08-08 11:32:27 -07003036
David Sterbab3b4aa72011-04-21 01:20:15 +02003037 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003038
Miao Xie16cdcec2011-04-22 18:12:22 +08003039 /*
3040 * This is a commit root search, if we can lookup inode item and other
3041 * relative items in the commit root, it means the transaction of
3042 * dir/file creation has been committed, and the dir index item that we
3043 * delay to insert has also been inserted into the commit root. So
3044 * we needn't worry about the delayed insertion of the dir index item
3045 * here.
3046 */
Li Zefan33345d012011-04-20 10:31:50 +08003047 di = btrfs_lookup_dir_index_item(trans, root, path, dir_ino, index,
Yan, Zhenga22285a2010-05-16 10:48:46 -04003048 dentry->d_name.name, dentry->d_name.len, 0);
3049 if (IS_ERR(di)) {
3050 err = PTR_ERR(di);
3051 goto out;
3052 }
3053 BUG_ON(ret == -ENOENT);
3054 if (check_path_shared(root, path))
3055 goto out;
3056
3057 err = 0;
3058out:
3059 btrfs_free_path(path);
Josef Bacik3880a1b2011-10-14 14:46:51 -04003060 /* Migrate the orphan reservation over */
3061 if (!err)
3062 err = btrfs_block_rsv_migrate(trans->block_rsv,
3063 &root->fs_info->global_block_rsv,
Josef Bacik5a77d762011-11-01 14:32:23 -04003064 trans->bytes_reserved);
Josef Bacik3880a1b2011-10-14 14:46:51 -04003065
Yan, Zhenga22285a2010-05-16 10:48:46 -04003066 if (err) {
3067 btrfs_end_transaction(trans, root);
3068 root->fs_info->enospc_unlink = 0;
3069 return ERR_PTR(err);
3070 }
3071
3072 trans->block_rsv = &root->fs_info->global_block_rsv;
3073 return trans;
3074}
3075
3076static void __unlink_end_trans(struct btrfs_trans_handle *trans,
3077 struct btrfs_root *root)
3078{
Miao Xie66d8f3d2012-09-06 04:02:28 -06003079 if (trans->block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL) {
Josef Bacik5a77d762011-11-01 14:32:23 -04003080 btrfs_block_rsv_release(root, trans->block_rsv,
3081 trans->bytes_reserved);
3082 trans->block_rsv = &root->fs_info->trans_block_rsv;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003083 BUG_ON(!root->fs_info->enospc_unlink);
3084 root->fs_info->enospc_unlink = 0;
3085 }
Josef Bacik7ad85bb2012-01-12 19:10:12 -05003086 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003087}
3088
Chris Mason39279cc2007-06-12 06:35:45 -04003089static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
3090{
Yan, Zhenga22285a2010-05-16 10:48:46 -04003091 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003092 struct btrfs_trans_handle *trans;
Josef Bacik7b128762008-07-24 12:17:14 -04003093 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04003094 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05003095 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003096
Yan, Zhenga22285a2010-05-16 10:48:46 -04003097 trans = __unlink_start_trans(dir, dentry);
3098 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003099 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04003100
Chris Mason12fcfd22009-03-24 10:24:20 -04003101 btrfs_record_unlink_dir(trans, dir, dentry->d_inode, 0);
3102
Chris Masone02119d2008-09-05 16:13:11 -04003103 ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
3104 dentry->d_name.name, dentry->d_name.len);
Tsutomu Itohb5324022011-07-19 07:27:20 +00003105 if (ret)
3106 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003107
Yan, Zhenga22285a2010-05-16 10:48:46 -04003108 if (inode->i_nlink == 0) {
Josef Bacik7b128762008-07-24 12:17:14 -04003109 ret = btrfs_orphan_add(trans, inode);
Tsutomu Itohb5324022011-07-19 07:27:20 +00003110 if (ret)
3111 goto out;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003112 }
Josef Bacik7b128762008-07-24 12:17:14 -04003113
Tsutomu Itohb5324022011-07-19 07:27:20 +00003114out:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003115 nr = trans->blocks_used;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003116 __unlink_end_trans(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003117 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003118 return ret;
3119}
3120
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003121int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
3122 struct btrfs_root *root,
3123 struct inode *dir, u64 objectid,
3124 const char *name, int name_len)
3125{
3126 struct btrfs_path *path;
3127 struct extent_buffer *leaf;
3128 struct btrfs_dir_item *di;
3129 struct btrfs_key key;
3130 u64 index;
3131 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08003132 u64 dir_ino = btrfs_ino(dir);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003133
3134 path = btrfs_alloc_path();
3135 if (!path)
3136 return -ENOMEM;
3137
Li Zefan33345d012011-04-20 10:31:50 +08003138 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003139 name, name_len, -1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003140 if (IS_ERR_OR_NULL(di)) {
3141 if (!di)
3142 ret = -ENOENT;
3143 else
3144 ret = PTR_ERR(di);
3145 goto out;
3146 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003147
3148 leaf = path->nodes[0];
3149 btrfs_dir_item_key_to_cpu(leaf, di, &key);
3150 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
3151 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003152 if (ret) {
3153 btrfs_abort_transaction(trans, root, ret);
3154 goto out;
3155 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003156 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003157
3158 ret = btrfs_del_root_ref(trans, root->fs_info->tree_root,
3159 objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08003160 dir_ino, &index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003161 if (ret < 0) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003162 if (ret != -ENOENT) {
3163 btrfs_abort_transaction(trans, root, ret);
3164 goto out;
3165 }
Li Zefan33345d012011-04-20 10:31:50 +08003166 di = btrfs_search_dir_index_item(root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003167 name, name_len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003168 if (IS_ERR_OR_NULL(di)) {
3169 if (!di)
3170 ret = -ENOENT;
3171 else
3172 ret = PTR_ERR(di);
3173 btrfs_abort_transaction(trans, root, ret);
3174 goto out;
3175 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003176
3177 leaf = path->nodes[0];
3178 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02003179 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003180 index = key.offset;
3181 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003182 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003183
Miao Xie16cdcec2011-04-22 18:12:22 +08003184 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003185 if (ret) {
3186 btrfs_abort_transaction(trans, root, ret);
3187 goto out;
3188 }
Miao Xie16cdcec2011-04-22 18:12:22 +08003189
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003190 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04003191 inode_inc_iversion(dir);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003192 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
Josef Bacik5a24e842012-08-08 10:12:59 -06003193 ret = btrfs_update_inode_fallback(trans, root, dir);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003194 if (ret)
3195 btrfs_abort_transaction(trans, root, ret);
3196out:
Josef Bacik71d7aed2011-06-14 14:24:32 -04003197 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003198 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003199}
3200
Chris Mason39279cc2007-06-12 06:35:45 -04003201static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
3202{
3203 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05003204 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003205 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003206 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -05003207 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003208
David Sterbab3ae2442012-09-13 16:04:34 -06003209 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Yan134d4512007-10-25 15:49:25 -04003210 return -ENOTEMPTY;
David Sterbab3ae2442012-09-13 16:04:34 -06003211 if (btrfs_ino(inode) == BTRFS_FIRST_FREE_OBJECTID)
3212 return -EPERM;
Yan134d4512007-10-25 15:49:25 -04003213
Yan, Zhenga22285a2010-05-16 10:48:46 -04003214 trans = __unlink_start_trans(dir, dentry);
3215 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003216 return PTR_ERR(trans);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003217
Li Zefan33345d012011-04-20 10:31:50 +08003218 if (unlikely(btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003219 err = btrfs_unlink_subvol(trans, root, dir,
3220 BTRFS_I(inode)->location.objectid,
3221 dentry->d_name.name,
3222 dentry->d_name.len);
3223 goto out;
3224 }
3225
Josef Bacik7b128762008-07-24 12:17:14 -04003226 err = btrfs_orphan_add(trans, inode);
3227 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003228 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003229
Chris Mason39279cc2007-06-12 06:35:45 -04003230 /* now the directory is empty */
Chris Masone02119d2008-09-05 16:13:11 -04003231 err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
3232 dentry->d_name.name, dentry->d_name.len);
Chris Masond3977122009-01-05 21:25:51 -05003233 if (!err)
Chris Masondbe674a2008-07-17 12:54:05 -04003234 btrfs_i_size_write(inode, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003235out:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003236 nr = trans->blocks_used;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003237 __unlink_end_trans(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003238 btrfs_btree_balance_dirty(root, nr);
Chris Mason39544012007-12-12 14:38:19 -05003239
Chris Mason39279cc2007-06-12 06:35:45 -04003240 return err;
3241}
3242
Chris Mason323ac952008-10-01 19:05:46 -04003243/*
Chris Mason39279cc2007-06-12 06:35:45 -04003244 * this can truncate away extent items, csum items and directory items.
3245 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04003246 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04003247 *
3248 * csum items that cross the new i_size are truncated to the new size
3249 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04003250 *
3251 * min_type is the minimum key type to truncate down to. If set to 0, this
3252 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04003253 */
Yan, Zheng80825102009-11-12 09:35:36 +00003254int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
3255 struct btrfs_root *root,
3256 struct inode *inode,
3257 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003258{
Chris Mason39279cc2007-06-12 06:35:45 -04003259 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003260 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003261 struct btrfs_file_extent_item *fi;
Yan, Zheng80825102009-11-12 09:35:36 +00003262 struct btrfs_key key;
3263 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04003264 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04003265 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003266 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003267 u64 item_end = 0;
Yan, Zheng80825102009-11-12 09:35:36 +00003268 u64 mask = root->sectorsize - 1;
3269 u32 found_type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -04003270 int found_extent;
3271 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05003272 int pending_del_nr = 0;
3273 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04003274 int extent_type = -1;
Yan, Zheng80825102009-11-12 09:35:36 +00003275 int ret;
3276 int err = 0;
Li Zefan33345d012011-04-20 10:31:50 +08003277 u64 ino = btrfs_ino(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003278
3279 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04003280
Mark Fasheh0eb0e192011-07-12 16:44:10 -07003281 path = btrfs_alloc_path();
3282 if (!path)
3283 return -ENOMEM;
3284 path->reada = -1;
3285
Josef Bacik5dc562c2012-08-17 13:14:17 -04003286 /*
3287 * We want to drop from the next block forward in case this new size is
3288 * not block aligned since we will be keeping the last block of the
3289 * extent just the way it is.
3290 */
Josef Bacik0af3d002010-06-21 14:48:16 -04003291 if (root->ref_cows || root == root->fs_info->tree_root)
Josef Bacik5dc562c2012-08-17 13:14:17 -04003292 btrfs_drop_extent_cache(inode, (new_size + mask) & (~mask), (u64)-1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003293
Miao Xie16cdcec2011-04-22 18:12:22 +08003294 /*
3295 * This function is also used to drop the items in the log tree before
3296 * we relog the inode, so if root != BTRFS_I(inode)->root, it means
3297 * it is used to drop the loged items. So we shouldn't kill the delayed
3298 * items.
3299 */
3300 if (min_type == 0 && root == BTRFS_I(inode)->root)
3301 btrfs_kill_delayed_inode_items(inode);
3302
Li Zefan33345d012011-04-20 10:31:50 +08003303 key.objectid = ino;
Chris Mason39279cc2007-06-12 06:35:45 -04003304 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04003305 key.type = (u8)-1;
3306
Chris Mason85e21ba2008-01-29 15:11:36 -05003307search_again:
Chris Masonb9473432009-03-13 11:00:37 -04003308 path->leave_spinning = 1;
Chris Mason85e21ba2008-01-29 15:11:36 -05003309 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Yan, Zheng80825102009-11-12 09:35:36 +00003310 if (ret < 0) {
3311 err = ret;
3312 goto out;
3313 }
Chris Masond3977122009-01-05 21:25:51 -05003314
Chris Mason85e21ba2008-01-29 15:11:36 -05003315 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003316 /* there are no items in the tree for us to truncate, we're
3317 * done
3318 */
Yan, Zheng80825102009-11-12 09:35:36 +00003319 if (path->slots[0] == 0)
3320 goto out;
Chris Mason85e21ba2008-01-29 15:11:36 -05003321 path->slots[0]--;
3322 }
3323
Chris Masond3977122009-01-05 21:25:51 -05003324 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04003325 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04003326 leaf = path->nodes[0];
3327 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3328 found_type = btrfs_key_type(&found_key);
Chris Mason39279cc2007-06-12 06:35:45 -04003329
Li Zefan33345d012011-04-20 10:31:50 +08003330 if (found_key.objectid != ino)
Chris Mason39279cc2007-06-12 06:35:45 -04003331 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003332
Chris Mason85e21ba2008-01-29 15:11:36 -05003333 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003334 break;
3335
Chris Mason5f39d392007-10-15 16:14:19 -04003336 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04003337 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04003338 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04003339 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04003340 extent_type = btrfs_file_extent_type(leaf, fi);
3341 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04003342 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04003343 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04003344 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04003345 item_end += btrfs_file_extent_inline_len(leaf,
Chris Masonc8b97812008-10-29 14:49:59 -04003346 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003347 }
Yan008630c2007-11-07 13:31:09 -05003348 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04003349 }
Yan, Zheng80825102009-11-12 09:35:36 +00003350 if (found_type > min_type) {
Chris Mason39279cc2007-06-12 06:35:45 -04003351 del_item = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00003352 } else {
3353 if (item_end < new_size)
3354 break;
3355 if (found_key.offset >= new_size)
3356 del_item = 1;
3357 else
3358 del_item = 0;
3359 }
Chris Mason39279cc2007-06-12 06:35:45 -04003360 found_extent = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003361 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04003362 if (found_type != BTRFS_EXTENT_DATA_KEY)
3363 goto delete;
3364
3365 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04003366 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04003367 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Miao Xief70a9a6b2012-01-12 19:10:12 -05003368 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -04003369 u64 orig_num_bytes =
3370 btrfs_file_extent_num_bytes(leaf, fi);
Chris Masone02119d2008-09-05 16:13:11 -04003371 extent_num_bytes = new_size -
Chris Mason5f39d392007-10-15 16:14:19 -04003372 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -05003373 extent_num_bytes = extent_num_bytes &
3374 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04003375 btrfs_set_file_extent_num_bytes(leaf, fi,
3376 extent_num_bytes);
3377 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05003378 extent_num_bytes);
Chris Masone02119d2008-09-05 16:13:11 -04003379 if (root->ref_cows && extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003380 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04003381 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003382 } else {
Chris Masondb945352007-10-15 16:15:53 -04003383 extent_num_bytes =
3384 btrfs_file_extent_disk_num_bytes(leaf,
3385 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003386 extent_offset = found_key.offset -
3387 btrfs_file_extent_offset(leaf, fi);
3388
Chris Mason39279cc2007-06-12 06:35:45 -04003389 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05003390 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003391 if (extent_start != 0) {
3392 found_extent = 1;
Chris Masone02119d2008-09-05 16:13:11 -04003393 if (root->ref_cows)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003394 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04003395 }
3396 }
Chris Mason90692182008-02-08 13:49:28 -05003397 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003398 /*
3399 * we can't truncate inline items that have had
3400 * special encodings
3401 */
3402 if (!del_item &&
3403 btrfs_file_extent_compression(leaf, fi) == 0 &&
3404 btrfs_file_extent_encryption(leaf, fi) == 0 &&
3405 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003406 u32 size = new_size - found_key.offset;
3407
3408 if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003409 inode_sub_bytes(inode, item_end + 1 -
3410 new_size);
Chris Masone02119d2008-09-05 16:13:11 -04003411 }
3412 size =
3413 btrfs_file_extent_calc_inline_size(size);
Jeff Mahoney143bede2012-03-01 14:56:26 +01003414 btrfs_truncate_item(trans, root, path,
3415 size, 1);
Chris Masone02119d2008-09-05 16:13:11 -04003416 } else if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003417 inode_sub_bytes(inode, item_end + 1 -
3418 found_key.offset);
Chris Mason90692182008-02-08 13:49:28 -05003419 }
Chris Mason39279cc2007-06-12 06:35:45 -04003420 }
Chris Mason179e29e2007-11-01 11:28:41 -04003421delete:
Chris Mason39279cc2007-06-12 06:35:45 -04003422 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05003423 if (!pending_del_nr) {
3424 /* no pending yet, add ourselves */
3425 pending_del_slot = path->slots[0];
3426 pending_del_nr = 1;
3427 } else if (pending_del_nr &&
3428 path->slots[0] + 1 == pending_del_slot) {
3429 /* hop on the pending chunk */
3430 pending_del_nr++;
3431 pending_del_slot = path->slots[0];
3432 } else {
Chris Masond3977122009-01-05 21:25:51 -05003433 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05003434 }
Chris Mason39279cc2007-06-12 06:35:45 -04003435 } else {
3436 break;
3437 }
Josef Bacik0af3d002010-06-21 14:48:16 -04003438 if (found_extent && (root->ref_cows ||
3439 root == root->fs_info->tree_root)) {
Chris Masonb9473432009-03-13 11:00:37 -04003440 btrfs_set_path_blocking(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003441 ret = btrfs_free_extent(trans, root, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003442 extent_num_bytes, 0,
3443 btrfs_header_owner(leaf),
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003444 ino, extent_offset, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04003445 BUG_ON(ret);
3446 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003447
Yan, Zheng80825102009-11-12 09:35:36 +00003448 if (found_type == BTRFS_INODE_ITEM_KEY)
3449 break;
3450
3451 if (path->slots[0] == 0 ||
3452 path->slots[0] != pending_del_slot) {
Yan, Zheng80825102009-11-12 09:35:36 +00003453 if (pending_del_nr) {
3454 ret = btrfs_del_items(trans, root, path,
3455 pending_del_slot,
3456 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003457 if (ret) {
3458 btrfs_abort_transaction(trans,
3459 root, ret);
3460 goto error;
3461 }
Yan, Zheng80825102009-11-12 09:35:36 +00003462 pending_del_nr = 0;
3463 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003464 btrfs_release_path(path);
Chris Mason85e21ba2008-01-29 15:11:36 -05003465 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00003466 } else {
3467 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05003468 }
Chris Mason39279cc2007-06-12 06:35:45 -04003469 }
Yan, Zheng80825102009-11-12 09:35:36 +00003470out:
Chris Mason85e21ba2008-01-29 15:11:36 -05003471 if (pending_del_nr) {
3472 ret = btrfs_del_items(trans, root, path, pending_del_slot,
3473 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003474 if (ret)
3475 btrfs_abort_transaction(trans, root, ret);
Chris Mason85e21ba2008-01-29 15:11:36 -05003476 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003477error:
Chris Mason39279cc2007-06-12 06:35:45 -04003478 btrfs_free_path(path);
Yan, Zheng80825102009-11-12 09:35:36 +00003479 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003480}
3481
Chris Masona52d9a82007-08-27 16:49:44 -04003482/*
Josef Bacik2aaa6652012-08-29 14:27:18 -04003483 * btrfs_truncate_page - read, zero a chunk and write a page
3484 * @inode - inode that we're zeroing
3485 * @from - the offset to start zeroing
3486 * @len - the length to zero, 0 to zero the entire range respective to the
3487 * offset
3488 * @front - zero up to the offset instead of from the offset on
3489 *
3490 * This will find the page for the "from" offset and cow the page and zero the
3491 * part we want to zero. This is used with truncate and hole punching.
Chris Masona52d9a82007-08-27 16:49:44 -04003492 */
Josef Bacik2aaa6652012-08-29 14:27:18 -04003493int btrfs_truncate_page(struct inode *inode, loff_t from, loff_t len,
3494 int front)
Chris Masona52d9a82007-08-27 16:49:44 -04003495{
Josef Bacik2aaa6652012-08-29 14:27:18 -04003496 struct address_space *mapping = inode->i_mapping;
Chris Masondb945352007-10-15 16:15:53 -04003497 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003498 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
3499 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003500 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003501 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04003502 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04003503 pgoff_t index = from >> PAGE_CACHE_SHIFT;
3504 unsigned offset = from & (PAGE_CACHE_SIZE-1);
3505 struct page *page;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04003506 gfp_t mask = btrfs_alloc_write_mask(mapping);
Chris Masona52d9a82007-08-27 16:49:44 -04003507 int ret = 0;
3508 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003509 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04003510
Josef Bacik2aaa6652012-08-29 14:27:18 -04003511 if ((offset & (blocksize - 1)) == 0 &&
3512 (!len || ((len & (blocksize - 1)) == 0)))
Chris Masona52d9a82007-08-27 16:49:44 -04003513 goto out;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003514 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003515 if (ret)
3516 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003517
3518 ret = -ENOMEM;
Chris Mason211c17f2008-05-15 09:13:45 -04003519again:
Josef Bacik3b16a4e2011-09-21 15:05:58 -04003520 page = find_or_create_page(mapping, index, mask);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003521 if (!page) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003522 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Masona52d9a82007-08-27 16:49:44 -04003523 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04003524 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003525
3526 page_start = page_offset(page);
3527 page_end = page_start + PAGE_CACHE_SIZE - 1;
3528
Chris Masona52d9a82007-08-27 16:49:44 -04003529 if (!PageUptodate(page)) {
3530 ret = btrfs_readpage(NULL, page);
3531 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04003532 if (page->mapping != mapping) {
3533 unlock_page(page);
3534 page_cache_release(page);
3535 goto again;
3536 }
Chris Masona52d9a82007-08-27 16:49:44 -04003537 if (!PageUptodate(page)) {
3538 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04003539 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04003540 }
3541 }
Chris Mason211c17f2008-05-15 09:13:45 -04003542 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003543
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003544 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003545 set_page_extent_mapped(page);
3546
3547 ordered = btrfs_lookup_ordered_extent(inode, page_start);
3548 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003549 unlock_extent_cached(io_tree, page_start, page_end,
3550 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003551 unlock_page(page);
3552 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04003553 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003554 btrfs_put_ordered_extent(ordered);
3555 goto again;
3556 }
3557
Josef Bacik2ac55d42010-02-03 19:33:23 +00003558 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Liu Bo9e8a4a82012-09-05 19:10:51 -06003559 EXTENT_DIRTY | EXTENT_DELALLOC |
3560 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003561 0, 0, &cached_state, GFP_NOFS);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003562
Josef Bacik2ac55d42010-02-03 19:33:23 +00003563 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
3564 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003565 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003566 unlock_extent_cached(io_tree, page_start, page_end,
3567 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003568 goto out_unlock;
3569 }
3570
Chris Masone6dcd2d2008-07-17 12:53:50 -04003571 ret = 0;
3572 if (offset != PAGE_CACHE_SIZE) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04003573 if (!len)
3574 len = PAGE_CACHE_SIZE - offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003575 kaddr = kmap(page);
Josef Bacik2aaa6652012-08-29 14:27:18 -04003576 if (front)
3577 memset(kaddr, 0, offset);
3578 else
3579 memset(kaddr + offset, 0, len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003580 flush_dcache_page(page);
3581 kunmap(page);
3582 }
Chris Mason247e7432008-07-17 12:53:51 -04003583 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003584 set_page_dirty(page);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003585 unlock_extent_cached(io_tree, page_start, page_end, &cached_state,
3586 GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04003587
Chris Mason89642222008-07-24 09:41:53 -04003588out_unlock:
Josef Bacik5d5e1032009-10-13 16:46:49 -04003589 if (ret)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003590 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason39279cc2007-06-12 06:35:45 -04003591 unlock_page(page);
3592 page_cache_release(page);
3593out:
3594 return ret;
3595}
3596
Josef Bacik695a0d02011-03-04 15:46:53 -05003597/*
3598 * This function puts in dummy file extents for the area we're creating a hole
3599 * for. So if we are truncating this file to a larger size we need to insert
3600 * these file extents so that btrfs_get_extent will return a EXTENT_MAP_HOLE for
3601 * the range between oldsize and size
3602 */
Josef Bacika41ad392011-01-31 15:30:16 -05003603int btrfs_cont_expand(struct inode *inode, loff_t oldsize, loff_t size)
Yan Zheng9036c102008-10-30 14:19:41 -04003604{
3605 struct btrfs_trans_handle *trans;
3606 struct btrfs_root *root = BTRFS_I(inode)->root;
3607 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003608 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003609 struct extent_state *cached_state = NULL;
Josef Bacik5dc562c2012-08-17 13:14:17 -04003610 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Yan Zheng9036c102008-10-30 14:19:41 -04003611 u64 mask = root->sectorsize - 1;
Josef Bacika41ad392011-01-31 15:30:16 -05003612 u64 hole_start = (oldsize + mask) & ~mask;
Yan Zheng9036c102008-10-30 14:19:41 -04003613 u64 block_end = (size + mask) & ~mask;
3614 u64 last_byte;
3615 u64 cur_offset;
3616 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003617 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003618
3619 if (size <= hole_start)
3620 return 0;
3621
Yan Zheng9036c102008-10-30 14:19:41 -04003622 while (1) {
3623 struct btrfs_ordered_extent *ordered;
3624 btrfs_wait_ordered_range(inode, hole_start,
3625 block_end - hole_start);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003626 lock_extent_bits(io_tree, hole_start, block_end - 1, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003627 &cached_state);
Yan Zheng9036c102008-10-30 14:19:41 -04003628 ordered = btrfs_lookup_ordered_extent(inode, hole_start);
3629 if (!ordered)
3630 break;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003631 unlock_extent_cached(io_tree, hole_start, block_end - 1,
3632 &cached_state, GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003633 btrfs_put_ordered_extent(ordered);
3634 }
3635
Yan Zheng9036c102008-10-30 14:19:41 -04003636 cur_offset = hole_start;
3637 while (1) {
3638 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
3639 block_end - cur_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003640 if (IS_ERR(em)) {
3641 err = PTR_ERR(em);
3642 break;
3643 }
Yan Zheng9036c102008-10-30 14:19:41 -04003644 last_byte = min(extent_map_end(em), block_end);
3645 last_byte = (last_byte + mask) & ~mask;
Yan, Zheng80825102009-11-12 09:35:36 +00003646 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Josef Bacik5dc562c2012-08-17 13:14:17 -04003647 struct extent_map *hole_em;
Yan Zheng9036c102008-10-30 14:19:41 -04003648 hole_size = last_byte - cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00003649
Miao Xie36423202011-12-14 20:12:02 -05003650 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003651 if (IS_ERR(trans)) {
3652 err = PTR_ERR(trans);
Chris Mason771ed682008-11-06 22:02:51 -05003653 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003654 }
Yan, Zheng80825102009-11-12 09:35:36 +00003655
Josef Bacik5dc562c2012-08-17 13:14:17 -04003656 err = btrfs_drop_extents(trans, root, inode,
3657 cur_offset,
Josef Bacik26714852012-08-29 12:24:27 -04003658 cur_offset + hole_size, 1);
Miao Xie5b397372011-09-11 10:52:24 -04003659 if (err) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003660 btrfs_abort_transaction(trans, root, err);
Miao Xie5b397372011-09-11 10:52:24 -04003661 btrfs_end_transaction(trans, root);
Josef Bacik3893e332011-01-31 16:03:11 -05003662 break;
Miao Xie5b397372011-09-11 10:52:24 -04003663 }
Josef Bacik9ed74f22009-09-11 16:12:44 -04003664
Yan Zheng9036c102008-10-30 14:19:41 -04003665 err = btrfs_insert_file_extent(trans, root,
Li Zefan33345d012011-04-20 10:31:50 +08003666 btrfs_ino(inode), cur_offset, 0,
Yan Zheng9036c102008-10-30 14:19:41 -04003667 0, hole_size, 0, hole_size,
3668 0, 0, 0);
Miao Xie5b397372011-09-11 10:52:24 -04003669 if (err) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003670 btrfs_abort_transaction(trans, root, err);
Miao Xie5b397372011-09-11 10:52:24 -04003671 btrfs_end_transaction(trans, root);
Josef Bacik3893e332011-01-31 16:03:11 -05003672 break;
Miao Xie5b397372011-09-11 10:52:24 -04003673 }
Yan, Zheng80825102009-11-12 09:35:36 +00003674
Josef Bacik5dc562c2012-08-17 13:14:17 -04003675 btrfs_drop_extent_cache(inode, cur_offset,
3676 cur_offset + hole_size - 1, 0);
3677 hole_em = alloc_extent_map();
3678 if (!hole_em) {
3679 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3680 &BTRFS_I(inode)->runtime_flags);
3681 goto next;
3682 }
3683 hole_em->start = cur_offset;
3684 hole_em->len = hole_size;
3685 hole_em->orig_start = cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00003686
Josef Bacik5dc562c2012-08-17 13:14:17 -04003687 hole_em->block_start = EXTENT_MAP_HOLE;
3688 hole_em->block_len = 0;
3689 hole_em->bdev = root->fs_info->fs_devices->latest_bdev;
3690 hole_em->compress_type = BTRFS_COMPRESS_NONE;
3691 hole_em->generation = trans->transid;
3692
3693 while (1) {
3694 write_lock(&em_tree->lock);
3695 err = add_extent_mapping(em_tree, hole_em);
3696 if (!err)
3697 list_move(&hole_em->list,
3698 &em_tree->modified_extents);
3699 write_unlock(&em_tree->lock);
3700 if (err != -EEXIST)
3701 break;
3702 btrfs_drop_extent_cache(inode, cur_offset,
3703 cur_offset +
3704 hole_size - 1, 0);
3705 }
3706 free_extent_map(hole_em);
3707next:
Miao Xie36423202011-12-14 20:12:02 -05003708 btrfs_update_inode(trans, root, inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003709 btrfs_end_transaction(trans, root);
Yan Zheng9036c102008-10-30 14:19:41 -04003710 }
3711 free_extent_map(em);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003712 em = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04003713 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00003714 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04003715 break;
3716 }
3717
Yan, Zhenga22285a2010-05-16 10:48:46 -04003718 free_extent_map(em);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003719 unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state,
3720 GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003721 return err;
3722}
3723
Josef Bacika41ad392011-01-31 15:30:16 -05003724static int btrfs_setsize(struct inode *inode, loff_t newsize)
Yan, Zheng80825102009-11-12 09:35:36 +00003725{
Miao Xief4a2f4c2011-12-14 20:12:01 -05003726 struct btrfs_root *root = BTRFS_I(inode)->root;
3727 struct btrfs_trans_handle *trans;
Josef Bacika41ad392011-01-31 15:30:16 -05003728 loff_t oldsize = i_size_read(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003729 int ret;
3730
Josef Bacika41ad392011-01-31 15:30:16 -05003731 if (newsize == oldsize)
Yan, Zheng80825102009-11-12 09:35:36 +00003732 return 0;
3733
Josef Bacika41ad392011-01-31 15:30:16 -05003734 if (newsize > oldsize) {
Josef Bacika41ad392011-01-31 15:30:16 -05003735 truncate_pagecache(inode, oldsize, newsize);
3736 ret = btrfs_cont_expand(inode, oldsize, newsize);
Miao Xief4a2f4c2011-12-14 20:12:01 -05003737 if (ret)
Yan, Zheng80825102009-11-12 09:35:36 +00003738 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00003739
Miao Xief4a2f4c2011-12-14 20:12:01 -05003740 trans = btrfs_start_transaction(root, 1);
3741 if (IS_ERR(trans))
3742 return PTR_ERR(trans);
3743
3744 i_size_write(inode, newsize);
3745 btrfs_ordered_update_i_size(inode, i_size_read(inode), NULL);
3746 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik7ad85bb2012-01-12 19:10:12 -05003747 btrfs_end_transaction(trans, root);
Josef Bacika41ad392011-01-31 15:30:16 -05003748 } else {
Yan, Zheng80825102009-11-12 09:35:36 +00003749
Josef Bacika41ad392011-01-31 15:30:16 -05003750 /*
3751 * We're truncating a file that used to have good data down to
3752 * zero. Make sure it gets into the ordered flush list so that
3753 * any new writes get down to disk quickly.
3754 */
3755 if (newsize == 0)
Josef Bacik72ac3c02012-05-23 14:13:11 -04003756 set_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
3757 &BTRFS_I(inode)->runtime_flags);
Yan, Zheng80825102009-11-12 09:35:36 +00003758
Josef Bacika41ad392011-01-31 15:30:16 -05003759 /* we don't support swapfiles, so vmtruncate shouldn't fail */
3760 truncate_setsize(inode, newsize);
3761 ret = btrfs_truncate(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003762 }
3763
Josef Bacika41ad392011-01-31 15:30:16 -05003764 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00003765}
3766
Chris Mason39279cc2007-06-12 06:35:45 -04003767static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
3768{
3769 struct inode *inode = dentry->d_inode;
Li Zefanb83cc962010-12-20 16:04:08 +08003770 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003771 int err;
3772
Li Zefanb83cc962010-12-20 16:04:08 +08003773 if (btrfs_root_readonly(root))
3774 return -EROFS;
3775
Chris Mason39279cc2007-06-12 06:35:45 -04003776 err = inode_change_ok(inode, attr);
3777 if (err)
3778 return err;
3779
Chris Mason5a3f23d2009-03-31 13:27:11 -04003780 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Josef Bacika41ad392011-01-31 15:30:16 -05003781 err = btrfs_setsize(inode, attr->ia_size);
Yan, Zheng80825102009-11-12 09:35:36 +00003782 if (err)
3783 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003784 }
Yan Zheng9036c102008-10-30 14:19:41 -04003785
Christoph Hellwig10257742010-06-04 11:30:02 +02003786 if (attr->ia_valid) {
3787 setattr_copy(inode, attr);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04003788 inode_inc_iversion(inode);
Josef Bacik22c44fe2011-11-30 10:45:38 -05003789 err = btrfs_dirty_inode(inode);
Josef Bacik33268ea2008-07-24 12:16:36 -04003790
Josef Bacik22c44fe2011-11-30 10:45:38 -05003791 if (!err && attr->ia_valid & ATTR_MODE)
Christoph Hellwig10257742010-06-04 11:30:02 +02003792 err = btrfs_acl_chmod(inode);
3793 }
3794
Chris Mason39279cc2007-06-12 06:35:45 -04003795 return err;
3796}
Chris Mason61295eb2008-01-14 16:24:38 -05003797
Al Virobd555972010-06-07 11:35:40 -04003798void btrfs_evict_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003799{
3800 struct btrfs_trans_handle *trans;
3801 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik726c35f2011-09-26 15:46:06 -04003802 struct btrfs_block_rsv *rsv, *global_rsv;
Josef Bacik07127182011-08-19 10:29:59 -04003803 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003804 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04003805 int ret;
3806
liubo1abe9b82011-03-24 11:18:59 +00003807 trace_btrfs_inode_evict(inode);
3808
Chris Mason39279cc2007-06-12 06:35:45 -04003809 truncate_inode_pages(&inode->i_data, 0);
Josef Bacik0af3d002010-06-21 14:48:16 -04003810 if (inode->i_nlink && (btrfs_root_refs(&root->root_item) != 0 ||
Liu Bo83eea1f2012-07-10 05:28:39 -06003811 btrfs_is_free_space_inode(inode)))
Al Virobd555972010-06-07 11:35:40 -04003812 goto no_delete;
3813
Chris Mason39279cc2007-06-12 06:35:45 -04003814 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04003815 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003816 goto no_delete;
3817 }
Al Virobd555972010-06-07 11:35:40 -04003818 /* do we really want it for ->i_nlink > 0 and zero btrfs_root_refs? */
Chris Mason4a096752008-07-21 10:29:44 -04003819 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04003820
Yan, Zhengc71bf092009-11-12 09:34:40 +00003821 if (root->fs_info->log_root_recovering) {
Liu Bo6bf02312012-06-25 21:59:09 -06003822 BUG_ON(test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
Josef Bacik8a35d952012-05-23 14:26:42 -04003823 &BTRFS_I(inode)->runtime_flags));
Yan, Zhengc71bf092009-11-12 09:34:40 +00003824 goto no_delete;
3825 }
3826
Yan, Zheng76dda932009-09-21 16:00:26 -04003827 if (inode->i_nlink > 0) {
3828 BUG_ON(btrfs_root_refs(&root->root_item) != 0);
3829 goto no_delete;
3830 }
3831
Miao Xie66d8f3d2012-09-06 04:02:28 -06003832 rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP);
Josef Bacik4289a662011-08-05 13:22:24 -04003833 if (!rsv) {
3834 btrfs_orphan_del(NULL, inode);
3835 goto no_delete;
3836 }
Josef Bacik4a338542011-08-29 11:01:31 -04003837 rsv->size = min_size;
Josef Bacikca7e70f2012-08-27 17:48:15 -04003838 rsv->failfast = 1;
Josef Bacik726c35f2011-09-26 15:46:06 -04003839 global_rsv = &root->fs_info->global_block_rsv;
Josef Bacik4289a662011-08-05 13:22:24 -04003840
Chris Masondbe674a2008-07-17 12:54:05 -04003841 btrfs_i_size_write(inode, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003842
Josef Bacik4289a662011-08-05 13:22:24 -04003843 /*
Miao Xie8407aa42012-09-07 01:43:32 -06003844 * This is a bit simpler than btrfs_truncate since we've already
3845 * reserved our space for our orphan item in the unlink, so we just
3846 * need to reserve some slack space in case we add bytes and update
3847 * inode item when doing the truncate.
Josef Bacik4289a662011-08-05 13:22:24 -04003848 */
Yan, Zheng80825102009-11-12 09:35:36 +00003849 while (1) {
Miao Xie08e007d2012-10-16 11:33:38 +00003850 ret = btrfs_block_rsv_refill(root, rsv, min_size,
3851 BTRFS_RESERVE_FLUSH_LIMIT);
Yan, Zheng80825102009-11-12 09:35:36 +00003852
Josef Bacik726c35f2011-09-26 15:46:06 -04003853 /*
3854 * Try and steal from the global reserve since we will
3855 * likely not use this space anyway, we want to try as
3856 * hard as possible to get this to work.
3857 */
3858 if (ret)
3859 ret = btrfs_block_rsv_migrate(global_rsv, rsv, min_size);
3860
Yan, Zhengd68fc572010-05-16 10:49:58 -04003861 if (ret) {
Josef Bacik4289a662011-08-05 13:22:24 -04003862 printk(KERN_WARNING "Could not get space for a "
Josef Bacik482e6dc2011-08-19 10:31:56 -04003863 "delete, will truncate on mount %d\n", ret);
Josef Bacik4289a662011-08-05 13:22:24 -04003864 btrfs_orphan_del(NULL, inode);
3865 btrfs_free_block_rsv(root, rsv);
3866 goto no_delete;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003867 }
3868
Miao Xie08e007d2012-10-16 11:33:38 +00003869 trans = btrfs_start_transaction_lflush(root, 1);
Josef Bacik4289a662011-08-05 13:22:24 -04003870 if (IS_ERR(trans)) {
3871 btrfs_orphan_del(NULL, inode);
3872 btrfs_free_block_rsv(root, rsv);
3873 goto no_delete;
3874 }
3875
3876 trans->block_rsv = rsv;
3877
Yan, Zhengd68fc572010-05-16 10:49:58 -04003878 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
Josef Bacikca7e70f2012-08-27 17:48:15 -04003879 if (ret != -ENOSPC)
Yan, Zheng80825102009-11-12 09:35:36 +00003880 break;
3881
Miao Xie8407aa42012-09-07 01:43:32 -06003882 trans->block_rsv = &root->fs_info->trans_block_rsv;
3883 ret = btrfs_update_inode(trans, root, inode);
3884 BUG_ON(ret);
3885
Yan, Zheng80825102009-11-12 09:35:36 +00003886 nr = trans->blocks_used;
3887 btrfs_end_transaction(trans, root);
3888 trans = NULL;
3889 btrfs_btree_balance_dirty(root, nr);
Josef Bacik7b128762008-07-24 12:17:14 -04003890 }
3891
Josef Bacik4289a662011-08-05 13:22:24 -04003892 btrfs_free_block_rsv(root, rsv);
3893
Yan, Zheng80825102009-11-12 09:35:36 +00003894 if (ret == 0) {
Josef Bacik4289a662011-08-05 13:22:24 -04003895 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00003896 ret = btrfs_orphan_del(trans, inode);
3897 BUG_ON(ret);
3898 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003899
Josef Bacik4289a662011-08-05 13:22:24 -04003900 trans->block_rsv = &root->fs_info->trans_block_rsv;
Li Zefan581bb052011-04-20 10:06:11 +08003901 if (!(root == root->fs_info->tree_root ||
3902 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID))
Li Zefan33345d012011-04-20 10:31:50 +08003903 btrfs_return_ino(root, btrfs_ino(inode));
Li Zefan581bb052011-04-20 10:06:11 +08003904
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003905 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04003906 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003907 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003908no_delete:
Jan Karadbd57682012-05-03 14:48:02 +02003909 clear_inode(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003910 return;
Chris Mason39279cc2007-06-12 06:35:45 -04003911}
3912
3913/*
3914 * this returns the key found in the dir entry in the location pointer.
3915 * If no dir entries were found, location->objectid is 0.
3916 */
3917static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
3918 struct btrfs_key *location)
3919{
3920 const char *name = dentry->d_name.name;
3921 int namelen = dentry->d_name.len;
3922 struct btrfs_dir_item *di;
3923 struct btrfs_path *path;
3924 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04003925 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003926
3927 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07003928 if (!path)
3929 return -ENOMEM;
Chris Mason39544012007-12-12 14:38:19 -05003930
Li Zefan33345d012011-04-20 10:31:50 +08003931 di = btrfs_lookup_dir_item(NULL, root, path, btrfs_ino(dir), name,
Chris Mason39279cc2007-06-12 06:35:45 -04003932 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04003933 if (IS_ERR(di))
3934 ret = PTR_ERR(di);
Chris Masond3977122009-01-05 21:25:51 -05003935
David Sterbac7040052011-04-19 18:00:01 +02003936 if (IS_ERR_OR_NULL(di))
Chris Mason39544012007-12-12 14:38:19 -05003937 goto out_err;
Chris Masond3977122009-01-05 21:25:51 -05003938
Chris Mason5f39d392007-10-15 16:14:19 -04003939 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04003940out:
Chris Mason39279cc2007-06-12 06:35:45 -04003941 btrfs_free_path(path);
3942 return ret;
Chris Mason39544012007-12-12 14:38:19 -05003943out_err:
3944 location->objectid = 0;
3945 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04003946}
3947
3948/*
3949 * when we hit a tree root in a directory, the btrfs part of the inode
3950 * needs to be changed to reflect the root directory of the tree root. This
3951 * is kind of like crossing a mount point.
3952 */
3953static int fixup_tree_root_location(struct btrfs_root *root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003954 struct inode *dir,
3955 struct dentry *dentry,
3956 struct btrfs_key *location,
3957 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04003958{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003959 struct btrfs_path *path;
3960 struct btrfs_root *new_root;
3961 struct btrfs_root_ref *ref;
3962 struct extent_buffer *leaf;
3963 int ret;
3964 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003965
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003966 path = btrfs_alloc_path();
3967 if (!path) {
3968 err = -ENOMEM;
3969 goto out;
3970 }
Chris Mason39279cc2007-06-12 06:35:45 -04003971
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003972 err = -ENOENT;
3973 ret = btrfs_find_root_ref(root->fs_info->tree_root, path,
3974 BTRFS_I(dir)->root->root_key.objectid,
3975 location->objectid);
3976 if (ret) {
3977 if (ret < 0)
3978 err = ret;
3979 goto out;
3980 }
Chris Mason39279cc2007-06-12 06:35:45 -04003981
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003982 leaf = path->nodes[0];
3983 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
Li Zefan33345d012011-04-20 10:31:50 +08003984 if (btrfs_root_ref_dirid(leaf, ref) != btrfs_ino(dir) ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003985 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
3986 goto out;
3987
3988 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
3989 (unsigned long)(ref + 1),
3990 dentry->d_name.len);
3991 if (ret)
3992 goto out;
3993
David Sterbab3b4aa72011-04-21 01:20:15 +02003994 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003995
3996 new_root = btrfs_read_fs_root_no_name(root->fs_info, location);
3997 if (IS_ERR(new_root)) {
3998 err = PTR_ERR(new_root);
3999 goto out;
4000 }
4001
4002 if (btrfs_root_refs(&new_root->root_item) == 0) {
4003 err = -ENOENT;
4004 goto out;
4005 }
4006
4007 *sub_root = new_root;
4008 location->objectid = btrfs_root_dirid(&new_root->root_item);
4009 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04004010 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004011 err = 0;
4012out:
4013 btrfs_free_path(path);
4014 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04004015}
4016
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004017static void inode_tree_add(struct inode *inode)
4018{
4019 struct btrfs_root *root = BTRFS_I(inode)->root;
4020 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004021 struct rb_node **p;
4022 struct rb_node *parent;
Li Zefan33345d012011-04-20 10:31:50 +08004023 u64 ino = btrfs_ino(inode);
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004024again:
4025 p = &root->inode_tree.rb_node;
4026 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004027
Al Viro1d3382cb2010-10-23 15:19:20 -04004028 if (inode_unhashed(inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04004029 return;
4030
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004031 spin_lock(&root->inode_lock);
4032 while (*p) {
4033 parent = *p;
4034 entry = rb_entry(parent, struct btrfs_inode, rb_node);
4035
Li Zefan33345d012011-04-20 10:31:50 +08004036 if (ino < btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004037 p = &parent->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08004038 else if (ino > btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004039 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004040 else {
4041 WARN_ON(!(entry->vfs_inode.i_state &
Al Viroa4ffdde2010-06-02 17:38:30 -04004042 (I_WILL_FREE | I_FREEING)));
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004043 rb_erase(parent, &root->inode_tree);
4044 RB_CLEAR_NODE(parent);
4045 spin_unlock(&root->inode_lock);
4046 goto again;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004047 }
4048 }
4049 rb_link_node(&BTRFS_I(inode)->rb_node, parent, p);
4050 rb_insert_color(&BTRFS_I(inode)->rb_node, &root->inode_tree);
4051 spin_unlock(&root->inode_lock);
4052}
4053
4054static void inode_tree_del(struct inode *inode)
4055{
4056 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04004057 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004058
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004059 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004060 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004061 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004062 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04004063 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004064 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004065 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04004066
Josef Bacik0af3d002010-06-21 14:48:16 -04004067 /*
4068 * Free space cache has inodes in the tree root, but the tree root has a
4069 * root_refs of 0, so this could end up dropping the tree root as a
4070 * snapshot, so we need the extra !root->fs_info->tree_root check to
4071 * make sure we don't drop it.
4072 */
4073 if (empty && btrfs_root_refs(&root->root_item) == 0 &&
4074 root != root->fs_info->tree_root) {
Yan, Zheng76dda932009-09-21 16:00:26 -04004075 synchronize_srcu(&root->fs_info->subvol_srcu);
4076 spin_lock(&root->inode_lock);
4077 empty = RB_EMPTY_ROOT(&root->inode_tree);
4078 spin_unlock(&root->inode_lock);
4079 if (empty)
4080 btrfs_add_dead_root(root);
4081 }
4082}
4083
Jeff Mahoney143bede2012-03-01 14:56:26 +01004084void btrfs_invalidate_inodes(struct btrfs_root *root)
Yan, Zheng76dda932009-09-21 16:00:26 -04004085{
4086 struct rb_node *node;
4087 struct rb_node *prev;
4088 struct btrfs_inode *entry;
4089 struct inode *inode;
4090 u64 objectid = 0;
4091
4092 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
4093
4094 spin_lock(&root->inode_lock);
4095again:
4096 node = root->inode_tree.rb_node;
4097 prev = NULL;
4098 while (node) {
4099 prev = node;
4100 entry = rb_entry(node, struct btrfs_inode, rb_node);
4101
Li Zefan33345d012011-04-20 10:31:50 +08004102 if (objectid < btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04004103 node = node->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08004104 else if (objectid > btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04004105 node = node->rb_right;
4106 else
4107 break;
4108 }
4109 if (!node) {
4110 while (prev) {
4111 entry = rb_entry(prev, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08004112 if (objectid <= btrfs_ino(&entry->vfs_inode)) {
Yan, Zheng76dda932009-09-21 16:00:26 -04004113 node = prev;
4114 break;
4115 }
4116 prev = rb_next(prev);
4117 }
4118 }
4119 while (node) {
4120 entry = rb_entry(node, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08004121 objectid = btrfs_ino(&entry->vfs_inode) + 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04004122 inode = igrab(&entry->vfs_inode);
4123 if (inode) {
4124 spin_unlock(&root->inode_lock);
4125 if (atomic_read(&inode->i_count) > 1)
4126 d_prune_aliases(inode);
4127 /*
Al Viro45321ac2010-06-07 13:43:19 -04004128 * btrfs_drop_inode will have it removed from
Yan, Zheng76dda932009-09-21 16:00:26 -04004129 * the inode cache when its usage count
4130 * hits zero.
4131 */
4132 iput(inode);
4133 cond_resched();
4134 spin_lock(&root->inode_lock);
4135 goto again;
4136 }
4137
4138 if (cond_resched_lock(&root->inode_lock))
4139 goto again;
4140
4141 node = rb_next(node);
4142 }
4143 spin_unlock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004144}
4145
Chris Masone02119d2008-09-05 16:13:11 -04004146static int btrfs_init_locked_inode(struct inode *inode, void *p)
4147{
4148 struct btrfs_iget_args *args = p;
4149 inode->i_ino = args->ino;
Chris Masone02119d2008-09-05 16:13:11 -04004150 BTRFS_I(inode)->root = args->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004151 return 0;
4152}
4153
4154static int btrfs_find_actor(struct inode *inode, void *opaque)
4155{
4156 struct btrfs_iget_args *args = opaque;
Li Zefan33345d012011-04-20 10:31:50 +08004157 return args->ino == btrfs_ino(inode) &&
Chris Masond3977122009-01-05 21:25:51 -05004158 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004159}
4160
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004161static struct inode *btrfs_iget_locked(struct super_block *s,
4162 u64 objectid,
4163 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04004164{
4165 struct inode *inode;
4166 struct btrfs_iget_args args;
4167 args.ino = objectid;
4168 args.root = root;
4169
4170 inode = iget5_locked(s, objectid, btrfs_find_actor,
4171 btrfs_init_locked_inode,
4172 (void *)&args);
4173 return inode;
4174}
4175
Balaji Rao1a54ef82008-07-21 02:01:04 +05304176/* Get an inode object given its location and corresponding root.
4177 * Returns in *is_new if the inode was read from disk
4178 */
4179struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
Josef Bacik73f73412009-12-04 17:38:27 +00004180 struct btrfs_root *root, int *new)
Balaji Rao1a54ef82008-07-21 02:01:04 +05304181{
4182 struct inode *inode;
4183
4184 inode = btrfs_iget_locked(s, location->objectid, root);
4185 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004186 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05304187
4188 if (inode->i_state & I_NEW) {
4189 BTRFS_I(inode)->root = root;
4190 memcpy(&BTRFS_I(inode)->location, location, sizeof(*location));
4191 btrfs_read_locked_inode(inode);
Mark Fasheh1748f842011-07-12 11:25:31 -07004192 if (!is_bad_inode(inode)) {
4193 inode_tree_add(inode);
4194 unlock_new_inode(inode);
4195 if (new)
4196 *new = 1;
4197 } else {
Sergei Trofimoviche0b6d652011-09-11 10:52:24 -04004198 unlock_new_inode(inode);
4199 iput(inode);
4200 inode = ERR_PTR(-ESTALE);
Mark Fasheh1748f842011-07-12 11:25:31 -07004201 }
4202 }
4203
Balaji Rao1a54ef82008-07-21 02:01:04 +05304204 return inode;
4205}
4206
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004207static struct inode *new_simple_dir(struct super_block *s,
4208 struct btrfs_key *key,
4209 struct btrfs_root *root)
4210{
4211 struct inode *inode = new_inode(s);
4212
4213 if (!inode)
4214 return ERR_PTR(-ENOMEM);
4215
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004216 BTRFS_I(inode)->root = root;
4217 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
Josef Bacik72ac3c02012-05-23 14:13:11 -04004218 set_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004219
4220 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
Li Zefan848cce02012-02-21 17:04:28 +08004221 inode->i_op = &btrfs_dir_ro_inode_operations;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004222 inode->i_fop = &simple_dir_operations;
4223 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
4224 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
4225
4226 return inode;
4227}
4228
Chris Mason3de45862008-11-17 21:02:50 -05004229struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04004230{
Chris Masond3977122009-01-05 21:25:51 -05004231 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004232 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004233 struct btrfs_root *sub_root = root;
4234 struct btrfs_key location;
Yan, Zheng76dda932009-09-21 16:00:26 -04004235 int index;
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004236 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004237
4238 if (dentry->d_name.len > BTRFS_NAME_LEN)
4239 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04004240
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004241 if (unlikely(d_need_lookup(dentry))) {
4242 memcpy(&location, dentry->d_fsdata, sizeof(struct btrfs_key));
4243 kfree(dentry->d_fsdata);
4244 dentry->d_fsdata = NULL;
Josef Bacika66e7cc2011-09-18 10:34:03 -04004245 /* This thing is hashed, drop it for now */
4246 d_drop(dentry);
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004247 } else {
4248 ret = btrfs_inode_by_name(dir, dentry, &location);
4249 }
Chris Mason5f39d392007-10-15 16:14:19 -04004250
Chris Mason39279cc2007-06-12 06:35:45 -04004251 if (ret < 0)
4252 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04004253
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004254 if (location.objectid == 0)
4255 return NULL;
4256
4257 if (location.type == BTRFS_INODE_ITEM_KEY) {
Josef Bacik73f73412009-12-04 17:38:27 +00004258 inode = btrfs_iget(dir->i_sb, &location, root, NULL);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004259 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004260 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004261
4262 BUG_ON(location.type != BTRFS_ROOT_ITEM_KEY);
4263
Yan, Zheng76dda932009-09-21 16:00:26 -04004264 index = srcu_read_lock(&root->fs_info->subvol_srcu);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004265 ret = fixup_tree_root_location(root, dir, dentry,
4266 &location, &sub_root);
4267 if (ret < 0) {
4268 if (ret != -ENOENT)
4269 inode = ERR_PTR(ret);
4270 else
4271 inode = new_simple_dir(dir->i_sb, &location, sub_root);
4272 } else {
Josef Bacik73f73412009-12-04 17:38:27 +00004273 inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004274 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004275 srcu_read_unlock(&root->fs_info->subvol_srcu, index);
4276
Julia Lawall34d19ba2011-01-24 19:55:19 +00004277 if (!IS_ERR(inode) && root != sub_root) {
Yan, Zhengc71bf092009-11-12 09:34:40 +00004278 down_read(&root->fs_info->cleanup_work_sem);
4279 if (!(inode->i_sb->s_flags & MS_RDONLY))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05004280 ret = btrfs_orphan_cleanup(sub_root);
Yan, Zhengc71bf092009-11-12 09:34:40 +00004281 up_read(&root->fs_info->cleanup_work_sem);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05004282 if (ret)
4283 inode = ERR_PTR(ret);
Yan, Zhengc71bf092009-11-12 09:34:40 +00004284 }
4285
Chris Mason3de45862008-11-17 21:02:50 -05004286 return inode;
4287}
4288
Nick Pigginfe15ce42011-01-07 17:49:23 +11004289static int btrfs_dentry_delete(const struct dentry *dentry)
Yan, Zheng76dda932009-09-21 16:00:26 -04004290{
4291 struct btrfs_root *root;
Li Zefan848cce02012-02-21 17:04:28 +08004292 struct inode *inode = dentry->d_inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04004293
Li Zefan848cce02012-02-21 17:04:28 +08004294 if (!inode && !IS_ROOT(dentry))
4295 inode = dentry->d_parent->d_inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04004296
Li Zefan848cce02012-02-21 17:04:28 +08004297 if (inode) {
4298 root = BTRFS_I(inode)->root;
Yan, Zhengefefb142009-10-09 09:25:16 -04004299 if (btrfs_root_refs(&root->root_item) == 0)
4300 return 1;
Li Zefan848cce02012-02-21 17:04:28 +08004301
4302 if (btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
4303 return 1;
Yan, Zhengefefb142009-10-09 09:25:16 -04004304 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004305 return 0;
4306}
4307
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004308static void btrfs_dentry_release(struct dentry *dentry)
4309{
4310 if (dentry->d_fsdata)
4311 kfree(dentry->d_fsdata);
4312}
4313
Chris Mason3de45862008-11-17 21:02:50 -05004314static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -04004315 unsigned int flags)
Chris Mason3de45862008-11-17 21:02:50 -05004316{
Josef Bacika66e7cc2011-09-18 10:34:03 -04004317 struct dentry *ret;
4318
4319 ret = d_splice_alias(btrfs_lookup_dentry(dir, dentry), dentry);
4320 if (unlikely(d_need_lookup(dentry))) {
4321 spin_lock(&dentry->d_lock);
4322 dentry->d_flags &= ~DCACHE_NEED_LOOKUP;
4323 spin_unlock(&dentry->d_lock);
4324 }
4325 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004326}
4327
Miao Xie16cdcec2011-04-22 18:12:22 +08004328unsigned char btrfs_filetype_table[] = {
Chris Mason39279cc2007-06-12 06:35:45 -04004329 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
4330};
4331
David Woodhousecbdf5a22008-08-06 19:42:33 +01004332static int btrfs_real_readdir(struct file *filp, void *dirent,
4333 filldir_t filldir)
Chris Mason39279cc2007-06-12 06:35:45 -04004334{
Chris Mason6da6aba2007-12-18 16:15:09 -05004335 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004336 struct btrfs_root *root = BTRFS_I(inode)->root;
4337 struct btrfs_item *item;
4338 struct btrfs_dir_item *di;
4339 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04004340 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04004341 struct btrfs_path *path;
Miao Xie16cdcec2011-04-22 18:12:22 +08004342 struct list_head ins_list;
4343 struct list_head del_list;
Chris Mason39279cc2007-06-12 06:35:45 -04004344 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04004345 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04004346 int slot;
Chris Mason39279cc2007-06-12 06:35:45 -04004347 unsigned char d_type;
4348 int over = 0;
4349 u32 di_cur;
4350 u32 di_total;
4351 u32 di_len;
4352 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004353 char tmp_name[32];
4354 char *name_ptr;
4355 int name_len;
Miao Xie16cdcec2011-04-22 18:12:22 +08004356 int is_curr = 0; /* filp->f_pos points to the current index? */
Chris Mason39279cc2007-06-12 06:35:45 -04004357
4358 /* FIXME, use a real flag for deciding about the key type */
4359 if (root->fs_info->tree_root == root)
4360 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004361
Chris Mason39544012007-12-12 14:38:19 -05004362 /* special case for "." */
4363 if (filp->f_pos == 0) {
Hidetoshi Seto3765fef2011-09-18 10:20:46 -04004364 over = filldir(dirent, ".", 1,
4365 filp->f_pos, btrfs_ino(inode), DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05004366 if (over)
4367 return 0;
4368 filp->f_pos = 1;
4369 }
Chris Mason39544012007-12-12 14:38:19 -05004370 /* special case for .., just use the back ref */
4371 if (filp->f_pos == 1) {
David Woodhouse5ecc7e52008-08-17 15:14:48 +01004372 u64 pino = parent_ino(filp->f_path.dentry);
Chris Mason39544012007-12-12 14:38:19 -05004373 over = filldir(dirent, "..", 2,
Hidetoshi Seto3765fef2011-09-18 10:20:46 -04004374 filp->f_pos, pino, DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05004375 if (over)
David Woodhouse49593bf2008-08-17 17:08:36 +01004376 return 0;
Chris Mason39544012007-12-12 14:38:19 -05004377 filp->f_pos = 2;
4378 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004379 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08004380 if (!path)
4381 return -ENOMEM;
Chris Masonff5714c2011-05-28 07:00:39 -04004382
Josef Bacik026fd312011-05-13 10:32:11 -04004383 path->reada = 1;
David Woodhouse49593bf2008-08-17 17:08:36 +01004384
Miao Xie16cdcec2011-04-22 18:12:22 +08004385 if (key_type == BTRFS_DIR_INDEX_KEY) {
4386 INIT_LIST_HEAD(&ins_list);
4387 INIT_LIST_HEAD(&del_list);
4388 btrfs_get_delayed_items(inode, &ins_list, &del_list);
4389 }
4390
Chris Mason39279cc2007-06-12 06:35:45 -04004391 btrfs_set_key_type(&key, key_type);
4392 key.offset = filp->f_pos;
Li Zefan33345d012011-04-20 10:31:50 +08004393 key.objectid = btrfs_ino(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004394
Chris Mason39279cc2007-06-12 06:35:45 -04004395 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4396 if (ret < 0)
4397 goto err;
David Woodhouse49593bf2008-08-17 17:08:36 +01004398
4399 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04004400 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -04004401 slot = path->slots[0];
Li Zefanb9e03af2011-03-23 10:43:58 +08004402 if (slot >= btrfs_header_nritems(leaf)) {
4403 ret = btrfs_next_leaf(root, path);
4404 if (ret < 0)
4405 goto err;
4406 else if (ret > 0)
4407 break;
4408 continue;
Chris Mason39279cc2007-06-12 06:35:45 -04004409 }
Chris Mason3de45862008-11-17 21:02:50 -05004410
Chris Mason5f39d392007-10-15 16:14:19 -04004411 item = btrfs_item_nr(leaf, slot);
4412 btrfs_item_key_to_cpu(leaf, &found_key, slot);
4413
4414 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04004415 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004416 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004417 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004418 if (found_key.offset < filp->f_pos)
Li Zefanb9e03af2011-03-23 10:43:58 +08004419 goto next;
Miao Xie16cdcec2011-04-22 18:12:22 +08004420 if (key_type == BTRFS_DIR_INDEX_KEY &&
4421 btrfs_should_delete_dir_index(&del_list,
4422 found_key.offset))
4423 goto next;
Chris Mason5f39d392007-10-15 16:14:19 -04004424
4425 filp->f_pos = found_key.offset;
Miao Xie16cdcec2011-04-22 18:12:22 +08004426 is_curr = 1;
David Woodhouse49593bf2008-08-17 17:08:36 +01004427
Chris Mason39279cc2007-06-12 06:35:45 -04004428 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
4429 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04004430 di_total = btrfs_item_size(leaf, item);
David Woodhouse49593bf2008-08-17 17:08:36 +01004431
4432 while (di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04004433 struct btrfs_key location;
4434
Josef Bacik22a94d42011-03-16 16:47:17 -04004435 if (verify_dir_item(root, leaf, di))
4436 break;
4437
Chris Mason5f39d392007-10-15 16:14:19 -04004438 name_len = btrfs_dir_name_len(leaf, di);
David Woodhouse49593bf2008-08-17 17:08:36 +01004439 if (name_len <= sizeof(tmp_name)) {
Chris Mason5f39d392007-10-15 16:14:19 -04004440 name_ptr = tmp_name;
4441 } else {
4442 name_ptr = kmalloc(name_len, GFP_NOFS);
David Woodhouse49593bf2008-08-17 17:08:36 +01004443 if (!name_ptr) {
4444 ret = -ENOMEM;
4445 goto err;
4446 }
Chris Mason5f39d392007-10-15 16:14:19 -04004447 }
4448 read_extent_buffer(leaf, name_ptr,
4449 (unsigned long)(di + 1), name_len);
4450
4451 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
4452 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason3de45862008-11-17 21:02:50 -05004453
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004454
Chris Mason3de45862008-11-17 21:02:50 -05004455 /* is this a reference to our own snapshot? If so
Arne Jansen8c9c2bf2012-02-25 09:09:30 +01004456 * skip it.
4457 *
4458 * In contrast to old kernels, we insert the snapshot's
4459 * dir item and dir index after it has been created, so
4460 * we won't find a reference to our own snapshot. We
4461 * still keep the following code for backward
4462 * compatibility.
Chris Mason3de45862008-11-17 21:02:50 -05004463 */
4464 if (location.type == BTRFS_ROOT_ITEM_KEY &&
4465 location.objectid == root->root_key.objectid) {
4466 over = 0;
4467 goto skip;
4468 }
Chris Mason5f39d392007-10-15 16:14:19 -04004469 over = filldir(dirent, name_ptr, name_len,
David Woodhouse49593bf2008-08-17 17:08:36 +01004470 found_key.offset, location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04004471 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04004472
Chris Mason3de45862008-11-17 21:02:50 -05004473skip:
Chris Mason5f39d392007-10-15 16:14:19 -04004474 if (name_ptr != tmp_name)
4475 kfree(name_ptr);
4476
Chris Mason39279cc2007-06-12 06:35:45 -04004477 if (over)
4478 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05004479 di_len = btrfs_dir_name_len(leaf, di) +
David Woodhouse49593bf2008-08-17 17:08:36 +01004480 btrfs_dir_data_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04004481 di_cur += di_len;
4482 di = (struct btrfs_dir_item *)((char *)di + di_len);
4483 }
Li Zefanb9e03af2011-03-23 10:43:58 +08004484next:
4485 path->slots[0]++;
Chris Mason39279cc2007-06-12 06:35:45 -04004486 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004487
Miao Xie16cdcec2011-04-22 18:12:22 +08004488 if (key_type == BTRFS_DIR_INDEX_KEY) {
4489 if (is_curr)
4490 filp->f_pos++;
4491 ret = btrfs_readdir_delayed_dir_index(filp, dirent, filldir,
4492 &ins_list);
4493 if (ret)
4494 goto nopos;
4495 }
4496
David Woodhouse49593bf2008-08-17 17:08:36 +01004497 /* Reached end of directory/root. Bump pos past the last item. */
Yan Zheng5e591a02008-02-19 11:41:02 -05004498 if (key_type == BTRFS_DIR_INDEX_KEY)
Jan Engelhardt406266a2009-12-09 22:00:38 +00004499 /*
4500 * 32-bit glibc will use getdents64, but then strtol -
4501 * so the last number we can serve is this.
4502 */
4503 filp->f_pos = 0x7fffffff;
Yan Zheng5e591a02008-02-19 11:41:02 -05004504 else
4505 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04004506nopos:
4507 ret = 0;
4508err:
Miao Xie16cdcec2011-04-22 18:12:22 +08004509 if (key_type == BTRFS_DIR_INDEX_KEY)
4510 btrfs_put_delayed_items(&ins_list, &del_list);
Chris Mason39279cc2007-06-12 06:35:45 -04004511 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004512 return ret;
4513}
4514
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004515int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc)
Chris Mason39279cc2007-06-12 06:35:45 -04004516{
4517 struct btrfs_root *root = BTRFS_I(inode)->root;
4518 struct btrfs_trans_handle *trans;
4519 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04004520 bool nolock = false;
Chris Mason39279cc2007-06-12 06:35:45 -04004521
Josef Bacik72ac3c02012-05-23 14:13:11 -04004522 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Chris Mason4ca8b412008-08-05 13:30:48 -04004523 return 0;
4524
Liu Bo83eea1f2012-07-10 05:28:39 -06004525 if (btrfs_fs_closing(root->fs_info) && btrfs_is_free_space_inode(inode))
Li Zefan82d59022011-04-20 10:33:24 +08004526 nolock = true;
Josef Bacik0af3d002010-06-21 14:48:16 -04004527
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004528 if (wbc->sync_mode == WB_SYNC_ALL) {
Josef Bacik0af3d002010-06-21 14:48:16 -04004529 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004530 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0af3d002010-06-21 14:48:16 -04004531 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004532 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00004533 if (IS_ERR(trans))
4534 return PTR_ERR(trans);
Miao Xiea698d0752012-09-20 01:51:59 -06004535 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004536 }
4537 return ret;
4538}
4539
4540/*
Chris Mason54aa1f42007-06-22 14:16:25 -04004541 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04004542 * inode changes. But, it is most likely to find the inode in cache.
4543 * FIXME, needs more benchmarking...there are no reasons other than performance
4544 * to keep or drop this code.
4545 */
Josef Bacik22c44fe2011-11-30 10:45:38 -05004546int btrfs_dirty_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04004547{
4548 struct btrfs_root *root = BTRFS_I(inode)->root;
4549 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004550 int ret;
4551
Josef Bacik72ac3c02012-05-23 14:13:11 -04004552 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Josef Bacik22c44fe2011-11-30 10:45:38 -05004553 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004554
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004555 trans = btrfs_join_transaction(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004556 if (IS_ERR(trans))
4557 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004558
4559 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04004560 if (ret && ret == -ENOSPC) {
4561 /* whoops, lets try again with the full transaction */
4562 btrfs_end_transaction(trans, root);
4563 trans = btrfs_start_transaction(root, 1);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004564 if (IS_ERR(trans))
4565 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004566
Chris Mason94b60442010-05-26 11:02:00 -04004567 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04004568 }
Chris Mason39279cc2007-06-12 06:35:45 -04004569 btrfs_end_transaction(trans, root);
Miao Xie16cdcec2011-04-22 18:12:22 +08004570 if (BTRFS_I(inode)->delayed_node)
4571 btrfs_balance_delayed_items(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004572
4573 return ret;
4574}
4575
4576/*
4577 * This is a copy of file_update_time. We need this so we can return error on
4578 * ENOSPC for updating the inode in the case of file write and mmap writes.
4579 */
Josef Bacike41f9412012-03-26 09:46:47 -04004580static int btrfs_update_time(struct inode *inode, struct timespec *now,
4581 int flags)
Josef Bacik22c44fe2011-11-30 10:45:38 -05004582{
Alexander Block2bc5565282012-06-15 09:49:33 +02004583 struct btrfs_root *root = BTRFS_I(inode)->root;
4584
4585 if (btrfs_root_readonly(root))
4586 return -EROFS;
4587
Josef Bacike41f9412012-03-26 09:46:47 -04004588 if (flags & S_VERSION)
Josef Bacik22c44fe2011-11-30 10:45:38 -05004589 inode_inc_iversion(inode);
Josef Bacike41f9412012-03-26 09:46:47 -04004590 if (flags & S_CTIME)
4591 inode->i_ctime = *now;
4592 if (flags & S_MTIME)
4593 inode->i_mtime = *now;
4594 if (flags & S_ATIME)
4595 inode->i_atime = *now;
4596 return btrfs_dirty_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004597}
4598
Chris Masond352ac62008-09-29 15:18:18 -04004599/*
4600 * find the highest existing sequence number in a directory
4601 * and then set the in-memory index_cnt variable to reflect
4602 * free sequence numbers
4603 */
Josef Bacikaec74772008-07-24 12:12:38 -04004604static int btrfs_set_inode_index_count(struct inode *inode)
4605{
4606 struct btrfs_root *root = BTRFS_I(inode)->root;
4607 struct btrfs_key key, found_key;
4608 struct btrfs_path *path;
4609 struct extent_buffer *leaf;
4610 int ret;
4611
Li Zefan33345d012011-04-20 10:31:50 +08004612 key.objectid = btrfs_ino(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004613 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
4614 key.offset = (u64)-1;
4615
4616 path = btrfs_alloc_path();
4617 if (!path)
4618 return -ENOMEM;
4619
4620 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4621 if (ret < 0)
4622 goto out;
4623 /* FIXME: we should be able to handle this */
4624 if (ret == 0)
4625 goto out;
4626 ret = 0;
4627
4628 /*
4629 * MAGIC NUMBER EXPLANATION:
4630 * since we search a directory based on f_pos we have to start at 2
4631 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
4632 * else has to start at 2
4633 */
4634 if (path->slots[0] == 0) {
4635 BTRFS_I(inode)->index_cnt = 2;
4636 goto out;
4637 }
4638
4639 path->slots[0]--;
4640
4641 leaf = path->nodes[0];
4642 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4643
Li Zefan33345d012011-04-20 10:31:50 +08004644 if (found_key.objectid != btrfs_ino(inode) ||
Josef Bacikaec74772008-07-24 12:12:38 -04004645 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
4646 BTRFS_I(inode)->index_cnt = 2;
4647 goto out;
4648 }
4649
4650 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
4651out:
4652 btrfs_free_path(path);
4653 return ret;
4654}
4655
Chris Masond352ac62008-09-29 15:18:18 -04004656/*
4657 * helper to find a free sequence number in a given directory. This current
4658 * code is very simple, later versions will do smarter things in the btree
4659 */
Chris Mason3de45862008-11-17 21:02:50 -05004660int btrfs_set_inode_index(struct inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04004661{
4662 int ret = 0;
4663
4664 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
Miao Xie16cdcec2011-04-22 18:12:22 +08004665 ret = btrfs_inode_delayed_dir_index_count(dir);
4666 if (ret) {
4667 ret = btrfs_set_inode_index_count(dir);
4668 if (ret)
4669 return ret;
4670 }
Josef Bacikaec74772008-07-24 12:12:38 -04004671 }
4672
Chris Mason00e4e6b2008-08-05 11:18:09 -04004673 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04004674 BTRFS_I(dir)->index_cnt++;
4675
4676 return ret;
4677}
4678
Chris Mason39279cc2007-06-12 06:35:45 -04004679static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
4680 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04004681 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05004682 const char *name, int name_len,
Al Viro175a4eb2011-07-26 03:30:54 -04004683 u64 ref_objectid, u64 objectid,
4684 umode_t mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04004685{
4686 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004687 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04004688 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04004689 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05004690 struct btrfs_inode_ref *ref;
4691 struct btrfs_key key[2];
4692 u32 sizes[2];
4693 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04004694 int ret;
4695 int owner;
4696
Chris Mason5f39d392007-10-15 16:14:19 -04004697 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07004698 if (!path)
4699 return ERR_PTR(-ENOMEM);
Chris Mason5f39d392007-10-15 16:14:19 -04004700
Chris Mason39279cc2007-06-12 06:35:45 -04004701 inode = new_inode(root->fs_info->sb);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004702 if (!inode) {
4703 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004704 return ERR_PTR(-ENOMEM);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004705 }
Chris Mason39279cc2007-06-12 06:35:45 -04004706
Li Zefan581bb052011-04-20 10:06:11 +08004707 /*
4708 * we have to initialize this early, so we can reclaim the inode
4709 * number if we fail afterwards in this function.
4710 */
4711 inode->i_ino = objectid;
4712
Josef Bacikaec74772008-07-24 12:12:38 -04004713 if (dir) {
liubo1abe9b82011-03-24 11:18:59 +00004714 trace_btrfs_inode_request(dir);
4715
Chris Mason3de45862008-11-17 21:02:50 -05004716 ret = btrfs_set_inode_index(dir, index);
Shen Feng09771432009-04-02 16:46:06 -04004717 if (ret) {
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004718 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004719 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004720 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04004721 }
Josef Bacikaec74772008-07-24 12:12:38 -04004722 }
4723 /*
4724 * index_cnt is ignored for everything but a dir,
4725 * btrfs_get_inode_index_count has an explanation for the magic
4726 * number
4727 */
4728 BTRFS_I(inode)->index_cnt = 2;
Chris Mason39279cc2007-06-12 06:35:45 -04004729 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04004730 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik76195852010-11-19 02:18:02 +00004731 inode->i_generation = BTRFS_I(inode)->generation;
Chris Masonb888db2b2007-08-27 16:49:44 -04004732
Josef Bacik5dc562c2012-08-17 13:14:17 -04004733 /*
4734 * We could have gotten an inode number from somebody who was fsynced
4735 * and then removed in this same transaction, so let's just set full
4736 * sync since it will be a full sync anyway and this will blow away the
4737 * old info in the log.
4738 */
4739 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
4740
Al Viro569254b2011-07-24 17:08:40 -04004741 if (S_ISDIR(mode))
Chris Mason39279cc2007-06-12 06:35:45 -04004742 owner = 0;
4743 else
4744 owner = 1;
Chris Mason9c583092008-01-29 15:15:18 -05004745
4746 key[0].objectid = objectid;
4747 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
4748 key[0].offset = 0;
4749
Mark Fashehf1863732012-08-08 11:32:27 -07004750 /*
4751 * Start new inodes with an inode_ref. This is slightly more
4752 * efficient for small numbers of hard links since they will
4753 * be packed into one item. Extended refs will kick in if we
4754 * add more hard links than can fit in the ref item.
4755 */
Chris Mason9c583092008-01-29 15:15:18 -05004756 key[1].objectid = objectid;
4757 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
4758 key[1].offset = ref_objectid;
4759
4760 sizes[0] = sizeof(struct btrfs_inode_item);
4761 sizes[1] = name_len + sizeof(*ref);
4762
Chris Masonb9473432009-03-13 11:00:37 -04004763 path->leave_spinning = 1;
Chris Mason9c583092008-01-29 15:15:18 -05004764 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
4765 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04004766 goto fail;
4767
Dmitry Monakhovecc11fab2010-03-04 17:31:47 +03004768 inode_init_owner(inode, dir, mode);
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004769 inode_set_bytes(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004770 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04004771 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
4772 struct btrfs_inode_item);
Li Zefan293f7e02012-07-10 00:58:58 -06004773 memset_extent_buffer(path->nodes[0], 0, (unsigned long)inode_item,
4774 sizeof(*inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04004775 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05004776
4777 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
4778 struct btrfs_inode_ref);
4779 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004780 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
Chris Mason9c583092008-01-29 15:15:18 -05004781 ptr = (unsigned long)(ref + 1);
4782 write_extent_buffer(path->nodes[0], name, ptr, name_len);
4783
Chris Mason5f39d392007-10-15 16:14:19 -04004784 btrfs_mark_buffer_dirty(path->nodes[0]);
4785 btrfs_free_path(path);
4786
Chris Mason39279cc2007-06-12 06:35:45 -04004787 location = &BTRFS_I(inode)->location;
4788 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04004789 location->offset = 0;
4790 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
4791
Christoph Hellwig6cbff002009-04-17 10:37:41 +02004792 btrfs_inherit_iflags(inode, dir);
4793
Al Viro569254b2011-07-24 17:08:40 -04004794 if (S_ISREG(mode)) {
Chris Mason94272162009-07-02 12:26:06 -04004795 if (btrfs_test_opt(root, NODATASUM))
4796 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
Liu Bo75e7cb72011-03-22 10:12:20 +00004797 if (btrfs_test_opt(root, NODATACOW) ||
4798 (BTRFS_I(dir)->flags & BTRFS_INODE_NODATACOW))
Chris Mason94272162009-07-02 12:26:06 -04004799 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
4800 }
4801
Chris Mason39279cc2007-06-12 06:35:45 -04004802 insert_inode_hash(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004803 inode_tree_add(inode);
liubo1abe9b82011-03-24 11:18:59 +00004804
4805 trace_btrfs_inode_new(inode);
Chris Mason1973f0f2011-06-24 13:13:29 -04004806 btrfs_set_inode_last_trans(trans, inode);
liubo1abe9b82011-03-24 11:18:59 +00004807
Alexander Block8ea05e32012-07-25 17:35:53 +02004808 btrfs_update_root_times(trans, root);
4809
Chris Mason39279cc2007-06-12 06:35:45 -04004810 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004811fail:
Josef Bacikaec74772008-07-24 12:12:38 -04004812 if (dir)
4813 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04004814 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004815 iput(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004816 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004817}
4818
4819static inline u8 btrfs_inode_type(struct inode *inode)
4820{
4821 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
4822}
4823
Chris Masond352ac62008-09-29 15:18:18 -04004824/*
4825 * utility function to add 'inode' into 'parent_inode' with
4826 * a give name and a given sequence number.
4827 * if 'add_backref' is true, also insert a backref from the
4828 * inode to the parent directory.
4829 */
Chris Masone02119d2008-09-05 16:13:11 -04004830int btrfs_add_link(struct btrfs_trans_handle *trans,
4831 struct inode *parent_inode, struct inode *inode,
4832 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004833{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004834 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004835 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04004836 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Li Zefan33345d012011-04-20 10:31:50 +08004837 u64 ino = btrfs_ino(inode);
4838 u64 parent_ino = btrfs_ino(parent_inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004839
Li Zefan33345d012011-04-20 10:31:50 +08004840 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004841 memcpy(&key, &BTRFS_I(inode)->root->root_key, sizeof(key));
4842 } else {
Li Zefan33345d012011-04-20 10:31:50 +08004843 key.objectid = ino;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004844 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
4845 key.offset = 0;
4846 }
Chris Mason39279cc2007-06-12 06:35:45 -04004847
Li Zefan33345d012011-04-20 10:31:50 +08004848 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004849 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
4850 key.objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08004851 parent_ino, index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004852 } else if (add_backref) {
Li Zefan33345d012011-04-20 10:31:50 +08004853 ret = btrfs_insert_inode_ref(trans, root, name, name_len, ino,
4854 parent_ino, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004855 }
4856
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004857 /* Nothing to clean up yet */
4858 if (ret)
4859 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004860
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004861 ret = btrfs_insert_dir_item(trans, root, name, name_len,
4862 parent_inode, &key,
4863 btrfs_inode_type(inode), index);
4864 if (ret == -EEXIST)
4865 goto fail_dir_item;
4866 else if (ret) {
4867 btrfs_abort_transaction(trans, root, ret);
4868 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004869 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004870
4871 btrfs_i_size_write(parent_inode, parent_inode->i_size +
4872 name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04004873 inode_inc_iversion(parent_inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004874 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
4875 ret = btrfs_update_inode(trans, root, parent_inode);
4876 if (ret)
4877 btrfs_abort_transaction(trans, root, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004878 return ret;
Chris Masonfe66a052012-02-20 08:40:56 -05004879
4880fail_dir_item:
4881 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
4882 u64 local_index;
4883 int err;
4884 err = btrfs_del_root_ref(trans, root->fs_info->tree_root,
4885 key.objectid, root->root_key.objectid,
4886 parent_ino, &local_index, name, name_len);
4887
4888 } else if (add_backref) {
4889 u64 local_index;
4890 int err;
4891
4892 err = btrfs_del_inode_ref(trans, root, name, name_len,
4893 ino, parent_ino, &local_index);
4894 }
4895 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004896}
4897
4898static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Josef Bacika1b075d2010-11-19 20:36:11 +00004899 struct inode *dir, struct dentry *dentry,
4900 struct inode *inode, int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004901{
Josef Bacika1b075d2010-11-19 20:36:11 +00004902 int err = btrfs_add_link(trans, dir, inode,
4903 dentry->d_name.name, dentry->d_name.len,
4904 backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004905 if (err > 0)
4906 err = -EEXIST;
4907 return err;
4908}
4909
Josef Bacik618e21d2007-07-11 10:18:17 -04004910static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -04004911 umode_t mode, dev_t rdev)
Josef Bacik618e21d2007-07-11 10:18:17 -04004912{
4913 struct btrfs_trans_handle *trans;
4914 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004915 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04004916 int err;
4917 int drop_inode = 0;
4918 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05004919 unsigned long nr = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004920 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04004921
4922 if (!new_valid_dev(rdev))
4923 return -EINVAL;
4924
Josef Bacik9ed74f22009-09-11 16:12:44 -04004925 /*
4926 * 2 for inode item and ref
4927 * 2 for dir items
4928 * 1 for xattr if selinux is on
4929 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004930 trans = btrfs_start_transaction(root, 5);
4931 if (IS_ERR(trans))
4932 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05004933
Li Zefan581bb052011-04-20 10:06:11 +08004934 err = btrfs_find_free_ino(root, &objectid);
4935 if (err)
4936 goto out_unlock;
4937
Josef Bacikaec74772008-07-24 12:12:38 -04004938 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08004939 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04004940 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004941 if (IS_ERR(inode)) {
4942 err = PTR_ERR(inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04004943 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004944 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004945
Eric Paris2a7dba32011-02-01 11:05:39 -05004946 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04004947 if (err) {
4948 drop_inode = 1;
4949 goto out_unlock;
4950 }
4951
Casey Schauflerad19db72011-12-15 10:09:07 -05004952 /*
4953 * If the active LSM wants to access the inode during
4954 * d_instantiate it needs these. Smack checks to see
4955 * if the filesystem supports xattrs by looking at the
4956 * ops vector.
4957 */
4958
4959 inode->i_op = &btrfs_special_inode_operations;
Josef Bacika1b075d2010-11-19 20:36:11 +00004960 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Josef Bacik618e21d2007-07-11 10:18:17 -04004961 if (err)
4962 drop_inode = 1;
4963 else {
Josef Bacik618e21d2007-07-11 10:18:17 -04004964 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04004965 btrfs_update_inode(trans, root, inode);
Al Viro08c422c2011-12-23 07:58:13 -05004966 d_instantiate(dentry, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04004967 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004968out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004969 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05004970 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004971 btrfs_btree_balance_dirty(root, nr);
Josef Bacik618e21d2007-07-11 10:18:17 -04004972 if (drop_inode) {
4973 inode_dec_link_count(inode);
4974 iput(inode);
4975 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004976 return err;
4977}
4978
Chris Mason39279cc2007-06-12 06:35:45 -04004979static int btrfs_create(struct inode *dir, struct dentry *dentry,
Al Viroebfc3b42012-06-10 18:05:36 -04004980 umode_t mode, bool excl)
Chris Mason39279cc2007-06-12 06:35:45 -04004981{
4982 struct btrfs_trans_handle *trans;
4983 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004984 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004985 int drop_inode = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004986 int err;
Chris Mason1832a6d2007-12-21 16:27:21 -05004987 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004988 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004989 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004990
Josef Bacik9ed74f22009-09-11 16:12:44 -04004991 /*
4992 * 2 for inode item and ref
4993 * 2 for dir items
4994 * 1 for xattr if selinux is on
4995 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004996 trans = btrfs_start_transaction(root, 5);
4997 if (IS_ERR(trans))
4998 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004999
Li Zefan581bb052011-04-20 10:06:11 +08005000 err = btrfs_find_free_ino(root, &objectid);
5001 if (err)
5002 goto out_unlock;
5003
Josef Bacikaec74772008-07-24 12:12:38 -04005004 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08005005 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04005006 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04005007 if (IS_ERR(inode)) {
5008 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04005009 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04005010 }
Chris Mason39279cc2007-06-12 06:35:45 -04005011
Eric Paris2a7dba32011-02-01 11:05:39 -05005012 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04005013 if (err) {
5014 drop_inode = 1;
5015 goto out_unlock;
5016 }
5017
Casey Schauflerad19db72011-12-15 10:09:07 -05005018 /*
5019 * If the active LSM wants to access the inode during
5020 * d_instantiate it needs these. Smack checks to see
5021 * if the filesystem supports xattrs by looking at the
5022 * ops vector.
5023 */
5024 inode->i_fop = &btrfs_file_operations;
5025 inode->i_op = &btrfs_file_inode_operations;
5026
Josef Bacika1b075d2010-11-19 20:36:11 +00005027 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04005028 if (err)
5029 drop_inode = 1;
5030 else {
5031 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04005032 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05005033 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Al Viro08c422c2011-12-23 07:58:13 -05005034 d_instantiate(dentry, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04005035 }
Chris Mason39279cc2007-06-12 06:35:45 -04005036out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005037 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05005038 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04005039 if (drop_inode) {
5040 inode_dec_link_count(inode);
5041 iput(inode);
5042 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005043 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04005044 return err;
5045}
5046
5047static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
5048 struct dentry *dentry)
5049{
5050 struct btrfs_trans_handle *trans;
5051 struct btrfs_root *root = BTRFS_I(dir)->root;
5052 struct inode *inode = old_dentry->d_inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005053 u64 index;
Chris Mason1832a6d2007-12-21 16:27:21 -05005054 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005055 int err;
5056 int drop_inode = 0;
5057
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00005058 /* do not allow sys_link's with other subvols of the same device */
5059 if (root->objectid != BTRFS_I(inode)->root->objectid)
Mark Fasheh3ab35642011-03-22 17:20:26 +00005060 return -EXDEV;
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00005061
Mark Fashehf1863732012-08-08 11:32:27 -07005062 if (inode->i_nlink >= BTRFS_LINK_MAX)
Al Viroc055e992011-03-04 17:15:18 +00005063 return -EMLINK;
Josef Bacik9ed74f22009-09-11 16:12:44 -04005064
Chris Mason3de45862008-11-17 21:02:50 -05005065 err = btrfs_set_inode_index(dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04005066 if (err)
5067 goto fail;
5068
Yan, Zhenga22285a2010-05-16 10:48:46 -04005069 /*
Miao Xie7e6b6462011-02-18 09:21:17 +00005070 * 2 items for inode and inode ref
Yan, Zhenga22285a2010-05-16 10:48:46 -04005071 * 2 items for dir items
Miao Xie7e6b6462011-02-18 09:21:17 +00005072 * 1 item for parent inode
Yan, Zhenga22285a2010-05-16 10:48:46 -04005073 */
Miao Xie7e6b6462011-02-18 09:21:17 +00005074 trans = btrfs_start_transaction(root, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005075 if (IS_ERR(trans)) {
5076 err = PTR_ERR(trans);
5077 goto fail;
5078 }
Chris Mason5f39d392007-10-15 16:14:19 -04005079
Miao Xie31534952011-04-13 13:19:21 +08005080 btrfs_inc_nlink(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04005081 inode_inc_iversion(inode);
Miao Xie31534952011-04-13 13:19:21 +08005082 inode->i_ctime = CURRENT_TIME;
Al Viro7de9c6ee2010-10-23 11:11:40 -04005083 ihold(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04005084
Josef Bacika1b075d2010-11-19 20:36:11 +00005085 err = btrfs_add_nondir(trans, dir, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04005086
Yan, Zhenga5719522009-09-24 09:17:31 -04005087 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04005088 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04005089 } else {
Al Viro10d9f302011-07-16 23:09:10 -04005090 struct dentry *parent = dentry->d_parent;
Yan, Zhenga5719522009-09-24 09:17:31 -04005091 err = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005092 if (err)
5093 goto fail;
Al Viro08c422c2011-12-23 07:58:13 -05005094 d_instantiate(dentry, inode);
Josef Bacik6a912212010-11-20 09:48:00 +00005095 btrfs_log_new_name(trans, inode, NULL, parent);
Yan, Zhenga5719522009-09-24 09:17:31 -04005096 }
Chris Mason39279cc2007-06-12 06:35:45 -04005097
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005098 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05005099 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05005100fail:
Chris Mason39279cc2007-06-12 06:35:45 -04005101 if (drop_inode) {
5102 inode_dec_link_count(inode);
5103 iput(inode);
5104 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005105 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04005106 return err;
5107}
5108
Al Viro18bb1db2011-07-26 01:41:39 -04005109static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Chris Mason39279cc2007-06-12 06:35:45 -04005110{
Chris Masonb9d86662008-05-02 16:13:49 -04005111 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04005112 struct btrfs_trans_handle *trans;
5113 struct btrfs_root *root = BTRFS_I(dir)->root;
5114 int err = 0;
5115 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04005116 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005117 u64 index = 0;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005118 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04005119
Josef Bacik9ed74f22009-09-11 16:12:44 -04005120 /*
5121 * 2 items for inode and ref
5122 * 2 items for dir items
5123 * 1 for xattr if selinux is on
5124 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04005125 trans = btrfs_start_transaction(root, 5);
5126 if (IS_ERR(trans))
5127 return PTR_ERR(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04005128
Li Zefan581bb052011-04-20 10:06:11 +08005129 err = btrfs_find_free_ino(root, &objectid);
5130 if (err)
5131 goto out_fail;
5132
Josef Bacikaec74772008-07-24 12:12:38 -04005133 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08005134 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04005135 S_IFDIR | mode, &index);
Chris Mason39279cc2007-06-12 06:35:45 -04005136 if (IS_ERR(inode)) {
5137 err = PTR_ERR(inode);
5138 goto out_fail;
5139 }
Chris Mason5f39d392007-10-15 16:14:19 -04005140
Chris Mason39279cc2007-06-12 06:35:45 -04005141 drop_on_err = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -04005142
Eric Paris2a7dba32011-02-01 11:05:39 -05005143 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04005144 if (err)
5145 goto out_fail;
5146
Chris Mason39279cc2007-06-12 06:35:45 -04005147 inode->i_op = &btrfs_dir_inode_operations;
5148 inode->i_fop = &btrfs_dir_file_operations;
Chris Mason39279cc2007-06-12 06:35:45 -04005149
Chris Masondbe674a2008-07-17 12:54:05 -04005150 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04005151 err = btrfs_update_inode(trans, root, inode);
5152 if (err)
5153 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04005154
Josef Bacika1b075d2010-11-19 20:36:11 +00005155 err = btrfs_add_link(trans, dir, inode, dentry->d_name.name,
5156 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04005157 if (err)
5158 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04005159
Chris Mason39279cc2007-06-12 06:35:45 -04005160 d_instantiate(dentry, inode);
5161 drop_on_err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005162
5163out_fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005164 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05005165 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04005166 if (drop_on_err)
5167 iput(inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005168 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04005169 return err;
5170}
5171
Chris Masond352ac62008-09-29 15:18:18 -04005172/* helper for btfs_get_extent. Given an existing extent in the tree,
5173 * and an extent that you want to insert, deal with overlap and insert
5174 * the new extent into the tree.
5175 */
Chris Mason3b951512008-04-17 11:29:12 -04005176static int merge_extent_mapping(struct extent_map_tree *em_tree,
5177 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005178 struct extent_map *em,
5179 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04005180{
5181 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04005182
Chris Masone6dcd2d2008-07-17 12:53:50 -04005183 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
5184 start_diff = map_start - em->start;
5185 em->start = map_start;
5186 em->len = map_len;
Chris Masonc8b97812008-10-29 14:49:59 -04005187 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
5188 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04005189 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04005190 em->block_len -= start_diff;
5191 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005192 return add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04005193}
5194
Chris Masonc8b97812008-10-29 14:49:59 -04005195static noinline int uncompress_inline(struct btrfs_path *path,
5196 struct inode *inode, struct page *page,
5197 size_t pg_offset, u64 extent_offset,
5198 struct btrfs_file_extent_item *item)
5199{
5200 int ret;
5201 struct extent_buffer *leaf = path->nodes[0];
5202 char *tmp;
5203 size_t max_size;
5204 unsigned long inline_size;
5205 unsigned long ptr;
Li Zefan261507a02010-12-17 14:21:50 +08005206 int compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04005207
5208 WARN_ON(pg_offset != 0);
Li Zefan261507a02010-12-17 14:21:50 +08005209 compress_type = btrfs_file_extent_compression(leaf, item);
Chris Masonc8b97812008-10-29 14:49:59 -04005210 max_size = btrfs_file_extent_ram_bytes(leaf, item);
5211 inline_size = btrfs_file_extent_inline_item_len(leaf,
5212 btrfs_item_nr(leaf, path->slots[0]));
5213 tmp = kmalloc(inline_size, GFP_NOFS);
Tsutomu Itoh8d413712011-04-25 19:43:52 -04005214 if (!tmp)
5215 return -ENOMEM;
Chris Masonc8b97812008-10-29 14:49:59 -04005216 ptr = btrfs_file_extent_inline_start(item);
5217
5218 read_extent_buffer(leaf, tmp, ptr, inline_size);
5219
Chris Mason5b050f02008-11-11 09:34:41 -05005220 max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size);
Li Zefan261507a02010-12-17 14:21:50 +08005221 ret = btrfs_decompress(compress_type, tmp, page,
5222 extent_offset, inline_size, max_size);
Chris Masonc8b97812008-10-29 14:49:59 -04005223 if (ret) {
Cong Wang7ac687d2011-11-25 23:14:28 +08005224 char *kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04005225 unsigned long copy_size = min_t(u64,
5226 PAGE_CACHE_SIZE - pg_offset,
5227 max_size - extent_offset);
5228 memset(kaddr + pg_offset, 0, copy_size);
Cong Wang7ac687d2011-11-25 23:14:28 +08005229 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -04005230 }
5231 kfree(tmp);
5232 return 0;
5233}
5234
Chris Masond352ac62008-09-29 15:18:18 -04005235/*
5236 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05005237 * the ugly parts come from merging extents from the disk with the in-ram
5238 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04005239 * where the in-ram extents might be locked pending data=ordered completion.
5240 *
5241 * This also copies inline extents directly into the page.
5242 */
Chris Masond3977122009-01-05 21:25:51 -05005243
Chris Masona52d9a82007-08-27 16:49:44 -04005244struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05005245 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04005246 int create)
5247{
5248 int ret;
5249 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04005250 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04005251 u64 extent_start = 0;
5252 u64 extent_end = 0;
Li Zefan33345d012011-04-20 10:31:50 +08005253 u64 objectid = btrfs_ino(inode);
Chris Masona52d9a82007-08-27 16:49:44 -04005254 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04005255 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04005256 struct btrfs_root *root = BTRFS_I(inode)->root;
5257 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04005258 struct extent_buffer *leaf;
5259 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04005260 struct extent_map *em = NULL;
5261 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05005262 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04005263 struct btrfs_trans_handle *trans = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08005264 int compress_type;
Chris Masona52d9a82007-08-27 16:49:44 -04005265
Chris Masona52d9a82007-08-27 16:49:44 -04005266again:
Chris Mason890871b2009-09-02 16:24:52 -04005267 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05005268 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04005269 if (em)
5270 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04005271 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05005272
Chris Masona52d9a82007-08-27 16:49:44 -04005273 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04005274 if (em->start > start || em->start + em->len <= start)
5275 free_extent_map(em);
5276 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05005277 free_extent_map(em);
5278 else
5279 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005280 }
David Sterba172ddd62011-04-21 00:48:27 +02005281 em = alloc_extent_map();
Chris Masona52d9a82007-08-27 16:49:44 -04005282 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05005283 err = -ENOMEM;
5284 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005285 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005286 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05005287 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05005288 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05005289 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04005290 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04005291
5292 if (!path) {
5293 path = btrfs_alloc_path();
Josef Bacik026fd312011-05-13 10:32:11 -04005294 if (!path) {
5295 err = -ENOMEM;
5296 goto out;
5297 }
5298 /*
5299 * Chances are we'll be called again, so go ahead and do
5300 * readahead
5301 */
5302 path->reada = 1;
Chris Masonf4219502008-07-22 11:18:09 -04005303 }
5304
Chris Mason179e29e2007-11-01 11:28:41 -04005305 ret = btrfs_lookup_file_extent(trans, root, path,
5306 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04005307 if (ret < 0) {
5308 err = ret;
5309 goto out;
5310 }
5311
5312 if (ret != 0) {
5313 if (path->slots[0] == 0)
5314 goto not_found;
5315 path->slots[0]--;
5316 }
5317
Chris Mason5f39d392007-10-15 16:14:19 -04005318 leaf = path->nodes[0];
5319 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04005320 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04005321 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04005322 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5323 found_type = btrfs_key_type(&found_key);
5324 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04005325 found_type != BTRFS_EXTENT_DATA_KEY) {
5326 goto not_found;
5327 }
5328
Chris Mason5f39d392007-10-15 16:14:19 -04005329 found_type = btrfs_file_extent_type(leaf, item);
5330 extent_start = found_key.offset;
Li Zefan261507a02010-12-17 14:21:50 +08005331 compress_type = btrfs_file_extent_compression(leaf, item);
Yan Zhengd899e052008-10-30 14:25:28 -04005332 if (found_type == BTRFS_FILE_EXTENT_REG ||
5333 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04005334 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04005335 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04005336 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
5337 size_t size;
5338 size = btrfs_file_extent_inline_len(leaf, item);
5339 extent_end = (extent_start + size + root->sectorsize - 1) &
5340 ~((u64)root->sectorsize - 1);
5341 }
5342
5343 if (start >= extent_end) {
5344 path->slots[0]++;
5345 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
5346 ret = btrfs_next_leaf(root, path);
5347 if (ret < 0) {
5348 err = ret;
5349 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005350 }
Yan Zheng9036c102008-10-30 14:19:41 -04005351 if (ret > 0)
5352 goto not_found;
5353 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04005354 }
Yan Zheng9036c102008-10-30 14:19:41 -04005355 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5356 if (found_key.objectid != objectid ||
5357 found_key.type != BTRFS_EXTENT_DATA_KEY)
5358 goto not_found;
5359 if (start + len <= found_key.offset)
5360 goto not_found;
5361 em->start = start;
5362 em->len = found_key.offset - start;
5363 goto not_found_em;
5364 }
5365
Yan Zhengd899e052008-10-30 14:25:28 -04005366 if (found_type == BTRFS_FILE_EXTENT_REG ||
5367 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng9036c102008-10-30 14:19:41 -04005368 em->start = extent_start;
5369 em->len = extent_end - extent_start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005370 em->orig_start = extent_start -
5371 btrfs_file_extent_offset(leaf, item);
Chris Masondb945352007-10-15 16:15:53 -04005372 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
5373 if (bytenr == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04005374 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04005375 goto insert;
5376 }
Li Zefan261507a02010-12-17 14:21:50 +08005377 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04005378 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08005379 em->compress_type = compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04005380 em->block_start = bytenr;
5381 em->block_len = btrfs_file_extent_disk_num_bytes(leaf,
5382 item);
5383 } else {
5384 bytenr += btrfs_file_extent_offset(leaf, item);
5385 em->block_start = bytenr;
5386 em->block_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04005387 if (found_type == BTRFS_FILE_EXTENT_PREALLOC)
5388 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -04005389 }
Chris Masona52d9a82007-08-27 16:49:44 -04005390 goto insert;
5391 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04005392 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04005393 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04005394 size_t size;
5395 size_t extent_offset;
5396 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04005397
Chris Masona52d9a82007-08-27 16:49:44 -04005398 em->block_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04005399 if (!page || create) {
Yan689f9342007-10-29 11:41:07 -04005400 em->start = extent_start;
Yan Zheng9036c102008-10-30 14:19:41 -04005401 em->len = extent_end - extent_start;
Yan689f9342007-10-29 11:41:07 -04005402 goto out;
5403 }
5404
Yan Zheng9036c102008-10-30 14:19:41 -04005405 size = btrfs_file_extent_inline_len(leaf, item);
5406 extent_offset = page_offset(page) + pg_offset - extent_start;
Chris Mason70dec802008-01-29 09:59:12 -05005407 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04005408 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04005409 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05005410 em->len = (copy_size + root->sectorsize - 1) &
5411 ~((u64)root->sectorsize - 1);
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005412 em->orig_start = EXTENT_MAP_INLINE;
Li Zefan261507a02010-12-17 14:21:50 +08005413 if (compress_type) {
Chris Masonc8b97812008-10-29 14:49:59 -04005414 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08005415 em->compress_type = compress_type;
5416 }
Yan689f9342007-10-29 11:41:07 -04005417 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04005418 if (create == 0 && !PageUptodate(page)) {
Li Zefan261507a02010-12-17 14:21:50 +08005419 if (btrfs_file_extent_compression(leaf, item) !=
5420 BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04005421 ret = uncompress_inline(path, inode, page,
5422 pg_offset,
5423 extent_offset, item);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005424 BUG_ON(ret); /* -ENOMEM */
Chris Masonc8b97812008-10-29 14:49:59 -04005425 } else {
5426 map = kmap(page);
5427 read_extent_buffer(leaf, map + pg_offset, ptr,
5428 copy_size);
Chris Mason93c82d52009-09-11 12:36:29 -04005429 if (pg_offset + copy_size < PAGE_CACHE_SIZE) {
5430 memset(map + pg_offset + copy_size, 0,
5431 PAGE_CACHE_SIZE - pg_offset -
5432 copy_size);
5433 }
Chris Masonc8b97812008-10-29 14:49:59 -04005434 kunmap(page);
5435 }
Chris Mason179e29e2007-11-01 11:28:41 -04005436 flush_dcache_page(page);
5437 } else if (create && PageUptodate(page)) {
Jan Schmidt6bf7e082011-12-01 14:35:19 +01005438 BUG();
Chris Mason179e29e2007-11-01 11:28:41 -04005439 if (!trans) {
5440 kunmap(page);
5441 free_extent_map(em);
5442 em = NULL;
Chris Masonff5714c2011-05-28 07:00:39 -04005443
David Sterbab3b4aa72011-04-21 01:20:15 +02005444 btrfs_release_path(path);
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005445 trans = btrfs_join_transaction(root);
Chris Masonff5714c2011-05-28 07:00:39 -04005446
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005447 if (IS_ERR(trans))
5448 return ERR_CAST(trans);
Chris Mason179e29e2007-11-01 11:28:41 -04005449 goto again;
5450 }
Chris Masonc8b97812008-10-29 14:49:59 -04005451 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05005452 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04005453 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04005454 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04005455 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04005456 }
Chris Masond1310b22008-01-24 16:13:08 -05005457 set_extent_uptodate(io_tree, em->start,
Arne Jansen507903b2011-04-06 10:02:20 +00005458 extent_map_end(em) - 1, NULL, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04005459 goto insert;
5460 } else {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00005461 WARN(1, KERN_ERR "btrfs unknown found_type %d\n", found_type);
Chris Masona52d9a82007-08-27 16:49:44 -04005462 }
5463not_found:
5464 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05005465 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04005466not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04005467 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04005468 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04005469insert:
David Sterbab3b4aa72011-04-21 01:20:15 +02005470 btrfs_release_path(path);
Chris Masond1310b22008-01-24 16:13:08 -05005471 if (em->start > start || extent_map_end(em) <= start) {
Chris Masond3977122009-01-05 21:25:51 -05005472 printk(KERN_ERR "Btrfs: bad extent! em: [%llu %llu] passed "
5473 "[%llu %llu]\n", (unsigned long long)em->start,
5474 (unsigned long long)em->len,
5475 (unsigned long long)start,
5476 (unsigned long long)len);
Chris Masona52d9a82007-08-27 16:49:44 -04005477 err = -EIO;
5478 goto out;
5479 }
Chris Masond1310b22008-01-24 16:13:08 -05005480
5481 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04005482 write_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005483 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04005484 /* it is possible that someone inserted the extent into the tree
5485 * while we had the lock dropped. It is also possible that
5486 * an overlapping map exists in the tree
5487 */
Chris Masona52d9a82007-08-27 16:49:44 -04005488 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04005489 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005490
5491 ret = 0;
5492
Chris Mason3b951512008-04-17 11:29:12 -04005493 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04005494 if (existing && (existing->start > start ||
5495 existing->start + existing->len <= start)) {
5496 free_extent_map(existing);
5497 existing = NULL;
5498 }
Chris Mason3b951512008-04-17 11:29:12 -04005499 if (!existing) {
5500 existing = lookup_extent_mapping(em_tree, em->start,
5501 em->len);
5502 if (existing) {
5503 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005504 em, start,
5505 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04005506 free_extent_map(existing);
5507 if (err) {
5508 free_extent_map(em);
5509 em = NULL;
5510 }
5511 } else {
5512 err = -EIO;
Chris Mason3b951512008-04-17 11:29:12 -04005513 free_extent_map(em);
5514 em = NULL;
5515 }
5516 } else {
5517 free_extent_map(em);
5518 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005519 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04005520 }
Chris Masona52d9a82007-08-27 16:49:44 -04005521 }
Chris Mason890871b2009-09-02 16:24:52 -04005522 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005523out:
liubo1abe9b82011-03-24 11:18:59 +00005524
Tsutomu Itohf0bd95e2012-10-01 03:08:37 -06005525 if (em)
5526 trace_btrfs_get_extent(root, em);
liubo1abe9b82011-03-24 11:18:59 +00005527
Chris Masonf4219502008-07-22 11:18:09 -04005528 if (path)
5529 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04005530 if (trans) {
5531 ret = btrfs_end_transaction(trans, root);
Chris Masond3977122009-01-05 21:25:51 -05005532 if (!err)
Chris Masona52d9a82007-08-27 16:49:44 -04005533 err = ret;
5534 }
Chris Masona52d9a82007-08-27 16:49:44 -04005535 if (err) {
5536 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04005537 return ERR_PTR(err);
5538 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005539 BUG_ON(!em); /* Error is always set */
Chris Masona52d9a82007-08-27 16:49:44 -04005540 return em;
5541}
5542
Chris Masonec29ed52011-02-23 16:23:20 -05005543struct extent_map *btrfs_get_extent_fiemap(struct inode *inode, struct page *page,
5544 size_t pg_offset, u64 start, u64 len,
5545 int create)
5546{
5547 struct extent_map *em;
5548 struct extent_map *hole_em = NULL;
5549 u64 range_start = start;
5550 u64 end;
5551 u64 found;
5552 u64 found_end;
5553 int err = 0;
5554
5555 em = btrfs_get_extent(inode, page, pg_offset, start, len, create);
5556 if (IS_ERR(em))
5557 return em;
5558 if (em) {
5559 /*
5560 * if our em maps to a hole, there might
5561 * actually be delalloc bytes behind it
5562 */
5563 if (em->block_start != EXTENT_MAP_HOLE)
5564 return em;
5565 else
5566 hole_em = em;
5567 }
5568
5569 /* check to see if we've wrapped (len == -1 or similar) */
5570 end = start + len;
5571 if (end < start)
5572 end = (u64)-1;
5573 else
5574 end -= 1;
5575
5576 em = NULL;
5577
5578 /* ok, we didn't find anything, lets look for delalloc */
5579 found = count_range_bits(&BTRFS_I(inode)->io_tree, &range_start,
5580 end, len, EXTENT_DELALLOC, 1);
5581 found_end = range_start + found;
5582 if (found_end < range_start)
5583 found_end = (u64)-1;
5584
5585 /*
5586 * we didn't find anything useful, return
5587 * the original results from get_extent()
5588 */
5589 if (range_start > end || found_end <= start) {
5590 em = hole_em;
5591 hole_em = NULL;
5592 goto out;
5593 }
5594
5595 /* adjust the range_start to make sure it doesn't
5596 * go backwards from the start they passed in
5597 */
5598 range_start = max(start,range_start);
5599 found = found_end - range_start;
5600
5601 if (found > 0) {
5602 u64 hole_start = start;
5603 u64 hole_len = len;
5604
David Sterba172ddd62011-04-21 00:48:27 +02005605 em = alloc_extent_map();
Chris Masonec29ed52011-02-23 16:23:20 -05005606 if (!em) {
5607 err = -ENOMEM;
5608 goto out;
5609 }
5610 /*
5611 * when btrfs_get_extent can't find anything it
5612 * returns one huge hole
5613 *
5614 * make sure what it found really fits our range, and
5615 * adjust to make sure it is based on the start from
5616 * the caller
5617 */
5618 if (hole_em) {
5619 u64 calc_end = extent_map_end(hole_em);
5620
5621 if (calc_end <= start || (hole_em->start > end)) {
5622 free_extent_map(hole_em);
5623 hole_em = NULL;
5624 } else {
5625 hole_start = max(hole_em->start, start);
5626 hole_len = calc_end - hole_start;
5627 }
5628 }
5629 em->bdev = NULL;
5630 if (hole_em && range_start > hole_start) {
5631 /* our hole starts before our delalloc, so we
5632 * have to return just the parts of the hole
5633 * that go until the delalloc starts
5634 */
5635 em->len = min(hole_len,
5636 range_start - hole_start);
5637 em->start = hole_start;
5638 em->orig_start = hole_start;
5639 /*
5640 * don't adjust block start at all,
5641 * it is fixed at EXTENT_MAP_HOLE
5642 */
5643 em->block_start = hole_em->block_start;
5644 em->block_len = hole_len;
5645 } else {
5646 em->start = range_start;
5647 em->len = found;
5648 em->orig_start = range_start;
5649 em->block_start = EXTENT_MAP_DELALLOC;
5650 em->block_len = found;
5651 }
5652 } else if (hole_em) {
5653 return hole_em;
5654 }
5655out:
5656
5657 free_extent_map(hole_em);
5658 if (err) {
5659 free_extent_map(em);
5660 return ERR_PTR(err);
5661 }
5662 return em;
5663}
5664
Josef Bacik4b46fce2010-05-23 11:00:55 -04005665static struct extent_map *btrfs_new_extent_direct(struct inode *inode,
Josef Bacik16d299a2011-04-06 14:53:07 -04005666 struct extent_map *em,
Josef Bacik4b46fce2010-05-23 11:00:55 -04005667 u64 start, u64 len)
5668{
5669 struct btrfs_root *root = BTRFS_I(inode)->root;
5670 struct btrfs_trans_handle *trans;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005671 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
5672 struct btrfs_key ins;
5673 u64 alloc_hint;
5674 int ret;
Josef Bacik16d299a2011-04-06 14:53:07 -04005675 bool insert = false;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005676
Josef Bacik16d299a2011-04-06 14:53:07 -04005677 /*
5678 * Ok if the extent map we looked up is a hole and is for the exact
5679 * range we want, there is no reason to allocate a new one, however if
5680 * it is not right then we need to free this one and drop the cache for
5681 * our range.
5682 */
5683 if (em->block_start != EXTENT_MAP_HOLE || em->start != start ||
5684 em->len != len) {
5685 free_extent_map(em);
5686 em = NULL;
5687 insert = true;
5688 btrfs_drop_extent_cache(inode, start, start + len - 1, 0);
5689 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005690
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005691 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005692 if (IS_ERR(trans))
5693 return ERR_CAST(trans);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005694
Chris Mason4cb53002011-05-24 15:35:30 -04005695 if (start <= BTRFS_I(inode)->disk_i_size && len < 64 * 1024)
5696 btrfs_add_inode_defrag(trans, inode);
5697
Josef Bacik4b46fce2010-05-23 11:00:55 -04005698 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
5699
5700 alloc_hint = get_extent_allocation_hint(inode, start, len);
5701 ret = btrfs_reserve_extent(trans, root, len, root->sectorsize, 0,
Josef Bacik81c9ad22012-01-18 10:56:06 -05005702 alloc_hint, &ins, 1);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005703 if (ret) {
5704 em = ERR_PTR(ret);
5705 goto out;
5706 }
5707
Josef Bacik4b46fce2010-05-23 11:00:55 -04005708 if (!em) {
David Sterba172ddd62011-04-21 00:48:27 +02005709 em = alloc_extent_map();
Josef Bacik16d299a2011-04-06 14:53:07 -04005710 if (!em) {
5711 em = ERR_PTR(-ENOMEM);
5712 goto out;
5713 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005714 }
5715
5716 em->start = start;
5717 em->orig_start = em->start;
5718 em->len = ins.offset;
5719
5720 em->block_start = ins.objectid;
5721 em->block_len = ins.offset;
5722 em->bdev = root->fs_info->fs_devices->latest_bdev;
Josef Bacik16d299a2011-04-06 14:53:07 -04005723
5724 /*
5725 * We need to do this because if we're using the original em we searched
5726 * for, we could have EXTENT_FLAG_VACANCY set, and we don't want that.
5727 */
5728 em->flags = 0;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005729 set_bit(EXTENT_FLAG_PINNED, &em->flags);
5730
Josef Bacik16d299a2011-04-06 14:53:07 -04005731 while (insert) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04005732 write_lock(&em_tree->lock);
5733 ret = add_extent_mapping(em_tree, em);
5734 write_unlock(&em_tree->lock);
5735 if (ret != -EEXIST)
5736 break;
5737 btrfs_drop_extent_cache(inode, start, start + em->len - 1, 0);
5738 }
5739
5740 ret = btrfs_add_ordered_extent_dio(inode, start, ins.objectid,
5741 ins.offset, ins.offset, 0);
5742 if (ret) {
5743 btrfs_free_reserved_extent(root, ins.objectid, ins.offset);
5744 em = ERR_PTR(ret);
5745 }
5746out:
5747 btrfs_end_transaction(trans, root);
5748 return em;
5749}
5750
Chris Mason46bfbb52010-05-26 11:04:10 -04005751/*
5752 * returns 1 when the nocow is safe, < 1 on error, 0 if the
5753 * block must be cow'd
5754 */
5755static noinline int can_nocow_odirect(struct btrfs_trans_handle *trans,
5756 struct inode *inode, u64 offset, u64 len)
5757{
5758 struct btrfs_path *path;
5759 int ret;
5760 struct extent_buffer *leaf;
5761 struct btrfs_root *root = BTRFS_I(inode)->root;
5762 struct btrfs_file_extent_item *fi;
5763 struct btrfs_key key;
5764 u64 disk_bytenr;
5765 u64 backref_offset;
5766 u64 extent_end;
5767 u64 num_bytes;
5768 int slot;
5769 int found_type;
5770
5771 path = btrfs_alloc_path();
5772 if (!path)
5773 return -ENOMEM;
5774
Li Zefan33345d012011-04-20 10:31:50 +08005775 ret = btrfs_lookup_file_extent(trans, root, path, btrfs_ino(inode),
Chris Mason46bfbb52010-05-26 11:04:10 -04005776 offset, 0);
5777 if (ret < 0)
5778 goto out;
5779
5780 slot = path->slots[0];
5781 if (ret == 1) {
5782 if (slot == 0) {
5783 /* can't find the item, must cow */
5784 ret = 0;
5785 goto out;
5786 }
5787 slot--;
5788 }
5789 ret = 0;
5790 leaf = path->nodes[0];
5791 btrfs_item_key_to_cpu(leaf, &key, slot);
Li Zefan33345d012011-04-20 10:31:50 +08005792 if (key.objectid != btrfs_ino(inode) ||
Chris Mason46bfbb52010-05-26 11:04:10 -04005793 key.type != BTRFS_EXTENT_DATA_KEY) {
5794 /* not our file or wrong item type, must cow */
5795 goto out;
5796 }
5797
5798 if (key.offset > offset) {
5799 /* Wrong offset, must cow */
5800 goto out;
5801 }
5802
5803 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
5804 found_type = btrfs_file_extent_type(leaf, fi);
5805 if (found_type != BTRFS_FILE_EXTENT_REG &&
5806 found_type != BTRFS_FILE_EXTENT_PREALLOC) {
5807 /* not a regular extent, must cow */
5808 goto out;
5809 }
5810 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
5811 backref_offset = btrfs_file_extent_offset(leaf, fi);
5812
5813 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
5814 if (extent_end < offset + len) {
5815 /* extent doesn't include our full range, must cow */
5816 goto out;
5817 }
5818
5819 if (btrfs_extent_readonly(root, disk_bytenr))
5820 goto out;
5821
5822 /*
5823 * look for other files referencing this extent, if we
5824 * find any we must cow
5825 */
Li Zefan33345d012011-04-20 10:31:50 +08005826 if (btrfs_cross_ref_exist(trans, root, btrfs_ino(inode),
Chris Mason46bfbb52010-05-26 11:04:10 -04005827 key.offset - backref_offset, disk_bytenr))
5828 goto out;
5829
5830 /*
5831 * adjust disk_bytenr and num_bytes to cover just the bytes
5832 * in this extent we are about to write. If there
5833 * are any csums in that range we have to cow in order
5834 * to keep the csums correct
5835 */
5836 disk_bytenr += backref_offset;
5837 disk_bytenr += offset - key.offset;
5838 num_bytes = min(offset + len, extent_end) - offset;
5839 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
5840 goto out;
5841 /*
5842 * all of the above have passed, it is safe to overwrite this extent
5843 * without cow
5844 */
5845 ret = 1;
5846out:
5847 btrfs_free_path(path);
5848 return ret;
5849}
5850
Josef Bacikeb838e72012-07-31 16:28:48 -04005851static int lock_extent_direct(struct inode *inode, u64 lockstart, u64 lockend,
5852 struct extent_state **cached_state, int writing)
5853{
5854 struct btrfs_ordered_extent *ordered;
5855 int ret = 0;
5856
5857 while (1) {
5858 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
5859 0, cached_state);
5860 /*
5861 * We're concerned with the entire range that we're going to be
5862 * doing DIO to, so we need to make sure theres no ordered
5863 * extents in this range.
5864 */
5865 ordered = btrfs_lookup_ordered_range(inode, lockstart,
5866 lockend - lockstart + 1);
5867
5868 /*
5869 * We need to make sure there are no buffered pages in this
5870 * range either, we could have raced between the invalidate in
5871 * generic_file_direct_write and locking the extent. The
5872 * invalidate needs to happen so that reads after a write do not
5873 * get stale data.
5874 */
5875 if (!ordered && (!writing ||
5876 !test_range_bit(&BTRFS_I(inode)->io_tree,
5877 lockstart, lockend, EXTENT_UPTODATE, 0,
5878 *cached_state)))
5879 break;
5880
5881 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
5882 cached_state, GFP_NOFS);
5883
5884 if (ordered) {
5885 btrfs_start_ordered_extent(inode, ordered, 1);
5886 btrfs_put_ordered_extent(ordered);
5887 } else {
5888 /* Screw you mmap */
5889 ret = filemap_write_and_wait_range(inode->i_mapping,
5890 lockstart,
5891 lockend);
5892 if (ret)
5893 break;
5894
5895 /*
5896 * If we found a page that couldn't be invalidated just
5897 * fall back to buffered.
5898 */
5899 ret = invalidate_inode_pages2_range(inode->i_mapping,
5900 lockstart >> PAGE_CACHE_SHIFT,
5901 lockend >> PAGE_CACHE_SHIFT);
5902 if (ret)
5903 break;
5904 }
5905
5906 cond_resched();
5907 }
5908
5909 return ret;
5910}
5911
Josef Bacik69ffb542012-09-11 15:40:07 -04005912static struct extent_map *create_pinned_em(struct inode *inode, u64 start,
5913 u64 len, u64 orig_start,
5914 u64 block_start, u64 block_len,
5915 int type)
5916{
5917 struct extent_map_tree *em_tree;
5918 struct extent_map *em;
5919 struct btrfs_root *root = BTRFS_I(inode)->root;
5920 int ret;
5921
5922 em_tree = &BTRFS_I(inode)->extent_tree;
5923 em = alloc_extent_map();
5924 if (!em)
5925 return ERR_PTR(-ENOMEM);
5926
5927 em->start = start;
5928 em->orig_start = orig_start;
5929 em->len = len;
5930 em->block_len = block_len;
5931 em->block_start = block_start;
5932 em->bdev = root->fs_info->fs_devices->latest_bdev;
5933 set_bit(EXTENT_FLAG_PINNED, &em->flags);
5934 if (type == BTRFS_ORDERED_PREALLOC)
5935 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
5936
5937 do {
5938 btrfs_drop_extent_cache(inode, em->start,
5939 em->start + em->len - 1, 0);
5940 write_lock(&em_tree->lock);
5941 ret = add_extent_mapping(em_tree, em);
5942 write_unlock(&em_tree->lock);
5943 } while (ret == -EEXIST);
5944
5945 if (ret) {
5946 free_extent_map(em);
5947 return ERR_PTR(ret);
5948 }
5949
5950 return em;
5951}
5952
5953
Josef Bacik4b46fce2010-05-23 11:00:55 -04005954static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock,
5955 struct buffer_head *bh_result, int create)
5956{
5957 struct extent_map *em;
5958 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikeb838e72012-07-31 16:28:48 -04005959 struct extent_state *cached_state = NULL;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005960 u64 start = iblock << inode->i_blkbits;
Josef Bacikeb838e72012-07-31 16:28:48 -04005961 u64 lockstart, lockend;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005962 u64 len = bh_result->b_size;
Chris Mason46bfbb52010-05-26 11:04:10 -04005963 struct btrfs_trans_handle *trans;
Josef Bacikeb838e72012-07-31 16:28:48 -04005964 int unlock_bits = EXTENT_LOCKED;
5965 int ret;
5966
Josef Bacikeb838e72012-07-31 16:28:48 -04005967 if (create) {
5968 ret = btrfs_delalloc_reserve_space(inode, len);
5969 if (ret)
5970 return ret;
5971 unlock_bits |= EXTENT_DELALLOC | EXTENT_DIRTY;
Josef Bacikc3298612012-08-03 16:49:19 -04005972 } else {
5973 len = min_t(u64, len, root->sectorsize);
Josef Bacikeb838e72012-07-31 16:28:48 -04005974 }
5975
Josef Bacikc3298612012-08-03 16:49:19 -04005976 lockstart = start;
5977 lockend = start + len - 1;
5978
Josef Bacikeb838e72012-07-31 16:28:48 -04005979 /*
5980 * If this errors out it's because we couldn't invalidate pagecache for
5981 * this range and we need to fallback to buffered.
5982 */
5983 if (lock_extent_direct(inode, lockstart, lockend, &cached_state, create))
5984 return -ENOTBLK;
5985
5986 if (create) {
5987 ret = set_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
5988 lockend, EXTENT_DELALLOC, NULL,
5989 &cached_state, GFP_NOFS);
5990 if (ret)
5991 goto unlock_err;
5992 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005993
5994 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
Josef Bacikeb838e72012-07-31 16:28:48 -04005995 if (IS_ERR(em)) {
5996 ret = PTR_ERR(em);
5997 goto unlock_err;
5998 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005999
6000 /*
6001 * Ok for INLINE and COMPRESSED extents we need to fallback on buffered
6002 * io. INLINE is special, and we could probably kludge it in here, but
6003 * it's still buffered so for safety lets just fall back to the generic
6004 * buffered path.
6005 *
6006 * For COMPRESSED we _have_ to read the entire extent in so we can
6007 * decompress it, so there will be buffering required no matter what we
6008 * do, so go ahead and fallback to buffered.
6009 *
6010 * We return -ENOTBLK because thats what makes DIO go ahead and go back
6011 * to buffered IO. Don't blame me, this is the price we pay for using
6012 * the generic code.
6013 */
6014 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) ||
6015 em->block_start == EXTENT_MAP_INLINE) {
6016 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04006017 ret = -ENOTBLK;
6018 goto unlock_err;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006019 }
6020
6021 /* Just a good old fashioned hole, return */
6022 if (!create && (em->block_start == EXTENT_MAP_HOLE ||
6023 test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
6024 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04006025 ret = 0;
6026 goto unlock_err;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006027 }
6028
6029 /*
6030 * We don't allocate a new extent in the following cases
6031 *
6032 * 1) The inode is marked as NODATACOW. In this case we'll just use the
6033 * existing extent.
6034 * 2) The extent is marked as PREALLOC. We're good to go here and can
6035 * just use the extent.
6036 *
6037 */
Chris Mason46bfbb52010-05-26 11:04:10 -04006038 if (!create) {
Josef Bacikeb838e72012-07-31 16:28:48 -04006039 len = min(len, em->len - (start - em->start));
6040 lockstart = start + len;
6041 goto unlock;
Chris Mason46bfbb52010-05-26 11:04:10 -04006042 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04006043
6044 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
6045 ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
6046 em->block_start != EXTENT_MAP_HOLE)) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04006047 int type;
6048 int ret;
Chris Mason46bfbb52010-05-26 11:04:10 -04006049 u64 block_start;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006050
6051 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
6052 type = BTRFS_ORDERED_PREALLOC;
6053 else
6054 type = BTRFS_ORDERED_NOCOW;
Chris Mason46bfbb52010-05-26 11:04:10 -04006055 len = min(len, em->len - (start - em->start));
Josef Bacik4b46fce2010-05-23 11:00:55 -04006056 block_start = em->block_start + (start - em->start);
Chris Mason46bfbb52010-05-26 11:04:10 -04006057
6058 /*
6059 * we're not going to log anything, but we do need
6060 * to make sure the current transaction stays open
6061 * while we look for nocow cross refs
6062 */
Josef Bacik7a7eaa42011-04-13 12:54:33 -04006063 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00006064 if (IS_ERR(trans))
Chris Mason46bfbb52010-05-26 11:04:10 -04006065 goto must_cow;
6066
6067 if (can_nocow_odirect(trans, inode, start, len) == 1) {
Josef Bacik69ffb542012-09-11 15:40:07 -04006068 u64 orig_start = em->start;
6069
6070 if (type == BTRFS_ORDERED_PREALLOC) {
6071 free_extent_map(em);
6072 em = create_pinned_em(inode, start, len,
6073 orig_start,
6074 block_start, len, type);
6075 if (IS_ERR(em)) {
6076 btrfs_end_transaction(trans, root);
6077 goto unlock_err;
6078 }
6079 }
6080
Chris Mason46bfbb52010-05-26 11:04:10 -04006081 ret = btrfs_add_ordered_extent_dio(inode, start,
6082 block_start, len, len, type);
6083 btrfs_end_transaction(trans, root);
6084 if (ret) {
6085 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04006086 goto unlock_err;
Chris Mason46bfbb52010-05-26 11:04:10 -04006087 }
6088 goto unlock;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006089 }
Chris Mason46bfbb52010-05-26 11:04:10 -04006090 btrfs_end_transaction(trans, root);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006091 }
Chris Mason46bfbb52010-05-26 11:04:10 -04006092must_cow:
6093 /*
6094 * this will cow the extent, reset the len in case we changed
6095 * it above
6096 */
6097 len = bh_result->b_size;
Josef Bacik16d299a2011-04-06 14:53:07 -04006098 em = btrfs_new_extent_direct(inode, em, start, len);
Josef Bacikeb838e72012-07-31 16:28:48 -04006099 if (IS_ERR(em)) {
6100 ret = PTR_ERR(em);
6101 goto unlock_err;
6102 }
Chris Mason46bfbb52010-05-26 11:04:10 -04006103 len = min(len, em->len - (start - em->start));
6104unlock:
Josef Bacik4b46fce2010-05-23 11:00:55 -04006105 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
6106 inode->i_blkbits;
Chris Mason46bfbb52010-05-26 11:04:10 -04006107 bh_result->b_size = len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006108 bh_result->b_bdev = em->bdev;
6109 set_buffer_mapped(bh_result);
Josef Bacikc3473e82012-06-19 10:59:00 -04006110 if (create) {
6111 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
6112 set_buffer_new(bh_result);
6113
6114 /*
6115 * Need to update the i_size under the extent lock so buffered
6116 * readers will get the updated i_size when we unlock.
6117 */
6118 if (start + len > i_size_read(inode))
6119 i_size_write(inode, start + len);
6120 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04006121
Josef Bacikeb838e72012-07-31 16:28:48 -04006122 /*
6123 * In the case of write we need to clear and unlock the entire range,
6124 * in the case of read we need to unlock only the end area that we
6125 * aren't using if there is any left over space.
6126 */
Liu Bo24c03fa2012-08-22 20:10:38 -06006127 if (lockstart < lockend) {
6128 if (create && len < lockend - lockstart) {
6129 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
Liu Bo9e8a4a82012-09-05 19:10:51 -06006130 lockstart + len - 1,
6131 unlock_bits | EXTENT_DEFRAG, 1, 0,
Liu Bo24c03fa2012-08-22 20:10:38 -06006132 &cached_state, GFP_NOFS);
6133 /*
6134 * Beside unlock, we also need to cleanup reserved space
6135 * for the left range by attaching EXTENT_DO_ACCOUNTING.
6136 */
6137 clear_extent_bit(&BTRFS_I(inode)->io_tree,
6138 lockstart + len, lockend,
Liu Bo9e8a4a82012-09-05 19:10:51 -06006139 unlock_bits | EXTENT_DO_ACCOUNTING |
6140 EXTENT_DEFRAG, 1, 0, NULL, GFP_NOFS);
Liu Bo24c03fa2012-08-22 20:10:38 -06006141 } else {
6142 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
6143 lockend, unlock_bits, 1, 0,
6144 &cached_state, GFP_NOFS);
6145 }
6146 } else {
Josef Bacikeb838e72012-07-31 16:28:48 -04006147 free_extent_state(cached_state);
Liu Bo24c03fa2012-08-22 20:10:38 -06006148 }
Josef Bacikeb838e72012-07-31 16:28:48 -04006149
Josef Bacik4b46fce2010-05-23 11:00:55 -04006150 free_extent_map(em);
6151
6152 return 0;
Josef Bacikeb838e72012-07-31 16:28:48 -04006153
6154unlock_err:
6155 if (create)
6156 unlock_bits |= EXTENT_DO_ACCOUNTING;
6157
6158 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6159 unlock_bits, 1, 0, &cached_state, GFP_NOFS);
6160 return ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006161}
6162
6163struct btrfs_dio_private {
6164 struct inode *inode;
6165 u64 logical_offset;
6166 u64 disk_bytenr;
6167 u64 bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006168 void *private;
Miao Xiee65e1532010-11-22 03:04:43 +00006169
6170 /* number of bios pending for this dio */
6171 atomic_t pending_bios;
6172
6173 /* IO errors */
6174 int errors;
6175
6176 struct bio *orig_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006177};
6178
6179static void btrfs_endio_direct_read(struct bio *bio, int err)
6180{
Miao Xiee65e1532010-11-22 03:04:43 +00006181 struct btrfs_dio_private *dip = bio->bi_private;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006182 struct bio_vec *bvec_end = bio->bi_io_vec + bio->bi_vcnt - 1;
6183 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006184 struct inode *inode = dip->inode;
6185 struct btrfs_root *root = BTRFS_I(inode)->root;
6186 u64 start;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006187
6188 start = dip->logical_offset;
6189 do {
6190 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)) {
6191 struct page *page = bvec->bv_page;
6192 char *kaddr;
6193 u32 csum = ~(u32)0;
Josef Bacikc3298612012-08-03 16:49:19 -04006194 u64 private = ~(u32)0;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006195 unsigned long flags;
6196
Josef Bacikc3298612012-08-03 16:49:19 -04006197 if (get_state_private(&BTRFS_I(inode)->io_tree,
6198 start, &private))
6199 goto failed;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006200 local_irq_save(flags);
Cong Wang7ac687d2011-11-25 23:14:28 +08006201 kaddr = kmap_atomic(page);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006202 csum = btrfs_csum_data(root, kaddr + bvec->bv_offset,
6203 csum, bvec->bv_len);
6204 btrfs_csum_final(csum, (char *)&csum);
Cong Wang7ac687d2011-11-25 23:14:28 +08006205 kunmap_atomic(kaddr);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006206 local_irq_restore(flags);
6207
6208 flush_dcache_page(bvec->bv_page);
Josef Bacikc3298612012-08-03 16:49:19 -04006209 if (csum != private) {
6210failed:
Li Zefan33345d012011-04-20 10:31:50 +08006211 printk(KERN_ERR "btrfs csum failed ino %llu off"
Josef Bacik4b46fce2010-05-23 11:00:55 -04006212 " %llu csum %u private %u\n",
Li Zefan33345d012011-04-20 10:31:50 +08006213 (unsigned long long)btrfs_ino(inode),
6214 (unsigned long long)start,
Josef Bacikc3298612012-08-03 16:49:19 -04006215 csum, (unsigned)private);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006216 err = -EIO;
6217 }
6218 }
6219
6220 start += bvec->bv_len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006221 bvec++;
6222 } while (bvec <= bvec_end);
6223
6224 unlock_extent(&BTRFS_I(inode)->io_tree, dip->logical_offset,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006225 dip->logical_offset + dip->bytes - 1);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006226 bio->bi_private = dip->private;
6227
Josef Bacik4b46fce2010-05-23 11:00:55 -04006228 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04006229
6230 /* If we had a csum failure make sure to clear the uptodate flag */
6231 if (err)
6232 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006233 dio_end_io(bio, err);
6234}
6235
6236static void btrfs_endio_direct_write(struct bio *bio, int err)
6237{
6238 struct btrfs_dio_private *dip = bio->bi_private;
6239 struct inode *inode = dip->inode;
6240 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006241 struct btrfs_ordered_extent *ordered = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05006242 u64 ordered_offset = dip->logical_offset;
6243 u64 ordered_bytes = dip->bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006244 int ret;
6245
6246 if (err)
6247 goto out_done;
Chris Mason163cf092010-11-28 19:56:33 -05006248again:
6249 ret = btrfs_dec_test_first_ordered_pending(inode, &ordered,
6250 &ordered_offset,
Josef Bacik5fd02042012-05-02 14:00:54 -04006251 ordered_bytes, !err);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006252 if (!ret)
Chris Mason163cf092010-11-28 19:56:33 -05006253 goto out_test;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006254
Josef Bacik5fd02042012-05-02 14:00:54 -04006255 ordered->work.func = finish_ordered_fn;
6256 ordered->work.flags = 0;
6257 btrfs_queue_worker(&root->fs_info->endio_write_workers,
6258 &ordered->work);
Chris Mason163cf092010-11-28 19:56:33 -05006259out_test:
6260 /*
6261 * our bio might span multiple ordered extents. If we haven't
6262 * completed the accounting for the whole dio, go back and try again
6263 */
6264 if (ordered_offset < dip->logical_offset + dip->bytes) {
6265 ordered_bytes = dip->logical_offset + dip->bytes -
6266 ordered_offset;
Josef Bacik5fd02042012-05-02 14:00:54 -04006267 ordered = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05006268 goto again;
6269 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04006270out_done:
6271 bio->bi_private = dip->private;
6272
Josef Bacik4b46fce2010-05-23 11:00:55 -04006273 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04006274
6275 /* If we had an error make sure to clear the uptodate flag */
6276 if (err)
6277 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006278 dio_end_io(bio, err);
6279}
6280
Chris Masoneaf25d92010-05-25 09:48:28 -04006281static int __btrfs_submit_bio_start_direct_io(struct inode *inode, int rw,
6282 struct bio *bio, int mirror_num,
6283 unsigned long bio_flags, u64 offset)
6284{
6285 int ret;
6286 struct btrfs_root *root = BTRFS_I(inode)->root;
6287 ret = btrfs_csum_one_bio(root, inode, bio, offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006288 BUG_ON(ret); /* -ENOMEM */
Chris Masoneaf25d92010-05-25 09:48:28 -04006289 return 0;
6290}
6291
Miao Xiee65e1532010-11-22 03:04:43 +00006292static void btrfs_end_dio_bio(struct bio *bio, int err)
6293{
6294 struct btrfs_dio_private *dip = bio->bi_private;
6295
6296 if (err) {
Li Zefan33345d012011-04-20 10:31:50 +08006297 printk(KERN_ERR "btrfs direct IO failed ino %llu rw %lu "
Jan Beulich3dd14622010-12-07 14:54:09 +00006298 "sector %#Lx len %u err no %d\n",
Li Zefan33345d012011-04-20 10:31:50 +08006299 (unsigned long long)btrfs_ino(dip->inode), bio->bi_rw,
Jan Beulich3dd14622010-12-07 14:54:09 +00006300 (unsigned long long)bio->bi_sector, bio->bi_size, err);
Miao Xiee65e1532010-11-22 03:04:43 +00006301 dip->errors = 1;
6302
6303 /*
6304 * before atomic variable goto zero, we must make sure
6305 * dip->errors is perceived to be set.
6306 */
6307 smp_mb__before_atomic_dec();
6308 }
6309
6310 /* if there are more bios still pending for this dio, just exit */
6311 if (!atomic_dec_and_test(&dip->pending_bios))
6312 goto out;
6313
6314 if (dip->errors)
6315 bio_io_error(dip->orig_bio);
6316 else {
6317 set_bit(BIO_UPTODATE, &dip->orig_bio->bi_flags);
6318 bio_endio(dip->orig_bio, 0);
6319 }
6320out:
6321 bio_put(bio);
6322}
6323
6324static struct bio *btrfs_dio_bio_alloc(struct block_device *bdev,
6325 u64 first_sector, gfp_t gfp_flags)
6326{
6327 int nr_vecs = bio_get_nr_vecs(bdev);
6328 return btrfs_bio_alloc(bdev, first_sector, nr_vecs, gfp_flags);
6329}
6330
6331static inline int __btrfs_submit_dio_bio(struct bio *bio, struct inode *inode,
6332 int rw, u64 file_offset, int skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04006333 int async_submit)
Miao Xiee65e1532010-11-22 03:04:43 +00006334{
6335 int write = rw & REQ_WRITE;
6336 struct btrfs_root *root = BTRFS_I(inode)->root;
6337 int ret;
6338
6339 bio_get(bio);
Josef Bacik5fd02042012-05-02 14:00:54 -04006340
6341 if (!write) {
6342 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
6343 if (ret)
6344 goto err;
6345 }
Miao Xiee65e1532010-11-22 03:04:43 +00006346
Josef Bacik1ae39932011-04-06 14:41:34 -04006347 if (skip_sum)
6348 goto map;
6349
6350 if (write && async_submit) {
Miao Xiee65e1532010-11-22 03:04:43 +00006351 ret = btrfs_wq_submit_bio(root->fs_info,
6352 inode, rw, bio, 0, 0,
6353 file_offset,
6354 __btrfs_submit_bio_start_direct_io,
6355 __btrfs_submit_bio_done);
6356 goto err;
Josef Bacik1ae39932011-04-06 14:41:34 -04006357 } else if (write) {
6358 /*
6359 * If we aren't doing async submit, calculate the csum of the
6360 * bio now.
6361 */
6362 ret = btrfs_csum_one_bio(root, inode, bio, file_offset, 1);
6363 if (ret)
6364 goto err;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00006365 } else if (!skip_sum) {
Josef Bacikc3298612012-08-03 16:49:19 -04006366 ret = btrfs_lookup_bio_sums_dio(root, inode, bio, file_offset);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00006367 if (ret)
6368 goto err;
6369 }
Miao Xiee65e1532010-11-22 03:04:43 +00006370
Josef Bacik1ae39932011-04-06 14:41:34 -04006371map:
6372 ret = btrfs_map_bio(root, rw, bio, 0, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00006373err:
6374 bio_put(bio);
6375 return ret;
6376}
6377
6378static int btrfs_submit_direct_hook(int rw, struct btrfs_dio_private *dip,
6379 int skip_sum)
6380{
6381 struct inode *inode = dip->inode;
6382 struct btrfs_root *root = BTRFS_I(inode)->root;
6383 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
6384 struct bio *bio;
6385 struct bio *orig_bio = dip->orig_bio;
6386 struct bio_vec *bvec = orig_bio->bi_io_vec;
6387 u64 start_sector = orig_bio->bi_sector;
6388 u64 file_offset = dip->logical_offset;
6389 u64 submit_len = 0;
6390 u64 map_length;
6391 int nr_pages = 0;
Miao Xiee65e1532010-11-22 03:04:43 +00006392 int ret = 0;
Josef Bacik1ae39932011-04-06 14:41:34 -04006393 int async_submit = 0;
Miao Xiee65e1532010-11-22 03:04:43 +00006394
Miao Xiee65e1532010-11-22 03:04:43 +00006395 map_length = orig_bio->bi_size;
6396 ret = btrfs_map_block(map_tree, READ, start_sector << 9,
6397 &map_length, NULL, 0);
6398 if (ret) {
Josef Bacik64728bb2011-04-25 19:43:52 -04006399 bio_put(orig_bio);
Miao Xiee65e1532010-11-22 03:04:43 +00006400 return -EIO;
6401 }
6402
Josef Bacik02f57c72011-04-06 14:25:44 -04006403 if (map_length >= orig_bio->bi_size) {
6404 bio = orig_bio;
6405 goto submit;
6406 }
6407
Josef Bacik1ae39932011-04-06 14:41:34 -04006408 async_submit = 1;
Josef Bacik02f57c72011-04-06 14:25:44 -04006409 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev, start_sector, GFP_NOFS);
6410 if (!bio)
6411 return -ENOMEM;
6412 bio->bi_private = dip;
6413 bio->bi_end_io = btrfs_end_dio_bio;
6414 atomic_inc(&dip->pending_bios);
6415
Miao Xiee65e1532010-11-22 03:04:43 +00006416 while (bvec <= (orig_bio->bi_io_vec + orig_bio->bi_vcnt - 1)) {
6417 if (unlikely(map_length < submit_len + bvec->bv_len ||
6418 bio_add_page(bio, bvec->bv_page, bvec->bv_len,
6419 bvec->bv_offset) < bvec->bv_len)) {
6420 /*
6421 * inc the count before we submit the bio so
6422 * we know the end IO handler won't happen before
6423 * we inc the count. Otherwise, the dip might get freed
6424 * before we're done setting it up
6425 */
6426 atomic_inc(&dip->pending_bios);
6427 ret = __btrfs_submit_dio_bio(bio, inode, rw,
6428 file_offset, skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04006429 async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00006430 if (ret) {
6431 bio_put(bio);
6432 atomic_dec(&dip->pending_bios);
6433 goto out_err;
6434 }
6435
Miao Xiee65e1532010-11-22 03:04:43 +00006436 start_sector += submit_len >> 9;
6437 file_offset += submit_len;
6438
6439 submit_len = 0;
6440 nr_pages = 0;
6441
6442 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev,
6443 start_sector, GFP_NOFS);
6444 if (!bio)
6445 goto out_err;
6446 bio->bi_private = dip;
6447 bio->bi_end_io = btrfs_end_dio_bio;
6448
6449 map_length = orig_bio->bi_size;
6450 ret = btrfs_map_block(map_tree, READ, start_sector << 9,
6451 &map_length, NULL, 0);
6452 if (ret) {
6453 bio_put(bio);
6454 goto out_err;
6455 }
6456 } else {
6457 submit_len += bvec->bv_len;
6458 nr_pages ++;
6459 bvec++;
6460 }
6461 }
6462
Josef Bacik02f57c72011-04-06 14:25:44 -04006463submit:
Miao Xiee65e1532010-11-22 03:04:43 +00006464 ret = __btrfs_submit_dio_bio(bio, inode, rw, file_offset, skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04006465 async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00006466 if (!ret)
6467 return 0;
6468
6469 bio_put(bio);
6470out_err:
6471 dip->errors = 1;
6472 /*
6473 * before atomic variable goto zero, we must
6474 * make sure dip->errors is perceived to be set.
6475 */
6476 smp_mb__before_atomic_dec();
6477 if (atomic_dec_and_test(&dip->pending_bios))
6478 bio_io_error(dip->orig_bio);
6479
6480 /* bio_end_io() will handle error, so we needn't return it */
6481 return 0;
6482}
6483
Josef Bacik4b46fce2010-05-23 11:00:55 -04006484static void btrfs_submit_direct(int rw, struct bio *bio, struct inode *inode,
6485 loff_t file_offset)
6486{
6487 struct btrfs_root *root = BTRFS_I(inode)->root;
6488 struct btrfs_dio_private *dip;
6489 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006490 int skip_sum;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02006491 int write = rw & REQ_WRITE;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006492 int ret = 0;
6493
6494 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
6495
6496 dip = kmalloc(sizeof(*dip), GFP_NOFS);
6497 if (!dip) {
6498 ret = -ENOMEM;
6499 goto free_ordered;
6500 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04006501
6502 dip->private = bio->bi_private;
6503 dip->inode = inode;
6504 dip->logical_offset = file_offset;
6505
Josef Bacik4b46fce2010-05-23 11:00:55 -04006506 dip->bytes = 0;
6507 do {
6508 dip->bytes += bvec->bv_len;
6509 bvec++;
6510 } while (bvec <= (bio->bi_io_vec + bio->bi_vcnt - 1));
6511
Chris Mason46bfbb52010-05-26 11:04:10 -04006512 dip->disk_bytenr = (u64)bio->bi_sector << 9;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006513 bio->bi_private = dip;
Miao Xiee65e1532010-11-22 03:04:43 +00006514 dip->errors = 0;
6515 dip->orig_bio = bio;
6516 atomic_set(&dip->pending_bios, 0);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006517
6518 if (write)
6519 bio->bi_end_io = btrfs_endio_direct_write;
6520 else
6521 bio->bi_end_io = btrfs_endio_direct_read;
6522
Miao Xiee65e1532010-11-22 03:04:43 +00006523 ret = btrfs_submit_direct_hook(rw, dip, skip_sum);
6524 if (!ret)
Chris Masoneaf25d92010-05-25 09:48:28 -04006525 return;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006526free_ordered:
6527 /*
6528 * If this is a write, we need to clean up the reserved space and kill
6529 * the ordered extent.
6530 */
6531 if (write) {
6532 struct btrfs_ordered_extent *ordered;
Josef Bacik955256f2010-11-19 09:41:10 -05006533 ordered = btrfs_lookup_ordered_extent(inode, file_offset);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006534 if (!test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags) &&
6535 !test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags))
6536 btrfs_free_reserved_extent(root, ordered->start,
6537 ordered->disk_len);
6538 btrfs_put_ordered_extent(ordered);
6539 btrfs_put_ordered_extent(ordered);
6540 }
6541 bio_endio(bio, ret);
6542}
6543
Chris Mason5a5f79b2010-05-26 21:33:37 -04006544static ssize_t check_direct_IO(struct btrfs_root *root, int rw, struct kiocb *iocb,
6545 const struct iovec *iov, loff_t offset,
6546 unsigned long nr_segs)
6547{
6548 int seg;
Josef Bacika1b75f72011-04-08 15:51:18 +00006549 int i;
Chris Mason5a5f79b2010-05-26 21:33:37 -04006550 size_t size;
6551 unsigned long addr;
6552 unsigned blocksize_mask = root->sectorsize - 1;
6553 ssize_t retval = -EINVAL;
6554 loff_t end = offset;
6555
6556 if (offset & blocksize_mask)
6557 goto out;
6558
6559 /* Check the memory alignment. Blocks cannot straddle pages */
6560 for (seg = 0; seg < nr_segs; seg++) {
6561 addr = (unsigned long)iov[seg].iov_base;
6562 size = iov[seg].iov_len;
6563 end += size;
Josef Bacika1b75f72011-04-08 15:51:18 +00006564 if ((addr & blocksize_mask) || (size & blocksize_mask))
Chris Mason5a5f79b2010-05-26 21:33:37 -04006565 goto out;
Josef Bacika1b75f72011-04-08 15:51:18 +00006566
6567 /* If this is a write we don't need to check anymore */
6568 if (rw & WRITE)
6569 continue;
6570
6571 /*
6572 * Check to make sure we don't have duplicate iov_base's in this
6573 * iovec, if so return EINVAL, otherwise we'll get csum errors
6574 * when reading back.
6575 */
6576 for (i = seg + 1; i < nr_segs; i++) {
6577 if (iov[seg].iov_base == iov[i].iov_base)
6578 goto out;
6579 }
Chris Mason5a5f79b2010-05-26 21:33:37 -04006580 }
6581 retval = 0;
6582out:
6583 return retval;
6584}
Josef Bacikeb838e72012-07-31 16:28:48 -04006585
Chris Mason16432982008-04-10 10:23:21 -04006586static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
6587 const struct iovec *iov, loff_t offset,
6588 unsigned long nr_segs)
6589{
Josef Bacik4b46fce2010-05-23 11:00:55 -04006590 struct file *file = iocb->ki_filp;
6591 struct inode *inode = file->f_mapping->host;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006592
Chris Mason5a5f79b2010-05-26 21:33:37 -04006593 if (check_direct_IO(BTRFS_I(inode)->root, rw, iocb, iov,
Josef Bacikeb838e72012-07-31 16:28:48 -04006594 offset, nr_segs))
Chris Mason5a5f79b2010-05-26 21:33:37 -04006595 return 0;
Chris Mason5a5f79b2010-05-26 21:33:37 -04006596
Josef Bacikeb838e72012-07-31 16:28:48 -04006597 return __blockdev_direct_IO(rw, iocb, inode,
Chris Mason5a5f79b2010-05-26 21:33:37 -04006598 BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev,
6599 iov, offset, nr_segs, btrfs_get_blocks_direct, NULL,
6600 btrfs_submit_direct, 0);
Chris Mason16432982008-04-10 10:23:21 -04006601}
6602
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006603static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
6604 __u64 start, __u64 len)
6605{
Chris Masonec29ed52011-02-23 16:23:20 -05006606 return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent_fiemap);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006607}
6608
Chris Mason9ebefb182007-06-15 13:50:00 -04006609int btrfs_readpage(struct file *file, struct page *page)
6610{
Chris Masond1310b22008-01-24 16:13:08 -05006611 struct extent_io_tree *tree;
6612 tree = &BTRFS_I(page->mapping->host)->io_tree;
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02006613 return extent_read_full_page(tree, page, btrfs_get_extent, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04006614}
Chris Mason1832a6d2007-12-21 16:27:21 -05006615
Chris Mason39279cc2007-06-12 06:35:45 -04006616static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
6617{
Chris Masond1310b22008-01-24 16:13:08 -05006618 struct extent_io_tree *tree;
Chris Masonb888db2b2007-08-27 16:49:44 -04006619
6620
6621 if (current->flags & PF_MEMALLOC) {
6622 redirty_page_for_writepage(wbc, page);
6623 unlock_page(page);
6624 return 0;
6625 }
Chris Masond1310b22008-01-24 16:13:08 -05006626 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04006627 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
6628}
Chris Mason39279cc2007-06-12 06:35:45 -04006629
Chris Masonf4219502008-07-22 11:18:09 -04006630int btrfs_writepages(struct address_space *mapping,
6631 struct writeback_control *wbc)
Chris Masonb293f02e2007-11-01 19:45:34 -04006632{
Chris Masond1310b22008-01-24 16:13:08 -05006633 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05006634
Chris Masond1310b22008-01-24 16:13:08 -05006635 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f02e2007-11-01 19:45:34 -04006636 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
6637}
6638
Chris Mason3ab2fb52007-11-08 10:59:22 -05006639static int
6640btrfs_readpages(struct file *file, struct address_space *mapping,
6641 struct list_head *pages, unsigned nr_pages)
6642{
Chris Masond1310b22008-01-24 16:13:08 -05006643 struct extent_io_tree *tree;
6644 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05006645 return extent_readpages(tree, mapping, pages, nr_pages,
6646 btrfs_get_extent);
6647}
Chris Masone6dcd2d2008-07-17 12:53:50 -04006648static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04006649{
Chris Masond1310b22008-01-24 16:13:08 -05006650 struct extent_io_tree *tree;
6651 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04006652 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006653
Chris Masond1310b22008-01-24 16:13:08 -05006654 tree = &BTRFS_I(page->mapping->host)->io_tree;
6655 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05006656 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04006657 if (ret == 1) {
6658 ClearPagePrivate(page);
6659 set_page_private(page, 0);
6660 page_cache_release(page);
6661 }
6662 return ret;
6663}
Chris Mason39279cc2007-06-12 06:35:45 -04006664
Chris Masone6dcd2d2008-07-17 12:53:50 -04006665static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
6666{
Chris Mason98509cf2008-09-11 15:51:43 -04006667 if (PageWriteback(page) || PageDirty(page))
6668 return 0;
Yan Zhengb335b002009-02-12 10:06:04 -05006669 return __btrfs_releasepage(page, gfp_flags & GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006670}
6671
Chris Masona52d9a82007-08-27 16:49:44 -04006672static void btrfs_invalidatepage(struct page *page, unsigned long offset)
6673{
Josef Bacik5fd02042012-05-02 14:00:54 -04006674 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05006675 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006676 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006677 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006678 u64 page_start = page_offset(page);
6679 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006680
Chris Mason8b62b722009-09-02 16:53:46 -04006681 /*
6682 * we have the page locked, so new writeback can't start,
6683 * and the dirty bit won't be cleared while we are here.
6684 *
6685 * Wait for IO on this page so that we can safely clear
6686 * the PagePrivate2 bit and do ordered accounting
6687 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006688 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04006689
Josef Bacik5fd02042012-05-02 14:00:54 -04006690 tree = &BTRFS_I(inode)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006691 if (offset) {
6692 btrfs_releasepage(page, GFP_NOFS);
6693 return;
6694 }
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006695 lock_extent_bits(tree, page_start, page_end, 0, &cached_state);
Josef Bacik5fd02042012-05-02 14:00:54 -04006696 ordered = btrfs_lookup_ordered_extent(inode,
Chris Masone6dcd2d2008-07-17 12:53:50 -04006697 page_offset(page));
6698 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04006699 /*
6700 * IO on this page will never be started, so we need
6701 * to account for any ordered extents now
6702 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006703 clear_extent_bit(tree, page_start, page_end,
6704 EXTENT_DIRTY | EXTENT_DELALLOC |
Liu Bo9e8a4a82012-09-05 19:10:51 -06006705 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING |
6706 EXTENT_DEFRAG, 1, 0, &cached_state, GFP_NOFS);
Chris Mason8b62b722009-09-02 16:53:46 -04006707 /*
6708 * whoever cleared the private bit is responsible
6709 * for the finish_ordered_io
6710 */
Josef Bacik5fd02042012-05-02 14:00:54 -04006711 if (TestClearPagePrivate2(page) &&
6712 btrfs_dec_test_ordered_pending(inode, &ordered, page_start,
6713 PAGE_CACHE_SIZE, 1)) {
6714 btrfs_finish_ordered_io(ordered);
Chris Mason8b62b722009-09-02 16:53:46 -04006715 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006716 btrfs_put_ordered_extent(ordered);
Josef Bacik2ac55d42010-02-03 19:33:23 +00006717 cached_state = NULL;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006718 lock_extent_bits(tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006719 }
6720 clear_extent_bit(tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04006721 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
Liu Bo9e8a4a82012-09-05 19:10:51 -06006722 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 1, 1,
6723 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006724 __btrfs_releasepage(page, GFP_NOFS);
6725
Chris Mason4a096752008-07-21 10:29:44 -04006726 ClearPageChecked(page);
Chris Mason9ad6b7bc2008-04-18 16:11:30 -04006727 if (PagePrivate(page)) {
Chris Mason9ad6b7bc2008-04-18 16:11:30 -04006728 ClearPagePrivate(page);
6729 set_page_private(page, 0);
6730 page_cache_release(page);
6731 }
Chris Mason39279cc2007-06-12 06:35:45 -04006732}
6733
Chris Mason9ebefb182007-06-15 13:50:00 -04006734/*
6735 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
6736 * called from a page fault handler when a page is first dirtied. Hence we must
6737 * be careful to check for EOF conditions here. We set the page up correctly
6738 * for a written page which means we get ENOSPC checking when writing into
6739 * holes and correct delalloc and unwritten extent mapping on filesystems that
6740 * support these features.
6741 *
6742 * We are not allowed to take the i_mutex here so we have to play games to
6743 * protect against truncate races as the page could now be beyond EOF. Because
6744 * vmtruncate() writes the inode size before removing pages, once we have the
6745 * page lock we can determine safely if the page is beyond EOF. If it is not
6746 * beyond EOF, then the page is guaranteed safe against truncation until we
6747 * unlock the page.
6748 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07006749int btrfs_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04006750{
Nick Pigginc2ec1752009-03-31 15:23:21 -07006751 struct page *page = vmf->page;
Chris Mason6da6aba2007-12-18 16:15:09 -05006752 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05006753 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006754 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
6755 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006756 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006757 char *kaddr;
6758 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04006759 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05006760 int ret;
Chris Mason9998eb72012-01-25 13:47:40 -05006761 int reserved = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04006762 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006763 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04006764
Jan Karab2b5ef52012-06-12 16:20:45 +02006765 sb_start_pagefault(inode->i_sb);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006766 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Chris Mason9998eb72012-01-25 13:47:40 -05006767 if (!ret) {
Josef Bacike41f9412012-03-26 09:46:47 -04006768 ret = file_update_time(vma->vm_file);
Chris Mason9998eb72012-01-25 13:47:40 -05006769 reserved = 1;
6770 }
Nick Piggin56a76f82009-03-31 15:23:23 -07006771 if (ret) {
6772 if (ret == -ENOMEM)
6773 ret = VM_FAULT_OOM;
6774 else /* -ENOSPC, -EIO, etc */
6775 ret = VM_FAULT_SIGBUS;
Chris Mason9998eb72012-01-25 13:47:40 -05006776 if (reserved)
6777 goto out;
6778 goto out_noreserve;
Nick Piggin56a76f82009-03-31 15:23:23 -07006779 }
Chris Mason1832a6d2007-12-21 16:27:21 -05006780
Nick Piggin56a76f82009-03-31 15:23:23 -07006781 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006782again:
Chris Mason9ebefb182007-06-15 13:50:00 -04006783 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04006784 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006785 page_start = page_offset(page);
6786 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006787
Chris Mason9ebefb182007-06-15 13:50:00 -04006788 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04006789 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04006790 /* page got truncated out from underneath us */
6791 goto out_unlock;
6792 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006793 wait_on_page_writeback(page);
6794
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006795 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006796 set_page_extent_mapped(page);
6797
Chris Masoneb84ae02008-07-17 13:53:27 -04006798 /*
6799 * we can't set the delalloc bits if there are pending ordered
6800 * extents. Drop our locks and wait for them to finish
6801 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006802 ordered = btrfs_lookup_ordered_extent(inode, page_start);
6803 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006804 unlock_extent_cached(io_tree, page_start, page_end,
6805 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006806 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04006807 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006808 btrfs_put_ordered_extent(ordered);
6809 goto again;
6810 }
6811
Josef Bacikfbf19082009-10-01 17:10:23 -04006812 /*
6813 * XXX - page_mkwrite gets called every time the page is dirtied, even
6814 * if it was already dirty, so for space accounting reasons we need to
6815 * clear any delalloc bits for the range we are fixing to save. There
6816 * is probably a better way to do this, but for now keep consistent with
6817 * prepare_pages in the normal write path.
6818 */
Josef Bacik2ac55d42010-02-03 19:33:23 +00006819 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Liu Bo9e8a4a82012-09-05 19:10:51 -06006820 EXTENT_DIRTY | EXTENT_DELALLOC |
6821 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
Josef Bacik2ac55d42010-02-03 19:33:23 +00006822 0, 0, &cached_state, GFP_NOFS);
Josef Bacikfbf19082009-10-01 17:10:23 -04006823
Josef Bacik2ac55d42010-02-03 19:33:23 +00006824 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
6825 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006826 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006827 unlock_extent_cached(io_tree, page_start, page_end,
6828 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006829 ret = VM_FAULT_SIGBUS;
6830 goto out_unlock;
6831 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006832 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04006833
6834 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04006835 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04006836 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04006837 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04006838 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04006839
Chris Masone6dcd2d2008-07-17 12:53:50 -04006840 if (zero_start != PAGE_CACHE_SIZE) {
6841 kaddr = kmap(page);
6842 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
6843 flush_dcache_page(page);
6844 kunmap(page);
6845 }
Chris Mason247e7432008-07-17 12:53:51 -04006846 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006847 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04006848 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04006849
Chris Mason257c62e2009-10-13 13:21:08 -04006850 BTRFS_I(inode)->last_trans = root->fs_info->generation;
6851 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
Liu Bo46d8bc32012-08-29 01:07:55 -06006852 BTRFS_I(inode)->last_log_commit = BTRFS_I(inode)->root->last_log_commit;
Chris Mason257c62e2009-10-13 13:21:08 -04006853
Josef Bacik2ac55d42010-02-03 19:33:23 +00006854 unlock_extent_cached(io_tree, page_start, page_end, &cached_state, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04006855
6856out_unlock:
Jan Karab2b5ef52012-06-12 16:20:45 +02006857 if (!ret) {
6858 sb_end_pagefault(inode->i_sb);
Chris Mason50a9b212009-09-11 12:33:12 -04006859 return VM_FAULT_LOCKED;
Jan Karab2b5ef52012-06-12 16:20:45 +02006860 }
Chris Mason9ebefb182007-06-15 13:50:00 -04006861 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05006862out:
Josef Bacikec39e182012-01-12 19:10:12 -05006863 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason9998eb72012-01-25 13:47:40 -05006864out_noreserve:
Jan Karab2b5ef52012-06-12 16:20:45 +02006865 sb_end_pagefault(inode->i_sb);
Chris Mason9ebefb182007-06-15 13:50:00 -04006866 return ret;
6867}
6868
Josef Bacika41ad392011-01-31 15:30:16 -05006869static int btrfs_truncate(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04006870{
6871 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikfcb80c22011-05-03 10:40:22 -04006872 struct btrfs_block_rsv *rsv;
Chris Mason39279cc2007-06-12 06:35:45 -04006873 int ret;
Josef Bacik3893e332011-01-31 16:03:11 -05006874 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006875 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04006876 unsigned long nr;
Chris Masondbe674a2008-07-17 12:54:05 -04006877 u64 mask = root->sectorsize - 1;
Josef Bacik07127182011-08-19 10:29:59 -04006878 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04006879
Josef Bacik2aaa6652012-08-29 14:27:18 -04006880 ret = btrfs_truncate_page(inode, inode->i_size, 0, 0);
Josef Bacik5d5e1032009-10-13 16:46:49 -04006881 if (ret)
Josef Bacika41ad392011-01-31 15:30:16 -05006882 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00006883
Chris Mason4a096752008-07-21 10:29:44 -04006884 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
Yan, Zheng80825102009-11-12 09:35:36 +00006885 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006886
Josef Bacikfcb80c22011-05-03 10:40:22 -04006887 /*
6888 * Yes ladies and gentelment, this is indeed ugly. The fact is we have
6889 * 3 things going on here
6890 *
6891 * 1) We need to reserve space for our orphan item and the space to
6892 * delete our orphan item. Lord knows we don't want to have a dangling
6893 * orphan item because we didn't reserve space to remove it.
6894 *
6895 * 2) We need to reserve space to update our inode.
6896 *
6897 * 3) We need to have something to cache all the space that is going to
6898 * be free'd up by the truncate operation, but also have some slack
6899 * space reserved in case it uses space during the truncate (thank you
6900 * very much snapshotting).
6901 *
6902 * And we need these to all be seperate. The fact is we can use alot of
6903 * space doing the truncate, and we have no earthly idea how much space
6904 * we will use, so we need the truncate reservation to be seperate so it
6905 * doesn't end up using space reserved for updating the inode or
6906 * removing the orphan item. We also need to be able to stop the
6907 * transaction and start a new one, which means we need to be able to
6908 * update the inode several times, and we have no idea of knowing how
6909 * many times that will be, so we can't just reserve 1 item for the
6910 * entirety of the opration, so that has to be done seperately as well.
6911 * Then there is the orphan item, which does indeed need to be held on
6912 * to for the whole operation, and we need nobody to touch this reserved
6913 * space except the orphan code.
6914 *
6915 * So that leaves us with
6916 *
6917 * 1) root->orphan_block_rsv - for the orphan deletion.
6918 * 2) rsv - for the truncate reservation, which we will steal from the
6919 * transaction reservation.
6920 * 3) fs_info->trans_block_rsv - this will have 1 items worth left for
6921 * updating the inode.
6922 */
Miao Xie66d8f3d2012-09-06 04:02:28 -06006923 rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006924 if (!rsv)
6925 return -ENOMEM;
Josef Bacik4a338542011-08-29 11:01:31 -04006926 rsv->size = min_size;
Josef Bacikca7e70f2012-08-27 17:48:15 -04006927 rsv->failfast = 1;
Josef Bacikf0cd8462011-03-04 14:37:08 -05006928
Josef Bacik907cbce2011-08-08 13:46:15 -04006929 /*
Josef Bacik07127182011-08-19 10:29:59 -04006930 * 1 for the truncate slack space
Josef Bacik907cbce2011-08-08 13:46:15 -04006931 * 1 for the orphan item we're going to add
6932 * 1 for the orphan item deletion
6933 * 1 for updating the inode.
6934 */
Josef Bacikfcb80c22011-05-03 10:40:22 -04006935 trans = btrfs_start_transaction(root, 4);
6936 if (IS_ERR(trans)) {
6937 err = PTR_ERR(trans);
6938 goto out;
6939 }
Josef Bacikf0cd8462011-03-04 14:37:08 -05006940
Josef Bacik907cbce2011-08-08 13:46:15 -04006941 /* Migrate the slack space for the truncate to our reserve */
6942 ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv, rsv,
6943 min_size);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006944 BUG_ON(ret);
Josef Bacikf0cd8462011-03-04 14:37:08 -05006945
6946 ret = btrfs_orphan_add(trans, inode);
6947 if (ret) {
6948 btrfs_end_transaction(trans, root);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006949 goto out;
Josef Bacikf0cd8462011-03-04 14:37:08 -05006950 }
6951
Chris Mason5a3f23d2009-03-31 13:27:11 -04006952 /*
6953 * setattr is responsible for setting the ordered_data_close flag,
6954 * but that is only tested during the last file release. That
6955 * could happen well after the next commit, leaving a great big
6956 * window where new writes may get lost if someone chooses to write
6957 * to this file after truncating to zero
6958 *
6959 * The inode doesn't have any dirty data here, and so if we commit
6960 * this is a noop. If someone immediately starts writing to the inode
6961 * it is very likely we'll catch some of their writes in this
6962 * transaction, and the commit will find this file on the ordered
6963 * data list with good things to send down.
6964 *
6965 * This is a best effort solution, there is still a window where
6966 * using truncate to replace the contents of the file will
6967 * end up with a zero length file after a crash.
6968 */
Josef Bacik72ac3c02012-05-23 14:13:11 -04006969 if (inode->i_size == 0 && test_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
6970 &BTRFS_I(inode)->runtime_flags))
Chris Mason5a3f23d2009-03-31 13:27:11 -04006971 btrfs_add_ordered_operation(trans, root, inode);
6972
Josef Bacik5dc562c2012-08-17 13:14:17 -04006973 /*
6974 * So if we truncate and then write and fsync we normally would just
6975 * write the extents that changed, which is a problem if we need to
6976 * first truncate that entire inode. So set this flag so we write out
6977 * all of the extents in the inode to the sync log so we're completely
6978 * safe.
6979 */
6980 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
Josef Bacikca7e70f2012-08-27 17:48:15 -04006981 trans->block_rsv = rsv;
Josef Bacik5dc562c2012-08-17 13:14:17 -04006982
Yan, Zheng80825102009-11-12 09:35:36 +00006983 while (1) {
6984 ret = btrfs_truncate_inode_items(trans, root, inode,
6985 inode->i_size,
6986 BTRFS_EXTENT_DATA_KEY);
Josef Bacikca7e70f2012-08-27 17:48:15 -04006987 if (ret != -ENOSPC) {
Josef Bacik3893e332011-01-31 16:03:11 -05006988 err = ret;
Yan, Zheng80825102009-11-12 09:35:36 +00006989 break;
Josef Bacik3893e332011-01-31 16:03:11 -05006990 }
Chris Mason39279cc2007-06-12 06:35:45 -04006991
Josef Bacikfcb80c22011-05-03 10:40:22 -04006992 trans->block_rsv = &root->fs_info->trans_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00006993 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05006994 if (ret) {
6995 err = ret;
6996 break;
6997 }
Josef Bacikca7e70f2012-08-27 17:48:15 -04006998
Yan, Zheng80825102009-11-12 09:35:36 +00006999 nr = trans->blocks_used;
7000 btrfs_end_transaction(trans, root);
7001 btrfs_btree_balance_dirty(root, nr);
Josef Bacikca7e70f2012-08-27 17:48:15 -04007002
7003 trans = btrfs_start_transaction(root, 2);
7004 if (IS_ERR(trans)) {
7005 ret = err = PTR_ERR(trans);
7006 trans = NULL;
7007 break;
7008 }
7009
7010 ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv,
7011 rsv, min_size);
7012 BUG_ON(ret); /* shouldn't happen */
7013 trans->block_rsv = rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00007014 }
7015
7016 if (ret == 0 && inode->i_nlink > 0) {
Josef Bacikfcb80c22011-05-03 10:40:22 -04007017 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00007018 ret = btrfs_orphan_del(trans, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05007019 if (ret)
7020 err = ret;
Josef Bacikded5db92011-03-04 14:09:46 -05007021 } else if (ret && inode->i_nlink > 0) {
7022 /*
7023 * Failed to do the truncate, remove us from the in memory
7024 * orphan list.
7025 */
7026 ret = btrfs_orphan_del(NULL, inode);
Yan, Zheng80825102009-11-12 09:35:36 +00007027 }
7028
Chris Mason917c16b2011-11-08 14:49:59 -05007029 if (trans) {
7030 trans->block_rsv = &root->fs_info->trans_block_rsv;
7031 ret = btrfs_update_inode(trans, root, inode);
7032 if (ret && !err)
7033 err = ret;
Josef Bacik7b128762008-07-24 12:17:14 -04007034
Chris Mason917c16b2011-11-08 14:49:59 -05007035 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05007036 ret = btrfs_end_transaction(trans, root);
Chris Mason917c16b2011-11-08 14:49:59 -05007037 btrfs_btree_balance_dirty(root, nr);
7038 }
Josef Bacikfcb80c22011-05-03 10:40:22 -04007039
7040out:
7041 btrfs_free_block_rsv(root, rsv);
7042
Josef Bacik3893e332011-01-31 16:03:11 -05007043 if (ret && !err)
7044 err = ret;
Josef Bacika41ad392011-01-31 15:30:16 -05007045
Josef Bacik3893e332011-01-31 16:03:11 -05007046 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04007047}
7048
Sven Wegener3b963622008-06-09 21:57:42 -04007049/*
Chris Masond352ac62008-09-29 15:18:18 -04007050 * create a new subvolume directory/inode (helper for the ioctl).
7051 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05007052int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04007053 struct btrfs_root *new_root, u64 new_dirid)
Chris Mason39279cc2007-06-12 06:35:45 -04007054{
Chris Mason39279cc2007-06-12 06:35:45 -04007055 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04007056 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04007057 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007058
Florian Albrechtskirchinger12fc9d02012-02-10 22:15:54 +01007059 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2,
7060 new_dirid, new_dirid,
7061 S_IFDIR | (~current_umask() & S_IRWXUGO),
7062 &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04007063 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04007064 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007065 inode->i_op = &btrfs_dir_inode_operations;
7066 inode->i_fop = &btrfs_dir_file_operations;
7067
Miklos Szeredibfe86842011-10-28 14:13:29 +02007068 set_nlink(inode, 1);
Chris Masondbe674a2008-07-17 12:54:05 -04007069 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04007070
Yan, Zheng76dda932009-09-21 16:00:26 -04007071 err = btrfs_update_inode(trans, new_root, inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04007072
Yan, Zheng76dda932009-09-21 16:00:26 -04007073 iput(inode);
Mark Fashehce598972011-07-26 11:32:23 -07007074 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04007075}
7076
Chris Mason39279cc2007-06-12 06:35:45 -04007077struct inode *btrfs_alloc_inode(struct super_block *sb)
7078{
7079 struct btrfs_inode *ei;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007080 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04007081
7082 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
7083 if (!ei)
7084 return NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007085
7086 ei->root = NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007087 ei->generation = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04007088 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04007089 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04007090 ei->logged_trans = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007091 ei->delalloc_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007092 ei->disk_i_size = 0;
7093 ei->flags = 0;
Josef Bacik7709cde2011-08-04 10:25:02 -04007094 ei->csum_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007095 ei->index_cnt = (u64)-1;
7096 ei->last_unlink_trans = 0;
Liu Bo46d8bc32012-08-29 01:07:55 -06007097 ei->last_log_commit = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007098
Josef Bacik9e0baf62011-07-15 15:16:44 +00007099 spin_lock_init(&ei->lock);
7100 ei->outstanding_extents = 0;
7101 ei->reserved_extents = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007102
Josef Bacik72ac3c02012-05-23 14:13:11 -04007103 ei->runtime_flags = 0;
Li Zefan261507a02010-12-17 14:21:50 +08007104 ei->force_compress = BTRFS_COMPRESS_NONE;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007105
Miao Xie16cdcec2011-04-22 18:12:22 +08007106 ei->delayed_node = NULL;
7107
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007108 inode = &ei->vfs_inode;
David Sterbaa8067e02011-04-21 00:34:43 +02007109 extent_map_tree_init(&ei->extent_tree);
David Sterbaf993c882011-04-20 23:35:57 +02007110 extent_io_tree_init(&ei->io_tree, &inode->i_data);
7111 extent_io_tree_init(&ei->io_failure_tree, &inode->i_data);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04007112 ei->io_tree.track_uptodate = 1;
7113 ei->io_failure_tree.track_uptodate = 1;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007114 mutex_init(&ei->log_mutex);
Josef Bacikf2486792012-01-13 12:09:22 -05007115 mutex_init(&ei->delalloc_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007116 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007117 INIT_LIST_HEAD(&ei->delalloc_inodes);
Chris Mason5a3f23d2009-03-31 13:27:11 -04007118 INIT_LIST_HEAD(&ei->ordered_operations);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007119 RB_CLEAR_NODE(&ei->rb_node);
7120
7121 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04007122}
7123
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11007124static void btrfs_i_callback(struct rcu_head *head)
7125{
7126 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11007127 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
7128}
7129
Chris Mason39279cc2007-06-12 06:35:45 -04007130void btrfs_destroy_inode(struct inode *inode)
7131{
Chris Masone6dcd2d2008-07-17 12:53:50 -04007132 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04007133 struct btrfs_root *root = BTRFS_I(inode)->root;
7134
Al Virob3d9b7a2012-06-09 13:51:19 -04007135 WARN_ON(!hlist_empty(&inode->i_dentry));
Chris Mason39279cc2007-06-12 06:35:45 -04007136 WARN_ON(inode->i_data.nrpages);
Josef Bacik9e0baf62011-07-15 15:16:44 +00007137 WARN_ON(BTRFS_I(inode)->outstanding_extents);
7138 WARN_ON(BTRFS_I(inode)->reserved_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04007139 WARN_ON(BTRFS_I(inode)->delalloc_bytes);
7140 WARN_ON(BTRFS_I(inode)->csum_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -04007141
Chris Mason5a3f23d2009-03-31 13:27:11 -04007142 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05007143 * This can happen where we create an inode, but somebody else also
7144 * created the same inode and we need to destroy the one we already
7145 * created.
7146 */
7147 if (!root)
7148 goto free;
7149
7150 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04007151 * Make sure we're properly removed from the ordered operation
7152 * lists.
7153 */
7154 smp_mb();
7155 if (!list_empty(&BTRFS_I(inode)->ordered_operations)) {
7156 spin_lock(&root->fs_info->ordered_extent_lock);
7157 list_del_init(&BTRFS_I(inode)->ordered_operations);
7158 spin_unlock(&root->fs_info->ordered_extent_lock);
7159 }
7160
Josef Bacik8a35d952012-05-23 14:26:42 -04007161 if (test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
7162 &BTRFS_I(inode)->runtime_flags)) {
Li Zefan33345d012011-04-20 10:31:50 +08007163 printk(KERN_INFO "BTRFS: inode %llu still on the orphan list\n",
7164 (unsigned long long)btrfs_ino(inode));
Josef Bacik8a35d952012-05-23 14:26:42 -04007165 atomic_dec(&root->orphan_inodes);
Josef Bacik7b128762008-07-24 12:17:14 -04007166 }
Josef Bacik7b128762008-07-24 12:17:14 -04007167
Chris Masond3977122009-01-05 21:25:51 -05007168 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04007169 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
7170 if (!ordered)
7171 break;
7172 else {
Chris Masond3977122009-01-05 21:25:51 -05007173 printk(KERN_ERR "btrfs found ordered "
7174 "extent %llu %llu on inode cleanup\n",
7175 (unsigned long long)ordered->file_offset,
7176 (unsigned long long)ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007177 btrfs_remove_ordered_extent(inode, ordered);
7178 btrfs_put_ordered_extent(ordered);
7179 btrfs_put_ordered_extent(ordered);
7180 }
7181 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007182 inode_tree_del(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007183 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
Josef Bacika6dbd422009-11-11 15:53:34 -05007184free:
Miao Xie16cdcec2011-04-22 18:12:22 +08007185 btrfs_remove_delayed_node(inode);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11007186 call_rcu(&inode->i_rcu, btrfs_i_callback);
Chris Mason39279cc2007-06-12 06:35:45 -04007187}
7188
Al Viro45321ac2010-06-07 13:43:19 -04007189int btrfs_drop_inode(struct inode *inode)
Yan, Zheng76dda932009-09-21 16:00:26 -04007190{
7191 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro45321ac2010-06-07 13:43:19 -04007192
Josef Bacik0af3d002010-06-21 14:48:16 -04007193 if (btrfs_root_refs(&root->root_item) == 0 &&
Liu Bo83eea1f2012-07-10 05:28:39 -06007194 !btrfs_is_free_space_inode(inode))
Al Viro45321ac2010-06-07 13:43:19 -04007195 return 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04007196 else
Al Viro45321ac2010-06-07 13:43:19 -04007197 return generic_drop_inode(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04007198}
7199
Sven Wegener0ee0fda2008-07-30 16:54:26 -04007200static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04007201{
7202 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
7203
7204 inode_init_once(&ei->vfs_inode);
7205}
7206
7207void btrfs_destroy_cachep(void)
7208{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +10007209 /*
7210 * Make sure all delayed rcu free inodes are flushed before we
7211 * destroy cache.
7212 */
7213 rcu_barrier();
Chris Mason39279cc2007-06-12 06:35:45 -04007214 if (btrfs_inode_cachep)
7215 kmem_cache_destroy(btrfs_inode_cachep);
7216 if (btrfs_trans_handle_cachep)
7217 kmem_cache_destroy(btrfs_trans_handle_cachep);
7218 if (btrfs_transaction_cachep)
7219 kmem_cache_destroy(btrfs_transaction_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04007220 if (btrfs_path_cachep)
7221 kmem_cache_destroy(btrfs_path_cachep);
Josef Bacikdc89e982011-01-28 17:05:48 -05007222 if (btrfs_free_space_cachep)
7223 kmem_cache_destroy(btrfs_free_space_cachep);
Miao Xie8ccf6f192012-10-25 09:28:04 +00007224 if (btrfs_delalloc_work_cachep)
7225 kmem_cache_destroy(btrfs_delalloc_work_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04007226}
7227
7228int btrfs_init_cachep(void)
7229{
David Sterba837e1972012-09-07 03:00:48 -06007230 btrfs_inode_cachep = kmem_cache_create("btrfs_inode",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007231 sizeof(struct btrfs_inode), 0,
7232 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04007233 if (!btrfs_inode_cachep)
7234 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007235
David Sterba837e1972012-09-07 03:00:48 -06007236 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007237 sizeof(struct btrfs_trans_handle), 0,
7238 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04007239 if (!btrfs_trans_handle_cachep)
7240 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007241
David Sterba837e1972012-09-07 03:00:48 -06007242 btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007243 sizeof(struct btrfs_transaction), 0,
7244 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04007245 if (!btrfs_transaction_cachep)
7246 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007247
David Sterba837e1972012-09-07 03:00:48 -06007248 btrfs_path_cachep = kmem_cache_create("btrfs_path",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007249 sizeof(struct btrfs_path), 0,
7250 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04007251 if (!btrfs_path_cachep)
7252 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007253
David Sterba837e1972012-09-07 03:00:48 -06007254 btrfs_free_space_cachep = kmem_cache_create("btrfs_free_space",
Josef Bacikdc89e982011-01-28 17:05:48 -05007255 sizeof(struct btrfs_free_space), 0,
7256 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
7257 if (!btrfs_free_space_cachep)
7258 goto fail;
7259
Miao Xie8ccf6f192012-10-25 09:28:04 +00007260 btrfs_delalloc_work_cachep = kmem_cache_create("btrfs_delalloc_work",
7261 sizeof(struct btrfs_delalloc_work), 0,
7262 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD,
7263 NULL);
7264 if (!btrfs_delalloc_work_cachep)
7265 goto fail;
7266
Chris Mason39279cc2007-06-12 06:35:45 -04007267 return 0;
7268fail:
7269 btrfs_destroy_cachep();
7270 return -ENOMEM;
7271}
7272
7273static int btrfs_getattr(struct vfsmount *mnt,
7274 struct dentry *dentry, struct kstat *stat)
7275{
7276 struct inode *inode = dentry->d_inode;
David Sterbafadc0d82011-11-20 07:33:38 -05007277 u32 blocksize = inode->i_sb->s_blocksize;
7278
Chris Mason39279cc2007-06-12 06:35:45 -04007279 generic_fillattr(inode, stat);
Al Viro0ee5dc62011-07-07 15:44:25 -04007280 stat->dev = BTRFS_I(inode)->root->anon_dev;
Chris Masond6667462008-01-03 14:51:00 -05007281 stat->blksize = PAGE_CACHE_SIZE;
David Sterbafadc0d82011-11-20 07:33:38 -05007282 stat->blocks = (ALIGN(inode_get_bytes(inode), blocksize) +
7283 ALIGN(BTRFS_I(inode)->delalloc_bytes, blocksize)) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04007284 return 0;
7285}
7286
Liu Bo75e7cb72011-03-22 10:12:20 +00007287/*
7288 * If a file is moved, it will inherit the cow and compression flags of the new
7289 * directory.
7290 */
7291static void fixup_inode_flags(struct inode *dir, struct inode *inode)
7292{
7293 struct btrfs_inode *b_dir = BTRFS_I(dir);
7294 struct btrfs_inode *b_inode = BTRFS_I(inode);
7295
7296 if (b_dir->flags & BTRFS_INODE_NODATACOW)
7297 b_inode->flags |= BTRFS_INODE_NODATACOW;
7298 else
7299 b_inode->flags &= ~BTRFS_INODE_NODATACOW;
7300
Liu Bobc178232012-06-14 02:23:18 -06007301 if (b_dir->flags & BTRFS_INODE_COMPRESS) {
Liu Bo75e7cb72011-03-22 10:12:20 +00007302 b_inode->flags |= BTRFS_INODE_COMPRESS;
Liu Bobc178232012-06-14 02:23:18 -06007303 b_inode->flags &= ~BTRFS_INODE_NOCOMPRESS;
7304 } else {
7305 b_inode->flags &= ~(BTRFS_INODE_COMPRESS |
7306 BTRFS_INODE_NOCOMPRESS);
7307 }
Liu Bo75e7cb72011-03-22 10:12:20 +00007308}
7309
Chris Masond3977122009-01-05 21:25:51 -05007310static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
7311 struct inode *new_dir, struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04007312{
7313 struct btrfs_trans_handle *trans;
7314 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007315 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04007316 struct inode *new_inode = new_dentry->d_inode;
7317 struct inode *old_inode = old_dentry->d_inode;
7318 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04007319 u64 index = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007320 u64 root_objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04007321 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08007322 u64 old_ino = btrfs_ino(old_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007323
Li Zefan33345d012011-04-20 10:31:50 +08007324 if (btrfs_ino(new_dir) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhengf679a842009-09-24 09:17:31 -04007325 return -EPERM;
7326
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007327 /* we only allow rename subvolume link between subvolumes */
Li Zefan33345d012011-04-20 10:31:50 +08007328 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05007329 return -EXDEV;
7330
Li Zefan33345d012011-04-20 10:31:50 +08007331 if (old_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
7332 (new_inode && btrfs_ino(new_inode) == BTRFS_FIRST_FREE_OBJECTID))
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007333 return -ENOTEMPTY;
7334
Chris Mason39279cc2007-06-12 06:35:45 -04007335 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007336 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04007337 return -ENOTEMPTY;
Chris Mason5a3f23d2009-03-31 13:27:11 -04007338 /*
7339 * we're using rename to replace one file with another.
7340 * and the replacement file is large. Start IO on it now so
7341 * we don't add too much work to the end of the transaction
7342 */
Bartlomiej Zolnierkiewicz4baf8c92009-08-07 13:47:08 -04007343 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size &&
Chris Mason5a3f23d2009-03-31 13:27:11 -04007344 old_inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
7345 filemap_flush(old_inode->i_mapping);
7346
Yan, Zheng76dda932009-09-21 16:00:26 -04007347 /* close the racy window with snapshot create/destroy ioctl */
Li Zefan33345d012011-04-20 10:31:50 +08007348 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04007349 down_read(&root->fs_info->subvol_sem);
Yan, Zhenga22285a2010-05-16 10:48:46 -04007350 /*
7351 * We want to reserve the absolute worst case amount of items. So if
7352 * both inodes are subvols and we need to unlink them then that would
7353 * require 4 item modifications, but if they are both normal inodes it
7354 * would require 5 item modifications, so we'll assume their normal
7355 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
7356 * should cover the worst case number of items we'll modify.
7357 */
7358 trans = btrfs_start_transaction(root, 20);
Johann Lombardib44c59a2011-03-31 13:23:47 +00007359 if (IS_ERR(trans)) {
7360 ret = PTR_ERR(trans);
7361 goto out_notrans;
7362 }
Chris Mason5f39d392007-10-15 16:14:19 -04007363
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007364 if (dest != root)
7365 btrfs_record_root_in_trans(trans, dest);
7366
Yan, Zhenga5719522009-09-24 09:17:31 -04007367 ret = btrfs_set_inode_index(new_dir, &index);
7368 if (ret)
7369 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04007370
Li Zefan33345d012011-04-20 10:31:50 +08007371 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007372 /* force full log commit if subvolume involved. */
7373 root->fs_info->last_trans_log_full_commit = trans->transid;
7374 } else {
Yan, Zhenga5719522009-09-24 09:17:31 -04007375 ret = btrfs_insert_inode_ref(trans, dest,
7376 new_dentry->d_name.name,
7377 new_dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08007378 old_ino,
7379 btrfs_ino(new_dir), index);
Yan, Zhenga5719522009-09-24 09:17:31 -04007380 if (ret)
7381 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007382 /*
7383 * this is an ugly little race, but the rename is required
7384 * to make sure that if we crash, the inode is either at the
7385 * old name or the new one. pinning the log transaction lets
7386 * us make sure we don't allow a log commit to come in after
7387 * we unlink the name but before we add the new name back in.
7388 */
7389 btrfs_pin_log_trans(root);
7390 }
Chris Mason12fcfd22009-03-24 10:24:20 -04007391 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04007392 * make sure the inode gets flushed if it is replacing
7393 * something.
7394 */
Li Zefan33345d012011-04-20 10:31:50 +08007395 if (new_inode && new_inode->i_size && S_ISREG(old_inode->i_mode))
Chris Mason5a3f23d2009-03-31 13:27:11 -04007396 btrfs_add_ordered_operation(trans, root, old_inode);
Chris Mason5a3f23d2009-03-31 13:27:11 -04007397
Josef Bacik0c4d2d92012-04-05 15:03:02 -04007398 inode_inc_iversion(old_dir);
7399 inode_inc_iversion(new_dir);
7400 inode_inc_iversion(old_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007401 old_dir->i_ctime = old_dir->i_mtime = ctime;
7402 new_dir->i_ctime = new_dir->i_mtime = ctime;
7403 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04007404
Chris Mason12fcfd22009-03-24 10:24:20 -04007405 if (old_dentry->d_parent != new_dentry->d_parent)
7406 btrfs_record_unlink_dir(trans, old_dir, old_inode, 1);
7407
Li Zefan33345d012011-04-20 10:31:50 +08007408 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007409 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
7410 ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid,
7411 old_dentry->d_name.name,
7412 old_dentry->d_name.len);
7413 } else {
Al Viro92986792011-03-04 17:14:37 +00007414 ret = __btrfs_unlink_inode(trans, root, old_dir,
7415 old_dentry->d_inode,
7416 old_dentry->d_name.name,
7417 old_dentry->d_name.len);
7418 if (!ret)
7419 ret = btrfs_update_inode(trans, root, old_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007420 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007421 if (ret) {
7422 btrfs_abort_transaction(trans, root, ret);
7423 goto out_fail;
7424 }
Chris Mason39279cc2007-06-12 06:35:45 -04007425
7426 if (new_inode) {
Josef Bacik0c4d2d92012-04-05 15:03:02 -04007427 inode_inc_iversion(new_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007428 new_inode->i_ctime = CURRENT_TIME;
Li Zefan33345d012011-04-20 10:31:50 +08007429 if (unlikely(btrfs_ino(new_inode) ==
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007430 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
7431 root_objectid = BTRFS_I(new_inode)->location.objectid;
7432 ret = btrfs_unlink_subvol(trans, dest, new_dir,
7433 root_objectid,
7434 new_dentry->d_name.name,
7435 new_dentry->d_name.len);
7436 BUG_ON(new_inode->i_nlink == 0);
7437 } else {
7438 ret = btrfs_unlink_inode(trans, dest, new_dir,
7439 new_dentry->d_inode,
7440 new_dentry->d_name.name,
7441 new_dentry->d_name.len);
7442 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007443 if (!ret && new_inode->i_nlink == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04007444 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007445 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04007446 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007447 if (ret) {
7448 btrfs_abort_transaction(trans, root, ret);
7449 goto out_fail;
7450 }
Chris Mason39279cc2007-06-12 06:35:45 -04007451 }
Josef Bacikaec74772008-07-24 12:12:38 -04007452
Liu Bo75e7cb72011-03-22 10:12:20 +00007453 fixup_inode_flags(new_dir, old_inode);
7454
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007455 ret = btrfs_add_link(trans, new_dir, old_inode,
7456 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04007457 new_dentry->d_name.len, 0, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007458 if (ret) {
7459 btrfs_abort_transaction(trans, root, ret);
7460 goto out_fail;
7461 }
Chris Mason39279cc2007-06-12 06:35:45 -04007462
Li Zefan33345d012011-04-20 10:31:50 +08007463 if (old_ino != BTRFS_FIRST_FREE_OBJECTID) {
Al Viro10d9f302011-07-16 23:09:10 -04007464 struct dentry *parent = new_dentry->d_parent;
Josef Bacik6a912212010-11-20 09:48:00 +00007465 btrfs_log_new_name(trans, old_inode, old_dir, parent);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007466 btrfs_end_log_trans(root);
7467 }
Chris Mason39279cc2007-06-12 06:35:45 -04007468out_fail:
Josef Bacik7ad85bb2012-01-12 19:10:12 -05007469 btrfs_end_transaction(trans, root);
Johann Lombardib44c59a2011-03-31 13:23:47 +00007470out_notrans:
Li Zefan33345d012011-04-20 10:31:50 +08007471 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04007472 up_read(&root->fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04007473
Chris Mason39279cc2007-06-12 06:35:45 -04007474 return ret;
7475}
7476
Miao Xie8ccf6f192012-10-25 09:28:04 +00007477static void btrfs_run_delalloc_work(struct btrfs_work *work)
7478{
7479 struct btrfs_delalloc_work *delalloc_work;
7480
7481 delalloc_work = container_of(work, struct btrfs_delalloc_work,
7482 work);
7483 if (delalloc_work->wait)
7484 btrfs_wait_ordered_range(delalloc_work->inode, 0, (u64)-1);
7485 else
7486 filemap_flush(delalloc_work->inode->i_mapping);
7487
7488 if (delalloc_work->delay_iput)
7489 btrfs_add_delayed_iput(delalloc_work->inode);
7490 else
7491 iput(delalloc_work->inode);
7492 complete(&delalloc_work->completion);
7493}
7494
7495struct btrfs_delalloc_work *btrfs_alloc_delalloc_work(struct inode *inode,
7496 int wait, int delay_iput)
7497{
7498 struct btrfs_delalloc_work *work;
7499
7500 work = kmem_cache_zalloc(btrfs_delalloc_work_cachep, GFP_NOFS);
7501 if (!work)
7502 return NULL;
7503
7504 init_completion(&work->completion);
7505 INIT_LIST_HEAD(&work->list);
7506 work->inode = inode;
7507 work->wait = wait;
7508 work->delay_iput = delay_iput;
7509 work->work.func = btrfs_run_delalloc_work;
7510
7511 return work;
7512}
7513
7514void btrfs_wait_and_free_delalloc_work(struct btrfs_delalloc_work *work)
7515{
7516 wait_for_completion(&work->completion);
7517 kmem_cache_free(btrfs_delalloc_work_cachep, work);
7518}
7519
Chris Masond352ac62008-09-29 15:18:18 -04007520/*
7521 * some fairly slow code that needs optimization. This walks the list
7522 * of all the inodes with pending delalloc and forces them to disk.
7523 */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00007524int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput)
Chris Masonea8c2812008-08-04 23:17:27 -04007525{
7526 struct list_head *head = &root->fs_info->delalloc_inodes;
7527 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007528 struct inode *inode;
Miao Xie8ccf6f192012-10-25 09:28:04 +00007529 struct btrfs_delalloc_work *work, *next;
7530 struct list_head works;
7531 int ret = 0;
Chris Masonea8c2812008-08-04 23:17:27 -04007532
Yan Zhengc146afa2008-11-12 14:34:12 -05007533 if (root->fs_info->sb->s_flags & MS_RDONLY)
7534 return -EROFS;
7535
Miao Xie8ccf6f192012-10-25 09:28:04 +00007536 INIT_LIST_HEAD(&works);
7537
Chris Mason75eff682008-12-15 15:54:40 -05007538 spin_lock(&root->fs_info->delalloc_lock);
Chris Masond3977122009-01-05 21:25:51 -05007539 while (!list_empty(head)) {
Chris Masonea8c2812008-08-04 23:17:27 -04007540 binode = list_entry(head->next, struct btrfs_inode,
7541 delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007542 inode = igrab(&binode->vfs_inode);
7543 if (!inode)
7544 list_del_init(&binode->delalloc_inodes);
Chris Mason75eff682008-12-15 15:54:40 -05007545 spin_unlock(&root->fs_info->delalloc_lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007546 if (inode) {
Miao Xie8ccf6f192012-10-25 09:28:04 +00007547 work = btrfs_alloc_delalloc_work(inode, 0, delay_iput);
7548 if (!work) {
7549 ret = -ENOMEM;
7550 goto out;
7551 }
7552 list_add_tail(&work->list, &works);
7553 btrfs_queue_worker(&root->fs_info->flush_workers,
7554 &work->work);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007555 }
7556 cond_resched();
Chris Mason75eff682008-12-15 15:54:40 -05007557 spin_lock(&root->fs_info->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04007558 }
Chris Mason75eff682008-12-15 15:54:40 -05007559 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -04007560
7561 /* the filemap_flush will queue IO into the worker threads, but
7562 * we have to make sure the IO is actually started and that
7563 * ordered extents get created before we return
7564 */
7565 atomic_inc(&root->fs_info->async_submit_draining);
Chris Masond3977122009-01-05 21:25:51 -05007566 while (atomic_read(&root->fs_info->nr_async_submits) ||
Chris Mason771ed682008-11-06 22:02:51 -05007567 atomic_read(&root->fs_info->async_delalloc_pages)) {
Chris Mason8c8bee12008-09-29 11:19:10 -04007568 wait_event(root->fs_info->async_submit_wait,
Chris Mason771ed682008-11-06 22:02:51 -05007569 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
7570 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee12008-09-29 11:19:10 -04007571 }
7572 atomic_dec(&root->fs_info->async_submit_draining);
Miao Xie8ccf6f192012-10-25 09:28:04 +00007573out:
7574 list_for_each_entry_safe(work, next, &works, list) {
7575 list_del_init(&work->list);
7576 btrfs_wait_and_free_delalloc_work(work);
7577 }
7578 return ret;
Chris Masonea8c2812008-08-04 23:17:27 -04007579}
7580
Chris Mason39279cc2007-06-12 06:35:45 -04007581static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
7582 const char *symname)
7583{
7584 struct btrfs_trans_handle *trans;
7585 struct btrfs_root *root = BTRFS_I(dir)->root;
7586 struct btrfs_path *path;
7587 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05007588 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04007589 int err;
7590 int drop_inode = 0;
7591 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04007592 u64 index = 0 ;
Chris Mason39279cc2007-06-12 06:35:45 -04007593 int name_len;
7594 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04007595 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04007596 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04007597 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05007598 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007599
7600 name_len = strlen(symname) + 1;
7601 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
7602 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05007603
Josef Bacik9ed74f22009-09-11 16:12:44 -04007604 /*
7605 * 2 items for inode item and ref
7606 * 2 items for dir items
7607 * 1 item for xattr if selinux is on
7608 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04007609 trans = btrfs_start_transaction(root, 5);
7610 if (IS_ERR(trans))
7611 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05007612
Li Zefan581bb052011-04-20 10:06:11 +08007613 err = btrfs_find_free_ino(root, &objectid);
7614 if (err)
7615 goto out_unlock;
7616
Josef Bacikaec74772008-07-24 12:12:38 -04007617 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08007618 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04007619 S_IFLNK|S_IRWXUGO, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04007620 if (IS_ERR(inode)) {
7621 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007622 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04007623 }
Chris Mason39279cc2007-06-12 06:35:45 -04007624
Eric Paris2a7dba32011-02-01 11:05:39 -05007625 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04007626 if (err) {
7627 drop_inode = 1;
7628 goto out_unlock;
7629 }
7630
Casey Schauflerad19db72011-12-15 10:09:07 -05007631 /*
7632 * If the active LSM wants to access the inode during
7633 * d_instantiate it needs these. Smack checks to see
7634 * if the filesystem supports xattrs by looking at the
7635 * ops vector.
7636 */
7637 inode->i_fop = &btrfs_file_operations;
7638 inode->i_op = &btrfs_file_inode_operations;
7639
Josef Bacika1b075d2010-11-19 20:36:11 +00007640 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04007641 if (err)
7642 drop_inode = 1;
7643 else {
7644 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04007645 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05007646 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04007647 }
Chris Mason39279cc2007-06-12 06:35:45 -04007648 if (drop_inode)
7649 goto out_unlock;
7650
7651 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07007652 if (!path) {
7653 err = -ENOMEM;
7654 drop_inode = 1;
7655 goto out_unlock;
7656 }
Li Zefan33345d012011-04-20 10:31:50 +08007657 key.objectid = btrfs_ino(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007658 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007659 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
7660 datasize = btrfs_file_extent_calc_inline_size(name_len);
7661 err = btrfs_insert_empty_item(trans, root, path, &key,
7662 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04007663 if (err) {
7664 drop_inode = 1;
Julia Lawallb0839162011-05-14 07:10:51 +00007665 btrfs_free_path(path);
Chris Mason54aa1f42007-06-22 14:16:25 -04007666 goto out_unlock;
7667 }
Chris Mason5f39d392007-10-15 16:14:19 -04007668 leaf = path->nodes[0];
7669 ei = btrfs_item_ptr(leaf, path->slots[0],
7670 struct btrfs_file_extent_item);
7671 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
7672 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04007673 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -04007674 btrfs_set_file_extent_encryption(leaf, ei, 0);
7675 btrfs_set_file_extent_compression(leaf, ei, 0);
7676 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
7677 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
7678
Chris Mason39279cc2007-06-12 06:35:45 -04007679 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04007680 write_extent_buffer(leaf, symname, ptr, name_len);
7681 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04007682 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04007683
Chris Mason39279cc2007-06-12 06:35:45 -04007684 inode->i_op = &btrfs_symlink_inode_operations;
7685 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04007686 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Yan Zhengd899e052008-10-30 14:25:28 -04007687 inode_set_bytes(inode, name_len);
Chris Masondbe674a2008-07-17 12:54:05 -04007688 btrfs_i_size_write(inode, name_len - 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04007689 err = btrfs_update_inode(trans, root, inode);
7690 if (err)
7691 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04007692
7693out_unlock:
Al Viro08c422c2011-12-23 07:58:13 -05007694 if (!err)
7695 d_instantiate(dentry, inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04007696 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05007697 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04007698 if (drop_inode) {
7699 inode_dec_link_count(inode);
7700 iput(inode);
7701 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04007702 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04007703 return err;
7704}
Chris Mason16432982008-04-10 10:23:21 -04007705
Josef Bacik0af3d002010-06-21 14:48:16 -04007706static int __btrfs_prealloc_file_range(struct inode *inode, int mode,
7707 u64 start, u64 num_bytes, u64 min_size,
7708 loff_t actual_len, u64 *alloc_hint,
7709 struct btrfs_trans_handle *trans)
Yan Zhengd899e052008-10-30 14:25:28 -04007710{
Josef Bacik5dc562c2012-08-17 13:14:17 -04007711 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
7712 struct extent_map *em;
Yan Zhengd899e052008-10-30 14:25:28 -04007713 struct btrfs_root *root = BTRFS_I(inode)->root;
7714 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -04007715 u64 cur_offset = start;
Josef Bacik55a61d12010-11-22 18:50:32 +00007716 u64 i_size;
Yan Zhengd899e052008-10-30 14:25:28 -04007717 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04007718 bool own_trans = true;
Yan Zhengd899e052008-10-30 14:25:28 -04007719
Josef Bacik0af3d002010-06-21 14:48:16 -04007720 if (trans)
7721 own_trans = false;
Yan Zhengd899e052008-10-30 14:25:28 -04007722 while (num_bytes > 0) {
Josef Bacik0af3d002010-06-21 14:48:16 -04007723 if (own_trans) {
7724 trans = btrfs_start_transaction(root, 3);
7725 if (IS_ERR(trans)) {
7726 ret = PTR_ERR(trans);
7727 break;
7728 }
Yan Zhengd899e052008-10-30 14:25:28 -04007729 }
Yan, Zheng5a303d52009-11-12 09:34:52 +00007730
Yan, Zhengefa56462010-05-16 10:49:59 -04007731 ret = btrfs_reserve_extent(trans, root, num_bytes, min_size,
Josef Bacik81c9ad22012-01-18 10:56:06 -05007732 0, *alloc_hint, &ins, 1);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007733 if (ret) {
Josef Bacik0af3d002010-06-21 14:48:16 -04007734 if (own_trans)
7735 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04007736 break;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007737 }
7738
Yan Zhengd899e052008-10-30 14:25:28 -04007739 ret = insert_reserved_file_extent(trans, inode,
7740 cur_offset, ins.objectid,
7741 ins.offset, ins.offset,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00007742 ins.offset, 0, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04007743 BTRFS_FILE_EXTENT_PREALLOC);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007744 if (ret) {
7745 btrfs_abort_transaction(trans, root, ret);
7746 if (own_trans)
7747 btrfs_end_transaction(trans, root);
7748 break;
7749 }
Chris Masona1ed8352009-09-11 12:27:37 -04007750 btrfs_drop_extent_cache(inode, cur_offset,
7751 cur_offset + ins.offset -1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007752
Josef Bacik5dc562c2012-08-17 13:14:17 -04007753 em = alloc_extent_map();
7754 if (!em) {
7755 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
7756 &BTRFS_I(inode)->runtime_flags);
7757 goto next;
7758 }
7759
7760 em->start = cur_offset;
7761 em->orig_start = cur_offset;
7762 em->len = ins.offset;
7763 em->block_start = ins.objectid;
7764 em->block_len = ins.offset;
7765 em->bdev = root->fs_info->fs_devices->latest_bdev;
7766 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
7767 em->generation = trans->transid;
7768
7769 while (1) {
7770 write_lock(&em_tree->lock);
7771 ret = add_extent_mapping(em_tree, em);
7772 if (!ret)
7773 list_move(&em->list,
7774 &em_tree->modified_extents);
7775 write_unlock(&em_tree->lock);
7776 if (ret != -EEXIST)
7777 break;
7778 btrfs_drop_extent_cache(inode, cur_offset,
7779 cur_offset + ins.offset - 1,
7780 0);
7781 }
7782 free_extent_map(em);
7783next:
Yan Zhengd899e052008-10-30 14:25:28 -04007784 num_bytes -= ins.offset;
7785 cur_offset += ins.offset;
Yan, Zhengefa56462010-05-16 10:49:59 -04007786 *alloc_hint = ins.objectid + ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007787
Josef Bacik0c4d2d92012-04-05 15:03:02 -04007788 inode_inc_iversion(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04007789 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +02007790 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -04007791 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
Yan, Zhengefa56462010-05-16 10:49:59 -04007792 (actual_len > inode->i_size) &&
7793 (cur_offset > inode->i_size)) {
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00007794 if (cur_offset > actual_len)
Josef Bacik55a61d12010-11-22 18:50:32 +00007795 i_size = actual_len;
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00007796 else
Josef Bacik55a61d12010-11-22 18:50:32 +00007797 i_size = cur_offset;
7798 i_size_write(inode, i_size);
7799 btrfs_ordered_update_i_size(inode, i_size, NULL);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007800 }
7801
Yan Zhengd899e052008-10-30 14:25:28 -04007802 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007803
7804 if (ret) {
7805 btrfs_abort_transaction(trans, root, ret);
7806 if (own_trans)
7807 btrfs_end_transaction(trans, root);
7808 break;
7809 }
Yan Zhengd899e052008-10-30 14:25:28 -04007810
Josef Bacik0af3d002010-06-21 14:48:16 -04007811 if (own_trans)
7812 btrfs_end_transaction(trans, root);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007813 }
Yan Zhengd899e052008-10-30 14:25:28 -04007814 return ret;
7815}
7816
Josef Bacik0af3d002010-06-21 14:48:16 -04007817int btrfs_prealloc_file_range(struct inode *inode, int mode,
7818 u64 start, u64 num_bytes, u64 min_size,
7819 loff_t actual_len, u64 *alloc_hint)
7820{
7821 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
7822 min_size, actual_len, alloc_hint,
7823 NULL);
7824}
7825
7826int btrfs_prealloc_file_range_trans(struct inode *inode,
7827 struct btrfs_trans_handle *trans, int mode,
7828 u64 start, u64 num_bytes, u64 min_size,
7829 loff_t actual_len, u64 *alloc_hint)
7830{
7831 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
7832 min_size, actual_len, alloc_hint, trans);
7833}
7834
Chris Masone6dcd2d2008-07-17 12:53:50 -04007835static int btrfs_set_page_dirty(struct page *page)
7836{
Chris Masone6dcd2d2008-07-17 12:53:50 -04007837 return __set_page_dirty_nobuffers(page);
7838}
7839
Al Viro10556cb22011-06-20 19:28:19 -04007840static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -05007841{
Li Zefanb83cc962010-12-20 16:04:08 +08007842 struct btrfs_root *root = BTRFS_I(inode)->root;
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +00007843 umode_t mode = inode->i_mode;
Li Zefanb83cc962010-12-20 16:04:08 +08007844
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +00007845 if (mask & MAY_WRITE &&
7846 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) {
7847 if (btrfs_root_readonly(root))
7848 return -EROFS;
7849 if (BTRFS_I(inode)->flags & BTRFS_INODE_READONLY)
7850 return -EACCES;
7851 }
Al Viro2830ba72011-06-20 19:16:29 -04007852 return generic_permission(inode, mask);
Yanfdebe2b2008-01-14 13:26:08 -05007853}
Chris Mason39279cc2007-06-12 06:35:45 -04007854
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007855static const struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -05007856 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -04007857 .lookup = btrfs_lookup,
7858 .create = btrfs_create,
7859 .unlink = btrfs_unlink,
7860 .link = btrfs_link,
7861 .mkdir = btrfs_mkdir,
7862 .rmdir = btrfs_rmdir,
7863 .rename = btrfs_rename,
7864 .symlink = btrfs_symlink,
7865 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04007866 .mknod = btrfs_mknod,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007867 .setxattr = btrfs_setxattr,
7868 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05007869 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007870 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05007871 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007872 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04007873};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007874static const struct inode_operations btrfs_dir_ro_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007875 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05007876 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007877 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04007878};
Yan, Zheng76dda932009-09-21 16:00:26 -04007879
Alexey Dobriyan828c0952009-10-01 15:43:56 -07007880static const struct file_operations btrfs_dir_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007881 .llseek = generic_file_llseek,
7882 .read = generic_read_dir,
David Woodhousecbdf5a22008-08-06 19:42:33 +01007883 .readdir = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04007884 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04007885#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04007886 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04007887#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04007888 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -04007889 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -04007890};
7891
Chris Masond1310b22008-01-24 16:13:08 -05007892static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04007893 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05007894 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04007895 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04007896 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04007897 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04007898 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05007899 .set_bit_hook = btrfs_set_bit_hook,
7900 .clear_bit_hook = btrfs_clear_bit_hook,
Josef Bacik9ed74f22009-09-11 16:12:44 -04007901 .merge_extent_hook = btrfs_merge_extent_hook,
7902 .split_extent_hook = btrfs_split_extent_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04007903};
7904
Chris Mason35054392009-01-21 13:11:13 -05007905/*
7906 * btrfs doesn't support the bmap operation because swapfiles
7907 * use bmap to make a mapping of extents in the file. They assume
7908 * these extents won't change over the life of the file and they
7909 * use the bmap result to do IO directly to the drive.
7910 *
7911 * the btrfs bmap call would return logical addresses that aren't
7912 * suitable for IO and they also will change frequently as COW
7913 * operations happen. So, swapfile + btrfs == corruption.
7914 *
7915 * For now we're avoiding this by dropping bmap.
7916 */
Alexey Dobriyan7f094102009-09-21 17:01:10 -07007917static const struct address_space_operations btrfs_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04007918 .readpage = btrfs_readpage,
7919 .writepage = btrfs_writepage,
Chris Masonb293f02e2007-11-01 19:45:34 -04007920 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05007921 .readpages = btrfs_readpages,
Chris Mason16432982008-04-10 10:23:21 -04007922 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04007923 .invalidatepage = btrfs_invalidatepage,
7924 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04007925 .set_page_dirty = btrfs_set_page_dirty,
Andi Kleen465fdd92009-09-16 11:50:18 +02007926 .error_remove_page = generic_error_remove_page,
Chris Mason39279cc2007-06-12 06:35:45 -04007927};
7928
Alexey Dobriyan7f094102009-09-21 17:01:10 -07007929static const struct address_space_operations btrfs_symlink_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04007930 .readpage = btrfs_readpage,
7931 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04007932 .invalidatepage = btrfs_invalidatepage,
7933 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04007934};
7935
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007936static const struct inode_operations btrfs_file_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007937 .getattr = btrfs_getattr,
7938 .setattr = btrfs_setattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007939 .setxattr = btrfs_setxattr,
7940 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05007941 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007942 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05007943 .permission = btrfs_permission,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05007944 .fiemap = btrfs_fiemap,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007945 .get_acl = btrfs_get_acl,
Josef Bacike41f9412012-03-26 09:46:47 -04007946 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -04007947};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007948static const struct inode_operations btrfs_special_inode_operations = {
Josef Bacik618e21d2007-07-11 10:18:17 -04007949 .getattr = btrfs_getattr,
7950 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05007951 .permission = btrfs_permission,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007952 .setxattr = btrfs_setxattr,
7953 .getxattr = btrfs_getxattr,
Josef Bacik33268ea2008-07-24 12:16:36 -04007954 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007955 .removexattr = btrfs_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007956 .get_acl = btrfs_get_acl,
Josef Bacike41f9412012-03-26 09:46:47 -04007957 .update_time = btrfs_update_time,
Josef Bacik618e21d2007-07-11 10:18:17 -04007958};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007959static const struct inode_operations btrfs_symlink_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007960 .readlink = generic_readlink,
7961 .follow_link = page_follow_link_light,
7962 .put_link = page_put_link,
Li Zefanf2095612010-11-19 02:05:24 +00007963 .getattr = btrfs_getattr,
Josef Bacik22c44fe2011-11-30 10:45:38 -05007964 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05007965 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -05007966 .setxattr = btrfs_setxattr,
7967 .getxattr = btrfs_getxattr,
7968 .listxattr = btrfs_listxattr,
7969 .removexattr = btrfs_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007970 .get_acl = btrfs_get_acl,
Josef Bacike41f9412012-03-26 09:46:47 -04007971 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -04007972};
Yan, Zheng76dda932009-09-21 16:00:26 -04007973
Alexey Dobriyan82d339d2009-10-09 09:54:36 -04007974const struct dentry_operations btrfs_dentry_operations = {
Yan, Zheng76dda932009-09-21 16:00:26 -04007975 .d_delete = btrfs_dentry_delete,
Josef Bacikb4aff1f2011-06-28 16:18:59 -04007976 .d_release = btrfs_dentry_release,
Yan, Zheng76dda932009-09-21 16:00:26 -04007977};