blob: d65a55c9be8a9517bcec292411f41bd3bf64d032 [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>
Filipe Brandenburger55e301f2013-01-29 06:04:50 +000042#include <linux/btrfs.h>
David Woodhouse53b381b2013-01-29 18:40:14 -050043#include <linux/blkdev.h>
Chris Mason4b4e25f2008-11-20 10:22:27 -050044#include "compat.h"
Chris Mason39279cc2007-06-12 06:35:45 -040045#include "ctree.h"
46#include "disk-io.h"
47#include "transaction.h"
48#include "btrfs_inode.h"
Chris Mason39279cc2007-06-12 06:35:45 -040049#include "print-tree.h"
Chris Masone6dcd2d2008-07-17 12:53:50 -040050#include "ordered-data.h"
Christoph Hellwig95819c02008-08-28 06:21:17 -040051#include "xattr.h"
Chris Masone02119d2008-09-05 16:13:11 -040052#include "tree-log.h"
Jan Schmidt4a54c8c2011-07-22 15:41:52 +020053#include "volumes.h"
Chris Masonc8b97812008-10-29 14:49:59 -040054#include "compression.h"
Chris Masonb4ce94d2009-02-04 09:25:08 -050055#include "locking.h"
Josef Bacikdc89e982011-01-28 17:05:48 -050056#include "free-space-cache.h"
Li Zefan581bb052011-04-20 10:06:11 +080057#include "inode-map.h"
Liu Bo38c227d2013-01-29 03:18:40 +000058#include "backref.h"
Chris Mason39279cc2007-06-12 06:35:45 -040059
60struct btrfs_iget_args {
61 u64 ino;
62 struct btrfs_root *root;
63};
64
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070065static const struct inode_operations btrfs_dir_inode_operations;
66static const struct inode_operations btrfs_symlink_inode_operations;
67static const struct inode_operations btrfs_dir_ro_inode_operations;
68static const struct inode_operations btrfs_special_inode_operations;
69static const struct inode_operations btrfs_file_inode_operations;
Alexey Dobriyan7f094102009-09-21 17:01:10 -070070static const struct address_space_operations btrfs_aops;
71static const struct address_space_operations btrfs_symlink_aops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -070072static const struct file_operations btrfs_dir_file_operations;
Chris Masond1310b22008-01-24 16:13:08 -050073static struct extent_io_ops btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -040074
75static struct kmem_cache *btrfs_inode_cachep;
Miao Xie8ccf6f192012-10-25 09:28:04 +000076static struct kmem_cache *btrfs_delalloc_work_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040077struct kmem_cache *btrfs_trans_handle_cachep;
78struct kmem_cache *btrfs_transaction_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040079struct kmem_cache *btrfs_path_cachep;
Josef Bacikdc89e982011-01-28 17:05:48 -050080struct kmem_cache *btrfs_free_space_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040081
82#define S_SHIFT 12
83static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
84 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
85 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
86 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
87 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
88 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
89 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
90 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
91};
92
Eric Sandeen3972f262013-01-12 02:57:22 +000093static int btrfs_setsize(struct inode *inode, struct iattr *attr);
Josef Bacika41ad392011-01-31 15:30:16 -050094static int btrfs_truncate(struct inode *inode);
Josef Bacik5fd02042012-05-02 14:00:54 -040095static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent);
Chris Mason771ed682008-11-06 22:02:51 -050096static noinline int cow_file_range(struct inode *inode,
97 struct page *locked_page,
98 u64 start, u64 end, int *page_started,
99 unsigned long *nr_written, int unlock);
Josef Bacik70c8a912012-10-11 16:54:30 -0400100static struct extent_map *create_pinned_em(struct inode *inode, u64 start,
101 u64 len, u64 orig_start,
102 u64 block_start, u64 block_len,
Josef Bacikcc95bef2013-04-04 14:31:27 -0400103 u64 orig_block_len, u64 ram_bytes,
104 int type);
Josef Bacik7b128762008-07-24 12:17:14 -0400105
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000106static int btrfs_init_inode_security(struct btrfs_trans_handle *trans,
Eric Paris2a7dba32011-02-01 11:05:39 -0500107 struct inode *inode, struct inode *dir,
108 const struct qstr *qstr)
Jim Owens0279b4c2009-02-04 09:29:13 -0500109{
110 int err;
111
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000112 err = btrfs_init_acl(trans, inode, dir);
Jim Owens0279b4c2009-02-04 09:29:13 -0500113 if (!err)
Eric Paris2a7dba32011-02-01 11:05:39 -0500114 err = btrfs_xattr_security_init(trans, inode, dir, qstr);
Jim Owens0279b4c2009-02-04 09:29:13 -0500115 return err;
116}
117
Chris Masond352ac62008-09-29 15:18:18 -0400118/*
Chris Masonc8b97812008-10-29 14:49:59 -0400119 * this does all the hard work for inserting an inline extent into
120 * the btree. The caller should have done a btrfs_drop_extents so that
121 * no overlapping inline items exist in the btree
122 */
Chris Masond3977122009-01-05 21:25:51 -0500123static noinline int insert_inline_extent(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400124 struct btrfs_root *root, struct inode *inode,
125 u64 start, size_t size, size_t compressed_size,
Li Zefanfe3f5662011-03-28 08:30:38 +0000126 int compress_type,
Chris Masonc8b97812008-10-29 14:49:59 -0400127 struct page **compressed_pages)
128{
129 struct btrfs_key key;
130 struct btrfs_path *path;
131 struct extent_buffer *leaf;
132 struct page *page = NULL;
133 char *kaddr;
134 unsigned long ptr;
135 struct btrfs_file_extent_item *ei;
136 int err = 0;
137 int ret;
138 size_t cur_size = size;
139 size_t datasize;
140 unsigned long offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400141
Li Zefanfe3f5662011-03-28 08:30:38 +0000142 if (compressed_size && compressed_pages)
Chris Masonc8b97812008-10-29 14:49:59 -0400143 cur_size = compressed_size;
Chris Masonc8b97812008-10-29 14:49:59 -0400144
Chris Masond3977122009-01-05 21:25:51 -0500145 path = btrfs_alloc_path();
146 if (!path)
Chris Masonc8b97812008-10-29 14:49:59 -0400147 return -ENOMEM;
148
Chris Masonb9473432009-03-13 11:00:37 -0400149 path->leave_spinning = 1;
Chris Masonc8b97812008-10-29 14:49:59 -0400150
Li Zefan33345d012011-04-20 10:31:50 +0800151 key.objectid = btrfs_ino(inode);
Chris Masonc8b97812008-10-29 14:49:59 -0400152 key.offset = start;
153 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
Chris Masonc8b97812008-10-29 14:49:59 -0400154 datasize = btrfs_file_extent_calc_inline_size(cur_size);
155
156 inode_add_bytes(inode, size);
157 ret = btrfs_insert_empty_item(trans, root, path, &key,
158 datasize);
Chris Masonc8b97812008-10-29 14:49:59 -0400159 if (ret) {
160 err = ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400161 goto fail;
162 }
163 leaf = path->nodes[0];
164 ei = btrfs_item_ptr(leaf, path->slots[0],
165 struct btrfs_file_extent_item);
166 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
167 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
168 btrfs_set_file_extent_encryption(leaf, ei, 0);
169 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
170 btrfs_set_file_extent_ram_bytes(leaf, ei, size);
171 ptr = btrfs_file_extent_inline_start(ei);
172
Li Zefan261507a02010-12-17 14:21:50 +0800173 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -0400174 struct page *cpage;
175 int i = 0;
Chris Masond3977122009-01-05 21:25:51 -0500176 while (compressed_size > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -0400177 cpage = compressed_pages[i];
Chris Mason5b050f02008-11-11 09:34:41 -0500178 cur_size = min_t(unsigned long, compressed_size,
Chris Masonc8b97812008-10-29 14:49:59 -0400179 PAGE_CACHE_SIZE);
180
Cong Wang7ac687d2011-11-25 23:14:28 +0800181 kaddr = kmap_atomic(cpage);
Chris Masonc8b97812008-10-29 14:49:59 -0400182 write_extent_buffer(leaf, kaddr, ptr, cur_size);
Cong Wang7ac687d2011-11-25 23:14:28 +0800183 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400184
185 i++;
186 ptr += cur_size;
187 compressed_size -= cur_size;
188 }
189 btrfs_set_file_extent_compression(leaf, ei,
Li Zefan261507a02010-12-17 14:21:50 +0800190 compress_type);
Chris Masonc8b97812008-10-29 14:49:59 -0400191 } else {
192 page = find_get_page(inode->i_mapping,
193 start >> PAGE_CACHE_SHIFT);
194 btrfs_set_file_extent_compression(leaf, ei, 0);
Cong Wang7ac687d2011-11-25 23:14:28 +0800195 kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -0400196 offset = start & (PAGE_CACHE_SIZE - 1);
197 write_extent_buffer(leaf, kaddr + offset, ptr, size);
Cong Wang7ac687d2011-11-25 23:14:28 +0800198 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400199 page_cache_release(page);
200 }
201 btrfs_mark_buffer_dirty(leaf);
202 btrfs_free_path(path);
203
Yan, Zhengc2167752009-11-12 09:34:21 +0000204 /*
205 * we're an inline extent, so nobody can
206 * extend the file past i_size without locking
207 * a page we already have locked.
208 *
209 * We must do any isize and inode updates
210 * before we unlock the pages. Otherwise we
211 * could end up racing with unlink.
212 */
Chris Masonc8b97812008-10-29 14:49:59 -0400213 BTRFS_I(inode)->disk_i_size = inode->i_size;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100214 ret = btrfs_update_inode(trans, root, inode);
Yan, Zhengc2167752009-11-12 09:34:21 +0000215
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100216 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400217fail:
218 btrfs_free_path(path);
219 return err;
220}
221
222
223/*
224 * conditionally insert an inline extent into the file. This
225 * does the checks required to make sure the data is small enough
226 * to fit as an inline extent.
227 */
Chris Mason7f366cf2009-03-12 20:12:45 -0400228static noinline int cow_file_range_inline(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400229 struct btrfs_root *root,
230 struct inode *inode, u64 start, u64 end,
Li Zefanfe3f5662011-03-28 08:30:38 +0000231 size_t compressed_size, int compress_type,
Chris Masonc8b97812008-10-29 14:49:59 -0400232 struct page **compressed_pages)
233{
234 u64 isize = i_size_read(inode);
235 u64 actual_end = min(end + 1, isize);
236 u64 inline_len = actual_end - start;
Qu Wenruofda28322013-02-26 08:10:22 +0000237 u64 aligned_end = ALIGN(end, root->sectorsize);
Chris Masonc8b97812008-10-29 14:49:59 -0400238 u64 data_len = inline_len;
239 int ret;
240
241 if (compressed_size)
242 data_len = compressed_size;
243
244 if (start > 0 ||
Chris Mason70b99e62008-10-31 12:46:39 -0400245 actual_end >= PAGE_CACHE_SIZE ||
Chris Masonc8b97812008-10-29 14:49:59 -0400246 data_len >= BTRFS_MAX_INLINE_DATA_SIZE(root) ||
247 (!compressed_size &&
248 (actual_end & (root->sectorsize - 1)) == 0) ||
249 end + 1 < isize ||
250 data_len > root->fs_info->max_inline) {
251 return 1;
252 }
253
Josef Bacik26714852012-08-29 12:24:27 -0400254 ret = btrfs_drop_extents(trans, root, inode, start, aligned_end, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100255 if (ret)
256 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400257
258 if (isize > actual_end)
259 inline_len = min_t(u64, isize, actual_end);
260 ret = insert_inline_extent(trans, root, inode, start,
261 inline_len, compressed_size,
Li Zefanfe3f5662011-03-28 08:30:38 +0000262 compress_type, compressed_pages);
Josef Bacik2adcac12012-05-23 16:10:14 -0400263 if (ret && ret != -ENOSPC) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100264 btrfs_abort_transaction(trans, root, ret);
265 return ret;
Josef Bacik2adcac12012-05-23 16:10:14 -0400266 } else if (ret == -ENOSPC) {
267 return 1;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100268 }
Josef Bacik2adcac12012-05-23 16:10:14 -0400269
Josef Bacikbdc20e62013-02-28 13:23:38 -0500270 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400271 btrfs_delalloc_release_metadata(inode, end + 1 - start);
Chris Masona1ed8352009-09-11 12:27:37 -0400272 btrfs_drop_extent_cache(inode, start, aligned_end - 1, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400273 return 0;
274}
275
Chris Mason771ed682008-11-06 22:02:51 -0500276struct async_extent {
277 u64 start;
278 u64 ram_size;
279 u64 compressed_size;
280 struct page **pages;
281 unsigned long nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800282 int compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500283 struct list_head list;
284};
285
286struct async_cow {
287 struct inode *inode;
288 struct btrfs_root *root;
289 struct page *locked_page;
290 u64 start;
291 u64 end;
292 struct list_head extents;
293 struct btrfs_work work;
294};
295
296static noinline int add_async_extent(struct async_cow *cow,
297 u64 start, u64 ram_size,
298 u64 compressed_size,
299 struct page **pages,
Li Zefan261507a02010-12-17 14:21:50 +0800300 unsigned long nr_pages,
301 int compress_type)
Chris Mason771ed682008-11-06 22:02:51 -0500302{
303 struct async_extent *async_extent;
304
305 async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100306 BUG_ON(!async_extent); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -0500307 async_extent->start = start;
308 async_extent->ram_size = ram_size;
309 async_extent->compressed_size = compressed_size;
310 async_extent->pages = pages;
311 async_extent->nr_pages = nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800312 async_extent->compress_type = compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500313 list_add_tail(&async_extent->list, &cow->extents);
314 return 0;
315}
316
Chris Masonc8b97812008-10-29 14:49:59 -0400317/*
Chris Mason771ed682008-11-06 22:02:51 -0500318 * we create compressed extents in two phases. The first
319 * phase compresses a range of pages that have already been
320 * locked (both pages and state bits are locked).
Chris Masonc8b97812008-10-29 14:49:59 -0400321 *
Chris Mason771ed682008-11-06 22:02:51 -0500322 * This is done inside an ordered work queue, and the compression
323 * is spread across many cpus. The actual IO submission is step
324 * two, and the ordered work queue takes care of making sure that
325 * happens in the same order things were put onto the queue by
326 * writepages and friends.
Chris Masonc8b97812008-10-29 14:49:59 -0400327 *
Chris Mason771ed682008-11-06 22:02:51 -0500328 * If this code finds it can't get good compression, it puts an
329 * entry onto the work queue to write the uncompressed bytes. This
330 * makes sure that both compressed inodes and uncompressed inodes
Artem Bityutskiyb2570312012-07-25 18:12:06 +0300331 * are written in the same order that the flusher thread sent them
332 * down.
Chris Masond352ac62008-09-29 15:18:18 -0400333 */
Chris Mason771ed682008-11-06 22:02:51 -0500334static noinline int compress_file_range(struct inode *inode,
335 struct page *locked_page,
336 u64 start, u64 end,
337 struct async_cow *async_cow,
338 int *num_added)
Chris Masonb888db22007-08-27 16:49:44 -0400339{
340 struct btrfs_root *root = BTRFS_I(inode)->root;
341 struct btrfs_trans_handle *trans;
Chris Masondb945352007-10-15 16:15:53 -0400342 u64 num_bytes;
Chris Masondb945352007-10-15 16:15:53 -0400343 u64 blocksize = root->sectorsize;
Chris Masonc8b97812008-10-29 14:49:59 -0400344 u64 actual_end;
Chris Mason42dc7ba2008-12-15 11:44:56 -0500345 u64 isize = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400346 int ret = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400347 struct page **pages = NULL;
348 unsigned long nr_pages;
349 unsigned long nr_pages_ret = 0;
350 unsigned long total_compressed = 0;
351 unsigned long total_in = 0;
352 unsigned long max_compressed = 128 * 1024;
Chris Mason771ed682008-11-06 22:02:51 -0500353 unsigned long max_uncompressed = 128 * 1024;
Chris Masonc8b97812008-10-29 14:49:59 -0400354 int i;
355 int will_compress;
Li Zefan261507a02010-12-17 14:21:50 +0800356 int compress_type = root->fs_info->compress_type;
Chris Mason4adaa612013-03-26 13:07:00 -0400357 int redirty = 0;
Chris Masonb888db22007-08-27 16:49:44 -0400358
Liu Bo4cb13e52012-03-29 09:57:45 -0400359 /* if this is a small write inside eof, kick off a defrag */
360 if ((end - start + 1) < 16 * 1024 &&
361 (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size))
Chris Mason4cb53002011-05-24 15:35:30 -0400362 btrfs_add_inode_defrag(NULL, inode);
363
Chris Mason42dc7ba2008-12-15 11:44:56 -0500364 actual_end = min_t(u64, isize, end + 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400365again:
366 will_compress = 0;
367 nr_pages = (end >> PAGE_CACHE_SHIFT) - (start >> PAGE_CACHE_SHIFT) + 1;
368 nr_pages = min(nr_pages, (128 * 1024UL) / PAGE_CACHE_SIZE);
369
Chris Masonf03d9302009-02-04 09:31:06 -0500370 /*
371 * we don't want to send crud past the end of i_size through
372 * compression, that's just a waste of CPU time. So, if the
373 * end of the file is before the start of our current
374 * requested range of bytes, we bail out to the uncompressed
375 * cleanup code that can deal with all of this.
376 *
377 * It isn't really the fastest way to fix things, but this is a
378 * very uncommon corner.
379 */
380 if (actual_end <= start)
381 goto cleanup_and_bail_uncompressed;
382
Chris Masonc8b97812008-10-29 14:49:59 -0400383 total_compressed = actual_end - start;
384
385 /* we want to make sure that amount of ram required to uncompress
386 * an extent is reasonable, so we limit the total size in ram
Chris Mason771ed682008-11-06 22:02:51 -0500387 * of a compressed extent to 128k. This is a crucial number
388 * because it also controls how easily we can spread reads across
389 * cpus for decompression.
390 *
391 * We also want to make sure the amount of IO required to do
392 * a random read is reasonably small, so we limit the size of
393 * a compressed extent to 128k.
Chris Masonc8b97812008-10-29 14:49:59 -0400394 */
395 total_compressed = min(total_compressed, max_uncompressed);
Qu Wenruofda28322013-02-26 08:10:22 +0000396 num_bytes = ALIGN(end - start + 1, blocksize);
Chris Masonbe20aa92007-12-17 20:14:01 -0500397 num_bytes = max(blocksize, num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -0400398 total_in = 0;
399 ret = 0;
Chris Masondb945352007-10-15 16:15:53 -0400400
Chris Mason771ed682008-11-06 22:02:51 -0500401 /*
402 * we do compression for mount -o compress and when the
403 * inode has not been flagged as nocompress. This flag can
404 * change at any time if we discover bad compression ratios.
Chris Masonc8b97812008-10-29 14:49:59 -0400405 */
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200406 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS) &&
Chris Mason1e701a32010-03-11 09:42:04 -0500407 (btrfs_test_opt(root, COMPRESS) ||
Liu Bo75e7cb72011-03-22 10:12:20 +0000408 (BTRFS_I(inode)->force_compress) ||
409 (BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS))) {
Chris Masonc8b97812008-10-29 14:49:59 -0400410 WARN_ON(pages);
Chris Masoncfbc2462008-10-30 13:22:14 -0400411 pages = kzalloc(sizeof(struct page *) * nr_pages, GFP_NOFS);
Li Zefan560f7d72011-09-08 10:22:01 +0800412 if (!pages) {
413 /* just bail out to the uncompressed code */
414 goto cont;
415 }
Chris Mason179e29e2007-11-01 11:28:41 -0400416
Li Zefan261507a02010-12-17 14:21:50 +0800417 if (BTRFS_I(inode)->force_compress)
418 compress_type = BTRFS_I(inode)->force_compress;
419
Chris Mason4adaa612013-03-26 13:07:00 -0400420 /*
421 * we need to call clear_page_dirty_for_io on each
422 * page in the range. Otherwise applications with the file
423 * mmap'd can wander in and change the page contents while
424 * we are compressing them.
425 *
426 * If the compression fails for any reason, we set the pages
427 * dirty again later on.
428 */
429 extent_range_clear_dirty_for_io(inode, start, end);
430 redirty = 1;
Li Zefan261507a02010-12-17 14:21:50 +0800431 ret = btrfs_compress_pages(compress_type,
432 inode->i_mapping, start,
433 total_compressed, pages,
434 nr_pages, &nr_pages_ret,
435 &total_in,
436 &total_compressed,
437 max_compressed);
Chris Masonc8b97812008-10-29 14:49:59 -0400438
439 if (!ret) {
440 unsigned long offset = total_compressed &
441 (PAGE_CACHE_SIZE - 1);
442 struct page *page = pages[nr_pages_ret - 1];
443 char *kaddr;
444
445 /* zero the tail end of the last page, we might be
446 * sending it down to disk
447 */
448 if (offset) {
Cong Wang7ac687d2011-11-25 23:14:28 +0800449 kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -0400450 memset(kaddr + offset, 0,
451 PAGE_CACHE_SIZE - offset);
Cong Wang7ac687d2011-11-25 23:14:28 +0800452 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400453 }
454 will_compress = 1;
455 }
456 }
Li Zefan560f7d72011-09-08 10:22:01 +0800457cont:
Chris Masonc8b97812008-10-29 14:49:59 -0400458 if (start == 0) {
Josef Bacik7a7eaa42011-04-13 12:54:33 -0400459 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100460 if (IS_ERR(trans)) {
461 ret = PTR_ERR(trans);
462 trans = NULL;
463 goto cleanup_and_out;
464 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400465 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason771ed682008-11-06 22:02:51 -0500466
Chris Masonc8b97812008-10-29 14:49:59 -0400467 /* lets try to make an inline extent */
Chris Mason771ed682008-11-06 22:02:51 -0500468 if (ret || total_in < (actual_end - start)) {
Chris Masonc8b97812008-10-29 14:49:59 -0400469 /* we didn't compress the entire range, try
Chris Mason771ed682008-11-06 22:02:51 -0500470 * to make an uncompressed inline extent.
Chris Masonc8b97812008-10-29 14:49:59 -0400471 */
472 ret = cow_file_range_inline(trans, root, inode,
Li Zefanfe3f5662011-03-28 08:30:38 +0000473 start, end, 0, 0, NULL);
Chris Masonc8b97812008-10-29 14:49:59 -0400474 } else {
Chris Mason771ed682008-11-06 22:02:51 -0500475 /* try making a compressed inline extent */
Chris Masonc8b97812008-10-29 14:49:59 -0400476 ret = cow_file_range_inline(trans, root, inode,
477 start, end,
Li Zefanfe3f5662011-03-28 08:30:38 +0000478 total_compressed,
479 compress_type, pages);
Chris Masonc8b97812008-10-29 14:49:59 -0400480 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100481 if (ret <= 0) {
Chris Mason771ed682008-11-06 22:02:51 -0500482 /*
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100483 * inline extent creation worked or returned error,
484 * we don't need to create any more async work items.
485 * Unlock and free up our temp pages.
Chris Mason771ed682008-11-06 22:02:51 -0500486 */
Chris Masonc8b97812008-10-29 14:49:59 -0400487 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400488 &BTRFS_I(inode)->io_tree,
489 start, end, NULL,
490 EXTENT_CLEAR_UNLOCK_PAGE | EXTENT_CLEAR_DIRTY |
Chris Masona3429ab2009-10-08 12:30:20 -0400491 EXTENT_CLEAR_DELALLOC |
Chris Masona791e352009-10-08 11:27:10 -0400492 EXTENT_SET_WRITEBACK | EXTENT_END_WRITEBACK);
Yan, Zhengc2167752009-11-12 09:34:21 +0000493
494 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400495 goto free_pages_out;
496 }
Yan, Zhengc2167752009-11-12 09:34:21 +0000497 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400498 }
499
500 if (will_compress) {
501 /*
502 * we aren't doing an inline extent round the compressed size
503 * up to a block size boundary so the allocator does sane
504 * things
505 */
Qu Wenruofda28322013-02-26 08:10:22 +0000506 total_compressed = ALIGN(total_compressed, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -0400507
508 /*
509 * one last check to make sure the compression is really a
510 * win, compare the page count read with the blocks on disk
511 */
Qu Wenruofda28322013-02-26 08:10:22 +0000512 total_in = ALIGN(total_in, PAGE_CACHE_SIZE);
Chris Masonc8b97812008-10-29 14:49:59 -0400513 if (total_compressed >= total_in) {
514 will_compress = 0;
515 } else {
Chris Masonc8b97812008-10-29 14:49:59 -0400516 num_bytes = total_in;
517 }
518 }
519 if (!will_compress && pages) {
520 /*
521 * the compression code ran but failed to make things smaller,
522 * free any pages it allocated and our page pointer array
523 */
524 for (i = 0; i < nr_pages_ret; i++) {
Chris Mason70b99e62008-10-31 12:46:39 -0400525 WARN_ON(pages[i]->mapping);
Chris Masonc8b97812008-10-29 14:49:59 -0400526 page_cache_release(pages[i]);
527 }
528 kfree(pages);
529 pages = NULL;
530 total_compressed = 0;
531 nr_pages_ret = 0;
532
533 /* flag the file so we don't compress in the future */
Chris Mason1e701a32010-03-11 09:42:04 -0500534 if (!btrfs_test_opt(root, FORCE_COMPRESS) &&
535 !(BTRFS_I(inode)->force_compress)) {
Chris Masona555f812010-01-28 16:18:15 -0500536 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
Chris Mason1e701a32010-03-11 09:42:04 -0500537 }
Chris Masonc8b97812008-10-29 14:49:59 -0400538 }
Chris Mason771ed682008-11-06 22:02:51 -0500539 if (will_compress) {
540 *num_added += 1;
541
542 /* the async work queues will take care of doing actual
543 * allocation on disk for these compressed pages,
544 * and will submit them to the elevator.
545 */
546 add_async_extent(async_cow, start, num_bytes,
Li Zefan261507a02010-12-17 14:21:50 +0800547 total_compressed, pages, nr_pages_ret,
548 compress_type);
Chris Mason771ed682008-11-06 22:02:51 -0500549
Yan, Zheng24ae6362010-12-06 07:02:36 +0000550 if (start + num_bytes < end) {
Chris Mason771ed682008-11-06 22:02:51 -0500551 start += num_bytes;
552 pages = NULL;
553 cond_resched();
554 goto again;
555 }
556 } else {
Chris Masonf03d9302009-02-04 09:31:06 -0500557cleanup_and_bail_uncompressed:
Chris Mason771ed682008-11-06 22:02:51 -0500558 /*
559 * No compression, but we still need to write the pages in
560 * the file we've been given so far. redirty the locked
561 * page if it corresponds to our extent and set things up
562 * for the async work queue to run cow_file_range to do
563 * the normal delalloc dance
564 */
565 if (page_offset(locked_page) >= start &&
566 page_offset(locked_page) <= end) {
567 __set_page_dirty_nobuffers(locked_page);
568 /* unlocked later on in the async handlers */
569 }
Chris Mason4adaa612013-03-26 13:07:00 -0400570 if (redirty)
571 extent_range_redirty_for_io(inode, start, end);
Li Zefan261507a02010-12-17 14:21:50 +0800572 add_async_extent(async_cow, start, end - start + 1,
573 0, NULL, 0, BTRFS_COMPRESS_NONE);
Chris Mason771ed682008-11-06 22:02:51 -0500574 *num_added += 1;
575 }
576
577out:
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100578 return ret;
Chris Mason771ed682008-11-06 22:02:51 -0500579
580free_pages_out:
581 for (i = 0; i < nr_pages_ret; i++) {
582 WARN_ON(pages[i]->mapping);
583 page_cache_release(pages[i]);
584 }
Chris Masond3977122009-01-05 21:25:51 -0500585 kfree(pages);
Chris Mason771ed682008-11-06 22:02:51 -0500586
587 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100588
589cleanup_and_out:
590 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
591 start, end, NULL,
592 EXTENT_CLEAR_UNLOCK_PAGE |
593 EXTENT_CLEAR_DIRTY |
594 EXTENT_CLEAR_DELALLOC |
595 EXTENT_SET_WRITEBACK |
596 EXTENT_END_WRITEBACK);
597 if (!trans || IS_ERR(trans))
598 btrfs_error(root->fs_info, ret, "Failed to join transaction");
599 else
600 btrfs_abort_transaction(trans, root, ret);
601 goto free_pages_out;
Chris Mason771ed682008-11-06 22:02:51 -0500602}
603
604/*
605 * phase two of compressed writeback. This is the ordered portion
606 * of the code, which only gets called in the order the work was
607 * queued. We walk all the async extents created by compress_file_range
608 * and send them down to the disk.
609 */
610static noinline int submit_compressed_extents(struct inode *inode,
611 struct async_cow *async_cow)
612{
613 struct async_extent *async_extent;
614 u64 alloc_hint = 0;
615 struct btrfs_trans_handle *trans;
616 struct btrfs_key ins;
617 struct extent_map *em;
618 struct btrfs_root *root = BTRFS_I(inode)->root;
619 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
620 struct extent_io_tree *io_tree;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500621 int ret = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500622
623 if (list_empty(&async_cow->extents))
624 return 0;
625
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500626again:
Chris Masond3977122009-01-05 21:25:51 -0500627 while (!list_empty(&async_cow->extents)) {
Chris Mason771ed682008-11-06 22:02:51 -0500628 async_extent = list_entry(async_cow->extents.next,
629 struct async_extent, list);
630 list_del(&async_extent->list);
631
632 io_tree = &BTRFS_I(inode)->io_tree;
633
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500634retry:
Chris Mason771ed682008-11-06 22:02:51 -0500635 /* did the compression code fall back to uncompressed IO? */
636 if (!async_extent->pages) {
637 int page_started = 0;
638 unsigned long nr_written = 0;
639
640 lock_extent(io_tree, async_extent->start,
Josef Bacik2ac55d42010-02-03 19:33:23 +0000641 async_extent->start +
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100642 async_extent->ram_size - 1);
Chris Mason771ed682008-11-06 22:02:51 -0500643
644 /* allocate blocks */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500645 ret = cow_file_range(inode, async_cow->locked_page,
646 async_extent->start,
647 async_extent->start +
648 async_extent->ram_size - 1,
649 &page_started, &nr_written, 0);
Chris Mason771ed682008-11-06 22:02:51 -0500650
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100651 /* JDM XXX */
652
Chris Mason771ed682008-11-06 22:02:51 -0500653 /*
654 * if page_started, cow_file_range inserted an
655 * inline extent and took care of all the unlocking
656 * and IO for us. Otherwise, we need to submit
657 * all those pages down to the drive.
658 */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500659 if (!page_started && !ret)
Chris Mason771ed682008-11-06 22:02:51 -0500660 extent_write_locked_range(io_tree,
661 inode, async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500662 async_extent->start +
Chris Mason771ed682008-11-06 22:02:51 -0500663 async_extent->ram_size - 1,
664 btrfs_get_extent,
665 WB_SYNC_ALL);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500666 else if (ret)
667 unlock_page(async_cow->locked_page);
Chris Mason771ed682008-11-06 22:02:51 -0500668 kfree(async_extent);
669 cond_resched();
670 continue;
671 }
672
673 lock_extent(io_tree, async_extent->start,
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100674 async_extent->start + async_extent->ram_size - 1);
Chris Mason771ed682008-11-06 22:02:51 -0500675
Josef Bacik7a7eaa42011-04-13 12:54:33 -0400676 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100677 if (IS_ERR(trans)) {
678 ret = PTR_ERR(trans);
679 } else {
680 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
681 ret = btrfs_reserve_extent(trans, root,
Chris Mason771ed682008-11-06 22:02:51 -0500682 async_extent->compressed_size,
683 async_extent->compressed_size,
Josef Bacik81c9ad22012-01-18 10:56:06 -0500684 0, alloc_hint, &ins, 1);
Miao Xie962197b2012-09-11 23:27:35 -0600685 if (ret && ret != -ENOSPC)
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100686 btrfs_abort_transaction(trans, root, ret);
687 btrfs_end_transaction(trans, root);
688 }
Yan, Zhengc2167752009-11-12 09:34:21 +0000689
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500690 if (ret) {
691 int i;
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500692
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500693 for (i = 0; i < async_extent->nr_pages; i++) {
694 WARN_ON(async_extent->pages[i]->mapping);
695 page_cache_release(async_extent->pages[i]);
696 }
697 kfree(async_extent->pages);
698 async_extent->nr_pages = 0;
699 async_extent->pages = NULL;
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500700
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100701 if (ret == -ENOSPC)
702 goto retry;
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500703 goto out_free;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500704 }
705
Yan, Zhengc2167752009-11-12 09:34:21 +0000706 /*
707 * here we're doing allocation and writeback of the
708 * compressed pages
709 */
710 btrfs_drop_extent_cache(inode, async_extent->start,
711 async_extent->start +
712 async_extent->ram_size - 1, 0);
713
David Sterba172ddd62011-04-21 00:48:27 +0200714 em = alloc_extent_map();
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500715 if (!em)
716 goto out_free_reserve;
Chris Mason771ed682008-11-06 22:02:51 -0500717 em->start = async_extent->start;
718 em->len = async_extent->ram_size;
Chris Mason445a6942008-11-10 11:53:33 -0500719 em->orig_start = em->start;
Josef Bacik2ab28f32012-10-12 15:27:49 -0400720 em->mod_start = em->start;
721 em->mod_len = em->len;
Chris Mason771ed682008-11-06 22:02:51 -0500722
723 em->block_start = ins.objectid;
724 em->block_len = ins.offset;
Josef Bacikb4939682012-12-03 10:31:19 -0500725 em->orig_block_len = ins.offset;
Josef Bacikcc95bef2013-04-04 14:31:27 -0400726 em->ram_bytes = async_extent->ram_size;
Chris Mason771ed682008-11-06 22:02:51 -0500727 em->bdev = root->fs_info->fs_devices->latest_bdev;
Li Zefan261507a02010-12-17 14:21:50 +0800728 em->compress_type = async_extent->compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500729 set_bit(EXTENT_FLAG_PINNED, &em->flags);
730 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Josef Bacik70c8a912012-10-11 16:54:30 -0400731 em->generation = -1;
Chris Mason771ed682008-11-06 22:02:51 -0500732
Chris Masond3977122009-01-05 21:25:51 -0500733 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400734 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400735 ret = add_extent_mapping(em_tree, em, 1);
Chris Mason890871b2009-09-02 16:24:52 -0400736 write_unlock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500737 if (ret != -EEXIST) {
738 free_extent_map(em);
739 break;
740 }
741 btrfs_drop_extent_cache(inode, async_extent->start,
742 async_extent->start +
743 async_extent->ram_size - 1, 0);
744 }
745
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500746 if (ret)
747 goto out_free_reserve;
748
Li Zefan261507a02010-12-17 14:21:50 +0800749 ret = btrfs_add_ordered_extent_compress(inode,
750 async_extent->start,
751 ins.objectid,
752 async_extent->ram_size,
753 ins.offset,
754 BTRFS_ORDERED_COMPRESSED,
755 async_extent->compress_type);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500756 if (ret)
757 goto out_free_reserve;
Chris Mason771ed682008-11-06 22:02:51 -0500758
Chris Mason771ed682008-11-06 22:02:51 -0500759 /*
760 * clear dirty, set writeback and unlock the pages.
761 */
762 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400763 &BTRFS_I(inode)->io_tree,
764 async_extent->start,
765 async_extent->start +
766 async_extent->ram_size - 1,
767 NULL, EXTENT_CLEAR_UNLOCK_PAGE |
768 EXTENT_CLEAR_UNLOCK |
Chris Masona3429ab2009-10-08 12:30:20 -0400769 EXTENT_CLEAR_DELALLOC |
Chris Masona791e352009-10-08 11:27:10 -0400770 EXTENT_CLEAR_DIRTY | EXTENT_SET_WRITEBACK);
Chris Mason771ed682008-11-06 22:02:51 -0500771
772 ret = btrfs_submit_compressed_write(inode,
Chris Masond3977122009-01-05 21:25:51 -0500773 async_extent->start,
774 async_extent->ram_size,
775 ins.objectid,
776 ins.offset, async_extent->pages,
777 async_extent->nr_pages);
Chris Mason771ed682008-11-06 22:02:51 -0500778 alloc_hint = ins.objectid + ins.offset;
779 kfree(async_extent);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500780 if (ret)
781 goto out;
Chris Mason771ed682008-11-06 22:02:51 -0500782 cond_resched();
783 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100784 ret = 0;
785out:
786 return ret;
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500787out_free_reserve:
788 btrfs_free_reserved_extent(root, ins.objectid, ins.offset);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100789out_free:
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500790 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
791 async_extent->start,
792 async_extent->start +
793 async_extent->ram_size - 1,
794 NULL, EXTENT_CLEAR_UNLOCK_PAGE |
795 EXTENT_CLEAR_UNLOCK |
796 EXTENT_CLEAR_DELALLOC |
797 EXTENT_CLEAR_DIRTY |
798 EXTENT_SET_WRITEBACK |
799 EXTENT_END_WRITEBACK);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100800 kfree(async_extent);
Josef Bacik3e04e7f2013-02-06 16:49:15 -0500801 goto again;
Chris Mason771ed682008-11-06 22:02:51 -0500802}
803
Josef Bacik4b46fce2010-05-23 11:00:55 -0400804static u64 get_extent_allocation_hint(struct inode *inode, u64 start,
805 u64 num_bytes)
806{
807 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
808 struct extent_map *em;
809 u64 alloc_hint = 0;
810
811 read_lock(&em_tree->lock);
812 em = search_extent_mapping(em_tree, start, num_bytes);
813 if (em) {
814 /*
815 * if block start isn't an actual block number then find the
816 * first block in this inode and use that as a hint. If that
817 * block is also bogus then just don't worry about it.
818 */
819 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
820 free_extent_map(em);
821 em = search_extent_mapping(em_tree, 0, 0);
822 if (em && em->block_start < EXTENT_MAP_LAST_BYTE)
823 alloc_hint = em->block_start;
824 if (em)
825 free_extent_map(em);
826 } else {
827 alloc_hint = em->block_start;
828 free_extent_map(em);
829 }
830 }
831 read_unlock(&em_tree->lock);
832
833 return alloc_hint;
834}
835
Chris Mason771ed682008-11-06 22:02:51 -0500836/*
837 * when extent_io.c finds a delayed allocation range in the file,
838 * the call backs end up in this code. The basic idea is to
839 * allocate extents on disk for the range, and create ordered data structs
840 * in ram to track those extents.
841 *
842 * locked_page is the page that writepage had locked already. We use
843 * it to make sure we don't do extra locks or unlocks.
844 *
845 * *page_started is set to one if we unlock locked_page and do everything
846 * required to start IO on it. It may be clean and already done with
847 * IO when we return.
848 */
Miao Xieb7d5b0a2012-11-01 07:32:18 +0000849static noinline int __cow_file_range(struct btrfs_trans_handle *trans,
850 struct inode *inode,
851 struct btrfs_root *root,
852 struct page *locked_page,
853 u64 start, u64 end, int *page_started,
854 unsigned long *nr_written,
855 int unlock)
Chris Mason771ed682008-11-06 22:02:51 -0500856{
Chris Mason771ed682008-11-06 22:02:51 -0500857 u64 alloc_hint = 0;
858 u64 num_bytes;
859 unsigned long ram_size;
860 u64 disk_num_bytes;
861 u64 cur_alloc_size;
862 u64 blocksize = root->sectorsize;
Chris Mason771ed682008-11-06 22:02:51 -0500863 struct btrfs_key ins;
864 struct extent_map *em;
865 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
866 int ret = 0;
867
Liu Bo83eea1f2012-07-10 05:28:39 -0600868 BUG_ON(btrfs_is_free_space_inode(inode));
Chris Mason771ed682008-11-06 22:02:51 -0500869
Qu Wenruofda28322013-02-26 08:10:22 +0000870 num_bytes = ALIGN(end - start + 1, blocksize);
Chris Mason771ed682008-11-06 22:02:51 -0500871 num_bytes = max(blocksize, num_bytes);
872 disk_num_bytes = num_bytes;
Chris Mason771ed682008-11-06 22:02:51 -0500873
Chris Mason4cb53002011-05-24 15:35:30 -0400874 /* if this is a small write inside eof, kick off defrag */
Liu Bo4cb13e52012-03-29 09:57:45 -0400875 if (num_bytes < 64 * 1024 &&
876 (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size))
Chris Mason4cb53002011-05-24 15:35:30 -0400877 btrfs_add_inode_defrag(trans, inode);
878
Chris Mason771ed682008-11-06 22:02:51 -0500879 if (start == 0) {
880 /* lets try to make an inline extent */
881 ret = cow_file_range_inline(trans, root, inode,
Li Zefanfe3f5662011-03-28 08:30:38 +0000882 start, end, 0, 0, NULL);
Chris Mason771ed682008-11-06 22:02:51 -0500883 if (ret == 0) {
884 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400885 &BTRFS_I(inode)->io_tree,
886 start, end, NULL,
887 EXTENT_CLEAR_UNLOCK_PAGE |
888 EXTENT_CLEAR_UNLOCK |
889 EXTENT_CLEAR_DELALLOC |
890 EXTENT_CLEAR_DIRTY |
891 EXTENT_SET_WRITEBACK |
892 EXTENT_END_WRITEBACK);
Yan, Zhengc2167752009-11-12 09:34:21 +0000893
Chris Mason771ed682008-11-06 22:02:51 -0500894 *nr_written = *nr_written +
895 (end - start + PAGE_CACHE_SIZE) / PAGE_CACHE_SIZE;
896 *page_started = 1;
Chris Mason771ed682008-11-06 22:02:51 -0500897 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100898 } else if (ret < 0) {
899 btrfs_abort_transaction(trans, root, ret);
900 goto out_unlock;
Chris Mason771ed682008-11-06 22:02:51 -0500901 }
902 }
Chris Masonc8b97812008-10-29 14:49:59 -0400903
904 BUG_ON(disk_num_bytes >
David Sterba6c417612011-04-13 15:41:04 +0200905 btrfs_super_total_bytes(root->fs_info->super_copy));
Chris Masonc8b97812008-10-29 14:49:59 -0400906
Josef Bacik4b46fce2010-05-23 11:00:55 -0400907 alloc_hint = get_extent_allocation_hint(inode, start, num_bytes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400908 btrfs_drop_extent_cache(inode, start, start + num_bytes - 1, 0);
Chris Mason3b951512008-04-17 11:29:12 -0400909
Chris Masond3977122009-01-05 21:25:51 -0500910 while (disk_num_bytes > 0) {
Chris Masona791e352009-10-08 11:27:10 -0400911 unsigned long op;
912
Josef Bacik287a0ab2010-03-19 18:07:23 +0000913 cur_alloc_size = disk_num_bytes;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400914 ret = btrfs_reserve_extent(trans, root, cur_alloc_size,
Chris Mason771ed682008-11-06 22:02:51 -0500915 root->sectorsize, 0, alloc_hint,
Josef Bacik81c9ad22012-01-18 10:56:06 -0500916 &ins, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100917 if (ret < 0) {
918 btrfs_abort_transaction(trans, root, ret);
919 goto out_unlock;
920 }
Chris Masond3977122009-01-05 21:25:51 -0500921
David Sterba172ddd62011-04-21 00:48:27 +0200922 em = alloc_extent_map();
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100923 BUG_ON(!em); /* -ENOMEM */
Chris Masone6dcd2d2008-07-17 12:53:50 -0400924 em->start = start;
Chris Mason445a6942008-11-10 11:53:33 -0500925 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500926 ram_size = ins.offset;
927 em->len = ins.offset;
Josef Bacik2ab28f32012-10-12 15:27:49 -0400928 em->mod_start = em->start;
929 em->mod_len = em->len;
Chris Masonc8b97812008-10-29 14:49:59 -0400930
Chris Masone6dcd2d2008-07-17 12:53:50 -0400931 em->block_start = ins.objectid;
Chris Masonc8b97812008-10-29 14:49:59 -0400932 em->block_len = ins.offset;
Josef Bacikb4939682012-12-03 10:31:19 -0500933 em->orig_block_len = ins.offset;
Josef Bacikcc95bef2013-04-04 14:31:27 -0400934 em->ram_bytes = ram_size;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400935 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -0400936 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Josef Bacik70c8a912012-10-11 16:54:30 -0400937 em->generation = -1;
Chris Masonc8b97812008-10-29 14:49:59 -0400938
Chris Masond3977122009-01-05 21:25:51 -0500939 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400940 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400941 ret = add_extent_mapping(em_tree, em, 1);
Chris Mason890871b2009-09-02 16:24:52 -0400942 write_unlock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400943 if (ret != -EEXIST) {
944 free_extent_map(em);
945 break;
946 }
947 btrfs_drop_extent_cache(inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -0400948 start + ram_size - 1, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400949 }
950
Chris Mason98d20f62008-04-14 09:46:10 -0400951 cur_alloc_size = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400952 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
Chris Mason771ed682008-11-06 22:02:51 -0500953 ram_size, cur_alloc_size, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100954 BUG_ON(ret); /* -ENOMEM */
Chris Masonc8b97812008-10-29 14:49:59 -0400955
Yan Zheng17d217f2008-12-12 10:03:38 -0500956 if (root->root_key.objectid ==
957 BTRFS_DATA_RELOC_TREE_OBJECTID) {
958 ret = btrfs_reloc_clone_csums(inode, start,
959 cur_alloc_size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100960 if (ret) {
961 btrfs_abort_transaction(trans, root, ret);
962 goto out_unlock;
963 }
Yan Zheng17d217f2008-12-12 10:03:38 -0500964 }
965
Chris Masond3977122009-01-05 21:25:51 -0500966 if (disk_num_bytes < cur_alloc_size)
Chris Mason3b951512008-04-17 11:29:12 -0400967 break;
Chris Masond3977122009-01-05 21:25:51 -0500968
Chris Masonc8b97812008-10-29 14:49:59 -0400969 /* we're not doing compressed IO, don't unlock the first
970 * page (which the caller expects to stay locked), don't
971 * clear any dirty bits and don't set any writeback bits
Chris Mason8b62b722009-09-02 16:53:46 -0400972 *
973 * Do set the Private2 bit so we know this page was properly
974 * setup for writepage
Chris Masonc8b97812008-10-29 14:49:59 -0400975 */
Chris Masona791e352009-10-08 11:27:10 -0400976 op = unlock ? EXTENT_CLEAR_UNLOCK_PAGE : 0;
977 op |= EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
978 EXTENT_SET_PRIVATE2;
979
Chris Masonc8b97812008-10-29 14:49:59 -0400980 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
981 start, start + ram_size - 1,
Chris Masona791e352009-10-08 11:27:10 -0400982 locked_page, op);
Chris Masonc8b97812008-10-29 14:49:59 -0400983 disk_num_bytes -= cur_alloc_size;
Chris Masonc59f8952007-12-17 20:14:04 -0500984 num_bytes -= cur_alloc_size;
985 alloc_hint = ins.objectid + ins.offset;
986 start += cur_alloc_size;
Chris Masonb888db22007-08-27 16:49:44 -0400987 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100988out:
Chris Masonbe20aa92007-12-17 20:14:01 -0500989 return ret;
Miao Xieb7d5b0a2012-11-01 07:32:18 +0000990
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100991out_unlock:
992 extent_clear_unlock_delalloc(inode,
993 &BTRFS_I(inode)->io_tree,
Josef Bacikbeb42dd2012-05-30 15:35:17 -0400994 start, end, locked_page,
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100995 EXTENT_CLEAR_UNLOCK_PAGE |
996 EXTENT_CLEAR_UNLOCK |
997 EXTENT_CLEAR_DELALLOC |
998 EXTENT_CLEAR_DIRTY |
999 EXTENT_SET_WRITEBACK |
1000 EXTENT_END_WRITEBACK);
1001
1002 goto out;
Chris Mason771ed682008-11-06 22:02:51 -05001003}
Chris Masonc8b97812008-10-29 14:49:59 -04001004
Miao Xieb7d5b0a2012-11-01 07:32:18 +00001005static noinline int cow_file_range(struct inode *inode,
1006 struct page *locked_page,
1007 u64 start, u64 end, int *page_started,
1008 unsigned long *nr_written,
1009 int unlock)
1010{
1011 struct btrfs_trans_handle *trans;
1012 struct btrfs_root *root = BTRFS_I(inode)->root;
1013 int ret;
1014
1015 trans = btrfs_join_transaction(root);
1016 if (IS_ERR(trans)) {
1017 extent_clear_unlock_delalloc(inode,
1018 &BTRFS_I(inode)->io_tree,
1019 start, end, locked_page,
1020 EXTENT_CLEAR_UNLOCK_PAGE |
1021 EXTENT_CLEAR_UNLOCK |
1022 EXTENT_CLEAR_DELALLOC |
1023 EXTENT_CLEAR_DIRTY |
1024 EXTENT_SET_WRITEBACK |
1025 EXTENT_END_WRITEBACK);
1026 return PTR_ERR(trans);
1027 }
1028 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
1029
1030 ret = __cow_file_range(trans, inode, root, locked_page, start, end,
1031 page_started, nr_written, unlock);
1032
1033 btrfs_end_transaction(trans, root);
1034
1035 return ret;
1036}
1037
Chris Mason771ed682008-11-06 22:02:51 -05001038/*
1039 * work queue call back to started compression on a file and pages
1040 */
1041static noinline void async_cow_start(struct btrfs_work *work)
1042{
1043 struct async_cow *async_cow;
1044 int num_added = 0;
1045 async_cow = container_of(work, struct async_cow, work);
1046
1047 compress_file_range(async_cow->inode, async_cow->locked_page,
1048 async_cow->start, async_cow->end, async_cow,
1049 &num_added);
Josef Bacik8180ef82012-06-08 15:16:12 -04001050 if (num_added == 0) {
Josef Bacikcb77fcd2012-06-15 12:19:48 -06001051 btrfs_add_delayed_iput(async_cow->inode);
Chris Mason771ed682008-11-06 22:02:51 -05001052 async_cow->inode = NULL;
Josef Bacik8180ef82012-06-08 15:16:12 -04001053 }
Chris Mason771ed682008-11-06 22:02:51 -05001054}
1055
1056/*
1057 * work queue call back to submit previously compressed pages
1058 */
1059static noinline void async_cow_submit(struct btrfs_work *work)
1060{
1061 struct async_cow *async_cow;
1062 struct btrfs_root *root;
1063 unsigned long nr_pages;
1064
1065 async_cow = container_of(work, struct async_cow, work);
1066
1067 root = async_cow->root;
1068 nr_pages = (async_cow->end - async_cow->start + PAGE_CACHE_SIZE) >>
1069 PAGE_CACHE_SHIFT;
1070
Josef Bacik66657b32012-08-01 15:36:24 -04001071 if (atomic_sub_return(nr_pages, &root->fs_info->async_delalloc_pages) <
Liu Bo287082b2012-06-28 04:02:24 -06001072 5 * 1024 * 1024 &&
Chris Mason771ed682008-11-06 22:02:51 -05001073 waitqueue_active(&root->fs_info->async_submit_wait))
1074 wake_up(&root->fs_info->async_submit_wait);
1075
Chris Masond3977122009-01-05 21:25:51 -05001076 if (async_cow->inode)
Chris Mason771ed682008-11-06 22:02:51 -05001077 submit_compressed_extents(async_cow->inode, async_cow);
Chris Mason771ed682008-11-06 22:02:51 -05001078}
Chris Masonc8b97812008-10-29 14:49:59 -04001079
Chris Mason771ed682008-11-06 22:02:51 -05001080static noinline void async_cow_free(struct btrfs_work *work)
1081{
1082 struct async_cow *async_cow;
1083 async_cow = container_of(work, struct async_cow, work);
Josef Bacik8180ef82012-06-08 15:16:12 -04001084 if (async_cow->inode)
Josef Bacikcb77fcd2012-06-15 12:19:48 -06001085 btrfs_add_delayed_iput(async_cow->inode);
Chris Mason771ed682008-11-06 22:02:51 -05001086 kfree(async_cow);
1087}
1088
1089static int cow_file_range_async(struct inode *inode, struct page *locked_page,
1090 u64 start, u64 end, int *page_started,
1091 unsigned long *nr_written)
1092{
1093 struct async_cow *async_cow;
1094 struct btrfs_root *root = BTRFS_I(inode)->root;
1095 unsigned long nr_pages;
1096 u64 cur_end;
Liu Bo287082b2012-06-28 04:02:24 -06001097 int limit = 10 * 1024 * 1024;
Chris Mason771ed682008-11-06 22:02:51 -05001098
Chris Masona3429ab2009-10-08 12:30:20 -04001099 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED,
1100 1, 0, NULL, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -05001101 while (start < end) {
Chris Mason771ed682008-11-06 22:02:51 -05001102 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001103 BUG_ON(!async_cow); /* -ENOMEM */
Josef Bacik8180ef82012-06-08 15:16:12 -04001104 async_cow->inode = igrab(inode);
Chris Mason771ed682008-11-06 22:02:51 -05001105 async_cow->root = root;
1106 async_cow->locked_page = locked_page;
1107 async_cow->start = start;
1108
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001109 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS)
Chris Mason771ed682008-11-06 22:02:51 -05001110 cur_end = end;
1111 else
1112 cur_end = min(end, start + 512 * 1024 - 1);
1113
1114 async_cow->end = cur_end;
1115 INIT_LIST_HEAD(&async_cow->extents);
1116
1117 async_cow->work.func = async_cow_start;
1118 async_cow->work.ordered_func = async_cow_submit;
1119 async_cow->work.ordered_free = async_cow_free;
1120 async_cow->work.flags = 0;
1121
Chris Mason771ed682008-11-06 22:02:51 -05001122 nr_pages = (cur_end - start + PAGE_CACHE_SIZE) >>
1123 PAGE_CACHE_SHIFT;
1124 atomic_add(nr_pages, &root->fs_info->async_delalloc_pages);
1125
1126 btrfs_queue_worker(&root->fs_info->delalloc_workers,
1127 &async_cow->work);
1128
1129 if (atomic_read(&root->fs_info->async_delalloc_pages) > limit) {
1130 wait_event(root->fs_info->async_submit_wait,
1131 (atomic_read(&root->fs_info->async_delalloc_pages) <
1132 limit));
1133 }
1134
Chris Masond3977122009-01-05 21:25:51 -05001135 while (atomic_read(&root->fs_info->async_submit_draining) &&
Chris Mason771ed682008-11-06 22:02:51 -05001136 atomic_read(&root->fs_info->async_delalloc_pages)) {
1137 wait_event(root->fs_info->async_submit_wait,
1138 (atomic_read(&root->fs_info->async_delalloc_pages) ==
1139 0));
1140 }
1141
1142 *nr_written += nr_pages;
1143 start = cur_end + 1;
1144 }
1145 *page_started = 1;
1146 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001147}
1148
Chris Masond3977122009-01-05 21:25:51 -05001149static noinline int csum_exist_in_range(struct btrfs_root *root,
Yan Zheng17d217f2008-12-12 10:03:38 -05001150 u64 bytenr, u64 num_bytes)
1151{
1152 int ret;
1153 struct btrfs_ordered_sum *sums;
1154 LIST_HEAD(list);
1155
Yan Zheng07d400a2009-01-06 11:42:00 -05001156 ret = btrfs_lookup_csums_range(root->fs_info->csum_root, bytenr,
Arne Jansena2de7332011-03-08 14:14:00 +01001157 bytenr + num_bytes - 1, &list, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -05001158 if (ret == 0 && list_empty(&list))
1159 return 0;
1160
1161 while (!list_empty(&list)) {
1162 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
1163 list_del(&sums->list);
1164 kfree(sums);
1165 }
1166 return 1;
1167}
1168
Chris Masond352ac62008-09-29 15:18:18 -04001169/*
1170 * when nowcow writeback call back. This checks for snapshots or COW copies
1171 * of the extents that exist in the file, and COWs the file as required.
1172 *
1173 * If no cow copies or snapshots exist, we write directly to the existing
1174 * blocks on disk
1175 */
Chris Mason7f366cf2009-03-12 20:12:45 -04001176static noinline int run_delalloc_nocow(struct inode *inode,
1177 struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001178 u64 start, u64 end, int *page_started, int force,
1179 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001180{
Chris Masonbe20aa92007-12-17 20:14:01 -05001181 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001182 struct btrfs_trans_handle *trans;
Chris Masonbe20aa92007-12-17 20:14:01 -05001183 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -05001184 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -04001185 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -05001186 struct btrfs_key found_key;
Yan Zheng80ff3852008-10-30 14:20:02 -04001187 u64 cow_start;
1188 u64 cur_offset;
1189 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001190 u64 extent_offset;
Yan Zheng80ff3852008-10-30 14:20:02 -04001191 u64 disk_bytenr;
1192 u64 num_bytes;
Josef Bacikb4939682012-12-03 10:31:19 -05001193 u64 disk_num_bytes;
Josef Bacikcc95bef2013-04-04 14:31:27 -04001194 u64 ram_bytes;
Yan Zheng80ff3852008-10-30 14:20:02 -04001195 int extent_type;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001196 int ret, err;
Yan Zhengd899e052008-10-30 14:25:28 -04001197 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -04001198 int nocow;
1199 int check_prev = 1;
Li Zefan82d59022011-04-20 10:33:24 +08001200 bool nolock;
Li Zefan33345d012011-04-20 10:31:50 +08001201 u64 ino = btrfs_ino(inode);
Chris Masonbe20aa92007-12-17 20:14:01 -05001202
1203 path = btrfs_alloc_path();
Josef Bacik17ca04a2012-05-31 15:58:55 -04001204 if (!path) {
1205 extent_clear_unlock_delalloc(inode,
1206 &BTRFS_I(inode)->io_tree,
1207 start, end, locked_page,
1208 EXTENT_CLEAR_UNLOCK_PAGE |
1209 EXTENT_CLEAR_UNLOCK |
1210 EXTENT_CLEAR_DELALLOC |
1211 EXTENT_CLEAR_DIRTY |
1212 EXTENT_SET_WRITEBACK |
1213 EXTENT_END_WRITEBACK);
Mark Fashehd8926bb2011-07-13 10:38:47 -07001214 return -ENOMEM;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001215 }
Li Zefan82d59022011-04-20 10:33:24 +08001216
Liu Bo83eea1f2012-07-10 05:28:39 -06001217 nolock = btrfs_is_free_space_inode(inode);
Li Zefan82d59022011-04-20 10:33:24 +08001218
1219 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001220 trans = btrfs_join_transaction_nolock(root);
Li Zefan82d59022011-04-20 10:33:24 +08001221 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001222 trans = btrfs_join_transaction(root);
Chris Masonff5714c2011-05-28 07:00:39 -04001223
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001224 if (IS_ERR(trans)) {
Josef Bacik17ca04a2012-05-31 15:58:55 -04001225 extent_clear_unlock_delalloc(inode,
1226 &BTRFS_I(inode)->io_tree,
1227 start, end, locked_page,
1228 EXTENT_CLEAR_UNLOCK_PAGE |
1229 EXTENT_CLEAR_UNLOCK |
1230 EXTENT_CLEAR_DELALLOC |
1231 EXTENT_CLEAR_DIRTY |
1232 EXTENT_SET_WRITEBACK |
1233 EXTENT_END_WRITEBACK);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001234 btrfs_free_path(path);
1235 return PTR_ERR(trans);
1236 }
1237
Josef Bacik74b21072011-04-13 12:02:53 -04001238 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Masonbe20aa92007-12-17 20:14:01 -05001239
Yan Zheng80ff3852008-10-30 14:20:02 -04001240 cow_start = (u64)-1;
1241 cur_offset = start;
1242 while (1) {
Li Zefan33345d012011-04-20 10:31:50 +08001243 ret = btrfs_lookup_file_extent(trans, root, path, ino,
Yan Zheng80ff3852008-10-30 14:20:02 -04001244 cur_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001245 if (ret < 0) {
1246 btrfs_abort_transaction(trans, root, ret);
1247 goto error;
1248 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001249 if (ret > 0 && path->slots[0] > 0 && check_prev) {
1250 leaf = path->nodes[0];
1251 btrfs_item_key_to_cpu(leaf, &found_key,
1252 path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +08001253 if (found_key.objectid == ino &&
Yan Zheng80ff3852008-10-30 14:20:02 -04001254 found_key.type == BTRFS_EXTENT_DATA_KEY)
1255 path->slots[0]--;
1256 }
1257 check_prev = 0;
1258next_slot:
1259 leaf = path->nodes[0];
1260 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1261 ret = btrfs_next_leaf(root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001262 if (ret < 0) {
1263 btrfs_abort_transaction(trans, root, ret);
1264 goto error;
1265 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001266 if (ret > 0)
1267 break;
1268 leaf = path->nodes[0];
1269 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001270
Yan Zheng80ff3852008-10-30 14:20:02 -04001271 nocow = 0;
1272 disk_bytenr = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -05001273 num_bytes = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001274 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05001275
Li Zefan33345d012011-04-20 10:31:50 +08001276 if (found_key.objectid > ino ||
Yan Zheng80ff3852008-10-30 14:20:02 -04001277 found_key.type > BTRFS_EXTENT_DATA_KEY ||
1278 found_key.offset > end)
1279 break;
Chris Masonbe20aa92007-12-17 20:14:01 -05001280
Yan Zheng80ff3852008-10-30 14:20:02 -04001281 if (found_key.offset > cur_offset) {
1282 extent_end = found_key.offset;
Chris Masone9061e22009-10-09 09:57:45 -04001283 extent_type = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001284 goto out_check;
1285 }
Chris Masonc31f8832008-01-08 15:46:31 -05001286
Yan Zheng80ff3852008-10-30 14:20:02 -04001287 fi = btrfs_item_ptr(leaf, path->slots[0],
1288 struct btrfs_file_extent_item);
1289 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -05001290
Josef Bacikcc95bef2013-04-04 14:31:27 -04001291 ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
Yan Zhengd899e052008-10-30 14:25:28 -04001292 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1293 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001294 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001295 extent_offset = btrfs_file_extent_offset(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001296 extent_end = found_key.offset +
1297 btrfs_file_extent_num_bytes(leaf, fi);
Josef Bacikb4939682012-12-03 10:31:19 -05001298 disk_num_bytes =
1299 btrfs_file_extent_disk_num_bytes(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001300 if (extent_end <= start) {
1301 path->slots[0]++;
1302 goto next_slot;
1303 }
Yan Zheng17d217f2008-12-12 10:03:38 -05001304 if (disk_bytenr == 0)
1305 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001306 if (btrfs_file_extent_compression(leaf, fi) ||
1307 btrfs_file_extent_encryption(leaf, fi) ||
1308 btrfs_file_extent_other_encoding(leaf, fi))
1309 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001310 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1311 goto out_check;
Yan Zhengd2fb3432008-12-11 16:30:39 -05001312 if (btrfs_extent_readonly(root, disk_bytenr))
Yan Zheng80ff3852008-10-30 14:20:02 -04001313 goto out_check;
Li Zefan33345d012011-04-20 10:31:50 +08001314 if (btrfs_cross_ref_exist(trans, root, ino,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001315 found_key.offset -
1316 extent_offset, disk_bytenr))
Yan Zheng17d217f2008-12-12 10:03:38 -05001317 goto out_check;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001318 disk_bytenr += extent_offset;
Yan Zheng17d217f2008-12-12 10:03:38 -05001319 disk_bytenr += cur_offset - found_key.offset;
1320 num_bytes = min(end + 1, extent_end) - cur_offset;
1321 /*
1322 * force cow if csum exists in the range.
1323 * this ensure that csum for a given extent are
1324 * either valid or do not exist.
1325 */
1326 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
1327 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001328 nocow = 1;
1329 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1330 extent_end = found_key.offset +
1331 btrfs_file_extent_inline_len(leaf, fi);
1332 extent_end = ALIGN(extent_end, root->sectorsize);
1333 } else {
1334 BUG_ON(1);
1335 }
1336out_check:
1337 if (extent_end <= start) {
1338 path->slots[0]++;
1339 goto next_slot;
1340 }
1341 if (!nocow) {
1342 if (cow_start == (u64)-1)
1343 cow_start = cur_offset;
1344 cur_offset = extent_end;
1345 if (cur_offset > end)
1346 break;
1347 path->slots[0]++;
1348 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001349 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001350
David Sterbab3b4aa72011-04-21 01:20:15 +02001351 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001352 if (cow_start != (u64)-1) {
Miao Xieb7d5b0a2012-11-01 07:32:18 +00001353 ret = __cow_file_range(trans, inode, root, locked_page,
1354 cow_start, found_key.offset - 1,
1355 page_started, nr_written, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001356 if (ret) {
1357 btrfs_abort_transaction(trans, root, ret);
1358 goto error;
1359 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001360 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001361 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001362
Yan Zhengd899e052008-10-30 14:25:28 -04001363 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1364 struct extent_map *em;
1365 struct extent_map_tree *em_tree;
1366 em_tree = &BTRFS_I(inode)->extent_tree;
David Sterba172ddd62011-04-21 00:48:27 +02001367 em = alloc_extent_map();
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001368 BUG_ON(!em); /* -ENOMEM */
Yan Zhengd899e052008-10-30 14:25:28 -04001369 em->start = cur_offset;
Josef Bacik70c8a912012-10-11 16:54:30 -04001370 em->orig_start = found_key.offset - extent_offset;
Yan Zhengd899e052008-10-30 14:25:28 -04001371 em->len = num_bytes;
1372 em->block_len = num_bytes;
1373 em->block_start = disk_bytenr;
Josef Bacikb4939682012-12-03 10:31:19 -05001374 em->orig_block_len = disk_num_bytes;
Josef Bacikcc95bef2013-04-04 14:31:27 -04001375 em->ram_bytes = ram_bytes;
Yan Zhengd899e052008-10-30 14:25:28 -04001376 em->bdev = root->fs_info->fs_devices->latest_bdev;
Josef Bacik2ab28f32012-10-12 15:27:49 -04001377 em->mod_start = em->start;
1378 em->mod_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04001379 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Josef Bacikb11e2342012-12-03 10:58:15 -05001380 set_bit(EXTENT_FLAG_FILLING, &em->flags);
Josef Bacik70c8a912012-10-11 16:54:30 -04001381 em->generation = -1;
Yan Zhengd899e052008-10-30 14:25:28 -04001382 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04001383 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04001384 ret = add_extent_mapping(em_tree, em, 1);
Chris Mason890871b2009-09-02 16:24:52 -04001385 write_unlock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001386 if (ret != -EEXIST) {
1387 free_extent_map(em);
1388 break;
1389 }
1390 btrfs_drop_extent_cache(inode, em->start,
1391 em->start + em->len - 1, 0);
1392 }
1393 type = BTRFS_ORDERED_PREALLOC;
1394 } else {
1395 type = BTRFS_ORDERED_NOCOW;
1396 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001397
1398 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001399 num_bytes, num_bytes, type);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001400 BUG_ON(ret); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -05001401
Yan, Zhengefa56462010-05-16 10:49:59 -04001402 if (root->root_key.objectid ==
1403 BTRFS_DATA_RELOC_TREE_OBJECTID) {
1404 ret = btrfs_reloc_clone_csums(inode, cur_offset,
1405 num_bytes);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001406 if (ret) {
1407 btrfs_abort_transaction(trans, root, ret);
1408 goto error;
1409 }
Yan, Zhengefa56462010-05-16 10:49:59 -04001410 }
1411
Yan Zhengd899e052008-10-30 14:25:28 -04001412 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
Chris Masona791e352009-10-08 11:27:10 -04001413 cur_offset, cur_offset + num_bytes - 1,
1414 locked_page, EXTENT_CLEAR_UNLOCK_PAGE |
1415 EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
1416 EXTENT_SET_PRIVATE2);
Yan Zheng80ff3852008-10-30 14:20:02 -04001417 cur_offset = extent_end;
1418 if (cur_offset > end)
1419 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001420 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001421 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001422
Josef Bacik17ca04a2012-05-31 15:58:55 -04001423 if (cur_offset <= end && cow_start == (u64)-1) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001424 cow_start = cur_offset;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001425 cur_offset = end;
1426 }
1427
Yan Zheng80ff3852008-10-30 14:20:02 -04001428 if (cow_start != (u64)-1) {
Miao Xieb7d5b0a2012-11-01 07:32:18 +00001429 ret = __cow_file_range(trans, inode, root, locked_page,
1430 cow_start, end,
1431 page_started, nr_written, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001432 if (ret) {
1433 btrfs_abort_transaction(trans, root, ret);
1434 goto error;
1435 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001436 }
1437
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001438error:
Miao Xiea698d0752012-09-20 01:51:59 -06001439 err = btrfs_end_transaction(trans, root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001440 if (!ret)
1441 ret = err;
1442
Josef Bacik17ca04a2012-05-31 15:58:55 -04001443 if (ret && cur_offset < end)
1444 extent_clear_unlock_delalloc(inode,
1445 &BTRFS_I(inode)->io_tree,
1446 cur_offset, end, locked_page,
1447 EXTENT_CLEAR_UNLOCK_PAGE |
1448 EXTENT_CLEAR_UNLOCK |
1449 EXTENT_CLEAR_DELALLOC |
1450 EXTENT_CLEAR_DIRTY |
1451 EXTENT_SET_WRITEBACK |
1452 EXTENT_END_WRITEBACK);
1453
Yan Zheng7ea394f2008-08-05 13:05:02 -04001454 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001455 return ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05001456}
1457
Chris Masond352ac62008-09-29 15:18:18 -04001458/*
1459 * extent_io.c call back to do delayed allocation processing
1460 */
Chris Masonc8b97812008-10-29 14:49:59 -04001461static int run_delalloc_range(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001462 u64 start, u64 end, int *page_started,
1463 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001464{
Chris Masonbe20aa92007-12-17 20:14:01 -05001465 int ret;
Chris Mason7f366cf2009-03-12 20:12:45 -04001466 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masona2135012008-06-25 16:01:30 -04001467
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001468 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) {
Chris Masonc8b97812008-10-29 14:49:59 -04001469 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001470 page_started, 1, nr_written);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001471 } else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC) {
Yan Zhengd899e052008-10-30 14:25:28 -04001472 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001473 page_started, 0, nr_written);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001474 } else if (!btrfs_test_opt(root, COMPRESS) &&
1475 !(BTRFS_I(inode)->force_compress) &&
1476 !(BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS)) {
Chris Mason7f366cf2009-03-12 20:12:45 -04001477 ret = cow_file_range(inode, locked_page, start, end,
1478 page_started, nr_written, 1);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001479 } else {
1480 set_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1481 &BTRFS_I(inode)->runtime_flags);
Chris Mason771ed682008-11-06 22:02:51 -05001482 ret = cow_file_range_async(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001483 page_started, nr_written);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001484 }
Chris Masonb888db22007-08-27 16:49:44 -04001485 return ret;
1486}
1487
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001488static void btrfs_split_extent_hook(struct inode *inode,
1489 struct extent_state *orig, u64 split)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001490{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001491 /* not delalloc, ignore it */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001492 if (!(orig->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001493 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001494
Josef Bacik9e0baf62011-07-15 15:16:44 +00001495 spin_lock(&BTRFS_I(inode)->lock);
1496 BTRFS_I(inode)->outstanding_extents++;
1497 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001498}
1499
1500/*
1501 * extent_io.c merge_extent_hook, used to track merged delayed allocation
1502 * extents so we can keep track of new extents that are just merged onto old
1503 * extents, such as when we are doing sequential writes, so we can properly
1504 * account for the metadata space we'll need.
1505 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001506static void btrfs_merge_extent_hook(struct inode *inode,
1507 struct extent_state *new,
1508 struct extent_state *other)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001509{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001510 /* not delalloc, ignore it */
1511 if (!(other->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001512 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001513
Josef Bacik9e0baf62011-07-15 15:16:44 +00001514 spin_lock(&BTRFS_I(inode)->lock);
1515 BTRFS_I(inode)->outstanding_extents--;
1516 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001517}
1518
Chris Masond352ac62008-09-29 15:18:18 -04001519/*
1520 * extent_io.c set_bit_hook, used to track delayed allocation
1521 * bytes in this file, and to maintain the list of inodes that
1522 * have pending delalloc work to be done.
1523 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001524static void btrfs_set_bit_hook(struct inode *inode,
1525 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001526{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001527
Chris Mason75eff682008-12-15 15:54:40 -05001528 /*
1529 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001530 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001531 * bit, which is only set or cleared with irqs on
1532 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001533 if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001534 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001535 u64 len = state->end + 1 - state->start;
Liu Bo83eea1f2012-07-10 05:28:39 -06001536 bool do_list = !btrfs_is_free_space_inode(inode);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001537
Josef Bacik9e0baf62011-07-15 15:16:44 +00001538 if (*bits & EXTENT_FIRST_DELALLOC) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001539 *bits &= ~EXTENT_FIRST_DELALLOC;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001540 } else {
1541 spin_lock(&BTRFS_I(inode)->lock);
1542 BTRFS_I(inode)->outstanding_extents++;
1543 spin_unlock(&BTRFS_I(inode)->lock);
1544 }
Josef Bacik287a0ab2010-03-19 18:07:23 +00001545
Miao Xie963d6782013-01-29 10:10:51 +00001546 __percpu_counter_add(&root->fs_info->delalloc_bytes, len,
1547 root->fs_info->delalloc_batch);
Miao Xiedf0af1a2013-01-29 10:11:59 +00001548 spin_lock(&BTRFS_I(inode)->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001549 BTRFS_I(inode)->delalloc_bytes += len;
Miao Xiedf0af1a2013-01-29 10:11:59 +00001550 if (do_list && !test_bit(BTRFS_INODE_IN_DELALLOC_LIST,
1551 &BTRFS_I(inode)->runtime_flags)) {
1552 spin_lock(&root->fs_info->delalloc_lock);
1553 if (list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1554 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1555 &root->fs_info->delalloc_inodes);
1556 set_bit(BTRFS_INODE_IN_DELALLOC_LIST,
1557 &BTRFS_I(inode)->runtime_flags);
1558 }
1559 spin_unlock(&root->fs_info->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04001560 }
Miao Xiedf0af1a2013-01-29 10:11:59 +00001561 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason291d6732008-01-29 15:55:23 -05001562 }
Chris Mason291d6732008-01-29 15:55:23 -05001563}
1564
Chris Masond352ac62008-09-29 15:18:18 -04001565/*
1566 * extent_io.c clear_bit_hook, see set_bit_hook for why
1567 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001568static void btrfs_clear_bit_hook(struct inode *inode,
1569 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001570{
Chris Mason75eff682008-12-15 15:54:40 -05001571 /*
1572 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001573 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001574 * bit, which is only set or cleared with irqs on
1575 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001576 if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001577 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001578 u64 len = state->end + 1 - state->start;
Liu Bo83eea1f2012-07-10 05:28:39 -06001579 bool do_list = !btrfs_is_free_space_inode(inode);
Chris Masonbcbfce82008-04-22 13:26:47 -04001580
Josef Bacik9e0baf62011-07-15 15:16:44 +00001581 if (*bits & EXTENT_FIRST_DELALLOC) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001582 *bits &= ~EXTENT_FIRST_DELALLOC;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001583 } else if (!(*bits & EXTENT_DO_ACCOUNTING)) {
1584 spin_lock(&BTRFS_I(inode)->lock);
1585 BTRFS_I(inode)->outstanding_extents--;
1586 spin_unlock(&BTRFS_I(inode)->lock);
1587 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001588
1589 if (*bits & EXTENT_DO_ACCOUNTING)
1590 btrfs_delalloc_release_metadata(inode, len);
1591
Josef Bacik0cb59c92010-07-02 12:14:14 -04001592 if (root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID
1593 && do_list)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001594 btrfs_free_reserved_data_space(inode, len);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001595
Miao Xie963d6782013-01-29 10:10:51 +00001596 __percpu_counter_add(&root->fs_info->delalloc_bytes, -len,
1597 root->fs_info->delalloc_batch);
Miao Xiedf0af1a2013-01-29 10:11:59 +00001598 spin_lock(&BTRFS_I(inode)->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001599 BTRFS_I(inode)->delalloc_bytes -= len;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001600 if (do_list && BTRFS_I(inode)->delalloc_bytes == 0 &&
Miao Xiedf0af1a2013-01-29 10:11:59 +00001601 test_bit(BTRFS_INODE_IN_DELALLOC_LIST,
1602 &BTRFS_I(inode)->runtime_flags)) {
1603 spin_lock(&root->fs_info->delalloc_lock);
1604 if (!list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1605 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
1606 clear_bit(BTRFS_INODE_IN_DELALLOC_LIST,
1607 &BTRFS_I(inode)->runtime_flags);
1608 }
1609 spin_unlock(&root->fs_info->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04001610 }
Miao Xiedf0af1a2013-01-29 10:11:59 +00001611 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason291d6732008-01-29 15:55:23 -05001612 }
Chris Mason291d6732008-01-29 15:55:23 -05001613}
1614
Chris Masond352ac62008-09-29 15:18:18 -04001615/*
1616 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1617 * we don't create bios that span stripes or chunks
1618 */
David Woodhouse64a16702009-07-15 23:29:37 +01001619int btrfs_merge_bio_hook(int rw, struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001620 size_t size, struct bio *bio,
1621 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001622{
1623 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
Chris Masona62b9402008-10-03 16:31:08 -04001624 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001625 u64 length = 0;
1626 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001627 int ret;
1628
Chris Mason771ed682008-11-06 22:02:51 -05001629 if (bio_flags & EXTENT_BIO_COMPRESSED)
1630 return 0;
1631
Chris Masonf2d8d742008-04-21 10:03:05 -04001632 length = bio->bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001633 map_length = length;
David Woodhouse64a16702009-07-15 23:29:37 +01001634 ret = btrfs_map_block(root->fs_info, rw, logical,
Chris Masonf1885912008-04-09 16:28:12 -04001635 &map_length, NULL, 0);
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001636 /* Will always return 0 with map_multi == NULL */
Jeff Mahoney3444a972011-10-03 23:23:13 -04001637 BUG_ON(ret < 0);
Chris Masond3977122009-01-05 21:25:51 -05001638 if (map_length < length + size)
Chris Mason239b14b2008-03-24 15:02:07 -04001639 return 1;
Jeff Mahoney3444a972011-10-03 23:23:13 -04001640 return 0;
Chris Mason239b14b2008-03-24 15:02:07 -04001641}
1642
Chris Masond352ac62008-09-29 15:18:18 -04001643/*
1644 * in order to insert checksums into the metadata in large chunks,
1645 * we wait until bio submission time. All the pages in the bio are
1646 * checksummed and sums are attached onto the ordered extent record.
1647 *
1648 * At IO completion time the cums attached on the ordered extent record
1649 * are inserted into the btree
1650 */
Chris Masond3977122009-01-05 21:25:51 -05001651static int __btrfs_submit_bio_start(struct inode *inode, int rw,
1652 struct bio *bio, int mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001653 unsigned long bio_flags,
1654 u64 bio_offset)
Chris Mason065631f2008-02-20 12:07:25 -05001655{
Chris Mason065631f2008-02-20 12:07:25 -05001656 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason065631f2008-02-20 12:07:25 -05001657 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001658
Chris Masond20f7042008-12-08 16:58:54 -05001659 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001660 BUG_ON(ret); /* -ENOMEM */
Chris Mason4a69a412008-11-06 22:03:00 -05001661 return 0;
1662}
Chris Masone0156402008-04-16 11:15:20 -04001663
Chris Mason4a69a412008-11-06 22:03:00 -05001664/*
1665 * in order to insert checksums into the metadata in large chunks,
1666 * we wait until bio submission time. All the pages in the bio are
1667 * checksummed and sums are attached onto the ordered extent record.
1668 *
1669 * At IO completion time the cums attached on the ordered extent record
1670 * are inserted into the btree
1671 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001672static int __btrfs_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001673 int mirror_num, unsigned long bio_flags,
1674 u64 bio_offset)
Chris Mason4a69a412008-11-06 22:03:00 -05001675{
1676 struct btrfs_root *root = BTRFS_I(inode)->root;
Stefan Behrens61891922012-11-05 18:51:52 +01001677 int ret;
1678
1679 ret = btrfs_map_bio(root, rw, bio, mirror_num, 1);
1680 if (ret)
1681 bio_endio(bio, ret);
1682 return ret;
Chris Mason44b8bd72008-04-16 11:14:51 -04001683}
1684
Chris Masond352ac62008-09-29 15:18:18 -04001685/*
Chris Masoncad321a2008-12-17 14:51:42 -05001686 * extent_io.c submission hook. This does the right thing for csum calculation
1687 * on write, or reading the csums from the tree before a read
Chris Masond352ac62008-09-29 15:18:18 -04001688 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001689static int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001690 int mirror_num, unsigned long bio_flags,
1691 u64 bio_offset)
Chris Mason44b8bd72008-04-16 11:14:51 -04001692{
1693 struct btrfs_root *root = BTRFS_I(inode)->root;
1694 int ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001695 int skip_sum;
Jeff Mahoney04173412011-10-03 23:23:12 -04001696 int metadata = 0;
Josef Bacikb812ce22012-11-16 13:56:32 -05001697 int async = !atomic_read(&BTRFS_I(inode)->sync_writers);
Chris Mason44b8bd72008-04-16 11:14:51 -04001698
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001699 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masoncad321a2008-12-17 14:51:42 -05001700
Liu Bo83eea1f2012-07-10 05:28:39 -06001701 if (btrfs_is_free_space_inode(inode))
Jeff Mahoney04173412011-10-03 23:23:12 -04001702 metadata = 2;
1703
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001704 if (!(rw & REQ_WRITE)) {
Josef Bacik5fd02042012-05-02 14:00:54 -04001705 ret = btrfs_bio_wq_end_io(root->fs_info, bio, metadata);
1706 if (ret)
Stefan Behrens61891922012-11-05 18:51:52 +01001707 goto out;
Josef Bacik5fd02042012-05-02 14:00:54 -04001708
Chris Masond20f7042008-12-08 16:58:54 -05001709 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Stefan Behrens61891922012-11-05 18:51:52 +01001710 ret = btrfs_submit_compressed_read(inode, bio,
1711 mirror_num,
1712 bio_flags);
1713 goto out;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001714 } else if (!skip_sum) {
1715 ret = btrfs_lookup_bio_sums(root, inode, bio, NULL);
1716 if (ret)
Stefan Behrens61891922012-11-05 18:51:52 +01001717 goto out;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001718 }
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001719 goto mapit;
Josef Bacikb812ce22012-11-16 13:56:32 -05001720 } else if (async && !skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001721 /* csum items have already been cloned */
1722 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1723 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001724 /* we're doing a write, do the async checksumming */
Stefan Behrens61891922012-11-05 18:51:52 +01001725 ret = btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
Chris Mason44b8bd72008-04-16 11:14:51 -04001726 inode, rw, bio, mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001727 bio_flags, bio_offset,
1728 __btrfs_submit_bio_start,
Chris Mason4a69a412008-11-06 22:03:00 -05001729 __btrfs_submit_bio_done);
Stefan Behrens61891922012-11-05 18:51:52 +01001730 goto out;
Josef Bacikb812ce22012-11-16 13:56:32 -05001731 } else if (!skip_sum) {
1732 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
1733 if (ret)
1734 goto out;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001735 }
1736
Chris Mason0b86a832008-03-24 15:01:56 -04001737mapit:
Stefan Behrens61891922012-11-05 18:51:52 +01001738 ret = btrfs_map_bio(root, rw, bio, mirror_num, 0);
1739
1740out:
1741 if (ret < 0)
1742 bio_endio(bio, ret);
1743 return ret;
Chris Mason065631f2008-02-20 12:07:25 -05001744}
Chris Mason6885f302008-02-20 16:11:05 -05001745
Chris Masond352ac62008-09-29 15:18:18 -04001746/*
1747 * given a list of ordered sums record them in the inode. This happens
1748 * at IO completion time based on sums calculated at bio submission time.
1749 */
Chris Masonba1da2f2008-07-17 12:54:15 -04001750static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -04001751 struct inode *inode, u64 file_offset,
1752 struct list_head *list)
1753{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001754 struct btrfs_ordered_sum *sum;
1755
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001756 list_for_each_entry(sum, list, list) {
Miao Xie39847c42013-03-28 08:08:20 +00001757 trans->adding_csums = 1;
Chris Masond20f7042008-12-08 16:58:54 -05001758 btrfs_csum_file_blocks(trans,
1759 BTRFS_I(inode)->root->fs_info->csum_root, sum);
Miao Xie39847c42013-03-28 08:08:20 +00001760 trans->adding_csums = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001761 }
1762 return 0;
1763}
1764
Josef Bacik2ac55d42010-02-03 19:33:23 +00001765int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end,
1766 struct extent_state **cached_state)
Chris Masonea8c2812008-08-04 23:17:27 -04001767{
Julia Lawall6c1500f2012-11-03 20:30:18 +00001768 WARN_ON((end & (PAGE_CACHE_SIZE - 1)) == 0);
Chris Masonea8c2812008-08-04 23:17:27 -04001769 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001770 cached_state, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04001771}
1772
Chris Masond352ac62008-09-29 15:18:18 -04001773/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04001774struct btrfs_writepage_fixup {
1775 struct page *page;
1776 struct btrfs_work work;
1777};
1778
Christoph Hellwigb2950862008-12-02 09:54:17 -05001779static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04001780{
1781 struct btrfs_writepage_fixup *fixup;
1782 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001783 struct extent_state *cached_state = NULL;
Chris Mason247e7432008-07-17 12:53:51 -04001784 struct page *page;
1785 struct inode *inode;
1786 u64 page_start;
1787 u64 page_end;
Jeff Mahoney87826df2012-02-15 16:23:57 +01001788 int ret;
Chris Mason247e7432008-07-17 12:53:51 -04001789
1790 fixup = container_of(work, struct btrfs_writepage_fixup, work);
1791 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04001792again:
Chris Mason247e7432008-07-17 12:53:51 -04001793 lock_page(page);
1794 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
1795 ClearPageChecked(page);
1796 goto out_page;
1797 }
1798
1799 inode = page->mapping->host;
1800 page_start = page_offset(page);
1801 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
1802
Josef Bacik2ac55d42010-02-03 19:33:23 +00001803 lock_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001804 &cached_state);
Chris Mason4a096752008-07-21 10:29:44 -04001805
1806 /* already ordered? We're done */
Chris Mason8b62b722009-09-02 16:53:46 -04001807 if (PagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001808 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04001809
1810 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1811 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00001812 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start,
1813 page_end, &cached_state, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001814 unlock_page(page);
1815 btrfs_start_ordered_extent(inode, ordered, 1);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001816 btrfs_put_ordered_extent(ordered);
Chris Mason4a096752008-07-21 10:29:44 -04001817 goto again;
1818 }
Chris Mason247e7432008-07-17 12:53:51 -04001819
Jeff Mahoney87826df2012-02-15 16:23:57 +01001820 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
1821 if (ret) {
1822 mapping_set_error(page->mapping, ret);
1823 end_extent_writepage(page, ret, page_start, page_end);
1824 ClearPageChecked(page);
1825 goto out;
1826 }
1827
Josef Bacik2ac55d42010-02-03 19:33:23 +00001828 btrfs_set_extent_delalloc(inode, page_start, page_end, &cached_state);
Chris Mason247e7432008-07-17 12:53:51 -04001829 ClearPageChecked(page);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001830 set_page_dirty(page);
Chris Mason247e7432008-07-17 12:53:51 -04001831out:
Josef Bacik2ac55d42010-02-03 19:33:23 +00001832 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, page_end,
1833 &cached_state, GFP_NOFS);
Chris Mason247e7432008-07-17 12:53:51 -04001834out_page:
1835 unlock_page(page);
1836 page_cache_release(page);
Miao Xieb897abe2011-01-26 16:19:22 +08001837 kfree(fixup);
Chris Mason247e7432008-07-17 12:53:51 -04001838}
1839
1840/*
1841 * There are a few paths in the higher layers of the kernel that directly
1842 * set the page dirty bit without asking the filesystem if it is a
1843 * good idea. This causes problems because we want to make sure COW
1844 * properly happens and the data=ordered rules are followed.
1845 *
Chris Masonc8b97812008-10-29 14:49:59 -04001846 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04001847 * hasn't been properly setup for IO. We kick off an async process
1848 * to fix it up. The async helper will wait for ordered extents, set
1849 * the delalloc bit and make it safe to write the page.
1850 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001851static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04001852{
1853 struct inode *inode = page->mapping->host;
1854 struct btrfs_writepage_fixup *fixup;
1855 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason247e7432008-07-17 12:53:51 -04001856
Chris Mason8b62b722009-09-02 16:53:46 -04001857 /* this page is properly in the ordered list */
1858 if (TestClearPagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001859 return 0;
1860
1861 if (PageChecked(page))
1862 return -EAGAIN;
1863
1864 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
1865 if (!fixup)
1866 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04001867
Chris Mason247e7432008-07-17 12:53:51 -04001868 SetPageChecked(page);
1869 page_cache_get(page);
1870 fixup->work.func = btrfs_writepage_fixup_worker;
1871 fixup->page = page;
1872 btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001873 return -EBUSY;
Chris Mason247e7432008-07-17 12:53:51 -04001874}
1875
Yan Zhengd899e052008-10-30 14:25:28 -04001876static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
1877 struct inode *inode, u64 file_pos,
1878 u64 disk_bytenr, u64 disk_num_bytes,
1879 u64 num_bytes, u64 ram_bytes,
1880 u8 compression, u8 encryption,
1881 u16 other_encoding, int extent_type)
1882{
1883 struct btrfs_root *root = BTRFS_I(inode)->root;
1884 struct btrfs_file_extent_item *fi;
1885 struct btrfs_path *path;
1886 struct extent_buffer *leaf;
1887 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -04001888 int ret;
1889
1890 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07001891 if (!path)
1892 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -04001893
Chris Masonb9473432009-03-13 11:00:37 -04001894 path->leave_spinning = 1;
Chris Masona1ed8352009-09-11 12:27:37 -04001895
1896 /*
1897 * we may be replacing one extent in the tree with another.
1898 * The new extent is pinned in the extent map, and we don't want
1899 * to drop it from the cache until it is completely in the btree.
1900 *
1901 * So, tell btrfs_drop_extents to leave this extent in the cache.
1902 * the caller is expected to unpin it and allow it to be merged
1903 * with the others.
1904 */
Josef Bacik5dc562c2012-08-17 13:14:17 -04001905 ret = btrfs_drop_extents(trans, root, inode, file_pos,
Josef Bacik26714852012-08-29 12:24:27 -04001906 file_pos + num_bytes, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001907 if (ret)
1908 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04001909
Li Zefan33345d012011-04-20 10:31:50 +08001910 ins.objectid = btrfs_ino(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04001911 ins.offset = file_pos;
1912 ins.type = BTRFS_EXTENT_DATA_KEY;
1913 ret = btrfs_insert_empty_item(trans, root, path, &ins, sizeof(*fi));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001914 if (ret)
1915 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04001916 leaf = path->nodes[0];
1917 fi = btrfs_item_ptr(leaf, path->slots[0],
1918 struct btrfs_file_extent_item);
1919 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
1920 btrfs_set_file_extent_type(leaf, fi, extent_type);
1921 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
1922 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
1923 btrfs_set_file_extent_offset(leaf, fi, 0);
1924 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
1925 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
1926 btrfs_set_file_extent_compression(leaf, fi, compression);
1927 btrfs_set_file_extent_encryption(leaf, fi, encryption);
1928 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
Chris Masonb9473432009-03-13 11:00:37 -04001929
Yan Zhengd899e052008-10-30 14:25:28 -04001930 btrfs_mark_buffer_dirty(leaf);
Josef Bacikce195332012-09-25 15:26:16 -04001931 btrfs_release_path(path);
Yan Zhengd899e052008-10-30 14:25:28 -04001932
1933 inode_add_bytes(inode, num_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -04001934
1935 ins.objectid = disk_bytenr;
1936 ins.offset = disk_num_bytes;
1937 ins.type = BTRFS_EXTENT_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001938 ret = btrfs_alloc_reserved_file_extent(trans, root,
1939 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08001940 btrfs_ino(inode), file_pos, &ins);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001941out:
Yan Zhengd899e052008-10-30 14:25:28 -04001942 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04001943
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001944 return ret;
Yan Zhengd899e052008-10-30 14:25:28 -04001945}
1946
Liu Bo38c227d2013-01-29 03:18:40 +00001947/* snapshot-aware defrag */
1948struct sa_defrag_extent_backref {
1949 struct rb_node node;
1950 struct old_sa_defrag_extent *old;
1951 u64 root_id;
1952 u64 inum;
1953 u64 file_pos;
1954 u64 extent_offset;
1955 u64 num_bytes;
1956 u64 generation;
1957};
1958
1959struct old_sa_defrag_extent {
1960 struct list_head list;
1961 struct new_sa_defrag_extent *new;
1962
1963 u64 extent_offset;
1964 u64 bytenr;
1965 u64 offset;
1966 u64 len;
1967 int count;
1968};
1969
1970struct new_sa_defrag_extent {
1971 struct rb_root root;
1972 struct list_head head;
1973 struct btrfs_path *path;
1974 struct inode *inode;
1975 u64 file_pos;
1976 u64 len;
1977 u64 bytenr;
1978 u64 disk_len;
1979 u8 compress_type;
1980};
1981
1982static int backref_comp(struct sa_defrag_extent_backref *b1,
1983 struct sa_defrag_extent_backref *b2)
1984{
1985 if (b1->root_id < b2->root_id)
1986 return -1;
1987 else if (b1->root_id > b2->root_id)
1988 return 1;
1989
1990 if (b1->inum < b2->inum)
1991 return -1;
1992 else if (b1->inum > b2->inum)
1993 return 1;
1994
1995 if (b1->file_pos < b2->file_pos)
1996 return -1;
1997 else if (b1->file_pos > b2->file_pos)
1998 return 1;
1999
2000 /*
2001 * [------------------------------] ===> (a range of space)
2002 * |<--->| |<---->| =============> (fs/file tree A)
2003 * |<---------------------------->| ===> (fs/file tree B)
2004 *
2005 * A range of space can refer to two file extents in one tree while
2006 * refer to only one file extent in another tree.
2007 *
2008 * So we may process a disk offset more than one time(two extents in A)
2009 * and locate at the same extent(one extent in B), then insert two same
2010 * backrefs(both refer to the extent in B).
2011 */
2012 return 0;
2013}
2014
2015static void backref_insert(struct rb_root *root,
2016 struct sa_defrag_extent_backref *backref)
2017{
2018 struct rb_node **p = &root->rb_node;
2019 struct rb_node *parent = NULL;
2020 struct sa_defrag_extent_backref *entry;
2021 int ret;
2022
2023 while (*p) {
2024 parent = *p;
2025 entry = rb_entry(parent, struct sa_defrag_extent_backref, node);
2026
2027 ret = backref_comp(backref, entry);
2028 if (ret < 0)
2029 p = &(*p)->rb_left;
2030 else
2031 p = &(*p)->rb_right;
2032 }
2033
2034 rb_link_node(&backref->node, parent, p);
2035 rb_insert_color(&backref->node, root);
2036}
2037
2038/*
2039 * Note the backref might has changed, and in this case we just return 0.
2040 */
2041static noinline int record_one_backref(u64 inum, u64 offset, u64 root_id,
2042 void *ctx)
2043{
2044 struct btrfs_file_extent_item *extent;
2045 struct btrfs_fs_info *fs_info;
2046 struct old_sa_defrag_extent *old = ctx;
2047 struct new_sa_defrag_extent *new = old->new;
2048 struct btrfs_path *path = new->path;
2049 struct btrfs_key key;
2050 struct btrfs_root *root;
2051 struct sa_defrag_extent_backref *backref;
2052 struct extent_buffer *leaf;
2053 struct inode *inode = new->inode;
2054 int slot;
2055 int ret;
2056 u64 extent_offset;
2057 u64 num_bytes;
2058
2059 if (BTRFS_I(inode)->root->root_key.objectid == root_id &&
2060 inum == btrfs_ino(inode))
2061 return 0;
2062
2063 key.objectid = root_id;
2064 key.type = BTRFS_ROOT_ITEM_KEY;
2065 key.offset = (u64)-1;
2066
2067 fs_info = BTRFS_I(inode)->root->fs_info;
2068 root = btrfs_read_fs_root_no_name(fs_info, &key);
2069 if (IS_ERR(root)) {
2070 if (PTR_ERR(root) == -ENOENT)
2071 return 0;
2072 WARN_ON(1);
2073 pr_debug("inum=%llu, offset=%llu, root_id=%llu\n",
2074 inum, offset, root_id);
2075 return PTR_ERR(root);
2076 }
2077
2078 key.objectid = inum;
2079 key.type = BTRFS_EXTENT_DATA_KEY;
2080 if (offset > (u64)-1 << 32)
2081 key.offset = 0;
2082 else
2083 key.offset = offset;
2084
2085 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2086 if (ret < 0) {
2087 WARN_ON(1);
2088 return ret;
2089 }
2090
2091 while (1) {
2092 cond_resched();
2093
2094 leaf = path->nodes[0];
2095 slot = path->slots[0];
2096
2097 if (slot >= btrfs_header_nritems(leaf)) {
2098 ret = btrfs_next_leaf(root, path);
2099 if (ret < 0) {
2100 goto out;
2101 } else if (ret > 0) {
2102 ret = 0;
2103 goto out;
2104 }
2105 continue;
2106 }
2107
2108 path->slots[0]++;
2109
2110 btrfs_item_key_to_cpu(leaf, &key, slot);
2111
2112 if (key.objectid > inum)
2113 goto out;
2114
2115 if (key.objectid < inum || key.type != BTRFS_EXTENT_DATA_KEY)
2116 continue;
2117
2118 extent = btrfs_item_ptr(leaf, slot,
2119 struct btrfs_file_extent_item);
2120
2121 if (btrfs_file_extent_disk_bytenr(leaf, extent) != old->bytenr)
2122 continue;
2123
2124 extent_offset = btrfs_file_extent_offset(leaf, extent);
2125 if (key.offset - extent_offset != offset)
2126 continue;
2127
2128 num_bytes = btrfs_file_extent_num_bytes(leaf, extent);
2129 if (extent_offset >= old->extent_offset + old->offset +
2130 old->len || extent_offset + num_bytes <=
2131 old->extent_offset + old->offset)
2132 continue;
2133
2134 break;
2135 }
2136
2137 backref = kmalloc(sizeof(*backref), GFP_NOFS);
2138 if (!backref) {
2139 ret = -ENOENT;
2140 goto out;
2141 }
2142
2143 backref->root_id = root_id;
2144 backref->inum = inum;
2145 backref->file_pos = offset + extent_offset;
2146 backref->num_bytes = num_bytes;
2147 backref->extent_offset = extent_offset;
2148 backref->generation = btrfs_file_extent_generation(leaf, extent);
2149 backref->old = old;
2150 backref_insert(&new->root, backref);
2151 old->count++;
2152out:
2153 btrfs_release_path(path);
2154 WARN_ON(ret);
2155 return ret;
2156}
2157
2158static noinline bool record_extent_backrefs(struct btrfs_path *path,
2159 struct new_sa_defrag_extent *new)
2160{
2161 struct btrfs_fs_info *fs_info = BTRFS_I(new->inode)->root->fs_info;
2162 struct old_sa_defrag_extent *old, *tmp;
2163 int ret;
2164
2165 new->path = path;
2166
2167 list_for_each_entry_safe(old, tmp, &new->head, list) {
2168 ret = iterate_inodes_from_logical(old->bytenr, fs_info,
2169 path, record_one_backref,
2170 old);
2171 BUG_ON(ret < 0 && ret != -ENOENT);
2172
2173 /* no backref to be processed for this extent */
2174 if (!old->count) {
2175 list_del(&old->list);
2176 kfree(old);
2177 }
2178 }
2179
2180 if (list_empty(&new->head))
2181 return false;
2182
2183 return true;
2184}
2185
2186static int relink_is_mergable(struct extent_buffer *leaf,
2187 struct btrfs_file_extent_item *fi,
2188 u64 disk_bytenr)
2189{
2190 if (btrfs_file_extent_disk_bytenr(leaf, fi) != disk_bytenr)
2191 return 0;
2192
2193 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG)
2194 return 0;
2195
2196 if (btrfs_file_extent_compression(leaf, fi) ||
2197 btrfs_file_extent_encryption(leaf, fi) ||
2198 btrfs_file_extent_other_encoding(leaf, fi))
2199 return 0;
2200
2201 return 1;
2202}
2203
2204/*
2205 * Note the backref might has changed, and in this case we just return 0.
2206 */
2207static noinline int relink_extent_backref(struct btrfs_path *path,
2208 struct sa_defrag_extent_backref *prev,
2209 struct sa_defrag_extent_backref *backref)
2210{
2211 struct btrfs_file_extent_item *extent;
2212 struct btrfs_file_extent_item *item;
2213 struct btrfs_ordered_extent *ordered;
2214 struct btrfs_trans_handle *trans;
2215 struct btrfs_fs_info *fs_info;
2216 struct btrfs_root *root;
2217 struct btrfs_key key;
2218 struct extent_buffer *leaf;
2219 struct old_sa_defrag_extent *old = backref->old;
2220 struct new_sa_defrag_extent *new = old->new;
2221 struct inode *src_inode = new->inode;
2222 struct inode *inode;
2223 struct extent_state *cached = NULL;
2224 int ret = 0;
2225 u64 start;
2226 u64 len;
2227 u64 lock_start;
2228 u64 lock_end;
2229 bool merge = false;
2230 int index;
2231
2232 if (prev && prev->root_id == backref->root_id &&
2233 prev->inum == backref->inum &&
2234 prev->file_pos + prev->num_bytes == backref->file_pos)
2235 merge = true;
2236
2237 /* step 1: get root */
2238 key.objectid = backref->root_id;
2239 key.type = BTRFS_ROOT_ITEM_KEY;
2240 key.offset = (u64)-1;
2241
2242 fs_info = BTRFS_I(src_inode)->root->fs_info;
2243 index = srcu_read_lock(&fs_info->subvol_srcu);
2244
2245 root = btrfs_read_fs_root_no_name(fs_info, &key);
2246 if (IS_ERR(root)) {
2247 srcu_read_unlock(&fs_info->subvol_srcu, index);
2248 if (PTR_ERR(root) == -ENOENT)
2249 return 0;
2250 return PTR_ERR(root);
2251 }
2252 if (btrfs_root_refs(&root->root_item) == 0) {
2253 srcu_read_unlock(&fs_info->subvol_srcu, index);
2254 /* parse ENOENT to 0 */
2255 return 0;
2256 }
2257
2258 /* step 2: get inode */
2259 key.objectid = backref->inum;
2260 key.type = BTRFS_INODE_ITEM_KEY;
2261 key.offset = 0;
2262
2263 inode = btrfs_iget(fs_info->sb, &key, root, NULL);
2264 if (IS_ERR(inode)) {
2265 srcu_read_unlock(&fs_info->subvol_srcu, index);
2266 return 0;
2267 }
2268
2269 srcu_read_unlock(&fs_info->subvol_srcu, index);
2270
2271 /* step 3: relink backref */
2272 lock_start = backref->file_pos;
2273 lock_end = backref->file_pos + backref->num_bytes - 1;
2274 lock_extent_bits(&BTRFS_I(inode)->io_tree, lock_start, lock_end,
2275 0, &cached);
2276
2277 ordered = btrfs_lookup_first_ordered_extent(inode, lock_end);
2278 if (ordered) {
2279 btrfs_put_ordered_extent(ordered);
2280 goto out_unlock;
2281 }
2282
2283 trans = btrfs_join_transaction(root);
2284 if (IS_ERR(trans)) {
2285 ret = PTR_ERR(trans);
2286 goto out_unlock;
2287 }
2288
2289 key.objectid = backref->inum;
2290 key.type = BTRFS_EXTENT_DATA_KEY;
2291 key.offset = backref->file_pos;
2292
2293 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2294 if (ret < 0) {
2295 goto out_free_path;
2296 } else if (ret > 0) {
2297 ret = 0;
2298 goto out_free_path;
2299 }
2300
2301 extent = btrfs_item_ptr(path->nodes[0], path->slots[0],
2302 struct btrfs_file_extent_item);
2303
2304 if (btrfs_file_extent_generation(path->nodes[0], extent) !=
2305 backref->generation)
2306 goto out_free_path;
2307
2308 btrfs_release_path(path);
2309
2310 start = backref->file_pos;
2311 if (backref->extent_offset < old->extent_offset + old->offset)
2312 start += old->extent_offset + old->offset -
2313 backref->extent_offset;
2314
2315 len = min(backref->extent_offset + backref->num_bytes,
2316 old->extent_offset + old->offset + old->len);
2317 len -= max(backref->extent_offset, old->extent_offset + old->offset);
2318
2319 ret = btrfs_drop_extents(trans, root, inode, start,
2320 start + len, 1);
2321 if (ret)
2322 goto out_free_path;
2323again:
2324 key.objectid = btrfs_ino(inode);
2325 key.type = BTRFS_EXTENT_DATA_KEY;
2326 key.offset = start;
2327
Liu Boa09a0a72013-03-11 09:20:58 +00002328 path->leave_spinning = 1;
Liu Bo38c227d2013-01-29 03:18:40 +00002329 if (merge) {
2330 struct btrfs_file_extent_item *fi;
2331 u64 extent_len;
2332 struct btrfs_key found_key;
2333
2334 ret = btrfs_search_slot(trans, root, &key, path, 1, 1);
2335 if (ret < 0)
2336 goto out_free_path;
2337
2338 path->slots[0]--;
2339 leaf = path->nodes[0];
2340 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2341
2342 fi = btrfs_item_ptr(leaf, path->slots[0],
2343 struct btrfs_file_extent_item);
2344 extent_len = btrfs_file_extent_num_bytes(leaf, fi);
2345
2346 if (relink_is_mergable(leaf, fi, new->bytenr) &&
2347 extent_len + found_key.offset == start) {
2348 btrfs_set_file_extent_num_bytes(leaf, fi,
2349 extent_len + len);
2350 btrfs_mark_buffer_dirty(leaf);
2351 inode_add_bytes(inode, len);
2352
2353 ret = 1;
2354 goto out_free_path;
2355 } else {
2356 merge = false;
2357 btrfs_release_path(path);
2358 goto again;
2359 }
2360 }
2361
2362 ret = btrfs_insert_empty_item(trans, root, path, &key,
2363 sizeof(*extent));
2364 if (ret) {
2365 btrfs_abort_transaction(trans, root, ret);
2366 goto out_free_path;
2367 }
2368
2369 leaf = path->nodes[0];
2370 item = btrfs_item_ptr(leaf, path->slots[0],
2371 struct btrfs_file_extent_item);
2372 btrfs_set_file_extent_disk_bytenr(leaf, item, new->bytenr);
2373 btrfs_set_file_extent_disk_num_bytes(leaf, item, new->disk_len);
2374 btrfs_set_file_extent_offset(leaf, item, start - new->file_pos);
2375 btrfs_set_file_extent_num_bytes(leaf, item, len);
2376 btrfs_set_file_extent_ram_bytes(leaf, item, new->len);
2377 btrfs_set_file_extent_generation(leaf, item, trans->transid);
2378 btrfs_set_file_extent_type(leaf, item, BTRFS_FILE_EXTENT_REG);
2379 btrfs_set_file_extent_compression(leaf, item, new->compress_type);
2380 btrfs_set_file_extent_encryption(leaf, item, 0);
2381 btrfs_set_file_extent_other_encoding(leaf, item, 0);
2382
2383 btrfs_mark_buffer_dirty(leaf);
2384 inode_add_bytes(inode, len);
Liu Boa09a0a72013-03-11 09:20:58 +00002385 btrfs_release_path(path);
Liu Bo38c227d2013-01-29 03:18:40 +00002386
2387 ret = btrfs_inc_extent_ref(trans, root, new->bytenr,
2388 new->disk_len, 0,
2389 backref->root_id, backref->inum,
2390 new->file_pos, 0); /* start - extent_offset */
2391 if (ret) {
2392 btrfs_abort_transaction(trans, root, ret);
2393 goto out_free_path;
2394 }
2395
2396 ret = 1;
2397out_free_path:
2398 btrfs_release_path(path);
Liu Boa09a0a72013-03-11 09:20:58 +00002399 path->leave_spinning = 0;
Liu Bo38c227d2013-01-29 03:18:40 +00002400 btrfs_end_transaction(trans, root);
2401out_unlock:
2402 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lock_start, lock_end,
2403 &cached, GFP_NOFS);
2404 iput(inode);
2405 return ret;
2406}
2407
2408static void relink_file_extents(struct new_sa_defrag_extent *new)
2409{
2410 struct btrfs_path *path;
2411 struct old_sa_defrag_extent *old, *tmp;
2412 struct sa_defrag_extent_backref *backref;
2413 struct sa_defrag_extent_backref *prev = NULL;
2414 struct inode *inode;
2415 struct btrfs_root *root;
2416 struct rb_node *node;
2417 int ret;
2418
2419 inode = new->inode;
2420 root = BTRFS_I(inode)->root;
2421
2422 path = btrfs_alloc_path();
2423 if (!path)
2424 return;
2425
2426 if (!record_extent_backrefs(path, new)) {
2427 btrfs_free_path(path);
2428 goto out;
2429 }
2430 btrfs_release_path(path);
2431
2432 while (1) {
2433 node = rb_first(&new->root);
2434 if (!node)
2435 break;
2436 rb_erase(node, &new->root);
2437
2438 backref = rb_entry(node, struct sa_defrag_extent_backref, node);
2439
2440 ret = relink_extent_backref(path, prev, backref);
2441 WARN_ON(ret < 0);
2442
2443 kfree(prev);
2444
2445 if (ret == 1)
2446 prev = backref;
2447 else
2448 prev = NULL;
2449 cond_resched();
2450 }
2451 kfree(prev);
2452
2453 btrfs_free_path(path);
2454
2455 list_for_each_entry_safe(old, tmp, &new->head, list) {
2456 list_del(&old->list);
2457 kfree(old);
2458 }
2459out:
2460 atomic_dec(&root->fs_info->defrag_running);
2461 wake_up(&root->fs_info->transaction_wait);
2462
2463 kfree(new);
2464}
2465
2466static struct new_sa_defrag_extent *
2467record_old_file_extents(struct inode *inode,
2468 struct btrfs_ordered_extent *ordered)
2469{
2470 struct btrfs_root *root = BTRFS_I(inode)->root;
2471 struct btrfs_path *path;
2472 struct btrfs_key key;
2473 struct old_sa_defrag_extent *old, *tmp;
2474 struct new_sa_defrag_extent *new;
2475 int ret;
2476
2477 new = kmalloc(sizeof(*new), GFP_NOFS);
2478 if (!new)
2479 return NULL;
2480
2481 new->inode = inode;
2482 new->file_pos = ordered->file_offset;
2483 new->len = ordered->len;
2484 new->bytenr = ordered->start;
2485 new->disk_len = ordered->disk_len;
2486 new->compress_type = ordered->compress_type;
2487 new->root = RB_ROOT;
2488 INIT_LIST_HEAD(&new->head);
2489
2490 path = btrfs_alloc_path();
2491 if (!path)
2492 goto out_kfree;
2493
2494 key.objectid = btrfs_ino(inode);
2495 key.type = BTRFS_EXTENT_DATA_KEY;
2496 key.offset = new->file_pos;
2497
2498 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2499 if (ret < 0)
2500 goto out_free_path;
2501 if (ret > 0 && path->slots[0] > 0)
2502 path->slots[0]--;
2503
2504 /* find out all the old extents for the file range */
2505 while (1) {
2506 struct btrfs_file_extent_item *extent;
2507 struct extent_buffer *l;
2508 int slot;
2509 u64 num_bytes;
2510 u64 offset;
2511 u64 end;
2512 u64 disk_bytenr;
2513 u64 extent_offset;
2514
2515 l = path->nodes[0];
2516 slot = path->slots[0];
2517
2518 if (slot >= btrfs_header_nritems(l)) {
2519 ret = btrfs_next_leaf(root, path);
2520 if (ret < 0)
2521 goto out_free_list;
2522 else if (ret > 0)
2523 break;
2524 continue;
2525 }
2526
2527 btrfs_item_key_to_cpu(l, &key, slot);
2528
2529 if (key.objectid != btrfs_ino(inode))
2530 break;
2531 if (key.type != BTRFS_EXTENT_DATA_KEY)
2532 break;
2533 if (key.offset >= new->file_pos + new->len)
2534 break;
2535
2536 extent = btrfs_item_ptr(l, slot, struct btrfs_file_extent_item);
2537
2538 num_bytes = btrfs_file_extent_num_bytes(l, extent);
2539 if (key.offset + num_bytes < new->file_pos)
2540 goto next;
2541
2542 disk_bytenr = btrfs_file_extent_disk_bytenr(l, extent);
2543 if (!disk_bytenr)
2544 goto next;
2545
2546 extent_offset = btrfs_file_extent_offset(l, extent);
2547
2548 old = kmalloc(sizeof(*old), GFP_NOFS);
2549 if (!old)
2550 goto out_free_list;
2551
2552 offset = max(new->file_pos, key.offset);
2553 end = min(new->file_pos + new->len, key.offset + num_bytes);
2554
2555 old->bytenr = disk_bytenr;
2556 old->extent_offset = extent_offset;
2557 old->offset = offset - key.offset;
2558 old->len = end - offset;
2559 old->new = new;
2560 old->count = 0;
2561 list_add_tail(&old->list, &new->head);
2562next:
2563 path->slots[0]++;
2564 cond_resched();
2565 }
2566
2567 btrfs_free_path(path);
2568 atomic_inc(&root->fs_info->defrag_running);
2569
2570 return new;
2571
2572out_free_list:
2573 list_for_each_entry_safe(old, tmp, &new->head, list) {
2574 list_del(&old->list);
2575 kfree(old);
2576 }
2577out_free_path:
2578 btrfs_free_path(path);
2579out_kfree:
2580 kfree(new);
2581 return NULL;
2582}
2583
Chris Mason5d13a982009-03-13 11:41:46 -04002584/*
2585 * helper function for btrfs_finish_ordered_io, this
2586 * just reads in some of the csum leaves to prime them into ram
2587 * before we start the transaction. It limits the amount of btree
2588 * reads required while inside the transaction.
2589 */
Chris Masond352ac62008-09-29 15:18:18 -04002590/* as ordered data IO finishes, this gets called so we can finish
2591 * an ordered extent if the range of bytes in the file it covers are
2592 * fully written.
2593 */
Josef Bacik5fd02042012-05-02 14:00:54 -04002594static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent)
Chris Masone6dcd2d2008-07-17 12:53:50 -04002595{
Josef Bacik5fd02042012-05-02 14:00:54 -04002596 struct inode *inode = ordered_extent->inode;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002597 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04002598 struct btrfs_trans_handle *trans = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002599 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Josef Bacik2ac55d42010-02-03 19:33:23 +00002600 struct extent_state *cached_state = NULL;
Liu Bo38c227d2013-01-29 03:18:40 +00002601 struct new_sa_defrag_extent *new = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08002602 int compress_type = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002603 int ret;
Li Zefan82d59022011-04-20 10:33:24 +08002604 bool nolock;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002605
Liu Bo83eea1f2012-07-10 05:28:39 -06002606 nolock = btrfs_is_free_space_inode(inode);
Josef Bacik0cb59c92010-07-02 12:14:14 -04002607
Josef Bacik5fd02042012-05-02 14:00:54 -04002608 if (test_bit(BTRFS_ORDERED_IOERR, &ordered_extent->flags)) {
2609 ret = -EIO;
2610 goto out;
2611 }
2612
Yan, Zhengc2167752009-11-12 09:34:21 +00002613 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002614 BUG_ON(!list_empty(&ordered_extent->list)); /* Logic error */
Josef Bacik6c760c02012-11-09 10:53:21 -05002615 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
2616 if (nolock)
2617 trans = btrfs_join_transaction_nolock(root);
2618 else
2619 trans = btrfs_join_transaction(root);
2620 if (IS_ERR(trans)) {
2621 ret = PTR_ERR(trans);
2622 trans = NULL;
2623 goto out;
Yan, Zhengc2167752009-11-12 09:34:21 +00002624 }
Josef Bacik6c760c02012-11-09 10:53:21 -05002625 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
2626 ret = btrfs_update_inode_fallback(trans, root, inode);
2627 if (ret) /* -ENOMEM or corruption */
2628 btrfs_abort_transaction(trans, root, ret);
Yan, Zhengc2167752009-11-12 09:34:21 +00002629 goto out;
2630 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04002631
Josef Bacik2ac55d42010-02-03 19:33:23 +00002632 lock_extent_bits(io_tree, ordered_extent->file_offset,
2633 ordered_extent->file_offset + ordered_extent->len - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002634 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002635
Liu Bo38c227d2013-01-29 03:18:40 +00002636 ret = test_range_bit(io_tree, ordered_extent->file_offset,
2637 ordered_extent->file_offset + ordered_extent->len - 1,
2638 EXTENT_DEFRAG, 1, cached_state);
2639 if (ret) {
2640 u64 last_snapshot = btrfs_root_last_snapshot(&root->root_item);
2641 if (last_snapshot >= BTRFS_I(inode)->generation)
2642 /* the inode is shared */
2643 new = record_old_file_extents(inode, ordered_extent);
2644
2645 clear_extent_bit(io_tree, ordered_extent->file_offset,
2646 ordered_extent->file_offset + ordered_extent->len - 1,
2647 EXTENT_DEFRAG, 0, 0, &cached_state, GFP_NOFS);
2648 }
2649
Josef Bacik0cb59c92010-07-02 12:14:14 -04002650 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002651 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04002652 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002653 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002654 if (IS_ERR(trans)) {
2655 ret = PTR_ERR(trans);
2656 trans = NULL;
2657 goto out_unlock;
2658 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04002659 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Yan, Zhengc2167752009-11-12 09:34:21 +00002660
Chris Masonc8b97812008-10-29 14:49:59 -04002661 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Li Zefan261507a02010-12-17 14:21:50 +08002662 compress_type = ordered_extent->compress_type;
Yan Zhengd899e052008-10-30 14:25:28 -04002663 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Li Zefan261507a02010-12-17 14:21:50 +08002664 BUG_ON(compress_type);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00002665 ret = btrfs_mark_extent_written(trans, inode,
Yan Zhengd899e052008-10-30 14:25:28 -04002666 ordered_extent->file_offset,
2667 ordered_extent->file_offset +
2668 ordered_extent->len);
Yan Zhengd899e052008-10-30 14:25:28 -04002669 } else {
Josef Bacik0af3d002010-06-21 14:48:16 -04002670 BUG_ON(root == root->fs_info->tree_root);
Yan Zhengd899e052008-10-30 14:25:28 -04002671 ret = insert_reserved_file_extent(trans, inode,
2672 ordered_extent->file_offset,
2673 ordered_extent->start,
2674 ordered_extent->disk_len,
2675 ordered_extent->len,
2676 ordered_extent->len,
Li Zefan261507a02010-12-17 14:21:50 +08002677 compress_type, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04002678 BTRFS_FILE_EXTENT_REG);
Yan Zhengd899e052008-10-30 14:25:28 -04002679 }
Josef Bacik5dc562c2012-08-17 13:14:17 -04002680 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
2681 ordered_extent->file_offset, ordered_extent->len,
2682 trans->transid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002683 if (ret < 0) {
2684 btrfs_abort_transaction(trans, root, ret);
Josef Bacik5fd02042012-05-02 14:00:54 -04002685 goto out_unlock;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002686 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00002687
Chris Masone6dcd2d2008-07-17 12:53:50 -04002688 add_pending_csums(trans, inode, ordered_extent->file_offset,
2689 &ordered_extent->list);
2690
Josef Bacik6c760c02012-11-09 10:53:21 -05002691 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
2692 ret = btrfs_update_inode_fallback(trans, root, inode);
2693 if (ret) { /* -ENOMEM or corruption */
2694 btrfs_abort_transaction(trans, root, ret);
2695 goto out_unlock;
Josef Bacik1ef30be2011-04-05 19:25:36 -04002696 }
2697 ret = 0;
Josef Bacik5fd02042012-05-02 14:00:54 -04002698out_unlock:
2699 unlock_extent_cached(io_tree, ordered_extent->file_offset,
2700 ordered_extent->file_offset +
2701 ordered_extent->len - 1, &cached_state, GFP_NOFS);
Yan, Zhengc2167752009-11-12 09:34:21 +00002702out:
Josef Bacik5b0e95b2011-10-06 08:58:24 -04002703 if (root != root->fs_info->tree_root)
Josef Bacik0cb59c92010-07-02 12:14:14 -04002704 btrfs_delalloc_release_metadata(inode, ordered_extent->len);
Miao Xiea698d0752012-09-20 01:51:59 -06002705 if (trans)
2706 btrfs_end_transaction(trans, root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04002707
Josef Bacik0bec9ef2013-01-31 14:58:00 -05002708 if (ret) {
Josef Bacik5fd02042012-05-02 14:00:54 -04002709 clear_extent_uptodate(io_tree, ordered_extent->file_offset,
2710 ordered_extent->file_offset +
2711 ordered_extent->len - 1, NULL, GFP_NOFS);
2712
Josef Bacik0bec9ef2013-01-31 14:58:00 -05002713 /*
2714 * If the ordered extent had an IOERR or something else went
2715 * wrong we need to return the space for this ordered extent
2716 * back to the allocator.
2717 */
2718 if (!test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags) &&
2719 !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags))
2720 btrfs_free_reserved_extent(root, ordered_extent->start,
2721 ordered_extent->disk_len);
2722 }
2723
2724
Josef Bacik5fd02042012-05-02 14:00:54 -04002725 /*
Liu Bo8bad3c02012-06-18 12:14:23 +08002726 * This needs to be done to make sure anybody waiting knows we are done
2727 * updating everything for this ordered extent.
Josef Bacik5fd02042012-05-02 14:00:54 -04002728 */
2729 btrfs_remove_ordered_extent(inode, ordered_extent);
2730
Liu Bo38c227d2013-01-29 03:18:40 +00002731 /* for snapshot-aware defrag */
2732 if (new)
2733 relink_file_extents(new);
2734
Chris Masone6dcd2d2008-07-17 12:53:50 -04002735 /* once for us */
2736 btrfs_put_ordered_extent(ordered_extent);
2737 /* once for the tree */
2738 btrfs_put_ordered_extent(ordered_extent);
2739
Josef Bacik5fd02042012-05-02 14:00:54 -04002740 return ret;
2741}
2742
2743static void finish_ordered_fn(struct btrfs_work *work)
2744{
2745 struct btrfs_ordered_extent *ordered_extent;
2746 ordered_extent = container_of(work, struct btrfs_ordered_extent, work);
2747 btrfs_finish_ordered_io(ordered_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002748}
2749
Christoph Hellwigb2950862008-12-02 09:54:17 -05002750static int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04002751 struct extent_state *state, int uptodate)
2752{
Josef Bacik5fd02042012-05-02 14:00:54 -04002753 struct inode *inode = page->mapping->host;
2754 struct btrfs_root *root = BTRFS_I(inode)->root;
2755 struct btrfs_ordered_extent *ordered_extent = NULL;
2756 struct btrfs_workers *workers;
2757
liubo1abe9b82011-03-24 11:18:59 +00002758 trace_btrfs_writepage_end_io_hook(page, start, end, uptodate);
2759
Chris Mason8b62b722009-09-02 16:53:46 -04002760 ClearPagePrivate2(page);
Josef Bacik5fd02042012-05-02 14:00:54 -04002761 if (!btrfs_dec_test_ordered_pending(inode, &ordered_extent, start,
2762 end - start + 1, uptodate))
2763 return 0;
2764
2765 ordered_extent->work.func = finish_ordered_fn;
2766 ordered_extent->work.flags = 0;
2767
Liu Bo83eea1f2012-07-10 05:28:39 -06002768 if (btrfs_is_free_space_inode(inode))
Josef Bacik5fd02042012-05-02 14:00:54 -04002769 workers = &root->fs_info->endio_freespace_worker;
2770 else
2771 workers = &root->fs_info->endio_write_workers;
2772 btrfs_queue_worker(workers, &ordered_extent->work);
2773
2774 return 0;
Chris Mason211f90e2008-07-18 11:56:15 -04002775}
2776
Chris Masond352ac62008-09-29 15:18:18 -04002777/*
Chris Masond352ac62008-09-29 15:18:18 -04002778 * when reads are done, we need to check csums to verify the data is correct
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002779 * if there's a match, we allow the bio to finish. If not, the code in
2780 * extent_io.c will try to find good copies for us.
Chris Masond352ac62008-09-29 15:18:18 -04002781 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05002782static int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002783 struct extent_state *state, int mirror)
Chris Mason07157aa2007-08-30 08:50:51 -04002784{
Miao Xie4eee4fa2012-12-21 09:17:45 +00002785 size_t offset = start - page_offset(page);
Chris Mason07157aa2007-08-30 08:50:51 -04002786 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05002787 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -04002788 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -05002789 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -04002790 int ret;
Chris Masonff79f812007-10-15 16:22:25 -04002791 struct btrfs_root *root = BTRFS_I(inode)->root;
2792 u32 csum = ~(u32)0;
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002793 static DEFINE_RATELIMIT_STATE(_rs, DEFAULT_RATELIMIT_INTERVAL,
2794 DEFAULT_RATELIMIT_BURST);
Chris Masond1310b22008-01-24 16:13:08 -05002795
Chris Masond20f7042008-12-08 16:58:54 -05002796 if (PageChecked(page)) {
2797 ClearPageChecked(page);
2798 goto good;
2799 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002800
2801 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Jan Schmidt08d2f342011-05-04 16:18:50 +02002802 goto good;
Chris Masond20f7042008-12-08 16:58:54 -05002803
Yan Zheng17d217f2008-12-12 10:03:38 -05002804 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04002805 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
Yan Zheng17d217f2008-12-12 10:03:38 -05002806 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM,
2807 GFP_NOFS);
2808 return 0;
2809 }
2810
Yanc2e639f2008-02-04 08:57:25 -05002811 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -05002812 private = state->private;
2813 ret = 0;
2814 } else {
2815 ret = get_state_private(io_tree, start, &private);
2816 }
Cong Wang7ac687d2011-11-25 23:14:28 +08002817 kaddr = kmap_atomic(page);
Chris Masond3977122009-01-05 21:25:51 -05002818 if (ret)
Chris Mason07157aa2007-08-30 08:50:51 -04002819 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05002820
Liu Bob0496682013-03-14 14:57:45 +00002821 csum = btrfs_csum_data(kaddr + offset, csum, end - start + 1);
Chris Masonff79f812007-10-15 16:22:25 -04002822 btrfs_csum_final(csum, (char *)&csum);
Chris Masond3977122009-01-05 21:25:51 -05002823 if (csum != private)
Chris Mason07157aa2007-08-30 08:50:51 -04002824 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05002825
Cong Wang7ac687d2011-11-25 23:14:28 +08002826 kunmap_atomic(kaddr);
Chris Masond20f7042008-12-08 16:58:54 -05002827good:
Chris Mason07157aa2007-08-30 08:50:51 -04002828 return 0;
2829
2830zeroit:
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002831 if (__ratelimit(&_rs))
2832 btrfs_info(root->fs_info, "csum failed ino %llu off %llu csum %u private %llu",
2833 (unsigned long long)btrfs_ino(page->mapping->host),
2834 (unsigned long long)start, csum,
2835 (unsigned long long)private);
Chris Masondb945352007-10-15 16:15:53 -04002836 memset(kaddr + offset, 1, end - start + 1);
2837 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002838 kunmap_atomic(kaddr);
Chris Mason3b951512008-04-17 11:29:12 -04002839 if (private == 0)
2840 return 0;
Chris Mason7e383262008-04-09 16:28:12 -04002841 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -04002842}
Chris Masonb888db22007-08-27 16:49:44 -04002843
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002844struct delayed_iput {
2845 struct list_head list;
2846 struct inode *inode;
2847};
2848
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002849/* JDM: If this is fs-wide, why can't we add a pointer to
2850 * btrfs_inode instead and avoid the allocation? */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002851void btrfs_add_delayed_iput(struct inode *inode)
2852{
2853 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2854 struct delayed_iput *delayed;
2855
2856 if (atomic_add_unless(&inode->i_count, -1, 1))
2857 return;
2858
2859 delayed = kmalloc(sizeof(*delayed), GFP_NOFS | __GFP_NOFAIL);
2860 delayed->inode = inode;
2861
2862 spin_lock(&fs_info->delayed_iput_lock);
2863 list_add_tail(&delayed->list, &fs_info->delayed_iputs);
2864 spin_unlock(&fs_info->delayed_iput_lock);
2865}
2866
2867void btrfs_run_delayed_iputs(struct btrfs_root *root)
2868{
2869 LIST_HEAD(list);
2870 struct btrfs_fs_info *fs_info = root->fs_info;
2871 struct delayed_iput *delayed;
2872 int empty;
2873
2874 spin_lock(&fs_info->delayed_iput_lock);
2875 empty = list_empty(&fs_info->delayed_iputs);
2876 spin_unlock(&fs_info->delayed_iput_lock);
2877 if (empty)
2878 return;
2879
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002880 spin_lock(&fs_info->delayed_iput_lock);
2881 list_splice_init(&fs_info->delayed_iputs, &list);
2882 spin_unlock(&fs_info->delayed_iput_lock);
2883
2884 while (!list_empty(&list)) {
2885 delayed = list_entry(list.next, struct delayed_iput, list);
2886 list_del(&delayed->list);
2887 iput(delayed->inode);
2888 kfree(delayed);
2889 }
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002890}
2891
Yan, Zhengd68fc572010-05-16 10:49:58 -04002892/*
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08002893 * This is called in transaction commit time. If there are no orphan
Yan, Zhengd68fc572010-05-16 10:49:58 -04002894 * files in the subvolume, it removes orphan item and frees block_rsv
2895 * structure.
2896 */
2897void btrfs_orphan_commit_root(struct btrfs_trans_handle *trans,
2898 struct btrfs_root *root)
2899{
Josef Bacik90290e12011-12-02 15:44:12 -05002900 struct btrfs_block_rsv *block_rsv;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002901 int ret;
2902
Josef Bacik8a35d952012-05-23 14:26:42 -04002903 if (atomic_read(&root->orphan_inodes) ||
Yan, Zhengd68fc572010-05-16 10:49:58 -04002904 root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE)
2905 return;
2906
Josef Bacik90290e12011-12-02 15:44:12 -05002907 spin_lock(&root->orphan_lock);
Josef Bacik8a35d952012-05-23 14:26:42 -04002908 if (atomic_read(&root->orphan_inodes)) {
Josef Bacik90290e12011-12-02 15:44:12 -05002909 spin_unlock(&root->orphan_lock);
2910 return;
2911 }
2912
2913 if (root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE) {
2914 spin_unlock(&root->orphan_lock);
2915 return;
2916 }
2917
2918 block_rsv = root->orphan_block_rsv;
2919 root->orphan_block_rsv = NULL;
2920 spin_unlock(&root->orphan_lock);
2921
Yan, Zhengd68fc572010-05-16 10:49:58 -04002922 if (root->orphan_item_inserted &&
2923 btrfs_root_refs(&root->root_item) > 0) {
2924 ret = btrfs_del_orphan_item(trans, root->fs_info->tree_root,
2925 root->root_key.objectid);
2926 BUG_ON(ret);
2927 root->orphan_item_inserted = 0;
2928 }
2929
Josef Bacik90290e12011-12-02 15:44:12 -05002930 if (block_rsv) {
2931 WARN_ON(block_rsv->size > 0);
2932 btrfs_free_block_rsv(root, block_rsv);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002933 }
2934}
2935
2936/*
Josef Bacik7b128762008-07-24 12:17:14 -04002937 * This creates an orphan entry for the given inode in case something goes
2938 * wrong in the middle of an unlink/truncate.
Yan, Zhengd68fc572010-05-16 10:49:58 -04002939 *
2940 * NOTE: caller of this function should reserve 5 units of metadata for
2941 * this function.
Josef Bacik7b128762008-07-24 12:17:14 -04002942 */
2943int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
2944{
2945 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002946 struct btrfs_block_rsv *block_rsv = NULL;
2947 int reserve = 0;
2948 int insert = 0;
2949 int ret;
Josef Bacik7b128762008-07-24 12:17:14 -04002950
Yan, Zhengd68fc572010-05-16 10:49:58 -04002951 if (!root->orphan_block_rsv) {
Miao Xie66d8f3d2012-09-06 04:02:28 -06002952 block_rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP);
Tsutomu Itohb5324022011-07-19 07:27:20 +00002953 if (!block_rsv)
2954 return -ENOMEM;
Josef Bacik7b128762008-07-24 12:17:14 -04002955 }
2956
Yan, Zhengd68fc572010-05-16 10:49:58 -04002957 spin_lock(&root->orphan_lock);
2958 if (!root->orphan_block_rsv) {
2959 root->orphan_block_rsv = block_rsv;
2960 } else if (block_rsv) {
2961 btrfs_free_block_rsv(root, block_rsv);
2962 block_rsv = NULL;
2963 }
Josef Bacik7b128762008-07-24 12:17:14 -04002964
Josef Bacik8a35d952012-05-23 14:26:42 -04002965 if (!test_and_set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2966 &BTRFS_I(inode)->runtime_flags)) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04002967#if 0
2968 /*
2969 * For proper ENOSPC handling, we should do orphan
2970 * cleanup when mounting. But this introduces backward
2971 * compatibility issue.
2972 */
2973 if (!xchg(&root->orphan_item_inserted, 1))
2974 insert = 2;
2975 else
2976 insert = 1;
2977#endif
2978 insert = 1;
Miao Xie321f0e72012-08-28 22:13:02 -06002979 atomic_inc(&root->orphan_inodes);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002980 }
Josef Bacik7b128762008-07-24 12:17:14 -04002981
Josef Bacik72ac3c02012-05-23 14:13:11 -04002982 if (!test_and_set_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
2983 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04002984 reserve = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002985 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002986
Yan, Zhengd68fc572010-05-16 10:49:58 -04002987 /* grab metadata reservation from transaction handle */
2988 if (reserve) {
2989 ret = btrfs_orphan_reserve_metadata(trans, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002990 BUG_ON(ret); /* -ENOSPC in reservation; Logic error? JDM */
Yan, Zhengd68fc572010-05-16 10:49:58 -04002991 }
2992
2993 /* insert an orphan item to track this unlinked/truncated file */
2994 if (insert >= 1) {
Li Zefan33345d012011-04-20 10:31:50 +08002995 ret = btrfs_insert_orphan_item(trans, root, btrfs_ino(inode));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002996 if (ret && ret != -EEXIST) {
Josef Bacik8a35d952012-05-23 14:26:42 -04002997 clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2998 &BTRFS_I(inode)->runtime_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002999 btrfs_abort_transaction(trans, root, ret);
3000 return ret;
3001 }
3002 ret = 0;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003003 }
3004
3005 /* insert an orphan item to track subvolume contains orphan files */
3006 if (insert >= 2) {
3007 ret = btrfs_insert_orphan_item(trans, root->fs_info->tree_root,
3008 root->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003009 if (ret && ret != -EEXIST) {
3010 btrfs_abort_transaction(trans, root, ret);
3011 return ret;
3012 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04003013 }
3014 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003015}
3016
3017/*
3018 * We have done the truncate/delete so we can go ahead and remove the orphan
3019 * item for this particular inode.
3020 */
3021int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode)
3022{
3023 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003024 int delete_item = 0;
3025 int release_rsv = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003026 int ret = 0;
3027
Yan, Zhengd68fc572010-05-16 10:49:58 -04003028 spin_lock(&root->orphan_lock);
Josef Bacik8a35d952012-05-23 14:26:42 -04003029 if (test_and_clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
3030 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04003031 delete_item = 1;
Josef Bacik7b128762008-07-24 12:17:14 -04003032
Josef Bacik72ac3c02012-05-23 14:13:11 -04003033 if (test_and_clear_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
3034 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04003035 release_rsv = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003036 spin_unlock(&root->orphan_lock);
3037
3038 if (trans && delete_item) {
Li Zefan33345d012011-04-20 10:31:50 +08003039 ret = btrfs_del_orphan_item(trans, root, btrfs_ino(inode));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003040 BUG_ON(ret); /* -ENOMEM or corruption (JDM: Recheck) */
Josef Bacik7b128762008-07-24 12:17:14 -04003041 }
3042
Josef Bacik8a35d952012-05-23 14:26:42 -04003043 if (release_rsv) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04003044 btrfs_orphan_release_metadata(inode);
Josef Bacik8a35d952012-05-23 14:26:42 -04003045 atomic_dec(&root->orphan_inodes);
3046 }
Josef Bacik7b128762008-07-24 12:17:14 -04003047
Yan, Zhengd68fc572010-05-16 10:49:58 -04003048 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003049}
3050
3051/*
3052 * this cleans up any orphans that may be left on the list from the last use
3053 * of this root.
3054 */
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003055int btrfs_orphan_cleanup(struct btrfs_root *root)
Josef Bacik7b128762008-07-24 12:17:14 -04003056{
3057 struct btrfs_path *path;
3058 struct extent_buffer *leaf;
Josef Bacik7b128762008-07-24 12:17:14 -04003059 struct btrfs_key key, found_key;
3060 struct btrfs_trans_handle *trans;
3061 struct inode *inode;
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003062 u64 last_objectid = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003063 int ret = 0, nr_unlink = 0, nr_truncate = 0;
3064
Yan, Zhengd68fc572010-05-16 10:49:58 -04003065 if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003066 return 0;
Yan, Zhengc71bf092009-11-12 09:34:40 +00003067
3068 path = btrfs_alloc_path();
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003069 if (!path) {
3070 ret = -ENOMEM;
3071 goto out;
3072 }
Josef Bacik7b128762008-07-24 12:17:14 -04003073 path->reada = -1;
3074
3075 key.objectid = BTRFS_ORPHAN_OBJECTID;
3076 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
3077 key.offset = (u64)-1;
3078
Josef Bacik7b128762008-07-24 12:17:14 -04003079 while (1) {
3080 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003081 if (ret < 0)
3082 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003083
3084 /*
3085 * if ret == 0 means we found what we were searching for, which
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003086 * is weird, but possible, so only screw with path if we didn't
Josef Bacik7b128762008-07-24 12:17:14 -04003087 * find the key and see if we have stuff that matches
3088 */
3089 if (ret > 0) {
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003090 ret = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04003091 if (path->slots[0] == 0)
3092 break;
3093 path->slots[0]--;
3094 }
3095
3096 /* pull out the item */
3097 leaf = path->nodes[0];
Josef Bacik7b128762008-07-24 12:17:14 -04003098 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3099
3100 /* make sure the item matches what we want */
3101 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
3102 break;
3103 if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY)
3104 break;
3105
3106 /* release the path since we're done with it */
David Sterbab3b4aa72011-04-21 01:20:15 +02003107 btrfs_release_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04003108
3109 /*
3110 * this is where we are basically btrfs_lookup, without the
3111 * crossing root thing. we store the inode number in the
3112 * offset of the orphan item.
3113 */
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003114
3115 if (found_key.offset == last_objectid) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003116 btrfs_err(root->fs_info,
3117 "Error removing orphan entry, stopping orphan cleanup");
Josef Bacik8f6d7f42011-09-26 15:55:20 -04003118 ret = -EINVAL;
3119 goto out;
3120 }
3121
3122 last_objectid = found_key.offset;
3123
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003124 found_key.objectid = found_key.offset;
3125 found_key.type = BTRFS_INODE_ITEM_KEY;
3126 found_key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +00003127 inode = btrfs_iget(root->fs_info->sb, &found_key, root, NULL);
Josef Bacika8c9e572011-09-21 16:55:59 -04003128 ret = PTR_RET(inode);
3129 if (ret && ret != -ESTALE)
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003130 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04003131
Arne Jansenf8e9e0b2011-12-14 20:12:02 -05003132 if (ret == -ESTALE && root == root->fs_info->tree_root) {
3133 struct btrfs_root *dead_root;
3134 struct btrfs_fs_info *fs_info = root->fs_info;
3135 int is_dead_root = 0;
3136
3137 /*
3138 * this is an orphan in the tree root. Currently these
3139 * could come from 2 sources:
3140 * a) a snapshot deletion in progress
3141 * b) a free space cache inode
3142 * We need to distinguish those two, as the snapshot
3143 * orphan must not get deleted.
3144 * find_dead_roots already ran before us, so if this
3145 * is a snapshot deletion, we should find the root
3146 * in the dead_roots list
3147 */
3148 spin_lock(&fs_info->trans_lock);
3149 list_for_each_entry(dead_root, &fs_info->dead_roots,
3150 root_list) {
3151 if (dead_root->root_key.objectid ==
3152 found_key.objectid) {
3153 is_dead_root = 1;
3154 break;
3155 }
3156 }
3157 spin_unlock(&fs_info->trans_lock);
3158 if (is_dead_root) {
3159 /* prevent this orphan from being found again */
3160 key.offset = found_key.objectid - 1;
3161 continue;
3162 }
3163 }
Josef Bacika8c9e572011-09-21 16:55:59 -04003164 /*
3165 * Inode is already gone but the orphan item is still there,
3166 * kill the orphan item.
3167 */
3168 if (ret == -ESTALE) {
3169 trans = btrfs_start_transaction(root, 1);
3170 if (IS_ERR(trans)) {
3171 ret = PTR_ERR(trans);
3172 goto out;
3173 }
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003174 btrfs_debug(root->fs_info, "auto deleting %Lu",
3175 found_key.objectid);
Josef Bacika8c9e572011-09-21 16:55:59 -04003176 ret = btrfs_del_orphan_item(trans, root,
3177 found_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003178 BUG_ON(ret); /* -ENOMEM or corruption (JDM: Recheck) */
Josef Bacika8c9e572011-09-21 16:55:59 -04003179 btrfs_end_transaction(trans, root);
3180 continue;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003181 }
Josef Bacik7b128762008-07-24 12:17:14 -04003182
Josef Bacik7b128762008-07-24 12:17:14 -04003183 /*
3184 * add this inode to the orphan list so btrfs_orphan_del does
3185 * the proper thing when we hit it
3186 */
Josef Bacik8a35d952012-05-23 14:26:42 -04003187 set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
3188 &BTRFS_I(inode)->runtime_flags);
Josef Bacik925396e2013-02-01 15:57:47 -05003189 atomic_inc(&root->orphan_inodes);
Josef Bacik7b128762008-07-24 12:17:14 -04003190
Josef Bacik7b128762008-07-24 12:17:14 -04003191 /* if we have links, this was a truncate, lets do that */
3192 if (inode->i_nlink) {
Josef Bacika41ad392011-01-31 15:30:16 -05003193 if (!S_ISREG(inode->i_mode)) {
3194 WARN_ON(1);
3195 iput(inode);
3196 continue;
3197 }
Josef Bacik7b128762008-07-24 12:17:14 -04003198 nr_truncate++;
Josef Bacikf3fe8202013-01-07 17:03:21 -05003199
3200 /* 1 for the orphan item deletion. */
3201 trans = btrfs_start_transaction(root, 1);
3202 if (IS_ERR(trans)) {
3203 ret = PTR_ERR(trans);
3204 goto out;
3205 }
3206 ret = btrfs_orphan_add(trans, inode);
3207 btrfs_end_transaction(trans, root);
3208 if (ret)
3209 goto out;
3210
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003211 ret = btrfs_truncate(inode);
Josef Bacik4a7d0f62013-02-07 16:27:28 -05003212 if (ret)
3213 btrfs_orphan_del(NULL, inode);
Josef Bacik7b128762008-07-24 12:17:14 -04003214 } else {
3215 nr_unlink++;
3216 }
3217
3218 /* this will do delete_inode and everything for us */
3219 iput(inode);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003220 if (ret)
3221 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003222 }
Miao Xie3254c872011-11-10 20:45:05 -05003223 /* release the path since we're done with it */
3224 btrfs_release_path(path);
3225
Yan, Zhengd68fc572010-05-16 10:49:58 -04003226 root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE;
3227
3228 if (root->orphan_block_rsv)
3229 btrfs_block_rsv_release(root, root->orphan_block_rsv,
3230 (u64)-1);
3231
3232 if (root->orphan_block_rsv || root->orphan_item_inserted) {
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003233 trans = btrfs_join_transaction(root);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003234 if (!IS_ERR(trans))
3235 btrfs_end_transaction(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003236 }
Josef Bacik7b128762008-07-24 12:17:14 -04003237
3238 if (nr_unlink)
David Sterba4884b472013-03-20 13:31:27 +00003239 btrfs_debug(root->fs_info, "unlinked %d orphans", nr_unlink);
Josef Bacik7b128762008-07-24 12:17:14 -04003240 if (nr_truncate)
David Sterba4884b472013-03-20 13:31:27 +00003241 btrfs_debug(root->fs_info, "truncated %d orphans", nr_truncate);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003242
3243out:
3244 if (ret)
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003245 btrfs_crit(root->fs_info,
3246 "could not do orphan cleanup %d", ret);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003247 btrfs_free_path(path);
3248 return ret;
Josef Bacik7b128762008-07-24 12:17:14 -04003249}
3250
Chris Masond352ac62008-09-29 15:18:18 -04003251/*
Chris Mason46a53cc2009-04-27 11:47:50 -04003252 * very simple check to peek ahead in the leaf looking for xattrs. If we
3253 * don't find any xattrs, we know there can't be any acls.
3254 *
3255 * slot is the slot the inode is in, objectid is the objectid of the inode
3256 */
3257static noinline int acls_after_inode_item(struct extent_buffer *leaf,
3258 int slot, u64 objectid)
3259{
3260 u32 nritems = btrfs_header_nritems(leaf);
3261 struct btrfs_key found_key;
3262 int scanned = 0;
3263
3264 slot++;
3265 while (slot < nritems) {
3266 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3267
3268 /* we found a different objectid, there must not be acls */
3269 if (found_key.objectid != objectid)
3270 return 0;
3271
3272 /* we found an xattr, assume we've got an acl */
3273 if (found_key.type == BTRFS_XATTR_ITEM_KEY)
3274 return 1;
3275
3276 /*
3277 * we found a key greater than an xattr key, there can't
3278 * be any acls later on
3279 */
3280 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
3281 return 0;
3282
3283 slot++;
3284 scanned++;
3285
3286 /*
3287 * it goes inode, inode backrefs, xattrs, extents,
3288 * so if there are a ton of hard links to an inode there can
3289 * be a lot of backrefs. Don't waste time searching too hard,
3290 * this is just an optimization
3291 */
3292 if (scanned >= 8)
3293 break;
3294 }
3295 /* we hit the end of the leaf before we found an xattr or
3296 * something larger than an xattr. We have to assume the inode
3297 * has acls
3298 */
3299 return 1;
3300}
3301
3302/*
Chris Masond352ac62008-09-29 15:18:18 -04003303 * read an inode from the btree into the in-memory inode
3304 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003305static void btrfs_read_locked_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003306{
3307 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003308 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003309 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -04003310 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -04003311 struct btrfs_root *root = BTRFS_I(inode)->root;
3312 struct btrfs_key location;
Chris Mason46a53cc2009-04-27 11:47:50 -04003313 int maybe_acls;
Josef Bacik618e21d2007-07-11 10:18:17 -04003314 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04003315 int ret;
Miao Xie2f7e33d2011-06-23 07:27:13 +00003316 bool filled = false;
3317
3318 ret = btrfs_fill_inode(inode, &rdev);
3319 if (!ret)
3320 filled = true;
Chris Mason39279cc2007-06-12 06:35:45 -04003321
3322 path = btrfs_alloc_path();
Mark Fasheh1748f842011-07-12 11:25:31 -07003323 if (!path)
3324 goto make_bad;
3325
Josef Bacikd90c7322011-05-17 09:50:54 -04003326 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04003327 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05003328
Chris Mason39279cc2007-06-12 06:35:45 -04003329 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003330 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04003331 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -04003332
Chris Mason5f39d392007-10-15 16:14:19 -04003333 leaf = path->nodes[0];
Miao Xie2f7e33d2011-06-23 07:27:13 +00003334
3335 if (filled)
3336 goto cache_acl;
3337
Chris Mason5f39d392007-10-15 16:14:19 -04003338 inode_item = btrfs_item_ptr(leaf, path->slots[0],
3339 struct btrfs_inode_item);
Chris Mason5f39d392007-10-15 16:14:19 -04003340 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
Miklos Szeredibfe86842011-10-28 14:13:29 +02003341 set_nlink(inode, btrfs_inode_nlink(leaf, inode_item));
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -08003342 i_uid_write(inode, btrfs_inode_uid(leaf, inode_item));
3343 i_gid_write(inode, btrfs_inode_gid(leaf, inode_item));
Chris Masondbe674a2008-07-17 12:54:05 -04003344 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04003345
3346 tspec = btrfs_inode_atime(inode_item);
3347 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
3348 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
3349
3350 tspec = btrfs_inode_mtime(inode_item);
3351 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
3352 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
3353
3354 tspec = btrfs_inode_ctime(inode_item);
3355 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
3356 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
3357
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003358 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04003359 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003360 BTRFS_I(inode)->last_trans = btrfs_inode_transid(leaf, inode_item);
3361
3362 /*
3363 * If we were modified in the current generation and evicted from memory
3364 * and then re-read we need to do a full sync since we don't have any
3365 * idea about which extents were modified before we were evicted from
3366 * cache.
3367 */
3368 if (BTRFS_I(inode)->last_trans == root->fs_info->generation)
3369 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3370 &BTRFS_I(inode)->runtime_flags);
3371
Josef Bacik0c4d2d92012-04-05 15:03:02 -04003372 inode->i_version = btrfs_inode_sequence(leaf, inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04003373 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04003374 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003375 rdev = btrfs_inode_rdev(leaf, inode_item);
3376
Josef Bacikaec74772008-07-24 12:12:38 -04003377 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05003378 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Miao Xie2f7e33d2011-06-23 07:27:13 +00003379cache_acl:
Chris Mason46a53cc2009-04-27 11:47:50 -04003380 /*
3381 * try to precache a NULL acl entry for files that don't have
3382 * any xattrs or acls
3383 */
Li Zefan33345d012011-04-20 10:31:50 +08003384 maybe_acls = acls_after_inode_item(leaf, path->slots[0],
3385 btrfs_ino(inode));
Al Viro72c04902009-06-24 16:58:48 -04003386 if (!maybe_acls)
3387 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04003388
Chris Mason39279cc2007-06-12 06:35:45 -04003389 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003390
Chris Mason39279cc2007-06-12 06:35:45 -04003391 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04003392 case S_IFREG:
3393 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04003394 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05003395 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04003396 inode->i_fop = &btrfs_file_operations;
3397 inode->i_op = &btrfs_file_inode_operations;
3398 break;
3399 case S_IFDIR:
3400 inode->i_fop = &btrfs_dir_file_operations;
3401 if (root == root->fs_info->tree_root)
3402 inode->i_op = &btrfs_dir_ro_inode_operations;
3403 else
3404 inode->i_op = &btrfs_dir_inode_operations;
3405 break;
3406 case S_IFLNK:
3407 inode->i_op = &btrfs_symlink_inode_operations;
3408 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04003409 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04003410 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04003411 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05003412 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04003413 init_special_inode(inode, inode->i_mode, rdev);
3414 break;
Chris Mason39279cc2007-06-12 06:35:45 -04003415 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02003416
3417 btrfs_update_iflags(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003418 return;
3419
3420make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04003421 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003422 make_bad_inode(inode);
3423}
3424
Chris Masond352ac62008-09-29 15:18:18 -04003425/*
3426 * given a leaf and an inode, copy the inode fields into the leaf
3427 */
Chris Masone02119d2008-09-05 16:13:11 -04003428static void fill_inode_item(struct btrfs_trans_handle *trans,
3429 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04003430 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04003431 struct inode *inode)
3432{
Liu Bo51fab692012-12-27 09:01:21 +00003433 struct btrfs_map_token token;
Chris Mason5f39d392007-10-15 16:14:19 -04003434
Liu Bo51fab692012-12-27 09:01:21 +00003435 btrfs_init_map_token(&token);
Chris Mason5f39d392007-10-15 16:14:19 -04003436
Liu Bo51fab692012-12-27 09:01:21 +00003437 btrfs_set_token_inode_uid(leaf, item, i_uid_read(inode), &token);
3438 btrfs_set_token_inode_gid(leaf, item, i_gid_read(inode), &token);
3439 btrfs_set_token_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size,
3440 &token);
3441 btrfs_set_token_inode_mode(leaf, item, inode->i_mode, &token);
3442 btrfs_set_token_inode_nlink(leaf, item, inode->i_nlink, &token);
Chris Mason5f39d392007-10-15 16:14:19 -04003443
Liu Bo51fab692012-12-27 09:01:21 +00003444 btrfs_set_token_timespec_sec(leaf, btrfs_inode_atime(item),
3445 inode->i_atime.tv_sec, &token);
3446 btrfs_set_token_timespec_nsec(leaf, btrfs_inode_atime(item),
3447 inode->i_atime.tv_nsec, &token);
Chris Mason5f39d392007-10-15 16:14:19 -04003448
Liu Bo51fab692012-12-27 09:01:21 +00003449 btrfs_set_token_timespec_sec(leaf, btrfs_inode_mtime(item),
3450 inode->i_mtime.tv_sec, &token);
3451 btrfs_set_token_timespec_nsec(leaf, btrfs_inode_mtime(item),
3452 inode->i_mtime.tv_nsec, &token);
3453
3454 btrfs_set_token_timespec_sec(leaf, btrfs_inode_ctime(item),
3455 inode->i_ctime.tv_sec, &token);
3456 btrfs_set_token_timespec_nsec(leaf, btrfs_inode_ctime(item),
3457 inode->i_ctime.tv_nsec, &token);
3458
3459 btrfs_set_token_inode_nbytes(leaf, item, inode_get_bytes(inode),
3460 &token);
3461 btrfs_set_token_inode_generation(leaf, item, BTRFS_I(inode)->generation,
3462 &token);
3463 btrfs_set_token_inode_sequence(leaf, item, inode->i_version, &token);
3464 btrfs_set_token_inode_transid(leaf, item, trans->transid, &token);
3465 btrfs_set_token_inode_rdev(leaf, item, inode->i_rdev, &token);
3466 btrfs_set_token_inode_flags(leaf, item, BTRFS_I(inode)->flags, &token);
3467 btrfs_set_token_inode_block_group(leaf, item, 0, &token);
Chris Mason39279cc2007-06-12 06:35:45 -04003468}
3469
Chris Masond352ac62008-09-29 15:18:18 -04003470/*
3471 * copy everything in the in-memory inode into the btree.
3472 */
Chris Mason21151332011-11-10 20:39:08 -05003473static noinline int btrfs_update_inode_item(struct btrfs_trans_handle *trans,
Chris Masond3977122009-01-05 21:25:51 -05003474 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003475{
3476 struct btrfs_inode_item *inode_item;
3477 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003478 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003479 int ret;
3480
3481 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08003482 if (!path)
3483 return -ENOMEM;
3484
Chris Masonb9473432009-03-13 11:00:37 -04003485 path->leave_spinning = 1;
Miao Xie16cdcec2011-04-22 18:12:22 +08003486 ret = btrfs_lookup_inode(trans, root, path, &BTRFS_I(inode)->location,
3487 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003488 if (ret) {
3489 if (ret > 0)
3490 ret = -ENOENT;
3491 goto failed;
3492 }
3493
Chris Masonb4ce94d2009-02-04 09:25:08 -05003494 btrfs_unlock_up_safe(path, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04003495 leaf = path->nodes[0];
3496 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Miao Xie16cdcec2011-04-22 18:12:22 +08003497 struct btrfs_inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -04003498
Chris Masone02119d2008-09-05 16:13:11 -04003499 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04003500 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04003501 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003502 ret = 0;
3503failed:
Chris Mason39279cc2007-06-12 06:35:45 -04003504 btrfs_free_path(path);
3505 return ret;
3506}
3507
Chris Masond352ac62008-09-29 15:18:18 -04003508/*
Chris Mason21151332011-11-10 20:39:08 -05003509 * copy everything in the in-memory inode into the btree.
3510 */
3511noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
3512 struct btrfs_root *root, struct inode *inode)
3513{
3514 int ret;
3515
3516 /*
3517 * If the inode is a free space inode, we can deadlock during commit
3518 * if we put it into the delayed code.
3519 *
3520 * The data relocation inode should also be directly updated
3521 * without delay
3522 */
Liu Bo83eea1f2012-07-10 05:28:39 -06003523 if (!btrfs_is_free_space_inode(inode)
Chris Mason21151332011-11-10 20:39:08 -05003524 && root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID) {
Alexander Block8ea05e32012-07-25 17:35:53 +02003525 btrfs_update_root_times(trans, root);
3526
Chris Mason21151332011-11-10 20:39:08 -05003527 ret = btrfs_delayed_update_inode(trans, root, inode);
3528 if (!ret)
3529 btrfs_set_inode_last_trans(trans, inode);
3530 return ret;
3531 }
3532
3533 return btrfs_update_inode_item(trans, root, inode);
3534}
3535
Josef Bacikbe6aef62012-10-22 15:43:12 -04003536noinline int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans,
3537 struct btrfs_root *root,
3538 struct inode *inode)
Chris Mason21151332011-11-10 20:39:08 -05003539{
3540 int ret;
3541
3542 ret = btrfs_update_inode(trans, root, inode);
3543 if (ret == -ENOSPC)
3544 return btrfs_update_inode_item(trans, root, inode);
3545 return ret;
3546}
3547
3548/*
Chris Masond352ac62008-09-29 15:18:18 -04003549 * unlink helper that gets used here in inode.c and in the tree logging
3550 * recovery code. It remove a link in a directory with a given name, and
3551 * also drops the back refs in the inode to the directory
3552 */
Al Viro92986792011-03-04 17:14:37 +00003553static int __btrfs_unlink_inode(struct btrfs_trans_handle *trans,
3554 struct btrfs_root *root,
3555 struct inode *dir, struct inode *inode,
3556 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04003557{
3558 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04003559 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04003560 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003561 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04003562 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04003563 u64 index;
Li Zefan33345d012011-04-20 10:31:50 +08003564 u64 ino = btrfs_ino(inode);
3565 u64 dir_ino = btrfs_ino(dir);
Chris Mason39279cc2007-06-12 06:35:45 -04003566
3567 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04003568 if (!path) {
3569 ret = -ENOMEM;
Tsutomu Itoh554233a2011-02-03 03:16:25 +00003570 goto out;
Chris Mason54aa1f42007-06-22 14:16:25 -04003571 }
3572
Chris Masonb9473432009-03-13 11:00:37 -04003573 path->leave_spinning = 1;
Li Zefan33345d012011-04-20 10:31:50 +08003574 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Chris Mason39279cc2007-06-12 06:35:45 -04003575 name, name_len, -1);
3576 if (IS_ERR(di)) {
3577 ret = PTR_ERR(di);
3578 goto err;
3579 }
3580 if (!di) {
3581 ret = -ENOENT;
3582 goto err;
3583 }
Chris Mason5f39d392007-10-15 16:14:19 -04003584 leaf = path->nodes[0];
3585 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04003586 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04003587 if (ret)
3588 goto err;
David Sterbab3b4aa72011-04-21 01:20:15 +02003589 btrfs_release_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003590
Li Zefan33345d012011-04-20 10:31:50 +08003591 ret = btrfs_del_inode_ref(trans, root, name, name_len, ino,
3592 dir_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04003593 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003594 btrfs_info(root->fs_info,
3595 "failed to delete reference to %.*s, inode %llu parent %llu",
3596 name_len, name,
3597 (unsigned long long)ino, (unsigned long long)dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003598 btrfs_abort_transaction(trans, root, ret);
Josef Bacikaec74772008-07-24 12:12:38 -04003599 goto err;
3600 }
3601
Miao Xie16cdcec2011-04-22 18:12:22 +08003602 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003603 if (ret) {
3604 btrfs_abort_transaction(trans, root, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04003605 goto err;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003606 }
Chris Mason39279cc2007-06-12 06:35:45 -04003607
Chris Masone02119d2008-09-05 16:13:11 -04003608 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
Li Zefan33345d012011-04-20 10:31:50 +08003609 inode, dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003610 if (ret != 0 && ret != -ENOENT) {
3611 btrfs_abort_transaction(trans, root, ret);
3612 goto err;
3613 }
Chris Masone02119d2008-09-05 16:13:11 -04003614
3615 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
3616 dir, index);
Chris Mason6418c962010-10-30 07:34:24 -04003617 if (ret == -ENOENT)
3618 ret = 0;
Zach Brownd4e39912013-04-02 21:02:16 +00003619 else if (ret)
3620 btrfs_abort_transaction(trans, root, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04003621err:
3622 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003623 if (ret)
3624 goto out;
3625
3626 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04003627 inode_inc_iversion(inode);
3628 inode_inc_iversion(dir);
Chris Masone02119d2008-09-05 16:13:11 -04003629 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
Tsutomu Itohb9959292012-06-25 21:25:22 -06003630 ret = btrfs_update_inode(trans, root, dir);
Chris Masone02119d2008-09-05 16:13:11 -04003631out:
Chris Mason39279cc2007-06-12 06:35:45 -04003632 return ret;
3633}
3634
Al Viro92986792011-03-04 17:14:37 +00003635int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
3636 struct btrfs_root *root,
3637 struct inode *dir, struct inode *inode,
3638 const char *name, int name_len)
3639{
3640 int ret;
3641 ret = __btrfs_unlink_inode(trans, root, dir, inode, name, name_len);
3642 if (!ret) {
3643 btrfs_drop_nlink(inode);
3644 ret = btrfs_update_inode(trans, root, inode);
3645 }
3646 return ret;
3647}
3648
3649
Yan, Zhenga22285a2010-05-16 10:48:46 -04003650/* helper to check if there is any shared block in the path */
3651static int check_path_shared(struct btrfs_root *root,
3652 struct btrfs_path *path)
3653{
3654 struct extent_buffer *eb;
3655 int level;
Dan Carpenter0e4dcbef2010-06-01 08:23:11 +00003656 u64 refs = 1;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003657
3658 for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
Josef Bacikdedefd72011-01-24 21:43:18 +00003659 int ret;
3660
Yan, Zhenga22285a2010-05-16 10:48:46 -04003661 if (!path->nodes[level])
3662 break;
3663 eb = path->nodes[level];
3664 if (!btrfs_block_can_be_shared(root, eb))
3665 continue;
Josef Bacik3173a182013-03-07 14:22:04 -05003666 ret = btrfs_lookup_extent_info(NULL, root, eb->start, level, 1,
Yan, Zhenga22285a2010-05-16 10:48:46 -04003667 &refs, NULL);
3668 if (refs > 1)
3669 return 1;
3670 }
Josef Bacikdedefd72011-01-24 21:43:18 +00003671 return 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003672}
3673
3674/*
3675 * helper to start transaction for unlink and rmdir.
3676 *
3677 * unlink and rmdir are special in btrfs, they do not always free space.
3678 * so in enospc case, we should make sure they will free space before
3679 * allowing them to use the global metadata reservation.
3680 */
3681static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir,
3682 struct dentry *dentry)
3683{
3684 struct btrfs_trans_handle *trans;
3685 struct btrfs_root *root = BTRFS_I(dir)->root;
3686 struct btrfs_path *path;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003687 struct btrfs_dir_item *di;
3688 struct inode *inode = dentry->d_inode;
3689 u64 index;
3690 int check_link = 1;
3691 int err = -ENOSPC;
3692 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08003693 u64 ino = btrfs_ino(inode);
3694 u64 dir_ino = btrfs_ino(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003695
Josef Bacike70bea52011-10-11 14:18:24 -04003696 /*
3697 * 1 for the possible orphan item
3698 * 1 for the dir item
3699 * 1 for the dir index
3700 * 1 for the inode ref
Josef Bacike70bea52011-10-11 14:18:24 -04003701 * 1 for the inode
3702 */
Josef Bacik6e137ed2013-03-26 15:26:55 -04003703 trans = btrfs_start_transaction(root, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003704 if (!IS_ERR(trans) || PTR_ERR(trans) != -ENOSPC)
3705 return trans;
3706
Li Zefan33345d012011-04-20 10:31:50 +08003707 if (ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhenga22285a2010-05-16 10:48:46 -04003708 return ERR_PTR(-ENOSPC);
3709
3710 /* check if there is someone else holds reference */
3711 if (S_ISDIR(inode->i_mode) && atomic_read(&inode->i_count) > 1)
3712 return ERR_PTR(-ENOSPC);
3713
3714 if (atomic_read(&inode->i_count) > 2)
3715 return ERR_PTR(-ENOSPC);
3716
3717 if (xchg(&root->fs_info->enospc_unlink, 1))
3718 return ERR_PTR(-ENOSPC);
3719
3720 path = btrfs_alloc_path();
3721 if (!path) {
3722 root->fs_info->enospc_unlink = 0;
3723 return ERR_PTR(-ENOMEM);
3724 }
3725
Josef Bacik3880a1b2011-10-14 14:46:51 -04003726 /* 1 for the orphan item */
3727 trans = btrfs_start_transaction(root, 1);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003728 if (IS_ERR(trans)) {
3729 btrfs_free_path(path);
3730 root->fs_info->enospc_unlink = 0;
3731 return trans;
3732 }
3733
3734 path->skip_locking = 1;
3735 path->search_commit_root = 1;
3736
3737 ret = btrfs_lookup_inode(trans, root, path,
3738 &BTRFS_I(dir)->location, 0);
3739 if (ret < 0) {
3740 err = ret;
3741 goto out;
3742 }
3743 if (ret == 0) {
3744 if (check_path_shared(root, path))
3745 goto out;
3746 } else {
3747 check_link = 0;
3748 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003749 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003750
3751 ret = btrfs_lookup_inode(trans, root, path,
3752 &BTRFS_I(inode)->location, 0);
3753 if (ret < 0) {
3754 err = ret;
3755 goto out;
3756 }
3757 if (ret == 0) {
3758 if (check_path_shared(root, path))
3759 goto out;
3760 } else {
3761 check_link = 0;
3762 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003763 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003764
3765 if (ret == 0 && S_ISREG(inode->i_mode)) {
3766 ret = btrfs_lookup_file_extent(trans, root, path,
Li Zefan33345d012011-04-20 10:31:50 +08003767 ino, (u64)-1, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003768 if (ret < 0) {
3769 err = ret;
3770 goto out;
3771 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003772 BUG_ON(ret == 0); /* Corruption */
Yan, Zhenga22285a2010-05-16 10:48:46 -04003773 if (check_path_shared(root, path))
3774 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +02003775 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003776 }
3777
3778 if (!check_link) {
3779 err = 0;
3780 goto out;
3781 }
3782
Li Zefan33345d012011-04-20 10:31:50 +08003783 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zhenga22285a2010-05-16 10:48:46 -04003784 dentry->d_name.name, dentry->d_name.len, 0);
3785 if (IS_ERR(di)) {
3786 err = PTR_ERR(di);
3787 goto out;
3788 }
3789 if (di) {
3790 if (check_path_shared(root, path))
3791 goto out;
3792 } else {
3793 err = 0;
3794 goto out;
3795 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003796 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003797
Mark Fashehf1863732012-08-08 11:32:27 -07003798 ret = btrfs_get_inode_ref_index(trans, root, path, dentry->d_name.name,
3799 dentry->d_name.len, ino, dir_ino, 0,
3800 &index);
3801 if (ret) {
3802 err = ret;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003803 goto out;
3804 }
Mark Fashehf1863732012-08-08 11:32:27 -07003805
Yan, Zhenga22285a2010-05-16 10:48:46 -04003806 if (check_path_shared(root, path))
3807 goto out;
Mark Fashehf1863732012-08-08 11:32:27 -07003808
David Sterbab3b4aa72011-04-21 01:20:15 +02003809 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003810
Miao Xie16cdcec2011-04-22 18:12:22 +08003811 /*
3812 * This is a commit root search, if we can lookup inode item and other
3813 * relative items in the commit root, it means the transaction of
3814 * dir/file creation has been committed, and the dir index item that we
3815 * delay to insert has also been inserted into the commit root. So
3816 * we needn't worry about the delayed insertion of the dir index item
3817 * here.
3818 */
Li Zefan33345d012011-04-20 10:31:50 +08003819 di = btrfs_lookup_dir_index_item(trans, root, path, dir_ino, index,
Yan, Zhenga22285a2010-05-16 10:48:46 -04003820 dentry->d_name.name, dentry->d_name.len, 0);
3821 if (IS_ERR(di)) {
3822 err = PTR_ERR(di);
3823 goto out;
3824 }
3825 BUG_ON(ret == -ENOENT);
3826 if (check_path_shared(root, path))
3827 goto out;
3828
3829 err = 0;
3830out:
3831 btrfs_free_path(path);
Josef Bacik3880a1b2011-10-14 14:46:51 -04003832 /* Migrate the orphan reservation over */
3833 if (!err)
3834 err = btrfs_block_rsv_migrate(trans->block_rsv,
3835 &root->fs_info->global_block_rsv,
Josef Bacik5a77d762011-11-01 14:32:23 -04003836 trans->bytes_reserved);
Josef Bacik3880a1b2011-10-14 14:46:51 -04003837
Yan, Zhenga22285a2010-05-16 10:48:46 -04003838 if (err) {
3839 btrfs_end_transaction(trans, root);
3840 root->fs_info->enospc_unlink = 0;
3841 return ERR_PTR(err);
3842 }
3843
3844 trans->block_rsv = &root->fs_info->global_block_rsv;
3845 return trans;
3846}
3847
3848static void __unlink_end_trans(struct btrfs_trans_handle *trans,
3849 struct btrfs_root *root)
3850{
Miao Xie66d8f3d2012-09-06 04:02:28 -06003851 if (trans->block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL) {
Josef Bacik5a77d762011-11-01 14:32:23 -04003852 btrfs_block_rsv_release(root, trans->block_rsv,
3853 trans->bytes_reserved);
3854 trans->block_rsv = &root->fs_info->trans_block_rsv;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003855 BUG_ON(!root->fs_info->enospc_unlink);
3856 root->fs_info->enospc_unlink = 0;
3857 }
Josef Bacik7ad85bb2012-01-12 19:10:12 -05003858 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003859}
3860
Chris Mason39279cc2007-06-12 06:35:45 -04003861static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
3862{
Yan, Zhenga22285a2010-05-16 10:48:46 -04003863 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003864 struct btrfs_trans_handle *trans;
Josef Bacik7b128762008-07-24 12:17:14 -04003865 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04003866 int ret;
3867
Yan, Zhenga22285a2010-05-16 10:48:46 -04003868 trans = __unlink_start_trans(dir, dentry);
3869 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003870 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04003871
Chris Mason12fcfd22009-03-24 10:24:20 -04003872 btrfs_record_unlink_dir(trans, dir, dentry->d_inode, 0);
3873
Chris Masone02119d2008-09-05 16:13:11 -04003874 ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
3875 dentry->d_name.name, dentry->d_name.len);
Tsutomu Itohb5324022011-07-19 07:27:20 +00003876 if (ret)
3877 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003878
Yan, Zhenga22285a2010-05-16 10:48:46 -04003879 if (inode->i_nlink == 0) {
Josef Bacik7b128762008-07-24 12:17:14 -04003880 ret = btrfs_orphan_add(trans, inode);
Tsutomu Itohb5324022011-07-19 07:27:20 +00003881 if (ret)
3882 goto out;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003883 }
Josef Bacik7b128762008-07-24 12:17:14 -04003884
Tsutomu Itohb5324022011-07-19 07:27:20 +00003885out:
Yan, Zhenga22285a2010-05-16 10:48:46 -04003886 __unlink_end_trans(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00003887 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04003888 return ret;
3889}
3890
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003891int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
3892 struct btrfs_root *root,
3893 struct inode *dir, u64 objectid,
3894 const char *name, int name_len)
3895{
3896 struct btrfs_path *path;
3897 struct extent_buffer *leaf;
3898 struct btrfs_dir_item *di;
3899 struct btrfs_key key;
3900 u64 index;
3901 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08003902 u64 dir_ino = btrfs_ino(dir);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003903
3904 path = btrfs_alloc_path();
3905 if (!path)
3906 return -ENOMEM;
3907
Li Zefan33345d012011-04-20 10:31:50 +08003908 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003909 name, name_len, -1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003910 if (IS_ERR_OR_NULL(di)) {
3911 if (!di)
3912 ret = -ENOENT;
3913 else
3914 ret = PTR_ERR(di);
3915 goto out;
3916 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003917
3918 leaf = path->nodes[0];
3919 btrfs_dir_item_key_to_cpu(leaf, di, &key);
3920 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
3921 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003922 if (ret) {
3923 btrfs_abort_transaction(trans, root, ret);
3924 goto out;
3925 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003926 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003927
3928 ret = btrfs_del_root_ref(trans, root->fs_info->tree_root,
3929 objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08003930 dir_ino, &index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003931 if (ret < 0) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003932 if (ret != -ENOENT) {
3933 btrfs_abort_transaction(trans, root, ret);
3934 goto out;
3935 }
Li Zefan33345d012011-04-20 10:31:50 +08003936 di = btrfs_search_dir_index_item(root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003937 name, name_len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003938 if (IS_ERR_OR_NULL(di)) {
3939 if (!di)
3940 ret = -ENOENT;
3941 else
3942 ret = PTR_ERR(di);
3943 btrfs_abort_transaction(trans, root, ret);
3944 goto out;
3945 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003946
3947 leaf = path->nodes[0];
3948 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02003949 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003950 index = key.offset;
3951 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003952 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003953
Miao Xie16cdcec2011-04-22 18:12:22 +08003954 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003955 if (ret) {
3956 btrfs_abort_transaction(trans, root, ret);
3957 goto out;
3958 }
Miao Xie16cdcec2011-04-22 18:12:22 +08003959
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003960 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04003961 inode_inc_iversion(dir);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003962 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
Josef Bacik5a24e842012-08-08 10:12:59 -06003963 ret = btrfs_update_inode_fallback(trans, root, dir);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003964 if (ret)
3965 btrfs_abort_transaction(trans, root, ret);
3966out:
Josef Bacik71d7aed2011-06-14 14:24:32 -04003967 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003968 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003969}
3970
Chris Mason39279cc2007-06-12 06:35:45 -04003971static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
3972{
3973 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05003974 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003975 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003976 struct btrfs_trans_handle *trans;
Chris Mason39279cc2007-06-12 06:35:45 -04003977
David Sterbab3ae2442012-09-13 16:04:34 -06003978 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Yan134d4512007-10-25 15:49:25 -04003979 return -ENOTEMPTY;
David Sterbab3ae2442012-09-13 16:04:34 -06003980 if (btrfs_ino(inode) == BTRFS_FIRST_FREE_OBJECTID)
3981 return -EPERM;
Yan134d4512007-10-25 15:49:25 -04003982
Yan, Zhenga22285a2010-05-16 10:48:46 -04003983 trans = __unlink_start_trans(dir, dentry);
3984 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003985 return PTR_ERR(trans);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003986
Li Zefan33345d012011-04-20 10:31:50 +08003987 if (unlikely(btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003988 err = btrfs_unlink_subvol(trans, root, dir,
3989 BTRFS_I(inode)->location.objectid,
3990 dentry->d_name.name,
3991 dentry->d_name.len);
3992 goto out;
3993 }
3994
Josef Bacik7b128762008-07-24 12:17:14 -04003995 err = btrfs_orphan_add(trans, inode);
3996 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003997 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003998
Chris Mason39279cc2007-06-12 06:35:45 -04003999 /* now the directory is empty */
Chris Masone02119d2008-09-05 16:13:11 -04004000 err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
4001 dentry->d_name.name, dentry->d_name.len);
Chris Masond3977122009-01-05 21:25:51 -05004002 if (!err)
Chris Masondbe674a2008-07-17 12:54:05 -04004003 btrfs_i_size_write(inode, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004004out:
Yan, Zhenga22285a2010-05-16 10:48:46 -04004005 __unlink_end_trans(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00004006 btrfs_btree_balance_dirty(root);
Chris Mason39544012007-12-12 14:38:19 -05004007
Chris Mason39279cc2007-06-12 06:35:45 -04004008 return err;
4009}
4010
Chris Mason323ac952008-10-01 19:05:46 -04004011/*
Chris Mason39279cc2007-06-12 06:35:45 -04004012 * this can truncate away extent items, csum items and directory items.
4013 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04004014 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04004015 *
4016 * csum items that cross the new i_size are truncated to the new size
4017 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04004018 *
4019 * min_type is the minimum key type to truncate down to. If set to 0, this
4020 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04004021 */
Yan, Zheng80825102009-11-12 09:35:36 +00004022int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
4023 struct btrfs_root *root,
4024 struct inode *inode,
4025 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004026{
Chris Mason39279cc2007-06-12 06:35:45 -04004027 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04004028 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04004029 struct btrfs_file_extent_item *fi;
Yan, Zheng80825102009-11-12 09:35:36 +00004030 struct btrfs_key key;
4031 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04004032 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04004033 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004034 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004035 u64 item_end = 0;
Yan, Zheng80825102009-11-12 09:35:36 +00004036 u32 found_type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -04004037 int found_extent;
4038 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05004039 int pending_del_nr = 0;
4040 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04004041 int extent_type = -1;
Yan, Zheng80825102009-11-12 09:35:36 +00004042 int ret;
4043 int err = 0;
Li Zefan33345d012011-04-20 10:31:50 +08004044 u64 ino = btrfs_ino(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00004045
4046 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04004047
Mark Fasheh0eb0e192011-07-12 16:44:10 -07004048 path = btrfs_alloc_path();
4049 if (!path)
4050 return -ENOMEM;
4051 path->reada = -1;
4052
Josef Bacik5dc562c2012-08-17 13:14:17 -04004053 /*
4054 * We want to drop from the next block forward in case this new size is
4055 * not block aligned since we will be keeping the last block of the
4056 * extent just the way it is.
4057 */
Josef Bacik0af3d002010-06-21 14:48:16 -04004058 if (root->ref_cows || root == root->fs_info->tree_root)
Qu Wenruofda28322013-02-26 08:10:22 +00004059 btrfs_drop_extent_cache(inode, ALIGN(new_size,
4060 root->sectorsize), (u64)-1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00004061
Miao Xie16cdcec2011-04-22 18:12:22 +08004062 /*
4063 * This function is also used to drop the items in the log tree before
4064 * we relog the inode, so if root != BTRFS_I(inode)->root, it means
4065 * it is used to drop the loged items. So we shouldn't kill the delayed
4066 * items.
4067 */
4068 if (min_type == 0 && root == BTRFS_I(inode)->root)
4069 btrfs_kill_delayed_inode_items(inode);
4070
Li Zefan33345d012011-04-20 10:31:50 +08004071 key.objectid = ino;
Chris Mason39279cc2007-06-12 06:35:45 -04004072 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04004073 key.type = (u8)-1;
4074
Chris Mason85e21ba2008-01-29 15:11:36 -05004075search_again:
Chris Masonb9473432009-03-13 11:00:37 -04004076 path->leave_spinning = 1;
Chris Mason85e21ba2008-01-29 15:11:36 -05004077 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Yan, Zheng80825102009-11-12 09:35:36 +00004078 if (ret < 0) {
4079 err = ret;
4080 goto out;
4081 }
Chris Masond3977122009-01-05 21:25:51 -05004082
Chris Mason85e21ba2008-01-29 15:11:36 -05004083 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04004084 /* there are no items in the tree for us to truncate, we're
4085 * done
4086 */
Yan, Zheng80825102009-11-12 09:35:36 +00004087 if (path->slots[0] == 0)
4088 goto out;
Chris Mason85e21ba2008-01-29 15:11:36 -05004089 path->slots[0]--;
4090 }
4091
Chris Masond3977122009-01-05 21:25:51 -05004092 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04004093 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04004094 leaf = path->nodes[0];
4095 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4096 found_type = btrfs_key_type(&found_key);
Chris Mason39279cc2007-06-12 06:35:45 -04004097
Li Zefan33345d012011-04-20 10:31:50 +08004098 if (found_key.objectid != ino)
Chris Mason39279cc2007-06-12 06:35:45 -04004099 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004100
Chris Mason85e21ba2008-01-29 15:11:36 -05004101 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004102 break;
4103
Chris Mason5f39d392007-10-15 16:14:19 -04004104 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04004105 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04004106 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04004107 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04004108 extent_type = btrfs_file_extent_type(leaf, fi);
4109 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04004110 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04004111 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04004112 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04004113 item_end += btrfs_file_extent_inline_len(leaf,
Chris Masonc8b97812008-10-29 14:49:59 -04004114 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04004115 }
Yan008630c2007-11-07 13:31:09 -05004116 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04004117 }
Yan, Zheng80825102009-11-12 09:35:36 +00004118 if (found_type > min_type) {
Chris Mason39279cc2007-06-12 06:35:45 -04004119 del_item = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00004120 } else {
4121 if (item_end < new_size)
4122 break;
4123 if (found_key.offset >= new_size)
4124 del_item = 1;
4125 else
4126 del_item = 0;
4127 }
Chris Mason39279cc2007-06-12 06:35:45 -04004128 found_extent = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004129 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04004130 if (found_type != BTRFS_EXTENT_DATA_KEY)
4131 goto delete;
4132
4133 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04004134 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04004135 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Miao Xief70a9a6b2012-01-12 19:10:12 -05004136 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -04004137 u64 orig_num_bytes =
4138 btrfs_file_extent_num_bytes(leaf, fi);
Qu Wenruofda28322013-02-26 08:10:22 +00004139 extent_num_bytes = ALIGN(new_size -
4140 found_key.offset,
4141 root->sectorsize);
Chris Masondb945352007-10-15 16:15:53 -04004142 btrfs_set_file_extent_num_bytes(leaf, fi,
4143 extent_num_bytes);
4144 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05004145 extent_num_bytes);
Chris Masone02119d2008-09-05 16:13:11 -04004146 if (root->ref_cows && extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004147 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04004148 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04004149 } else {
Chris Masondb945352007-10-15 16:15:53 -04004150 extent_num_bytes =
4151 btrfs_file_extent_disk_num_bytes(leaf,
4152 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004153 extent_offset = found_key.offset -
4154 btrfs_file_extent_offset(leaf, fi);
4155
Chris Mason39279cc2007-06-12 06:35:45 -04004156 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05004157 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04004158 if (extent_start != 0) {
4159 found_extent = 1;
Chris Masone02119d2008-09-05 16:13:11 -04004160 if (root->ref_cows)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004161 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04004162 }
4163 }
Chris Mason90692182008-02-08 13:49:28 -05004164 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04004165 /*
4166 * we can't truncate inline items that have had
4167 * special encodings
4168 */
4169 if (!del_item &&
4170 btrfs_file_extent_compression(leaf, fi) == 0 &&
4171 btrfs_file_extent_encryption(leaf, fi) == 0 &&
4172 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04004173 u32 size = new_size - found_key.offset;
4174
4175 if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004176 inode_sub_bytes(inode, item_end + 1 -
4177 new_size);
Chris Masone02119d2008-09-05 16:13:11 -04004178 }
4179 size =
4180 btrfs_file_extent_calc_inline_size(size);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004181 btrfs_truncate_item(root, path, size, 1);
Chris Masone02119d2008-09-05 16:13:11 -04004182 } else if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004183 inode_sub_bytes(inode, item_end + 1 -
4184 found_key.offset);
Chris Mason90692182008-02-08 13:49:28 -05004185 }
Chris Mason39279cc2007-06-12 06:35:45 -04004186 }
Chris Mason179e29e2007-11-01 11:28:41 -04004187delete:
Chris Mason39279cc2007-06-12 06:35:45 -04004188 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05004189 if (!pending_del_nr) {
4190 /* no pending yet, add ourselves */
4191 pending_del_slot = path->slots[0];
4192 pending_del_nr = 1;
4193 } else if (pending_del_nr &&
4194 path->slots[0] + 1 == pending_del_slot) {
4195 /* hop on the pending chunk */
4196 pending_del_nr++;
4197 pending_del_slot = path->slots[0];
4198 } else {
Chris Masond3977122009-01-05 21:25:51 -05004199 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05004200 }
Chris Mason39279cc2007-06-12 06:35:45 -04004201 } else {
4202 break;
4203 }
Josef Bacik0af3d002010-06-21 14:48:16 -04004204 if (found_extent && (root->ref_cows ||
4205 root == root->fs_info->tree_root)) {
Chris Masonb9473432009-03-13 11:00:37 -04004206 btrfs_set_path_blocking(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004207 ret = btrfs_free_extent(trans, root, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004208 extent_num_bytes, 0,
4209 btrfs_header_owner(leaf),
Arne Jansen66d7e7f2011-09-12 15:26:38 +02004210 ino, extent_offset, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004211 BUG_ON(ret);
4212 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004213
Yan, Zheng80825102009-11-12 09:35:36 +00004214 if (found_type == BTRFS_INODE_ITEM_KEY)
4215 break;
4216
4217 if (path->slots[0] == 0 ||
4218 path->slots[0] != pending_del_slot) {
Yan, Zheng80825102009-11-12 09:35:36 +00004219 if (pending_del_nr) {
4220 ret = btrfs_del_items(trans, root, path,
4221 pending_del_slot,
4222 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004223 if (ret) {
4224 btrfs_abort_transaction(trans,
4225 root, ret);
4226 goto error;
4227 }
Yan, Zheng80825102009-11-12 09:35:36 +00004228 pending_del_nr = 0;
4229 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004230 btrfs_release_path(path);
Chris Mason85e21ba2008-01-29 15:11:36 -05004231 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00004232 } else {
4233 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05004234 }
Chris Mason39279cc2007-06-12 06:35:45 -04004235 }
Yan, Zheng80825102009-11-12 09:35:36 +00004236out:
Chris Mason85e21ba2008-01-29 15:11:36 -05004237 if (pending_del_nr) {
4238 ret = btrfs_del_items(trans, root, path, pending_del_slot,
4239 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004240 if (ret)
4241 btrfs_abort_transaction(trans, root, ret);
Chris Mason85e21ba2008-01-29 15:11:36 -05004242 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004243error:
Chris Mason39279cc2007-06-12 06:35:45 -04004244 btrfs_free_path(path);
Yan, Zheng80825102009-11-12 09:35:36 +00004245 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04004246}
4247
Chris Masona52d9a82007-08-27 16:49:44 -04004248/*
Josef Bacik2aaa6652012-08-29 14:27:18 -04004249 * btrfs_truncate_page - read, zero a chunk and write a page
4250 * @inode - inode that we're zeroing
4251 * @from - the offset to start zeroing
4252 * @len - the length to zero, 0 to zero the entire range respective to the
4253 * offset
4254 * @front - zero up to the offset instead of from the offset on
4255 *
4256 * This will find the page for the "from" offset and cow the page and zero the
4257 * part we want to zero. This is used with truncate and hole punching.
Chris Masona52d9a82007-08-27 16:49:44 -04004258 */
Josef Bacik2aaa6652012-08-29 14:27:18 -04004259int btrfs_truncate_page(struct inode *inode, loff_t from, loff_t len,
4260 int front)
Chris Masona52d9a82007-08-27 16:49:44 -04004261{
Josef Bacik2aaa6652012-08-29 14:27:18 -04004262 struct address_space *mapping = inode->i_mapping;
Chris Masondb945352007-10-15 16:15:53 -04004263 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004264 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
4265 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004266 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004267 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04004268 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04004269 pgoff_t index = from >> PAGE_CACHE_SHIFT;
4270 unsigned offset = from & (PAGE_CACHE_SIZE-1);
4271 struct page *page;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04004272 gfp_t mask = btrfs_alloc_write_mask(mapping);
Chris Masona52d9a82007-08-27 16:49:44 -04004273 int ret = 0;
4274 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004275 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04004276
Josef Bacik2aaa6652012-08-29 14:27:18 -04004277 if ((offset & (blocksize - 1)) == 0 &&
4278 (!len || ((len & (blocksize - 1)) == 0)))
Chris Masona52d9a82007-08-27 16:49:44 -04004279 goto out;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004280 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004281 if (ret)
4282 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004283
Chris Mason211c17f2008-05-15 09:13:45 -04004284again:
Josef Bacik3b16a4e2011-09-21 15:05:58 -04004285 page = find_or_create_page(mapping, index, mask);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004286 if (!page) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004287 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Miao Xieac6a2b32012-12-05 10:56:13 +00004288 ret = -ENOMEM;
Chris Masona52d9a82007-08-27 16:49:44 -04004289 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04004290 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004291
4292 page_start = page_offset(page);
4293 page_end = page_start + PAGE_CACHE_SIZE - 1;
4294
Chris Masona52d9a82007-08-27 16:49:44 -04004295 if (!PageUptodate(page)) {
4296 ret = btrfs_readpage(NULL, page);
4297 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04004298 if (page->mapping != mapping) {
4299 unlock_page(page);
4300 page_cache_release(page);
4301 goto again;
4302 }
Chris Masona52d9a82007-08-27 16:49:44 -04004303 if (!PageUptodate(page)) {
4304 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04004305 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04004306 }
4307 }
Chris Mason211c17f2008-05-15 09:13:45 -04004308 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004309
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004310 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004311 set_page_extent_mapped(page);
4312
4313 ordered = btrfs_lookup_ordered_extent(inode, page_start);
4314 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00004315 unlock_extent_cached(io_tree, page_start, page_end,
4316 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004317 unlock_page(page);
4318 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04004319 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004320 btrfs_put_ordered_extent(ordered);
4321 goto again;
4322 }
4323
Josef Bacik2ac55d42010-02-03 19:33:23 +00004324 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Liu Bo9e8a4a82012-09-05 19:10:51 -06004325 EXTENT_DIRTY | EXTENT_DELALLOC |
4326 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004327 0, 0, &cached_state, GFP_NOFS);
Josef Bacik5d5e1032009-10-13 16:46:49 -04004328
Josef Bacik2ac55d42010-02-03 19:33:23 +00004329 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
4330 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004331 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00004332 unlock_extent_cached(io_tree, page_start, page_end,
4333 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004334 goto out_unlock;
4335 }
4336
Chris Masone6dcd2d2008-07-17 12:53:50 -04004337 if (offset != PAGE_CACHE_SIZE) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04004338 if (!len)
4339 len = PAGE_CACHE_SIZE - offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004340 kaddr = kmap(page);
Josef Bacik2aaa6652012-08-29 14:27:18 -04004341 if (front)
4342 memset(kaddr, 0, offset);
4343 else
4344 memset(kaddr + offset, 0, len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004345 flush_dcache_page(page);
4346 kunmap(page);
4347 }
Chris Mason247e7432008-07-17 12:53:51 -04004348 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004349 set_page_dirty(page);
Josef Bacik2ac55d42010-02-03 19:33:23 +00004350 unlock_extent_cached(io_tree, page_start, page_end, &cached_state,
4351 GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04004352
Chris Mason89642222008-07-24 09:41:53 -04004353out_unlock:
Josef Bacik5d5e1032009-10-13 16:46:49 -04004354 if (ret)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004355 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason39279cc2007-06-12 06:35:45 -04004356 unlock_page(page);
4357 page_cache_release(page);
4358out:
4359 return ret;
4360}
4361
Josef Bacik695a0d02011-03-04 15:46:53 -05004362/*
4363 * This function puts in dummy file extents for the area we're creating a hole
4364 * for. So if we are truncating this file to a larger size we need to insert
4365 * these file extents so that btrfs_get_extent will return a EXTENT_MAP_HOLE for
4366 * the range between oldsize and size
4367 */
Josef Bacika41ad392011-01-31 15:30:16 -05004368int btrfs_cont_expand(struct inode *inode, loff_t oldsize, loff_t size)
Yan Zheng9036c102008-10-30 14:19:41 -04004369{
4370 struct btrfs_trans_handle *trans;
4371 struct btrfs_root *root = BTRFS_I(inode)->root;
4372 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004373 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004374 struct extent_state *cached_state = NULL;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004375 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Qu Wenruofda28322013-02-26 08:10:22 +00004376 u64 hole_start = ALIGN(oldsize, root->sectorsize);
4377 u64 block_end = ALIGN(size, root->sectorsize);
Yan Zheng9036c102008-10-30 14:19:41 -04004378 u64 last_byte;
4379 u64 cur_offset;
4380 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004381 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04004382
4383 if (size <= hole_start)
4384 return 0;
4385
Yan Zheng9036c102008-10-30 14:19:41 -04004386 while (1) {
4387 struct btrfs_ordered_extent *ordered;
4388 btrfs_wait_ordered_range(inode, hole_start,
4389 block_end - hole_start);
Josef Bacik2ac55d42010-02-03 19:33:23 +00004390 lock_extent_bits(io_tree, hole_start, block_end - 1, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004391 &cached_state);
Yan Zheng9036c102008-10-30 14:19:41 -04004392 ordered = btrfs_lookup_ordered_extent(inode, hole_start);
4393 if (!ordered)
4394 break;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004395 unlock_extent_cached(io_tree, hole_start, block_end - 1,
4396 &cached_state, GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04004397 btrfs_put_ordered_extent(ordered);
4398 }
4399
Yan Zheng9036c102008-10-30 14:19:41 -04004400 cur_offset = hole_start;
4401 while (1) {
4402 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
4403 block_end - cur_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004404 if (IS_ERR(em)) {
4405 err = PTR_ERR(em);
Zach Brownf2767952013-01-08 19:37:58 +00004406 em = NULL;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004407 break;
4408 }
Yan Zheng9036c102008-10-30 14:19:41 -04004409 last_byte = min(extent_map_end(em), block_end);
Qu Wenruofda28322013-02-26 08:10:22 +00004410 last_byte = ALIGN(last_byte , root->sectorsize);
Yan, Zheng80825102009-11-12 09:35:36 +00004411 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Josef Bacik5dc562c2012-08-17 13:14:17 -04004412 struct extent_map *hole_em;
Yan Zheng9036c102008-10-30 14:19:41 -04004413 hole_size = last_byte - cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00004414
Miao Xie36423202011-12-14 20:12:02 -05004415 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004416 if (IS_ERR(trans)) {
4417 err = PTR_ERR(trans);
Chris Mason771ed682008-11-06 22:02:51 -05004418 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004419 }
Yan, Zheng80825102009-11-12 09:35:36 +00004420
Josef Bacik5dc562c2012-08-17 13:14:17 -04004421 err = btrfs_drop_extents(trans, root, inode,
4422 cur_offset,
Josef Bacik26714852012-08-29 12:24:27 -04004423 cur_offset + hole_size, 1);
Miao Xie5b397372011-09-11 10:52:24 -04004424 if (err) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004425 btrfs_abort_transaction(trans, root, err);
Miao Xie5b397372011-09-11 10:52:24 -04004426 btrfs_end_transaction(trans, root);
Josef Bacik3893e332011-01-31 16:03:11 -05004427 break;
Miao Xie5b397372011-09-11 10:52:24 -04004428 }
Josef Bacik9ed74f22009-09-11 16:12:44 -04004429
Yan Zheng9036c102008-10-30 14:19:41 -04004430 err = btrfs_insert_file_extent(trans, root,
Li Zefan33345d012011-04-20 10:31:50 +08004431 btrfs_ino(inode), cur_offset, 0,
Yan Zheng9036c102008-10-30 14:19:41 -04004432 0, hole_size, 0, hole_size,
4433 0, 0, 0);
Miao Xie5b397372011-09-11 10:52:24 -04004434 if (err) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004435 btrfs_abort_transaction(trans, root, err);
Miao Xie5b397372011-09-11 10:52:24 -04004436 btrfs_end_transaction(trans, root);
Josef Bacik3893e332011-01-31 16:03:11 -05004437 break;
Miao Xie5b397372011-09-11 10:52:24 -04004438 }
Yan, Zheng80825102009-11-12 09:35:36 +00004439
Josef Bacik5dc562c2012-08-17 13:14:17 -04004440 btrfs_drop_extent_cache(inode, cur_offset,
4441 cur_offset + hole_size - 1, 0);
4442 hole_em = alloc_extent_map();
4443 if (!hole_em) {
4444 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
4445 &BTRFS_I(inode)->runtime_flags);
4446 goto next;
4447 }
4448 hole_em->start = cur_offset;
4449 hole_em->len = hole_size;
4450 hole_em->orig_start = cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00004451
Josef Bacik5dc562c2012-08-17 13:14:17 -04004452 hole_em->block_start = EXTENT_MAP_HOLE;
4453 hole_em->block_len = 0;
Josef Bacikb4939682012-12-03 10:31:19 -05004454 hole_em->orig_block_len = 0;
Josef Bacikcc95bef2013-04-04 14:31:27 -04004455 hole_em->ram_bytes = hole_size;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004456 hole_em->bdev = root->fs_info->fs_devices->latest_bdev;
4457 hole_em->compress_type = BTRFS_COMPRESS_NONE;
4458 hole_em->generation = trans->transid;
4459
4460 while (1) {
4461 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04004462 err = add_extent_mapping(em_tree, hole_em, 1);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004463 write_unlock(&em_tree->lock);
4464 if (err != -EEXIST)
4465 break;
4466 btrfs_drop_extent_cache(inode, cur_offset,
4467 cur_offset +
4468 hole_size - 1, 0);
4469 }
4470 free_extent_map(hole_em);
4471next:
Miao Xie36423202011-12-14 20:12:02 -05004472 btrfs_update_inode(trans, root, inode);
Yan, Zheng80825102009-11-12 09:35:36 +00004473 btrfs_end_transaction(trans, root);
Yan Zheng9036c102008-10-30 14:19:41 -04004474 }
4475 free_extent_map(em);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004476 em = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04004477 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00004478 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04004479 break;
4480 }
4481
Yan, Zhenga22285a2010-05-16 10:48:46 -04004482 free_extent_map(em);
Josef Bacik2ac55d42010-02-03 19:33:23 +00004483 unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state,
4484 GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04004485 return err;
4486}
4487
Eric Sandeen3972f262013-01-12 02:57:22 +00004488static int btrfs_setsize(struct inode *inode, struct iattr *attr)
Yan, Zheng80825102009-11-12 09:35:36 +00004489{
Miao Xief4a2f4c2011-12-14 20:12:01 -05004490 struct btrfs_root *root = BTRFS_I(inode)->root;
4491 struct btrfs_trans_handle *trans;
Josef Bacika41ad392011-01-31 15:30:16 -05004492 loff_t oldsize = i_size_read(inode);
Eric Sandeen3972f262013-01-12 02:57:22 +00004493 loff_t newsize = attr->ia_size;
4494 int mask = attr->ia_valid;
Yan, Zheng80825102009-11-12 09:35:36 +00004495 int ret;
4496
Josef Bacika41ad392011-01-31 15:30:16 -05004497 if (newsize == oldsize)
Yan, Zheng80825102009-11-12 09:35:36 +00004498 return 0;
4499
Eric Sandeen3972f262013-01-12 02:57:22 +00004500 /*
4501 * The regular truncate() case without ATTR_CTIME and ATTR_MTIME is a
4502 * special case where we need to update the times despite not having
4503 * these flags set. For all other operations the VFS set these flags
4504 * explicitly if it wants a timestamp update.
4505 */
4506 if (newsize != oldsize && (!(mask & (ATTR_CTIME | ATTR_MTIME))))
4507 inode->i_ctime = inode->i_mtime = current_fs_time(inode->i_sb);
4508
Josef Bacika41ad392011-01-31 15:30:16 -05004509 if (newsize > oldsize) {
Josef Bacika41ad392011-01-31 15:30:16 -05004510 truncate_pagecache(inode, oldsize, newsize);
4511 ret = btrfs_cont_expand(inode, oldsize, newsize);
Miao Xief4a2f4c2011-12-14 20:12:01 -05004512 if (ret)
Yan, Zheng80825102009-11-12 09:35:36 +00004513 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00004514
Miao Xief4a2f4c2011-12-14 20:12:01 -05004515 trans = btrfs_start_transaction(root, 1);
4516 if (IS_ERR(trans))
4517 return PTR_ERR(trans);
4518
4519 i_size_write(inode, newsize);
4520 btrfs_ordered_update_i_size(inode, i_size_read(inode), NULL);
4521 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik7ad85bb2012-01-12 19:10:12 -05004522 btrfs_end_transaction(trans, root);
Josef Bacika41ad392011-01-31 15:30:16 -05004523 } else {
Yan, Zheng80825102009-11-12 09:35:36 +00004524
Josef Bacika41ad392011-01-31 15:30:16 -05004525 /*
4526 * We're truncating a file that used to have good data down to
4527 * zero. Make sure it gets into the ordered flush list so that
4528 * any new writes get down to disk quickly.
4529 */
4530 if (newsize == 0)
Josef Bacik72ac3c02012-05-23 14:13:11 -04004531 set_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
4532 &BTRFS_I(inode)->runtime_flags);
Yan, Zheng80825102009-11-12 09:35:36 +00004533
Josef Bacikf3fe8202013-01-07 17:03:21 -05004534 /*
4535 * 1 for the orphan item we're going to add
4536 * 1 for the orphan item deletion.
4537 */
4538 trans = btrfs_start_transaction(root, 2);
4539 if (IS_ERR(trans))
4540 return PTR_ERR(trans);
4541
4542 /*
4543 * We need to do this in case we fail at _any_ point during the
4544 * actual truncate. Once we do the truncate_setsize we could
4545 * invalidate pages which forces any outstanding ordered io to
4546 * be instantly completed which will give us extents that need
4547 * to be truncated. If we fail to get an orphan inode down we
4548 * could have left over extents that were never meant to live,
4549 * so we need to garuntee from this point on that everything
4550 * will be consistent.
4551 */
4552 ret = btrfs_orphan_add(trans, inode);
4553 btrfs_end_transaction(trans, root);
4554 if (ret)
4555 return ret;
4556
Josef Bacika41ad392011-01-31 15:30:16 -05004557 /* we don't support swapfiles, so vmtruncate shouldn't fail */
4558 truncate_setsize(inode, newsize);
Miao Xie2e60a512013-02-08 07:01:08 +00004559
4560 /* Disable nonlocked read DIO to avoid the end less truncate */
4561 btrfs_inode_block_unlocked_dio(inode);
4562 inode_dio_wait(inode);
4563 btrfs_inode_resume_unlocked_dio(inode);
4564
Josef Bacika41ad392011-01-31 15:30:16 -05004565 ret = btrfs_truncate(inode);
Josef Bacikf3fe8202013-01-07 17:03:21 -05004566 if (ret && inode->i_nlink)
4567 btrfs_orphan_del(NULL, inode);
Yan, Zheng80825102009-11-12 09:35:36 +00004568 }
4569
Josef Bacika41ad392011-01-31 15:30:16 -05004570 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00004571}
4572
Chris Mason39279cc2007-06-12 06:35:45 -04004573static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
4574{
4575 struct inode *inode = dentry->d_inode;
Li Zefanb83cc962010-12-20 16:04:08 +08004576 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004577 int err;
4578
Li Zefanb83cc962010-12-20 16:04:08 +08004579 if (btrfs_root_readonly(root))
4580 return -EROFS;
4581
Chris Mason39279cc2007-06-12 06:35:45 -04004582 err = inode_change_ok(inode, attr);
4583 if (err)
4584 return err;
4585
Chris Mason5a3f23d2009-03-31 13:27:11 -04004586 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Eric Sandeen3972f262013-01-12 02:57:22 +00004587 err = btrfs_setsize(inode, attr);
Yan, Zheng80825102009-11-12 09:35:36 +00004588 if (err)
4589 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04004590 }
Yan Zheng9036c102008-10-30 14:19:41 -04004591
Christoph Hellwig10257742010-06-04 11:30:02 +02004592 if (attr->ia_valid) {
4593 setattr_copy(inode, attr);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04004594 inode_inc_iversion(inode);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004595 err = btrfs_dirty_inode(inode);
Josef Bacik33268ea2008-07-24 12:16:36 -04004596
Josef Bacik22c44fe2011-11-30 10:45:38 -05004597 if (!err && attr->ia_valid & ATTR_MODE)
Christoph Hellwig10257742010-06-04 11:30:02 +02004598 err = btrfs_acl_chmod(inode);
4599 }
4600
Chris Mason39279cc2007-06-12 06:35:45 -04004601 return err;
4602}
Chris Mason61295eb2008-01-14 16:24:38 -05004603
Al Virobd555972010-06-07 11:35:40 -04004604void btrfs_evict_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04004605{
4606 struct btrfs_trans_handle *trans;
4607 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik726c35f2011-09-26 15:46:06 -04004608 struct btrfs_block_rsv *rsv, *global_rsv;
Josef Bacik07127182011-08-19 10:29:59 -04004609 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04004610 int ret;
4611
liubo1abe9b82011-03-24 11:18:59 +00004612 trace_btrfs_inode_evict(inode);
4613
Chris Mason39279cc2007-06-12 06:35:45 -04004614 truncate_inode_pages(&inode->i_data, 0);
Josef Bacik0af3d002010-06-21 14:48:16 -04004615 if (inode->i_nlink && (btrfs_root_refs(&root->root_item) != 0 ||
Liu Bo83eea1f2012-07-10 05:28:39 -06004616 btrfs_is_free_space_inode(inode)))
Al Virobd555972010-06-07 11:35:40 -04004617 goto no_delete;
4618
Chris Mason39279cc2007-06-12 06:35:45 -04004619 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04004620 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004621 goto no_delete;
4622 }
Al Virobd555972010-06-07 11:35:40 -04004623 /* do we really want it for ->i_nlink > 0 and zero btrfs_root_refs? */
Chris Mason4a096752008-07-21 10:29:44 -04004624 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04004625
Yan, Zhengc71bf092009-11-12 09:34:40 +00004626 if (root->fs_info->log_root_recovering) {
Liu Bo6bf02312012-06-25 21:59:09 -06004627 BUG_ON(test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
Josef Bacik8a35d952012-05-23 14:26:42 -04004628 &BTRFS_I(inode)->runtime_flags));
Yan, Zhengc71bf092009-11-12 09:34:40 +00004629 goto no_delete;
4630 }
4631
Yan, Zheng76dda932009-09-21 16:00:26 -04004632 if (inode->i_nlink > 0) {
4633 BUG_ON(btrfs_root_refs(&root->root_item) != 0);
4634 goto no_delete;
4635 }
4636
Miao Xie0e8c36a2012-12-19 06:59:51 +00004637 ret = btrfs_commit_inode_delayed_inode(inode);
4638 if (ret) {
4639 btrfs_orphan_del(NULL, inode);
4640 goto no_delete;
4641 }
4642
Miao Xie66d8f3d2012-09-06 04:02:28 -06004643 rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP);
Josef Bacik4289a662011-08-05 13:22:24 -04004644 if (!rsv) {
4645 btrfs_orphan_del(NULL, inode);
4646 goto no_delete;
4647 }
Josef Bacik4a338542011-08-29 11:01:31 -04004648 rsv->size = min_size;
Josef Bacikca7e70f2012-08-27 17:48:15 -04004649 rsv->failfast = 1;
Josef Bacik726c35f2011-09-26 15:46:06 -04004650 global_rsv = &root->fs_info->global_block_rsv;
Josef Bacik4289a662011-08-05 13:22:24 -04004651
Chris Masondbe674a2008-07-17 12:54:05 -04004652 btrfs_i_size_write(inode, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04004653
Josef Bacik4289a662011-08-05 13:22:24 -04004654 /*
Miao Xie8407aa42012-09-07 01:43:32 -06004655 * This is a bit simpler than btrfs_truncate since we've already
4656 * reserved our space for our orphan item in the unlink, so we just
4657 * need to reserve some slack space in case we add bytes and update
4658 * inode item when doing the truncate.
Josef Bacik4289a662011-08-05 13:22:24 -04004659 */
Yan, Zheng80825102009-11-12 09:35:36 +00004660 while (1) {
Miao Xie08e007d2012-10-16 11:33:38 +00004661 ret = btrfs_block_rsv_refill(root, rsv, min_size,
4662 BTRFS_RESERVE_FLUSH_LIMIT);
Yan, Zheng80825102009-11-12 09:35:36 +00004663
Josef Bacik726c35f2011-09-26 15:46:06 -04004664 /*
4665 * Try and steal from the global reserve since we will
4666 * likely not use this space anyway, we want to try as
4667 * hard as possible to get this to work.
4668 */
4669 if (ret)
4670 ret = btrfs_block_rsv_migrate(global_rsv, rsv, min_size);
4671
Yan, Zhengd68fc572010-05-16 10:49:58 -04004672 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00004673 btrfs_warn(root->fs_info,
4674 "Could not get space for a delete, will truncate on mount %d",
4675 ret);
Josef Bacik4289a662011-08-05 13:22:24 -04004676 btrfs_orphan_del(NULL, inode);
4677 btrfs_free_block_rsv(root, rsv);
4678 goto no_delete;
Yan, Zhengd68fc572010-05-16 10:49:58 -04004679 }
4680
Miao Xie0e8c36a2012-12-19 06:59:51 +00004681 trans = btrfs_join_transaction(root);
Josef Bacik4289a662011-08-05 13:22:24 -04004682 if (IS_ERR(trans)) {
4683 btrfs_orphan_del(NULL, inode);
4684 btrfs_free_block_rsv(root, rsv);
4685 goto no_delete;
4686 }
4687
4688 trans->block_rsv = rsv;
4689
Yan, Zhengd68fc572010-05-16 10:49:58 -04004690 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
Josef Bacikca7e70f2012-08-27 17:48:15 -04004691 if (ret != -ENOSPC)
Yan, Zheng80825102009-11-12 09:35:36 +00004692 break;
4693
Miao Xie8407aa42012-09-07 01:43:32 -06004694 trans->block_rsv = &root->fs_info->trans_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00004695 btrfs_end_transaction(trans, root);
4696 trans = NULL;
Liu Bob53d3f52012-11-14 14:34:34 +00004697 btrfs_btree_balance_dirty(root);
Josef Bacik7b128762008-07-24 12:17:14 -04004698 }
4699
Josef Bacik4289a662011-08-05 13:22:24 -04004700 btrfs_free_block_rsv(root, rsv);
4701
Yan, Zheng80825102009-11-12 09:35:36 +00004702 if (ret == 0) {
Josef Bacik4289a662011-08-05 13:22:24 -04004703 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00004704 ret = btrfs_orphan_del(trans, inode);
4705 BUG_ON(ret);
4706 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004707
Josef Bacik4289a662011-08-05 13:22:24 -04004708 trans->block_rsv = &root->fs_info->trans_block_rsv;
Li Zefan581bb052011-04-20 10:06:11 +08004709 if (!(root == root->fs_info->tree_root ||
4710 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID))
Li Zefan33345d012011-04-20 10:31:50 +08004711 btrfs_return_ino(root, btrfs_ino(inode));
Li Zefan581bb052011-04-20 10:06:11 +08004712
Chris Mason54aa1f42007-06-22 14:16:25 -04004713 btrfs_end_transaction(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00004714 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04004715no_delete:
Jan Karadbd57682012-05-03 14:48:02 +02004716 clear_inode(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00004717 return;
Chris Mason39279cc2007-06-12 06:35:45 -04004718}
4719
4720/*
4721 * this returns the key found in the dir entry in the location pointer.
4722 * If no dir entries were found, location->objectid is 0.
4723 */
4724static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
4725 struct btrfs_key *location)
4726{
4727 const char *name = dentry->d_name.name;
4728 int namelen = dentry->d_name.len;
4729 struct btrfs_dir_item *di;
4730 struct btrfs_path *path;
4731 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04004732 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004733
4734 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07004735 if (!path)
4736 return -ENOMEM;
Chris Mason39544012007-12-12 14:38:19 -05004737
Li Zefan33345d012011-04-20 10:31:50 +08004738 di = btrfs_lookup_dir_item(NULL, root, path, btrfs_ino(dir), name,
Chris Mason39279cc2007-06-12 06:35:45 -04004739 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04004740 if (IS_ERR(di))
4741 ret = PTR_ERR(di);
Chris Masond3977122009-01-05 21:25:51 -05004742
David Sterbac7040052011-04-19 18:00:01 +02004743 if (IS_ERR_OR_NULL(di))
Chris Mason39544012007-12-12 14:38:19 -05004744 goto out_err;
Chris Masond3977122009-01-05 21:25:51 -05004745
Chris Mason5f39d392007-10-15 16:14:19 -04004746 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04004747out:
Chris Mason39279cc2007-06-12 06:35:45 -04004748 btrfs_free_path(path);
4749 return ret;
Chris Mason39544012007-12-12 14:38:19 -05004750out_err:
4751 location->objectid = 0;
4752 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04004753}
4754
4755/*
4756 * when we hit a tree root in a directory, the btrfs part of the inode
4757 * needs to be changed to reflect the root directory of the tree root. This
4758 * is kind of like crossing a mount point.
4759 */
4760static int fixup_tree_root_location(struct btrfs_root *root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004761 struct inode *dir,
4762 struct dentry *dentry,
4763 struct btrfs_key *location,
4764 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04004765{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004766 struct btrfs_path *path;
4767 struct btrfs_root *new_root;
4768 struct btrfs_root_ref *ref;
4769 struct extent_buffer *leaf;
4770 int ret;
4771 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004772
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004773 path = btrfs_alloc_path();
4774 if (!path) {
4775 err = -ENOMEM;
4776 goto out;
4777 }
Chris Mason39279cc2007-06-12 06:35:45 -04004778
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004779 err = -ENOENT;
4780 ret = btrfs_find_root_ref(root->fs_info->tree_root, path,
4781 BTRFS_I(dir)->root->root_key.objectid,
4782 location->objectid);
4783 if (ret) {
4784 if (ret < 0)
4785 err = ret;
4786 goto out;
4787 }
Chris Mason39279cc2007-06-12 06:35:45 -04004788
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004789 leaf = path->nodes[0];
4790 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
Li Zefan33345d012011-04-20 10:31:50 +08004791 if (btrfs_root_ref_dirid(leaf, ref) != btrfs_ino(dir) ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004792 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
4793 goto out;
4794
4795 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
4796 (unsigned long)(ref + 1),
4797 dentry->d_name.len);
4798 if (ret)
4799 goto out;
4800
David Sterbab3b4aa72011-04-21 01:20:15 +02004801 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004802
4803 new_root = btrfs_read_fs_root_no_name(root->fs_info, location);
4804 if (IS_ERR(new_root)) {
4805 err = PTR_ERR(new_root);
4806 goto out;
4807 }
4808
4809 if (btrfs_root_refs(&new_root->root_item) == 0) {
4810 err = -ENOENT;
4811 goto out;
4812 }
4813
4814 *sub_root = new_root;
4815 location->objectid = btrfs_root_dirid(&new_root->root_item);
4816 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04004817 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004818 err = 0;
4819out:
4820 btrfs_free_path(path);
4821 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04004822}
4823
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004824static void inode_tree_add(struct inode *inode)
4825{
4826 struct btrfs_root *root = BTRFS_I(inode)->root;
4827 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004828 struct rb_node **p;
4829 struct rb_node *parent;
Li Zefan33345d012011-04-20 10:31:50 +08004830 u64 ino = btrfs_ino(inode);
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004831again:
4832 p = &root->inode_tree.rb_node;
4833 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004834
Al Viro1d3382cb2010-10-23 15:19:20 -04004835 if (inode_unhashed(inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04004836 return;
4837
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004838 spin_lock(&root->inode_lock);
4839 while (*p) {
4840 parent = *p;
4841 entry = rb_entry(parent, struct btrfs_inode, rb_node);
4842
Li Zefan33345d012011-04-20 10:31:50 +08004843 if (ino < btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004844 p = &parent->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08004845 else if (ino > btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004846 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004847 else {
4848 WARN_ON(!(entry->vfs_inode.i_state &
Al Viroa4ffdde2010-06-02 17:38:30 -04004849 (I_WILL_FREE | I_FREEING)));
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004850 rb_erase(parent, &root->inode_tree);
4851 RB_CLEAR_NODE(parent);
4852 spin_unlock(&root->inode_lock);
4853 goto again;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004854 }
4855 }
4856 rb_link_node(&BTRFS_I(inode)->rb_node, parent, p);
4857 rb_insert_color(&BTRFS_I(inode)->rb_node, &root->inode_tree);
4858 spin_unlock(&root->inode_lock);
4859}
4860
4861static void inode_tree_del(struct inode *inode)
4862{
4863 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04004864 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004865
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004866 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004867 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004868 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004869 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04004870 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004871 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004872 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04004873
Josef Bacik0af3d002010-06-21 14:48:16 -04004874 /*
4875 * Free space cache has inodes in the tree root, but the tree root has a
4876 * root_refs of 0, so this could end up dropping the tree root as a
4877 * snapshot, so we need the extra !root->fs_info->tree_root check to
4878 * make sure we don't drop it.
4879 */
4880 if (empty && btrfs_root_refs(&root->root_item) == 0 &&
4881 root != root->fs_info->tree_root) {
Yan, Zheng76dda932009-09-21 16:00:26 -04004882 synchronize_srcu(&root->fs_info->subvol_srcu);
4883 spin_lock(&root->inode_lock);
4884 empty = RB_EMPTY_ROOT(&root->inode_tree);
4885 spin_unlock(&root->inode_lock);
4886 if (empty)
4887 btrfs_add_dead_root(root);
4888 }
4889}
4890
Jeff Mahoney143bede2012-03-01 14:56:26 +01004891void btrfs_invalidate_inodes(struct btrfs_root *root)
Yan, Zheng76dda932009-09-21 16:00:26 -04004892{
4893 struct rb_node *node;
4894 struct rb_node *prev;
4895 struct btrfs_inode *entry;
4896 struct inode *inode;
4897 u64 objectid = 0;
4898
4899 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
4900
4901 spin_lock(&root->inode_lock);
4902again:
4903 node = root->inode_tree.rb_node;
4904 prev = NULL;
4905 while (node) {
4906 prev = node;
4907 entry = rb_entry(node, struct btrfs_inode, rb_node);
4908
Li Zefan33345d012011-04-20 10:31:50 +08004909 if (objectid < btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04004910 node = node->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08004911 else if (objectid > btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04004912 node = node->rb_right;
4913 else
4914 break;
4915 }
4916 if (!node) {
4917 while (prev) {
4918 entry = rb_entry(prev, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08004919 if (objectid <= btrfs_ino(&entry->vfs_inode)) {
Yan, Zheng76dda932009-09-21 16:00:26 -04004920 node = prev;
4921 break;
4922 }
4923 prev = rb_next(prev);
4924 }
4925 }
4926 while (node) {
4927 entry = rb_entry(node, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08004928 objectid = btrfs_ino(&entry->vfs_inode) + 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04004929 inode = igrab(&entry->vfs_inode);
4930 if (inode) {
4931 spin_unlock(&root->inode_lock);
4932 if (atomic_read(&inode->i_count) > 1)
4933 d_prune_aliases(inode);
4934 /*
Al Viro45321ac2010-06-07 13:43:19 -04004935 * btrfs_drop_inode will have it removed from
Yan, Zheng76dda932009-09-21 16:00:26 -04004936 * the inode cache when its usage count
4937 * hits zero.
4938 */
4939 iput(inode);
4940 cond_resched();
4941 spin_lock(&root->inode_lock);
4942 goto again;
4943 }
4944
4945 if (cond_resched_lock(&root->inode_lock))
4946 goto again;
4947
4948 node = rb_next(node);
4949 }
4950 spin_unlock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004951}
4952
Chris Masone02119d2008-09-05 16:13:11 -04004953static int btrfs_init_locked_inode(struct inode *inode, void *p)
4954{
4955 struct btrfs_iget_args *args = p;
4956 inode->i_ino = args->ino;
Chris Masone02119d2008-09-05 16:13:11 -04004957 BTRFS_I(inode)->root = args->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004958 return 0;
4959}
4960
4961static int btrfs_find_actor(struct inode *inode, void *opaque)
4962{
4963 struct btrfs_iget_args *args = opaque;
Li Zefan33345d012011-04-20 10:31:50 +08004964 return args->ino == btrfs_ino(inode) &&
Chris Masond3977122009-01-05 21:25:51 -05004965 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004966}
4967
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004968static struct inode *btrfs_iget_locked(struct super_block *s,
4969 u64 objectid,
4970 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04004971{
4972 struct inode *inode;
4973 struct btrfs_iget_args args;
4974 args.ino = objectid;
4975 args.root = root;
4976
4977 inode = iget5_locked(s, objectid, btrfs_find_actor,
4978 btrfs_init_locked_inode,
4979 (void *)&args);
4980 return inode;
4981}
4982
Balaji Rao1a54ef82008-07-21 02:01:04 +05304983/* Get an inode object given its location and corresponding root.
4984 * Returns in *is_new if the inode was read from disk
4985 */
4986struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
Josef Bacik73f73412009-12-04 17:38:27 +00004987 struct btrfs_root *root, int *new)
Balaji Rao1a54ef82008-07-21 02:01:04 +05304988{
4989 struct inode *inode;
4990
4991 inode = btrfs_iget_locked(s, location->objectid, root);
4992 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004993 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05304994
4995 if (inode->i_state & I_NEW) {
4996 BTRFS_I(inode)->root = root;
4997 memcpy(&BTRFS_I(inode)->location, location, sizeof(*location));
4998 btrfs_read_locked_inode(inode);
Mark Fasheh1748f842011-07-12 11:25:31 -07004999 if (!is_bad_inode(inode)) {
5000 inode_tree_add(inode);
5001 unlock_new_inode(inode);
5002 if (new)
5003 *new = 1;
5004 } else {
Sergei Trofimoviche0b6d652011-09-11 10:52:24 -04005005 unlock_new_inode(inode);
5006 iput(inode);
5007 inode = ERR_PTR(-ESTALE);
Mark Fasheh1748f842011-07-12 11:25:31 -07005008 }
5009 }
5010
Balaji Rao1a54ef82008-07-21 02:01:04 +05305011 return inode;
5012}
5013
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005014static struct inode *new_simple_dir(struct super_block *s,
5015 struct btrfs_key *key,
5016 struct btrfs_root *root)
5017{
5018 struct inode *inode = new_inode(s);
5019
5020 if (!inode)
5021 return ERR_PTR(-ENOMEM);
5022
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005023 BTRFS_I(inode)->root = root;
5024 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
Josef Bacik72ac3c02012-05-23 14:13:11 -04005025 set_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005026
5027 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
Li Zefan848cce02012-02-21 17:04:28 +08005028 inode->i_op = &btrfs_dir_ro_inode_operations;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005029 inode->i_fop = &simple_dir_operations;
5030 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
5031 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
5032
5033 return inode;
5034}
5035
Chris Mason3de45862008-11-17 21:02:50 -05005036struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04005037{
Chris Masond3977122009-01-05 21:25:51 -05005038 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005039 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04005040 struct btrfs_root *sub_root = root;
5041 struct btrfs_key location;
Yan, Zheng76dda932009-09-21 16:00:26 -04005042 int index;
Josef Bacikb4aff1f2011-06-28 16:18:59 -04005043 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005044
5045 if (dentry->d_name.len > BTRFS_NAME_LEN)
5046 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04005047
Jeff Layton39e3c952012-11-28 11:30:53 -05005048 ret = btrfs_inode_by_name(dir, dentry, &location);
Chris Mason39279cc2007-06-12 06:35:45 -04005049 if (ret < 0)
5050 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04005051
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005052 if (location.objectid == 0)
5053 return NULL;
5054
5055 if (location.type == BTRFS_INODE_ITEM_KEY) {
Josef Bacik73f73412009-12-04 17:38:27 +00005056 inode = btrfs_iget(dir->i_sb, &location, root, NULL);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005057 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04005058 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005059
5060 BUG_ON(location.type != BTRFS_ROOT_ITEM_KEY);
5061
Yan, Zheng76dda932009-09-21 16:00:26 -04005062 index = srcu_read_lock(&root->fs_info->subvol_srcu);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005063 ret = fixup_tree_root_location(root, dir, dentry,
5064 &location, &sub_root);
5065 if (ret < 0) {
5066 if (ret != -ENOENT)
5067 inode = ERR_PTR(ret);
5068 else
5069 inode = new_simple_dir(dir->i_sb, &location, sub_root);
5070 } else {
Josef Bacik73f73412009-12-04 17:38:27 +00005071 inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04005072 }
Yan, Zheng76dda932009-09-21 16:00:26 -04005073 srcu_read_unlock(&root->fs_info->subvol_srcu, index);
5074
Julia Lawall34d19ba2011-01-24 19:55:19 +00005075 if (!IS_ERR(inode) && root != sub_root) {
Yan, Zhengc71bf092009-11-12 09:34:40 +00005076 down_read(&root->fs_info->cleanup_work_sem);
5077 if (!(inode->i_sb->s_flags & MS_RDONLY))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05005078 ret = btrfs_orphan_cleanup(sub_root);
Yan, Zhengc71bf092009-11-12 09:34:40 +00005079 up_read(&root->fs_info->cleanup_work_sem);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05005080 if (ret)
5081 inode = ERR_PTR(ret);
Yan, Zhengc71bf092009-11-12 09:34:40 +00005082 }
5083
Chris Mason3de45862008-11-17 21:02:50 -05005084 return inode;
5085}
5086
Nick Pigginfe15ce42011-01-07 17:49:23 +11005087static int btrfs_dentry_delete(const struct dentry *dentry)
Yan, Zheng76dda932009-09-21 16:00:26 -04005088{
5089 struct btrfs_root *root;
Li Zefan848cce02012-02-21 17:04:28 +08005090 struct inode *inode = dentry->d_inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04005091
Li Zefan848cce02012-02-21 17:04:28 +08005092 if (!inode && !IS_ROOT(dentry))
5093 inode = dentry->d_parent->d_inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04005094
Li Zefan848cce02012-02-21 17:04:28 +08005095 if (inode) {
5096 root = BTRFS_I(inode)->root;
Yan, Zhengefefb142009-10-09 09:25:16 -04005097 if (btrfs_root_refs(&root->root_item) == 0)
5098 return 1;
Li Zefan848cce02012-02-21 17:04:28 +08005099
5100 if (btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
5101 return 1;
Yan, Zhengefefb142009-10-09 09:25:16 -04005102 }
Yan, Zheng76dda932009-09-21 16:00:26 -04005103 return 0;
5104}
5105
Josef Bacikb4aff1f2011-06-28 16:18:59 -04005106static void btrfs_dentry_release(struct dentry *dentry)
5107{
5108 if (dentry->d_fsdata)
5109 kfree(dentry->d_fsdata);
5110}
5111
Chris Mason3de45862008-11-17 21:02:50 -05005112static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -04005113 unsigned int flags)
Chris Mason3de45862008-11-17 21:02:50 -05005114{
Josef Bacika66e7cc2011-09-18 10:34:03 -04005115 struct dentry *ret;
5116
5117 ret = d_splice_alias(btrfs_lookup_dentry(dir, dentry), dentry);
Josef Bacika66e7cc2011-09-18 10:34:03 -04005118 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04005119}
5120
Miao Xie16cdcec2011-04-22 18:12:22 +08005121unsigned char btrfs_filetype_table[] = {
Chris Mason39279cc2007-06-12 06:35:45 -04005122 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
5123};
5124
David Woodhousecbdf5a22008-08-06 19:42:33 +01005125static int btrfs_real_readdir(struct file *filp, void *dirent,
5126 filldir_t filldir)
Chris Mason39279cc2007-06-12 06:35:45 -04005127{
Al Viro496ad9a2013-01-23 17:07:38 -05005128 struct inode *inode = file_inode(filp);
Chris Mason39279cc2007-06-12 06:35:45 -04005129 struct btrfs_root *root = BTRFS_I(inode)->root;
5130 struct btrfs_item *item;
5131 struct btrfs_dir_item *di;
5132 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04005133 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04005134 struct btrfs_path *path;
Miao Xie16cdcec2011-04-22 18:12:22 +08005135 struct list_head ins_list;
5136 struct list_head del_list;
Chris Mason39279cc2007-06-12 06:35:45 -04005137 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04005138 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04005139 int slot;
Chris Mason39279cc2007-06-12 06:35:45 -04005140 unsigned char d_type;
5141 int over = 0;
5142 u32 di_cur;
5143 u32 di_total;
5144 u32 di_len;
5145 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04005146 char tmp_name[32];
5147 char *name_ptr;
5148 int name_len;
Miao Xie16cdcec2011-04-22 18:12:22 +08005149 int is_curr = 0; /* filp->f_pos points to the current index? */
Chris Mason39279cc2007-06-12 06:35:45 -04005150
5151 /* FIXME, use a real flag for deciding about the key type */
5152 if (root->fs_info->tree_root == root)
5153 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04005154
Chris Mason39544012007-12-12 14:38:19 -05005155 /* special case for "." */
5156 if (filp->f_pos == 0) {
Hidetoshi Seto3765fef2011-09-18 10:20:46 -04005157 over = filldir(dirent, ".", 1,
5158 filp->f_pos, btrfs_ino(inode), DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05005159 if (over)
5160 return 0;
5161 filp->f_pos = 1;
5162 }
Chris Mason39544012007-12-12 14:38:19 -05005163 /* special case for .., just use the back ref */
5164 if (filp->f_pos == 1) {
David Woodhouse5ecc7e52008-08-17 15:14:48 +01005165 u64 pino = parent_ino(filp->f_path.dentry);
Chris Mason39544012007-12-12 14:38:19 -05005166 over = filldir(dirent, "..", 2,
Hidetoshi Seto3765fef2011-09-18 10:20:46 -04005167 filp->f_pos, pino, DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05005168 if (over)
David Woodhouse49593bf2008-08-17 17:08:36 +01005169 return 0;
Chris Mason39544012007-12-12 14:38:19 -05005170 filp->f_pos = 2;
5171 }
David Woodhouse49593bf2008-08-17 17:08:36 +01005172 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08005173 if (!path)
5174 return -ENOMEM;
Chris Masonff5714c2011-05-28 07:00:39 -04005175
Josef Bacik026fd312011-05-13 10:32:11 -04005176 path->reada = 1;
David Woodhouse49593bf2008-08-17 17:08:36 +01005177
Miao Xie16cdcec2011-04-22 18:12:22 +08005178 if (key_type == BTRFS_DIR_INDEX_KEY) {
5179 INIT_LIST_HEAD(&ins_list);
5180 INIT_LIST_HEAD(&del_list);
5181 btrfs_get_delayed_items(inode, &ins_list, &del_list);
5182 }
5183
Chris Mason39279cc2007-06-12 06:35:45 -04005184 btrfs_set_key_type(&key, key_type);
5185 key.offset = filp->f_pos;
Li Zefan33345d012011-04-20 10:31:50 +08005186 key.objectid = btrfs_ino(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04005187
Chris Mason39279cc2007-06-12 06:35:45 -04005188 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5189 if (ret < 0)
5190 goto err;
David Woodhouse49593bf2008-08-17 17:08:36 +01005191
5192 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04005193 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -04005194 slot = path->slots[0];
Li Zefanb9e03af2011-03-23 10:43:58 +08005195 if (slot >= btrfs_header_nritems(leaf)) {
5196 ret = btrfs_next_leaf(root, path);
5197 if (ret < 0)
5198 goto err;
5199 else if (ret > 0)
5200 break;
5201 continue;
Chris Mason39279cc2007-06-12 06:35:45 -04005202 }
Chris Mason3de45862008-11-17 21:02:50 -05005203
Chris Mason5f39d392007-10-15 16:14:19 -04005204 item = btrfs_item_nr(leaf, slot);
5205 btrfs_item_key_to_cpu(leaf, &found_key, slot);
5206
5207 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04005208 break;
Chris Mason5f39d392007-10-15 16:14:19 -04005209 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04005210 break;
Chris Mason5f39d392007-10-15 16:14:19 -04005211 if (found_key.offset < filp->f_pos)
Li Zefanb9e03af2011-03-23 10:43:58 +08005212 goto next;
Miao Xie16cdcec2011-04-22 18:12:22 +08005213 if (key_type == BTRFS_DIR_INDEX_KEY &&
5214 btrfs_should_delete_dir_index(&del_list,
5215 found_key.offset))
5216 goto next;
Chris Mason5f39d392007-10-15 16:14:19 -04005217
5218 filp->f_pos = found_key.offset;
Miao Xie16cdcec2011-04-22 18:12:22 +08005219 is_curr = 1;
David Woodhouse49593bf2008-08-17 17:08:36 +01005220
Chris Mason39279cc2007-06-12 06:35:45 -04005221 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
5222 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04005223 di_total = btrfs_item_size(leaf, item);
David Woodhouse49593bf2008-08-17 17:08:36 +01005224
5225 while (di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04005226 struct btrfs_key location;
5227
Josef Bacik22a94d42011-03-16 16:47:17 -04005228 if (verify_dir_item(root, leaf, di))
5229 break;
5230
Chris Mason5f39d392007-10-15 16:14:19 -04005231 name_len = btrfs_dir_name_len(leaf, di);
David Woodhouse49593bf2008-08-17 17:08:36 +01005232 if (name_len <= sizeof(tmp_name)) {
Chris Mason5f39d392007-10-15 16:14:19 -04005233 name_ptr = tmp_name;
5234 } else {
5235 name_ptr = kmalloc(name_len, GFP_NOFS);
David Woodhouse49593bf2008-08-17 17:08:36 +01005236 if (!name_ptr) {
5237 ret = -ENOMEM;
5238 goto err;
5239 }
Chris Mason5f39d392007-10-15 16:14:19 -04005240 }
5241 read_extent_buffer(leaf, name_ptr,
5242 (unsigned long)(di + 1), name_len);
5243
5244 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
5245 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason3de45862008-11-17 21:02:50 -05005246
Josef Bacikb4aff1f2011-06-28 16:18:59 -04005247
Chris Mason3de45862008-11-17 21:02:50 -05005248 /* is this a reference to our own snapshot? If so
Arne Jansen8c9c2bf2012-02-25 09:09:30 +01005249 * skip it.
5250 *
5251 * In contrast to old kernels, we insert the snapshot's
5252 * dir item and dir index after it has been created, so
5253 * we won't find a reference to our own snapshot. We
5254 * still keep the following code for backward
5255 * compatibility.
Chris Mason3de45862008-11-17 21:02:50 -05005256 */
5257 if (location.type == BTRFS_ROOT_ITEM_KEY &&
5258 location.objectid == root->root_key.objectid) {
5259 over = 0;
5260 goto skip;
5261 }
Chris Mason5f39d392007-10-15 16:14:19 -04005262 over = filldir(dirent, name_ptr, name_len,
David Woodhouse49593bf2008-08-17 17:08:36 +01005263 found_key.offset, location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04005264 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04005265
Chris Mason3de45862008-11-17 21:02:50 -05005266skip:
Chris Mason5f39d392007-10-15 16:14:19 -04005267 if (name_ptr != tmp_name)
5268 kfree(name_ptr);
5269
Chris Mason39279cc2007-06-12 06:35:45 -04005270 if (over)
5271 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05005272 di_len = btrfs_dir_name_len(leaf, di) +
David Woodhouse49593bf2008-08-17 17:08:36 +01005273 btrfs_dir_data_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04005274 di_cur += di_len;
5275 di = (struct btrfs_dir_item *)((char *)di + di_len);
5276 }
Li Zefanb9e03af2011-03-23 10:43:58 +08005277next:
5278 path->slots[0]++;
Chris Mason39279cc2007-06-12 06:35:45 -04005279 }
David Woodhouse49593bf2008-08-17 17:08:36 +01005280
Miao Xie16cdcec2011-04-22 18:12:22 +08005281 if (key_type == BTRFS_DIR_INDEX_KEY) {
5282 if (is_curr)
5283 filp->f_pos++;
5284 ret = btrfs_readdir_delayed_dir_index(filp, dirent, filldir,
5285 &ins_list);
5286 if (ret)
5287 goto nopos;
5288 }
5289
David Woodhouse49593bf2008-08-17 17:08:36 +01005290 /* Reached end of directory/root. Bump pos past the last item. */
Yan Zheng5e591a02008-02-19 11:41:02 -05005291 if (key_type == BTRFS_DIR_INDEX_KEY)
Jan Engelhardt406266a2009-12-09 22:00:38 +00005292 /*
5293 * 32-bit glibc will use getdents64, but then strtol -
5294 * so the last number we can serve is this.
5295 */
5296 filp->f_pos = 0x7fffffff;
Yan Zheng5e591a02008-02-19 11:41:02 -05005297 else
5298 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04005299nopos:
5300 ret = 0;
5301err:
Miao Xie16cdcec2011-04-22 18:12:22 +08005302 if (key_type == BTRFS_DIR_INDEX_KEY)
5303 btrfs_put_delayed_items(&ins_list, &del_list);
Chris Mason39279cc2007-06-12 06:35:45 -04005304 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04005305 return ret;
5306}
5307
Christoph Hellwiga9185b42010-03-05 09:21:37 +01005308int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc)
Chris Mason39279cc2007-06-12 06:35:45 -04005309{
5310 struct btrfs_root *root = BTRFS_I(inode)->root;
5311 struct btrfs_trans_handle *trans;
5312 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04005313 bool nolock = false;
Chris Mason39279cc2007-06-12 06:35:45 -04005314
Josef Bacik72ac3c02012-05-23 14:13:11 -04005315 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Chris Mason4ca8b412008-08-05 13:30:48 -04005316 return 0;
5317
Liu Bo83eea1f2012-07-10 05:28:39 -06005318 if (btrfs_fs_closing(root->fs_info) && btrfs_is_free_space_inode(inode))
Li Zefan82d59022011-04-20 10:33:24 +08005319 nolock = true;
Josef Bacik0af3d002010-06-21 14:48:16 -04005320
Christoph Hellwiga9185b42010-03-05 09:21:37 +01005321 if (wbc->sync_mode == WB_SYNC_ALL) {
Josef Bacik0af3d002010-06-21 14:48:16 -04005322 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005323 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0af3d002010-06-21 14:48:16 -04005324 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005325 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005326 if (IS_ERR(trans))
5327 return PTR_ERR(trans);
Miao Xiea698d0752012-09-20 01:51:59 -06005328 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04005329 }
5330 return ret;
5331}
5332
5333/*
Chris Mason54aa1f42007-06-22 14:16:25 -04005334 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04005335 * inode changes. But, it is most likely to find the inode in cache.
5336 * FIXME, needs more benchmarking...there are no reasons other than performance
5337 * to keep or drop this code.
5338 */
Josef Bacik22c44fe2011-11-30 10:45:38 -05005339int btrfs_dirty_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04005340{
5341 struct btrfs_root *root = BTRFS_I(inode)->root;
5342 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005343 int ret;
5344
Josef Bacik72ac3c02012-05-23 14:13:11 -04005345 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Josef Bacik22c44fe2011-11-30 10:45:38 -05005346 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005347
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005348 trans = btrfs_join_transaction(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05005349 if (IS_ERR(trans))
5350 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005351
5352 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04005353 if (ret && ret == -ENOSPC) {
5354 /* whoops, lets try again with the full transaction */
5355 btrfs_end_transaction(trans, root);
5356 trans = btrfs_start_transaction(root, 1);
Josef Bacik22c44fe2011-11-30 10:45:38 -05005357 if (IS_ERR(trans))
5358 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005359
Chris Mason94b60442010-05-26 11:02:00 -04005360 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04005361 }
Chris Mason39279cc2007-06-12 06:35:45 -04005362 btrfs_end_transaction(trans, root);
Miao Xie16cdcec2011-04-22 18:12:22 +08005363 if (BTRFS_I(inode)->delayed_node)
5364 btrfs_balance_delayed_items(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05005365
5366 return ret;
5367}
5368
5369/*
5370 * This is a copy of file_update_time. We need this so we can return error on
5371 * ENOSPC for updating the inode in the case of file write and mmap writes.
5372 */
Josef Bacike41f9412012-03-26 09:46:47 -04005373static int btrfs_update_time(struct inode *inode, struct timespec *now,
5374 int flags)
Josef Bacik22c44fe2011-11-30 10:45:38 -05005375{
Alexander Block2bc5565282012-06-15 09:49:33 +02005376 struct btrfs_root *root = BTRFS_I(inode)->root;
5377
5378 if (btrfs_root_readonly(root))
5379 return -EROFS;
5380
Josef Bacike41f9412012-03-26 09:46:47 -04005381 if (flags & S_VERSION)
Josef Bacik22c44fe2011-11-30 10:45:38 -05005382 inode_inc_iversion(inode);
Josef Bacike41f9412012-03-26 09:46:47 -04005383 if (flags & S_CTIME)
5384 inode->i_ctime = *now;
5385 if (flags & S_MTIME)
5386 inode->i_mtime = *now;
5387 if (flags & S_ATIME)
5388 inode->i_atime = *now;
5389 return btrfs_dirty_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04005390}
5391
Chris Masond352ac62008-09-29 15:18:18 -04005392/*
5393 * find the highest existing sequence number in a directory
5394 * and then set the in-memory index_cnt variable to reflect
5395 * free sequence numbers
5396 */
Josef Bacikaec74772008-07-24 12:12:38 -04005397static int btrfs_set_inode_index_count(struct inode *inode)
5398{
5399 struct btrfs_root *root = BTRFS_I(inode)->root;
5400 struct btrfs_key key, found_key;
5401 struct btrfs_path *path;
5402 struct extent_buffer *leaf;
5403 int ret;
5404
Li Zefan33345d012011-04-20 10:31:50 +08005405 key.objectid = btrfs_ino(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04005406 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
5407 key.offset = (u64)-1;
5408
5409 path = btrfs_alloc_path();
5410 if (!path)
5411 return -ENOMEM;
5412
5413 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5414 if (ret < 0)
5415 goto out;
5416 /* FIXME: we should be able to handle this */
5417 if (ret == 0)
5418 goto out;
5419 ret = 0;
5420
5421 /*
5422 * MAGIC NUMBER EXPLANATION:
5423 * since we search a directory based on f_pos we have to start at 2
5424 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
5425 * else has to start at 2
5426 */
5427 if (path->slots[0] == 0) {
5428 BTRFS_I(inode)->index_cnt = 2;
5429 goto out;
5430 }
5431
5432 path->slots[0]--;
5433
5434 leaf = path->nodes[0];
5435 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5436
Li Zefan33345d012011-04-20 10:31:50 +08005437 if (found_key.objectid != btrfs_ino(inode) ||
Josef Bacikaec74772008-07-24 12:12:38 -04005438 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
5439 BTRFS_I(inode)->index_cnt = 2;
5440 goto out;
5441 }
5442
5443 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
5444out:
5445 btrfs_free_path(path);
5446 return ret;
5447}
5448
Chris Masond352ac62008-09-29 15:18:18 -04005449/*
5450 * helper to find a free sequence number in a given directory. This current
5451 * code is very simple, later versions will do smarter things in the btree
5452 */
Chris Mason3de45862008-11-17 21:02:50 -05005453int btrfs_set_inode_index(struct inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04005454{
5455 int ret = 0;
5456
5457 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
Miao Xie16cdcec2011-04-22 18:12:22 +08005458 ret = btrfs_inode_delayed_dir_index_count(dir);
5459 if (ret) {
5460 ret = btrfs_set_inode_index_count(dir);
5461 if (ret)
5462 return ret;
5463 }
Josef Bacikaec74772008-07-24 12:12:38 -04005464 }
5465
Chris Mason00e4e6b2008-08-05 11:18:09 -04005466 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04005467 BTRFS_I(dir)->index_cnt++;
5468
5469 return ret;
5470}
5471
Chris Mason39279cc2007-06-12 06:35:45 -04005472static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
5473 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04005474 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05005475 const char *name, int name_len,
Al Viro175a4eb2011-07-26 03:30:54 -04005476 u64 ref_objectid, u64 objectid,
5477 umode_t mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04005478{
5479 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04005480 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04005481 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04005482 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05005483 struct btrfs_inode_ref *ref;
5484 struct btrfs_key key[2];
5485 u32 sizes[2];
5486 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04005487 int ret;
5488 int owner;
5489
Chris Mason5f39d392007-10-15 16:14:19 -04005490 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07005491 if (!path)
5492 return ERR_PTR(-ENOMEM);
Chris Mason5f39d392007-10-15 16:14:19 -04005493
Chris Mason39279cc2007-06-12 06:35:45 -04005494 inode = new_inode(root->fs_info->sb);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00005495 if (!inode) {
5496 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04005497 return ERR_PTR(-ENOMEM);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00005498 }
Chris Mason39279cc2007-06-12 06:35:45 -04005499
Li Zefan581bb052011-04-20 10:06:11 +08005500 /*
5501 * we have to initialize this early, so we can reclaim the inode
5502 * number if we fail afterwards in this function.
5503 */
5504 inode->i_ino = objectid;
5505
Josef Bacikaec74772008-07-24 12:12:38 -04005506 if (dir) {
liubo1abe9b82011-03-24 11:18:59 +00005507 trace_btrfs_inode_request(dir);
5508
Chris Mason3de45862008-11-17 21:02:50 -05005509 ret = btrfs_set_inode_index(dir, index);
Shen Feng09771432009-04-02 16:46:06 -04005510 if (ret) {
Yoshinori Sano8fb27642011-04-09 02:30:07 +00005511 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04005512 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04005513 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04005514 }
Josef Bacikaec74772008-07-24 12:12:38 -04005515 }
5516 /*
5517 * index_cnt is ignored for everything but a dir,
5518 * btrfs_get_inode_index_count has an explanation for the magic
5519 * number
5520 */
5521 BTRFS_I(inode)->index_cnt = 2;
Chris Mason39279cc2007-06-12 06:35:45 -04005522 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04005523 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik76195852010-11-19 02:18:02 +00005524 inode->i_generation = BTRFS_I(inode)->generation;
Chris Masonb888db22007-08-27 16:49:44 -04005525
Josef Bacik5dc562c2012-08-17 13:14:17 -04005526 /*
5527 * We could have gotten an inode number from somebody who was fsynced
5528 * and then removed in this same transaction, so let's just set full
5529 * sync since it will be a full sync anyway and this will blow away the
5530 * old info in the log.
5531 */
5532 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
5533
Al Viro569254b2011-07-24 17:08:40 -04005534 if (S_ISDIR(mode))
Chris Mason39279cc2007-06-12 06:35:45 -04005535 owner = 0;
5536 else
5537 owner = 1;
Chris Mason9c583092008-01-29 15:15:18 -05005538
5539 key[0].objectid = objectid;
5540 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
5541 key[0].offset = 0;
5542
Mark Fashehf1863732012-08-08 11:32:27 -07005543 /*
5544 * Start new inodes with an inode_ref. This is slightly more
5545 * efficient for small numbers of hard links since they will
5546 * be packed into one item. Extended refs will kick in if we
5547 * add more hard links than can fit in the ref item.
5548 */
Chris Mason9c583092008-01-29 15:15:18 -05005549 key[1].objectid = objectid;
5550 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
5551 key[1].offset = ref_objectid;
5552
5553 sizes[0] = sizeof(struct btrfs_inode_item);
5554 sizes[1] = name_len + sizeof(*ref);
5555
Chris Masonb9473432009-03-13 11:00:37 -04005556 path->leave_spinning = 1;
Chris Mason9c583092008-01-29 15:15:18 -05005557 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
5558 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04005559 goto fail;
5560
Dmitry Monakhovecc11fab2010-03-04 17:31:47 +03005561 inode_init_owner(inode, dir, mode);
Yan Zhenga76a3cd2008-10-09 11:46:29 -04005562 inode_set_bytes(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04005563 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04005564 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
5565 struct btrfs_inode_item);
Li Zefan293f7e02012-07-10 00:58:58 -06005566 memset_extent_buffer(path->nodes[0], 0, (unsigned long)inode_item,
5567 sizeof(*inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04005568 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05005569
5570 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
5571 struct btrfs_inode_ref);
5572 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
Chris Mason00e4e6b2008-08-05 11:18:09 -04005573 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
Chris Mason9c583092008-01-29 15:15:18 -05005574 ptr = (unsigned long)(ref + 1);
5575 write_extent_buffer(path->nodes[0], name, ptr, name_len);
5576
Chris Mason5f39d392007-10-15 16:14:19 -04005577 btrfs_mark_buffer_dirty(path->nodes[0]);
5578 btrfs_free_path(path);
5579
Chris Mason39279cc2007-06-12 06:35:45 -04005580 location = &BTRFS_I(inode)->location;
5581 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04005582 location->offset = 0;
5583 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
5584
Christoph Hellwig6cbff002009-04-17 10:37:41 +02005585 btrfs_inherit_iflags(inode, dir);
5586
Al Viro569254b2011-07-24 17:08:40 -04005587 if (S_ISREG(mode)) {
Chris Mason94272162009-07-02 12:26:06 -04005588 if (btrfs_test_opt(root, NODATASUM))
5589 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
Liu Bo213490b2012-09-11 08:33:50 -06005590 if (btrfs_test_opt(root, NODATACOW))
Josef Bacikf2bdf9a2013-02-21 15:28:28 -05005591 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW |
5592 BTRFS_INODE_NODATASUM;
Chris Mason94272162009-07-02 12:26:06 -04005593 }
5594
Chris Mason39279cc2007-06-12 06:35:45 -04005595 insert_inode_hash(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005596 inode_tree_add(inode);
liubo1abe9b82011-03-24 11:18:59 +00005597
5598 trace_btrfs_inode_new(inode);
Chris Mason1973f0f2011-06-24 13:13:29 -04005599 btrfs_set_inode_last_trans(trans, inode);
liubo1abe9b82011-03-24 11:18:59 +00005600
Alexander Block8ea05e32012-07-25 17:35:53 +02005601 btrfs_update_root_times(trans, root);
5602
Chris Mason39279cc2007-06-12 06:35:45 -04005603 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04005604fail:
Josef Bacikaec74772008-07-24 12:12:38 -04005605 if (dir)
5606 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04005607 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04005608 iput(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04005609 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04005610}
5611
5612static inline u8 btrfs_inode_type(struct inode *inode)
5613{
5614 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
5615}
5616
Chris Masond352ac62008-09-29 15:18:18 -04005617/*
5618 * utility function to add 'inode' into 'parent_inode' with
5619 * a give name and a given sequence number.
5620 * if 'add_backref' is true, also insert a backref from the
5621 * inode to the parent directory.
5622 */
Chris Masone02119d2008-09-05 16:13:11 -04005623int btrfs_add_link(struct btrfs_trans_handle *trans,
5624 struct inode *parent_inode, struct inode *inode,
5625 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04005626{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005627 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005628 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04005629 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Li Zefan33345d012011-04-20 10:31:50 +08005630 u64 ino = btrfs_ino(inode);
5631 u64 parent_ino = btrfs_ino(parent_inode);
Chris Mason5f39d392007-10-15 16:14:19 -04005632
Li Zefan33345d012011-04-20 10:31:50 +08005633 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005634 memcpy(&key, &BTRFS_I(inode)->root->root_key, sizeof(key));
5635 } else {
Li Zefan33345d012011-04-20 10:31:50 +08005636 key.objectid = ino;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005637 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
5638 key.offset = 0;
5639 }
Chris Mason39279cc2007-06-12 06:35:45 -04005640
Li Zefan33345d012011-04-20 10:31:50 +08005641 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005642 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
5643 key.objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08005644 parent_ino, index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005645 } else if (add_backref) {
Li Zefan33345d012011-04-20 10:31:50 +08005646 ret = btrfs_insert_inode_ref(trans, root, name, name_len, ino,
5647 parent_ino, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005648 }
5649
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005650 /* Nothing to clean up yet */
5651 if (ret)
5652 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04005653
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005654 ret = btrfs_insert_dir_item(trans, root, name, name_len,
5655 parent_inode, &key,
5656 btrfs_inode_type(inode), index);
Chris Mason9c520572012-12-17 14:26:57 -05005657 if (ret == -EEXIST || ret == -EOVERFLOW)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005658 goto fail_dir_item;
5659 else if (ret) {
5660 btrfs_abort_transaction(trans, root, ret);
5661 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04005662 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005663
5664 btrfs_i_size_write(parent_inode, parent_inode->i_size +
5665 name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04005666 inode_inc_iversion(parent_inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005667 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
5668 ret = btrfs_update_inode(trans, root, parent_inode);
5669 if (ret)
5670 btrfs_abort_transaction(trans, root, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04005671 return ret;
Chris Masonfe66a052012-02-20 08:40:56 -05005672
5673fail_dir_item:
5674 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
5675 u64 local_index;
5676 int err;
5677 err = btrfs_del_root_ref(trans, root->fs_info->tree_root,
5678 key.objectid, root->root_key.objectid,
5679 parent_ino, &local_index, name, name_len);
5680
5681 } else if (add_backref) {
5682 u64 local_index;
5683 int err;
5684
5685 err = btrfs_del_inode_ref(trans, root, name, name_len,
5686 ino, parent_ino, &local_index);
5687 }
5688 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04005689}
5690
5691static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Josef Bacika1b075d2010-11-19 20:36:11 +00005692 struct inode *dir, struct dentry *dentry,
5693 struct inode *inode, int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04005694{
Josef Bacika1b075d2010-11-19 20:36:11 +00005695 int err = btrfs_add_link(trans, dir, inode,
5696 dentry->d_name.name, dentry->d_name.len,
5697 backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04005698 if (err > 0)
5699 err = -EEXIST;
5700 return err;
5701}
5702
Josef Bacik618e21d2007-07-11 10:18:17 -04005703static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -04005704 umode_t mode, dev_t rdev)
Josef Bacik618e21d2007-07-11 10:18:17 -04005705{
5706 struct btrfs_trans_handle *trans;
5707 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05005708 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04005709 int err;
5710 int drop_inode = 0;
5711 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005712 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04005713
5714 if (!new_valid_dev(rdev))
5715 return -EINVAL;
5716
Josef Bacik9ed74f22009-09-11 16:12:44 -04005717 /*
5718 * 2 for inode item and ref
5719 * 2 for dir items
5720 * 1 for xattr if selinux is on
5721 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04005722 trans = btrfs_start_transaction(root, 5);
5723 if (IS_ERR(trans))
5724 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05005725
Li Zefan581bb052011-04-20 10:06:11 +08005726 err = btrfs_find_free_ino(root, &objectid);
5727 if (err)
5728 goto out_unlock;
5729
Josef Bacikaec74772008-07-24 12:12:38 -04005730 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08005731 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04005732 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04005733 if (IS_ERR(inode)) {
5734 err = PTR_ERR(inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04005735 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04005736 }
Josef Bacik618e21d2007-07-11 10:18:17 -04005737
Eric Paris2a7dba32011-02-01 11:05:39 -05005738 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04005739 if (err) {
5740 drop_inode = 1;
5741 goto out_unlock;
5742 }
5743
Casey Schauflerad19db72011-12-15 10:09:07 -05005744 /*
5745 * If the active LSM wants to access the inode during
5746 * d_instantiate it needs these. Smack checks to see
5747 * if the filesystem supports xattrs by looking at the
5748 * ops vector.
5749 */
5750
5751 inode->i_op = &btrfs_special_inode_operations;
Josef Bacika1b075d2010-11-19 20:36:11 +00005752 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Josef Bacik618e21d2007-07-11 10:18:17 -04005753 if (err)
5754 drop_inode = 1;
5755 else {
Josef Bacik618e21d2007-07-11 10:18:17 -04005756 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04005757 btrfs_update_inode(trans, root, inode);
Al Viro08c422c2011-12-23 07:58:13 -05005758 d_instantiate(dentry, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04005759 }
Josef Bacik618e21d2007-07-11 10:18:17 -04005760out_unlock:
Josef Bacik7ad85bb2012-01-12 19:10:12 -05005761 btrfs_end_transaction(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00005762 btrfs_btree_balance_dirty(root);
Josef Bacik618e21d2007-07-11 10:18:17 -04005763 if (drop_inode) {
5764 inode_dec_link_count(inode);
5765 iput(inode);
5766 }
Josef Bacik618e21d2007-07-11 10:18:17 -04005767 return err;
5768}
5769
Chris Mason39279cc2007-06-12 06:35:45 -04005770static int btrfs_create(struct inode *dir, struct dentry *dentry,
Al Viroebfc3b42012-06-10 18:05:36 -04005771 umode_t mode, bool excl)
Chris Mason39279cc2007-06-12 06:35:45 -04005772{
5773 struct btrfs_trans_handle *trans;
5774 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05005775 struct inode *inode = NULL;
Filipe Brandenburger43baa572012-11-30 03:40:09 +00005776 int drop_inode_on_err = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04005777 int err;
Chris Mason39279cc2007-06-12 06:35:45 -04005778 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005779 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005780
Josef Bacik9ed74f22009-09-11 16:12:44 -04005781 /*
5782 * 2 for inode item and ref
5783 * 2 for dir items
5784 * 1 for xattr if selinux is on
5785 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04005786 trans = btrfs_start_transaction(root, 5);
5787 if (IS_ERR(trans))
5788 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04005789
Li Zefan581bb052011-04-20 10:06:11 +08005790 err = btrfs_find_free_ino(root, &objectid);
5791 if (err)
5792 goto out_unlock;
5793
Josef Bacikaec74772008-07-24 12:12:38 -04005794 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08005795 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04005796 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04005797 if (IS_ERR(inode)) {
5798 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04005799 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04005800 }
Filipe Brandenburger43baa572012-11-30 03:40:09 +00005801 drop_inode_on_err = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04005802
Eric Paris2a7dba32011-02-01 11:05:39 -05005803 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Filipe Brandenburger43baa572012-11-30 03:40:09 +00005804 if (err)
Josef Bacik33268ea2008-07-24 12:16:36 -04005805 goto out_unlock;
Josef Bacik33268ea2008-07-24 12:16:36 -04005806
Filipe Brandenburger9185aa52012-11-30 03:40:08 +00005807 err = btrfs_update_inode(trans, root, inode);
5808 if (err)
5809 goto out_unlock;
5810
Casey Schauflerad19db72011-12-15 10:09:07 -05005811 /*
5812 * If the active LSM wants to access the inode during
5813 * d_instantiate it needs these. Smack checks to see
5814 * if the filesystem supports xattrs by looking at the
5815 * ops vector.
5816 */
5817 inode->i_fop = &btrfs_file_operations;
5818 inode->i_op = &btrfs_file_inode_operations;
5819
Josef Bacika1b075d2010-11-19 20:36:11 +00005820 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04005821 if (err)
Filipe Brandenburger43baa572012-11-30 03:40:09 +00005822 goto out_unlock;
5823
5824 inode->i_mapping->a_ops = &btrfs_aops;
5825 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
5826 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
5827 d_instantiate(dentry, inode);
5828
Chris Mason39279cc2007-06-12 06:35:45 -04005829out_unlock:
Josef Bacik7ad85bb2012-01-12 19:10:12 -05005830 btrfs_end_transaction(trans, root);
Filipe Brandenburger43baa572012-11-30 03:40:09 +00005831 if (err && drop_inode_on_err) {
Chris Mason39279cc2007-06-12 06:35:45 -04005832 inode_dec_link_count(inode);
5833 iput(inode);
5834 }
Liu Bob53d3f52012-11-14 14:34:34 +00005835 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04005836 return err;
5837}
5838
5839static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
5840 struct dentry *dentry)
5841{
5842 struct btrfs_trans_handle *trans;
5843 struct btrfs_root *root = BTRFS_I(dir)->root;
5844 struct inode *inode = old_dentry->d_inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005845 u64 index;
Chris Mason39279cc2007-06-12 06:35:45 -04005846 int err;
5847 int drop_inode = 0;
5848
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00005849 /* do not allow sys_link's with other subvols of the same device */
5850 if (root->objectid != BTRFS_I(inode)->root->objectid)
Mark Fasheh3ab35642011-03-22 17:20:26 +00005851 return -EXDEV;
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00005852
Mark Fashehf1863732012-08-08 11:32:27 -07005853 if (inode->i_nlink >= BTRFS_LINK_MAX)
Al Viroc055e992011-03-04 17:15:18 +00005854 return -EMLINK;
Josef Bacik9ed74f22009-09-11 16:12:44 -04005855
Chris Mason3de45862008-11-17 21:02:50 -05005856 err = btrfs_set_inode_index(dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04005857 if (err)
5858 goto fail;
5859
Yan, Zhenga22285a2010-05-16 10:48:46 -04005860 /*
Miao Xie7e6b6462011-02-18 09:21:17 +00005861 * 2 items for inode and inode ref
Yan, Zhenga22285a2010-05-16 10:48:46 -04005862 * 2 items for dir items
Miao Xie7e6b6462011-02-18 09:21:17 +00005863 * 1 item for parent inode
Yan, Zhenga22285a2010-05-16 10:48:46 -04005864 */
Miao Xie7e6b6462011-02-18 09:21:17 +00005865 trans = btrfs_start_transaction(root, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005866 if (IS_ERR(trans)) {
5867 err = PTR_ERR(trans);
5868 goto fail;
5869 }
Chris Mason5f39d392007-10-15 16:14:19 -04005870
Miao Xie31534952011-04-13 13:19:21 +08005871 btrfs_inc_nlink(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04005872 inode_inc_iversion(inode);
Miao Xie31534952011-04-13 13:19:21 +08005873 inode->i_ctime = CURRENT_TIME;
Al Viro7de9c6ee2010-10-23 11:11:40 -04005874 ihold(inode);
Josef Bacike9976152012-10-11 15:53:56 -04005875 set_bit(BTRFS_INODE_COPY_EVERYTHING, &BTRFS_I(inode)->runtime_flags);
Josef Bacikaec74772008-07-24 12:12:38 -04005876
Josef Bacika1b075d2010-11-19 20:36:11 +00005877 err = btrfs_add_nondir(trans, dir, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04005878
Yan, Zhenga5719522009-09-24 09:17:31 -04005879 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04005880 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04005881 } else {
Al Viro10d9f302011-07-16 23:09:10 -04005882 struct dentry *parent = dentry->d_parent;
Yan, Zhenga5719522009-09-24 09:17:31 -04005883 err = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005884 if (err)
5885 goto fail;
Al Viro08c422c2011-12-23 07:58:13 -05005886 d_instantiate(dentry, inode);
Josef Bacik6a912212010-11-20 09:48:00 +00005887 btrfs_log_new_name(trans, inode, NULL, parent);
Yan, Zhenga5719522009-09-24 09:17:31 -04005888 }
Chris Mason39279cc2007-06-12 06:35:45 -04005889
Josef Bacik7ad85bb2012-01-12 19:10:12 -05005890 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05005891fail:
Chris Mason39279cc2007-06-12 06:35:45 -04005892 if (drop_inode) {
5893 inode_dec_link_count(inode);
5894 iput(inode);
5895 }
Liu Bob53d3f52012-11-14 14:34:34 +00005896 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04005897 return err;
5898}
5899
Al Viro18bb1db2011-07-26 01:41:39 -04005900static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Chris Mason39279cc2007-06-12 06:35:45 -04005901{
Chris Masonb9d86662008-05-02 16:13:49 -04005902 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04005903 struct btrfs_trans_handle *trans;
5904 struct btrfs_root *root = BTRFS_I(dir)->root;
5905 int err = 0;
5906 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04005907 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005908 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005909
Josef Bacik9ed74f22009-09-11 16:12:44 -04005910 /*
5911 * 2 items for inode and ref
5912 * 2 items for dir items
5913 * 1 for xattr if selinux is on
5914 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04005915 trans = btrfs_start_transaction(root, 5);
5916 if (IS_ERR(trans))
5917 return PTR_ERR(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04005918
Li Zefan581bb052011-04-20 10:06:11 +08005919 err = btrfs_find_free_ino(root, &objectid);
5920 if (err)
5921 goto out_fail;
5922
Josef Bacikaec74772008-07-24 12:12:38 -04005923 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08005924 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04005925 S_IFDIR | mode, &index);
Chris Mason39279cc2007-06-12 06:35:45 -04005926 if (IS_ERR(inode)) {
5927 err = PTR_ERR(inode);
5928 goto out_fail;
5929 }
Chris Mason5f39d392007-10-15 16:14:19 -04005930
Chris Mason39279cc2007-06-12 06:35:45 -04005931 drop_on_err = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -04005932
Eric Paris2a7dba32011-02-01 11:05:39 -05005933 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04005934 if (err)
5935 goto out_fail;
5936
Chris Mason39279cc2007-06-12 06:35:45 -04005937 inode->i_op = &btrfs_dir_inode_operations;
5938 inode->i_fop = &btrfs_dir_file_operations;
Chris Mason39279cc2007-06-12 06:35:45 -04005939
Chris Masondbe674a2008-07-17 12:54:05 -04005940 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04005941 err = btrfs_update_inode(trans, root, inode);
5942 if (err)
5943 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04005944
Josef Bacika1b075d2010-11-19 20:36:11 +00005945 err = btrfs_add_link(trans, dir, inode, dentry->d_name.name,
5946 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04005947 if (err)
5948 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04005949
Chris Mason39279cc2007-06-12 06:35:45 -04005950 d_instantiate(dentry, inode);
5951 drop_on_err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005952
5953out_fail:
Josef Bacik7ad85bb2012-01-12 19:10:12 -05005954 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04005955 if (drop_on_err)
5956 iput(inode);
Liu Bob53d3f52012-11-14 14:34:34 +00005957 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04005958 return err;
5959}
5960
Chris Masond352ac62008-09-29 15:18:18 -04005961/* helper for btfs_get_extent. Given an existing extent in the tree,
5962 * and an extent that you want to insert, deal with overlap and insert
5963 * the new extent into the tree.
5964 */
Chris Mason3b951512008-04-17 11:29:12 -04005965static int merge_extent_mapping(struct extent_map_tree *em_tree,
5966 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005967 struct extent_map *em,
5968 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04005969{
5970 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04005971
Chris Masone6dcd2d2008-07-17 12:53:50 -04005972 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
5973 start_diff = map_start - em->start;
5974 em->start = map_start;
5975 em->len = map_len;
Chris Masonc8b97812008-10-29 14:49:59 -04005976 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
5977 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04005978 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04005979 em->block_len -= start_diff;
5980 }
Josef Bacik09a2a8f92013-04-05 16:51:15 -04005981 return add_extent_mapping(em_tree, em, 0);
Chris Mason3b951512008-04-17 11:29:12 -04005982}
5983
Chris Masonc8b97812008-10-29 14:49:59 -04005984static noinline int uncompress_inline(struct btrfs_path *path,
5985 struct inode *inode, struct page *page,
5986 size_t pg_offset, u64 extent_offset,
5987 struct btrfs_file_extent_item *item)
5988{
5989 int ret;
5990 struct extent_buffer *leaf = path->nodes[0];
5991 char *tmp;
5992 size_t max_size;
5993 unsigned long inline_size;
5994 unsigned long ptr;
Li Zefan261507a02010-12-17 14:21:50 +08005995 int compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04005996
5997 WARN_ON(pg_offset != 0);
Li Zefan261507a02010-12-17 14:21:50 +08005998 compress_type = btrfs_file_extent_compression(leaf, item);
Chris Masonc8b97812008-10-29 14:49:59 -04005999 max_size = btrfs_file_extent_ram_bytes(leaf, item);
6000 inline_size = btrfs_file_extent_inline_item_len(leaf,
6001 btrfs_item_nr(leaf, path->slots[0]));
6002 tmp = kmalloc(inline_size, GFP_NOFS);
Tsutomu Itoh8d413712011-04-25 19:43:52 -04006003 if (!tmp)
6004 return -ENOMEM;
Chris Masonc8b97812008-10-29 14:49:59 -04006005 ptr = btrfs_file_extent_inline_start(item);
6006
6007 read_extent_buffer(leaf, tmp, ptr, inline_size);
6008
Chris Mason5b050f02008-11-11 09:34:41 -05006009 max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size);
Li Zefan261507a02010-12-17 14:21:50 +08006010 ret = btrfs_decompress(compress_type, tmp, page,
6011 extent_offset, inline_size, max_size);
Chris Masonc8b97812008-10-29 14:49:59 -04006012 if (ret) {
Cong Wang7ac687d2011-11-25 23:14:28 +08006013 char *kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04006014 unsigned long copy_size = min_t(u64,
6015 PAGE_CACHE_SIZE - pg_offset,
6016 max_size - extent_offset);
6017 memset(kaddr + pg_offset, 0, copy_size);
Cong Wang7ac687d2011-11-25 23:14:28 +08006018 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -04006019 }
6020 kfree(tmp);
6021 return 0;
6022}
6023
Chris Masond352ac62008-09-29 15:18:18 -04006024/*
6025 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05006026 * the ugly parts come from merging extents from the disk with the in-ram
6027 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04006028 * where the in-ram extents might be locked pending data=ordered completion.
6029 *
6030 * This also copies inline extents directly into the page.
6031 */
Chris Masond3977122009-01-05 21:25:51 -05006032
Chris Masona52d9a82007-08-27 16:49:44 -04006033struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05006034 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04006035 int create)
6036{
6037 int ret;
6038 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04006039 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04006040 u64 extent_start = 0;
6041 u64 extent_end = 0;
Li Zefan33345d012011-04-20 10:31:50 +08006042 u64 objectid = btrfs_ino(inode);
Chris Masona52d9a82007-08-27 16:49:44 -04006043 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04006044 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04006045 struct btrfs_root *root = BTRFS_I(inode)->root;
6046 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04006047 struct extent_buffer *leaf;
6048 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04006049 struct extent_map *em = NULL;
6050 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05006051 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04006052 struct btrfs_trans_handle *trans = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08006053 int compress_type;
Chris Masona52d9a82007-08-27 16:49:44 -04006054
Chris Masona52d9a82007-08-27 16:49:44 -04006055again:
Chris Mason890871b2009-09-02 16:24:52 -04006056 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05006057 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04006058 if (em)
6059 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04006060 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05006061
Chris Masona52d9a82007-08-27 16:49:44 -04006062 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04006063 if (em->start > start || em->start + em->len <= start)
6064 free_extent_map(em);
6065 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05006066 free_extent_map(em);
6067 else
6068 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006069 }
David Sterba172ddd62011-04-21 00:48:27 +02006070 em = alloc_extent_map();
Chris Masona52d9a82007-08-27 16:49:44 -04006071 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05006072 err = -ENOMEM;
6073 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006074 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006075 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05006076 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05006077 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05006078 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04006079 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04006080
6081 if (!path) {
6082 path = btrfs_alloc_path();
Josef Bacik026fd312011-05-13 10:32:11 -04006083 if (!path) {
6084 err = -ENOMEM;
6085 goto out;
6086 }
6087 /*
6088 * Chances are we'll be called again, so go ahead and do
6089 * readahead
6090 */
6091 path->reada = 1;
Chris Masonf4219502008-07-22 11:18:09 -04006092 }
6093
Chris Mason179e29e2007-11-01 11:28:41 -04006094 ret = btrfs_lookup_file_extent(trans, root, path,
6095 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04006096 if (ret < 0) {
6097 err = ret;
6098 goto out;
6099 }
6100
6101 if (ret != 0) {
6102 if (path->slots[0] == 0)
6103 goto not_found;
6104 path->slots[0]--;
6105 }
6106
Chris Mason5f39d392007-10-15 16:14:19 -04006107 leaf = path->nodes[0];
6108 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04006109 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04006110 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04006111 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6112 found_type = btrfs_key_type(&found_key);
6113 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04006114 found_type != BTRFS_EXTENT_DATA_KEY) {
6115 goto not_found;
6116 }
6117
Chris Mason5f39d392007-10-15 16:14:19 -04006118 found_type = btrfs_file_extent_type(leaf, item);
6119 extent_start = found_key.offset;
Li Zefan261507a02010-12-17 14:21:50 +08006120 compress_type = btrfs_file_extent_compression(leaf, item);
Yan Zhengd899e052008-10-30 14:25:28 -04006121 if (found_type == BTRFS_FILE_EXTENT_REG ||
6122 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04006123 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04006124 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04006125 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
6126 size_t size;
6127 size = btrfs_file_extent_inline_len(leaf, item);
Qu Wenruofda28322013-02-26 08:10:22 +00006128 extent_end = ALIGN(extent_start + size, root->sectorsize);
Yan Zheng9036c102008-10-30 14:19:41 -04006129 }
6130
6131 if (start >= extent_end) {
6132 path->slots[0]++;
6133 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
6134 ret = btrfs_next_leaf(root, path);
6135 if (ret < 0) {
6136 err = ret;
6137 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04006138 }
Yan Zheng9036c102008-10-30 14:19:41 -04006139 if (ret > 0)
6140 goto not_found;
6141 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04006142 }
Yan Zheng9036c102008-10-30 14:19:41 -04006143 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6144 if (found_key.objectid != objectid ||
6145 found_key.type != BTRFS_EXTENT_DATA_KEY)
6146 goto not_found;
6147 if (start + len <= found_key.offset)
6148 goto not_found;
6149 em->start = start;
Josef Bacik70c8a912012-10-11 16:54:30 -04006150 em->orig_start = start;
Yan Zheng9036c102008-10-30 14:19:41 -04006151 em->len = found_key.offset - start;
6152 goto not_found_em;
6153 }
6154
Josef Bacikcc95bef2013-04-04 14:31:27 -04006155 em->ram_bytes = btrfs_file_extent_ram_bytes(leaf, item);
Yan Zhengd899e052008-10-30 14:25:28 -04006156 if (found_type == BTRFS_FILE_EXTENT_REG ||
6157 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng9036c102008-10-30 14:19:41 -04006158 em->start = extent_start;
6159 em->len = extent_end - extent_start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -05006160 em->orig_start = extent_start -
6161 btrfs_file_extent_offset(leaf, item);
Josef Bacikb4939682012-12-03 10:31:19 -05006162 em->orig_block_len = btrfs_file_extent_disk_num_bytes(leaf,
6163 item);
Chris Masondb945352007-10-15 16:15:53 -04006164 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
6165 if (bytenr == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04006166 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04006167 goto insert;
6168 }
Li Zefan261507a02010-12-17 14:21:50 +08006169 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04006170 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08006171 em->compress_type = compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04006172 em->block_start = bytenr;
Josef Bacikb4939682012-12-03 10:31:19 -05006173 em->block_len = em->orig_block_len;
Chris Masonc8b97812008-10-29 14:49:59 -04006174 } else {
6175 bytenr += btrfs_file_extent_offset(leaf, item);
6176 em->block_start = bytenr;
6177 em->block_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04006178 if (found_type == BTRFS_FILE_EXTENT_PREALLOC)
6179 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -04006180 }
Chris Masona52d9a82007-08-27 16:49:44 -04006181 goto insert;
6182 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04006183 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04006184 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04006185 size_t size;
6186 size_t extent_offset;
6187 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04006188
Chris Masona52d9a82007-08-27 16:49:44 -04006189 em->block_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04006190 if (!page || create) {
Yan689f9342007-10-29 11:41:07 -04006191 em->start = extent_start;
Yan Zheng9036c102008-10-30 14:19:41 -04006192 em->len = extent_end - extent_start;
Yan689f9342007-10-29 11:41:07 -04006193 goto out;
6194 }
6195
Yan Zheng9036c102008-10-30 14:19:41 -04006196 size = btrfs_file_extent_inline_len(leaf, item);
6197 extent_offset = page_offset(page) + pg_offset - extent_start;
Chris Mason70dec802008-01-29 09:59:12 -05006198 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04006199 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04006200 em->start = extent_start + extent_offset;
Qu Wenruofda28322013-02-26 08:10:22 +00006201 em->len = ALIGN(copy_size, root->sectorsize);
Josef Bacikb4939682012-12-03 10:31:19 -05006202 em->orig_block_len = em->len;
Josef Bacik70c8a912012-10-11 16:54:30 -04006203 em->orig_start = em->start;
Li Zefan261507a02010-12-17 14:21:50 +08006204 if (compress_type) {
Chris Masonc8b97812008-10-29 14:49:59 -04006205 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08006206 em->compress_type = compress_type;
6207 }
Yan689f9342007-10-29 11:41:07 -04006208 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04006209 if (create == 0 && !PageUptodate(page)) {
Li Zefan261507a02010-12-17 14:21:50 +08006210 if (btrfs_file_extent_compression(leaf, item) !=
6211 BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04006212 ret = uncompress_inline(path, inode, page,
6213 pg_offset,
6214 extent_offset, item);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006215 BUG_ON(ret); /* -ENOMEM */
Chris Masonc8b97812008-10-29 14:49:59 -04006216 } else {
6217 map = kmap(page);
6218 read_extent_buffer(leaf, map + pg_offset, ptr,
6219 copy_size);
Chris Mason93c82d52009-09-11 12:36:29 -04006220 if (pg_offset + copy_size < PAGE_CACHE_SIZE) {
6221 memset(map + pg_offset + copy_size, 0,
6222 PAGE_CACHE_SIZE - pg_offset -
6223 copy_size);
6224 }
Chris Masonc8b97812008-10-29 14:49:59 -04006225 kunmap(page);
6226 }
Chris Mason179e29e2007-11-01 11:28:41 -04006227 flush_dcache_page(page);
6228 } else if (create && PageUptodate(page)) {
Jan Schmidt6bf7e082011-12-01 14:35:19 +01006229 BUG();
Chris Mason179e29e2007-11-01 11:28:41 -04006230 if (!trans) {
6231 kunmap(page);
6232 free_extent_map(em);
6233 em = NULL;
Chris Masonff5714c2011-05-28 07:00:39 -04006234
David Sterbab3b4aa72011-04-21 01:20:15 +02006235 btrfs_release_path(path);
Josef Bacik7a7eaa42011-04-13 12:54:33 -04006236 trans = btrfs_join_transaction(root);
Chris Masonff5714c2011-05-28 07:00:39 -04006237
Tsutomu Itoh3612b492011-01-25 02:51:38 +00006238 if (IS_ERR(trans))
6239 return ERR_CAST(trans);
Chris Mason179e29e2007-11-01 11:28:41 -04006240 goto again;
6241 }
Chris Masonc8b97812008-10-29 14:49:59 -04006242 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05006243 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04006244 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04006245 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04006246 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04006247 }
Chris Masond1310b22008-01-24 16:13:08 -05006248 set_extent_uptodate(io_tree, em->start,
Arne Jansen507903b2011-04-06 10:02:20 +00006249 extent_map_end(em) - 1, NULL, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04006250 goto insert;
6251 } else {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00006252 WARN(1, KERN_ERR "btrfs unknown found_type %d\n", found_type);
Chris Masona52d9a82007-08-27 16:49:44 -04006253 }
6254not_found:
6255 em->start = start;
Josef Bacik70c8a912012-10-11 16:54:30 -04006256 em->orig_start = start;
Chris Masond1310b22008-01-24 16:13:08 -05006257 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04006258not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04006259 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04006260 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04006261insert:
David Sterbab3b4aa72011-04-21 01:20:15 +02006262 btrfs_release_path(path);
Chris Masond1310b22008-01-24 16:13:08 -05006263 if (em->start > start || extent_map_end(em) <= start) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006264 btrfs_err(root->fs_info, "bad extent! em: [%llu %llu] passed [%llu %llu]",
6265 (unsigned long long)em->start,
6266 (unsigned long long)em->len,
6267 (unsigned long long)start,
6268 (unsigned long long)len);
Chris Masona52d9a82007-08-27 16:49:44 -04006269 err = -EIO;
6270 goto out;
6271 }
Chris Masond1310b22008-01-24 16:13:08 -05006272
6273 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04006274 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04006275 ret = add_extent_mapping(em_tree, em, 0);
Chris Mason3b951512008-04-17 11:29:12 -04006276 /* it is possible that someone inserted the extent into the tree
6277 * while we had the lock dropped. It is also possible that
6278 * an overlapping map exists in the tree
6279 */
Chris Masona52d9a82007-08-27 16:49:44 -04006280 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04006281 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006282
6283 ret = 0;
6284
Chris Mason3b951512008-04-17 11:29:12 -04006285 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04006286 if (existing && (existing->start > start ||
6287 existing->start + existing->len <= start)) {
6288 free_extent_map(existing);
6289 existing = NULL;
6290 }
Chris Mason3b951512008-04-17 11:29:12 -04006291 if (!existing) {
6292 existing = lookup_extent_mapping(em_tree, em->start,
6293 em->len);
6294 if (existing) {
6295 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04006296 em, start,
6297 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04006298 free_extent_map(existing);
6299 if (err) {
6300 free_extent_map(em);
6301 em = NULL;
6302 }
6303 } else {
6304 err = -EIO;
Chris Mason3b951512008-04-17 11:29:12 -04006305 free_extent_map(em);
6306 em = NULL;
6307 }
6308 } else {
6309 free_extent_map(em);
6310 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006311 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04006312 }
Chris Masona52d9a82007-08-27 16:49:44 -04006313 }
Chris Mason890871b2009-09-02 16:24:52 -04006314 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04006315out:
liubo1abe9b82011-03-24 11:18:59 +00006316
Tsutomu Itohf0bd95e2012-10-01 03:08:37 -06006317 if (em)
6318 trace_btrfs_get_extent(root, em);
liubo1abe9b82011-03-24 11:18:59 +00006319
Chris Masonf4219502008-07-22 11:18:09 -04006320 if (path)
6321 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04006322 if (trans) {
6323 ret = btrfs_end_transaction(trans, root);
Chris Masond3977122009-01-05 21:25:51 -05006324 if (!err)
Chris Masona52d9a82007-08-27 16:49:44 -04006325 err = ret;
6326 }
Chris Masona52d9a82007-08-27 16:49:44 -04006327 if (err) {
6328 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04006329 return ERR_PTR(err);
6330 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006331 BUG_ON(!em); /* Error is always set */
Chris Masona52d9a82007-08-27 16:49:44 -04006332 return em;
6333}
6334
Chris Masonec29ed52011-02-23 16:23:20 -05006335struct extent_map *btrfs_get_extent_fiemap(struct inode *inode, struct page *page,
6336 size_t pg_offset, u64 start, u64 len,
6337 int create)
6338{
6339 struct extent_map *em;
6340 struct extent_map *hole_em = NULL;
6341 u64 range_start = start;
6342 u64 end;
6343 u64 found;
6344 u64 found_end;
6345 int err = 0;
6346
6347 em = btrfs_get_extent(inode, page, pg_offset, start, len, create);
6348 if (IS_ERR(em))
6349 return em;
6350 if (em) {
6351 /*
Liu Bof9e4fb52013-01-07 10:10:12 +00006352 * if our em maps to
6353 * - a hole or
6354 * - a pre-alloc extent,
6355 * there might actually be delalloc bytes behind it.
Chris Masonec29ed52011-02-23 16:23:20 -05006356 */
Liu Bof9e4fb52013-01-07 10:10:12 +00006357 if (em->block_start != EXTENT_MAP_HOLE &&
6358 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
Chris Masonec29ed52011-02-23 16:23:20 -05006359 return em;
6360 else
6361 hole_em = em;
6362 }
6363
6364 /* check to see if we've wrapped (len == -1 or similar) */
6365 end = start + len;
6366 if (end < start)
6367 end = (u64)-1;
6368 else
6369 end -= 1;
6370
6371 em = NULL;
6372
6373 /* ok, we didn't find anything, lets look for delalloc */
6374 found = count_range_bits(&BTRFS_I(inode)->io_tree, &range_start,
6375 end, len, EXTENT_DELALLOC, 1);
6376 found_end = range_start + found;
6377 if (found_end < range_start)
6378 found_end = (u64)-1;
6379
6380 /*
6381 * we didn't find anything useful, return
6382 * the original results from get_extent()
6383 */
6384 if (range_start > end || found_end <= start) {
6385 em = hole_em;
6386 hole_em = NULL;
6387 goto out;
6388 }
6389
6390 /* adjust the range_start to make sure it doesn't
6391 * go backwards from the start they passed in
6392 */
6393 range_start = max(start,range_start);
6394 found = found_end - range_start;
6395
6396 if (found > 0) {
6397 u64 hole_start = start;
6398 u64 hole_len = len;
6399
David Sterba172ddd62011-04-21 00:48:27 +02006400 em = alloc_extent_map();
Chris Masonec29ed52011-02-23 16:23:20 -05006401 if (!em) {
6402 err = -ENOMEM;
6403 goto out;
6404 }
6405 /*
6406 * when btrfs_get_extent can't find anything it
6407 * returns one huge hole
6408 *
6409 * make sure what it found really fits our range, and
6410 * adjust to make sure it is based on the start from
6411 * the caller
6412 */
6413 if (hole_em) {
6414 u64 calc_end = extent_map_end(hole_em);
6415
6416 if (calc_end <= start || (hole_em->start > end)) {
6417 free_extent_map(hole_em);
6418 hole_em = NULL;
6419 } else {
6420 hole_start = max(hole_em->start, start);
6421 hole_len = calc_end - hole_start;
6422 }
6423 }
6424 em->bdev = NULL;
6425 if (hole_em && range_start > hole_start) {
6426 /* our hole starts before our delalloc, so we
6427 * have to return just the parts of the hole
6428 * that go until the delalloc starts
6429 */
6430 em->len = min(hole_len,
6431 range_start - hole_start);
6432 em->start = hole_start;
6433 em->orig_start = hole_start;
6434 /*
6435 * don't adjust block start at all,
6436 * it is fixed at EXTENT_MAP_HOLE
6437 */
6438 em->block_start = hole_em->block_start;
6439 em->block_len = hole_len;
Liu Bof9e4fb52013-01-07 10:10:12 +00006440 if (test_bit(EXTENT_FLAG_PREALLOC, &hole_em->flags))
6441 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonec29ed52011-02-23 16:23:20 -05006442 } else {
6443 em->start = range_start;
6444 em->len = found;
6445 em->orig_start = range_start;
6446 em->block_start = EXTENT_MAP_DELALLOC;
6447 em->block_len = found;
6448 }
6449 } else if (hole_em) {
6450 return hole_em;
6451 }
6452out:
6453
6454 free_extent_map(hole_em);
6455 if (err) {
6456 free_extent_map(em);
6457 return ERR_PTR(err);
6458 }
6459 return em;
6460}
6461
Josef Bacik4b46fce2010-05-23 11:00:55 -04006462static struct extent_map *btrfs_new_extent_direct(struct inode *inode,
6463 u64 start, u64 len)
6464{
6465 struct btrfs_root *root = BTRFS_I(inode)->root;
6466 struct btrfs_trans_handle *trans;
Josef Bacik70c8a912012-10-11 16:54:30 -04006467 struct extent_map *em;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006468 struct btrfs_key ins;
6469 u64 alloc_hint;
6470 int ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006471
Josef Bacik7a7eaa42011-04-13 12:54:33 -04006472 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00006473 if (IS_ERR(trans))
6474 return ERR_CAST(trans);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006475
6476 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
6477
6478 alloc_hint = get_extent_allocation_hint(inode, start, len);
6479 ret = btrfs_reserve_extent(trans, root, len, root->sectorsize, 0,
Josef Bacik81c9ad22012-01-18 10:56:06 -05006480 alloc_hint, &ins, 1);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006481 if (ret) {
6482 em = ERR_PTR(ret);
6483 goto out;
6484 }
6485
Josef Bacik70c8a912012-10-11 16:54:30 -04006486 em = create_pinned_em(inode, start, ins.offset, start, ins.objectid,
Josef Bacikcc95bef2013-04-04 14:31:27 -04006487 ins.offset, ins.offset, ins.offset, 0);
Josef Bacik70c8a912012-10-11 16:54:30 -04006488 if (IS_ERR(em))
6489 goto out;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006490
6491 ret = btrfs_add_ordered_extent_dio(inode, start, ins.objectid,
6492 ins.offset, ins.offset, 0);
6493 if (ret) {
6494 btrfs_free_reserved_extent(root, ins.objectid, ins.offset);
6495 em = ERR_PTR(ret);
6496 }
6497out:
6498 btrfs_end_transaction(trans, root);
6499 return em;
6500}
6501
Chris Mason46bfbb52010-05-26 11:04:10 -04006502/*
6503 * returns 1 when the nocow is safe, < 1 on error, 0 if the
6504 * block must be cow'd
6505 */
6506static noinline int can_nocow_odirect(struct btrfs_trans_handle *trans,
6507 struct inode *inode, u64 offset, u64 len)
6508{
6509 struct btrfs_path *path;
6510 int ret;
6511 struct extent_buffer *leaf;
6512 struct btrfs_root *root = BTRFS_I(inode)->root;
6513 struct btrfs_file_extent_item *fi;
6514 struct btrfs_key key;
6515 u64 disk_bytenr;
6516 u64 backref_offset;
6517 u64 extent_end;
6518 u64 num_bytes;
6519 int slot;
6520 int found_type;
6521
6522 path = btrfs_alloc_path();
6523 if (!path)
6524 return -ENOMEM;
6525
Li Zefan33345d012011-04-20 10:31:50 +08006526 ret = btrfs_lookup_file_extent(trans, root, path, btrfs_ino(inode),
Chris Mason46bfbb52010-05-26 11:04:10 -04006527 offset, 0);
6528 if (ret < 0)
6529 goto out;
6530
6531 slot = path->slots[0];
6532 if (ret == 1) {
6533 if (slot == 0) {
6534 /* can't find the item, must cow */
6535 ret = 0;
6536 goto out;
6537 }
6538 slot--;
6539 }
6540 ret = 0;
6541 leaf = path->nodes[0];
6542 btrfs_item_key_to_cpu(leaf, &key, slot);
Li Zefan33345d012011-04-20 10:31:50 +08006543 if (key.objectid != btrfs_ino(inode) ||
Chris Mason46bfbb52010-05-26 11:04:10 -04006544 key.type != BTRFS_EXTENT_DATA_KEY) {
6545 /* not our file or wrong item type, must cow */
6546 goto out;
6547 }
6548
6549 if (key.offset > offset) {
6550 /* Wrong offset, must cow */
6551 goto out;
6552 }
6553
6554 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
6555 found_type = btrfs_file_extent_type(leaf, fi);
6556 if (found_type != BTRFS_FILE_EXTENT_REG &&
6557 found_type != BTRFS_FILE_EXTENT_PREALLOC) {
6558 /* not a regular extent, must cow */
6559 goto out;
6560 }
6561 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
6562 backref_offset = btrfs_file_extent_offset(leaf, fi);
6563
6564 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
6565 if (extent_end < offset + len) {
6566 /* extent doesn't include our full range, must cow */
6567 goto out;
6568 }
6569
6570 if (btrfs_extent_readonly(root, disk_bytenr))
6571 goto out;
6572
6573 /*
6574 * look for other files referencing this extent, if we
6575 * find any we must cow
6576 */
Li Zefan33345d012011-04-20 10:31:50 +08006577 if (btrfs_cross_ref_exist(trans, root, btrfs_ino(inode),
Chris Mason46bfbb52010-05-26 11:04:10 -04006578 key.offset - backref_offset, disk_bytenr))
6579 goto out;
6580
6581 /*
6582 * adjust disk_bytenr and num_bytes to cover just the bytes
6583 * in this extent we are about to write. If there
6584 * are any csums in that range we have to cow in order
6585 * to keep the csums correct
6586 */
6587 disk_bytenr += backref_offset;
6588 disk_bytenr += offset - key.offset;
6589 num_bytes = min(offset + len, extent_end) - offset;
6590 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
6591 goto out;
6592 /*
6593 * all of the above have passed, it is safe to overwrite this extent
6594 * without cow
6595 */
6596 ret = 1;
6597out:
6598 btrfs_free_path(path);
6599 return ret;
6600}
6601
Josef Bacikeb838e72012-07-31 16:28:48 -04006602static int lock_extent_direct(struct inode *inode, u64 lockstart, u64 lockend,
6603 struct extent_state **cached_state, int writing)
6604{
6605 struct btrfs_ordered_extent *ordered;
6606 int ret = 0;
6607
6608 while (1) {
6609 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6610 0, cached_state);
6611 /*
6612 * We're concerned with the entire range that we're going to be
6613 * doing DIO to, so we need to make sure theres no ordered
6614 * extents in this range.
6615 */
6616 ordered = btrfs_lookup_ordered_range(inode, lockstart,
6617 lockend - lockstart + 1);
6618
6619 /*
6620 * We need to make sure there are no buffered pages in this
6621 * range either, we could have raced between the invalidate in
6622 * generic_file_direct_write and locking the extent. The
6623 * invalidate needs to happen so that reads after a write do not
6624 * get stale data.
6625 */
6626 if (!ordered && (!writing ||
6627 !test_range_bit(&BTRFS_I(inode)->io_tree,
6628 lockstart, lockend, EXTENT_UPTODATE, 0,
6629 *cached_state)))
6630 break;
6631
6632 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6633 cached_state, GFP_NOFS);
6634
6635 if (ordered) {
6636 btrfs_start_ordered_extent(inode, ordered, 1);
6637 btrfs_put_ordered_extent(ordered);
6638 } else {
6639 /* Screw you mmap */
6640 ret = filemap_write_and_wait_range(inode->i_mapping,
6641 lockstart,
6642 lockend);
6643 if (ret)
6644 break;
6645
6646 /*
6647 * If we found a page that couldn't be invalidated just
6648 * fall back to buffered.
6649 */
6650 ret = invalidate_inode_pages2_range(inode->i_mapping,
6651 lockstart >> PAGE_CACHE_SHIFT,
6652 lockend >> PAGE_CACHE_SHIFT);
6653 if (ret)
6654 break;
6655 }
6656
6657 cond_resched();
6658 }
6659
6660 return ret;
6661}
6662
Josef Bacik69ffb542012-09-11 15:40:07 -04006663static struct extent_map *create_pinned_em(struct inode *inode, u64 start,
6664 u64 len, u64 orig_start,
6665 u64 block_start, u64 block_len,
Josef Bacikcc95bef2013-04-04 14:31:27 -04006666 u64 orig_block_len, u64 ram_bytes,
6667 int type)
Josef Bacik69ffb542012-09-11 15:40:07 -04006668{
6669 struct extent_map_tree *em_tree;
6670 struct extent_map *em;
6671 struct btrfs_root *root = BTRFS_I(inode)->root;
6672 int ret;
6673
6674 em_tree = &BTRFS_I(inode)->extent_tree;
6675 em = alloc_extent_map();
6676 if (!em)
6677 return ERR_PTR(-ENOMEM);
6678
6679 em->start = start;
6680 em->orig_start = orig_start;
Josef Bacik2ab28f32012-10-12 15:27:49 -04006681 em->mod_start = start;
6682 em->mod_len = len;
Josef Bacik69ffb542012-09-11 15:40:07 -04006683 em->len = len;
6684 em->block_len = block_len;
6685 em->block_start = block_start;
6686 em->bdev = root->fs_info->fs_devices->latest_bdev;
Josef Bacikb4939682012-12-03 10:31:19 -05006687 em->orig_block_len = orig_block_len;
Josef Bacikcc95bef2013-04-04 14:31:27 -04006688 em->ram_bytes = ram_bytes;
Josef Bacik70c8a912012-10-11 16:54:30 -04006689 em->generation = -1;
Josef Bacik69ffb542012-09-11 15:40:07 -04006690 set_bit(EXTENT_FLAG_PINNED, &em->flags);
6691 if (type == BTRFS_ORDERED_PREALLOC)
Josef Bacikb11e2342012-12-03 10:58:15 -05006692 set_bit(EXTENT_FLAG_FILLING, &em->flags);
Josef Bacik69ffb542012-09-11 15:40:07 -04006693
6694 do {
6695 btrfs_drop_extent_cache(inode, em->start,
6696 em->start + em->len - 1, 0);
6697 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04006698 ret = add_extent_mapping(em_tree, em, 1);
Josef Bacik69ffb542012-09-11 15:40:07 -04006699 write_unlock(&em_tree->lock);
6700 } while (ret == -EEXIST);
6701
6702 if (ret) {
6703 free_extent_map(em);
6704 return ERR_PTR(ret);
6705 }
6706
6707 return em;
6708}
6709
6710
Josef Bacik4b46fce2010-05-23 11:00:55 -04006711static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock,
6712 struct buffer_head *bh_result, int create)
6713{
6714 struct extent_map *em;
6715 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikeb838e72012-07-31 16:28:48 -04006716 struct extent_state *cached_state = NULL;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006717 u64 start = iblock << inode->i_blkbits;
Josef Bacikeb838e72012-07-31 16:28:48 -04006718 u64 lockstart, lockend;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006719 u64 len = bh_result->b_size;
Chris Mason46bfbb52010-05-26 11:04:10 -04006720 struct btrfs_trans_handle *trans;
Josef Bacikeb838e72012-07-31 16:28:48 -04006721 int unlock_bits = EXTENT_LOCKED;
Miao Xie09348562013-02-07 10:12:07 +00006722 int ret = 0;
Josef Bacikeb838e72012-07-31 16:28:48 -04006723
Miao Xie172a5042013-02-21 02:48:22 -07006724 if (create)
Josef Bacikeb838e72012-07-31 16:28:48 -04006725 unlock_bits |= EXTENT_DELALLOC | EXTENT_DIRTY;
Miao Xie172a5042013-02-21 02:48:22 -07006726 else
Josef Bacikc3298612012-08-03 16:49:19 -04006727 len = min_t(u64, len, root->sectorsize);
Josef Bacikeb838e72012-07-31 16:28:48 -04006728
Josef Bacikc3298612012-08-03 16:49:19 -04006729 lockstart = start;
6730 lockend = start + len - 1;
6731
Josef Bacikeb838e72012-07-31 16:28:48 -04006732 /*
6733 * If this errors out it's because we couldn't invalidate pagecache for
6734 * this range and we need to fallback to buffered.
6735 */
6736 if (lock_extent_direct(inode, lockstart, lockend, &cached_state, create))
6737 return -ENOTBLK;
6738
Josef Bacik4b46fce2010-05-23 11:00:55 -04006739 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
Josef Bacikeb838e72012-07-31 16:28:48 -04006740 if (IS_ERR(em)) {
6741 ret = PTR_ERR(em);
6742 goto unlock_err;
6743 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04006744
6745 /*
6746 * Ok for INLINE and COMPRESSED extents we need to fallback on buffered
6747 * io. INLINE is special, and we could probably kludge it in here, but
6748 * it's still buffered so for safety lets just fall back to the generic
6749 * buffered path.
6750 *
6751 * For COMPRESSED we _have_ to read the entire extent in so we can
6752 * decompress it, so there will be buffering required no matter what we
6753 * do, so go ahead and fallback to buffered.
6754 *
6755 * We return -ENOTBLK because thats what makes DIO go ahead and go back
6756 * to buffered IO. Don't blame me, this is the price we pay for using
6757 * the generic code.
6758 */
6759 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) ||
6760 em->block_start == EXTENT_MAP_INLINE) {
6761 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04006762 ret = -ENOTBLK;
6763 goto unlock_err;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006764 }
6765
6766 /* Just a good old fashioned hole, return */
6767 if (!create && (em->block_start == EXTENT_MAP_HOLE ||
6768 test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
6769 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04006770 goto unlock_err;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006771 }
6772
6773 /*
6774 * We don't allocate a new extent in the following cases
6775 *
6776 * 1) The inode is marked as NODATACOW. In this case we'll just use the
6777 * existing extent.
6778 * 2) The extent is marked as PREALLOC. We're good to go here and can
6779 * just use the extent.
6780 *
6781 */
Chris Mason46bfbb52010-05-26 11:04:10 -04006782 if (!create) {
Josef Bacikeb838e72012-07-31 16:28:48 -04006783 len = min(len, em->len - (start - em->start));
6784 lockstart = start + len;
6785 goto unlock;
Chris Mason46bfbb52010-05-26 11:04:10 -04006786 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04006787
6788 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
6789 ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
6790 em->block_start != EXTENT_MAP_HOLE)) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04006791 int type;
6792 int ret;
Chris Mason46bfbb52010-05-26 11:04:10 -04006793 u64 block_start;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006794
6795 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
6796 type = BTRFS_ORDERED_PREALLOC;
6797 else
6798 type = BTRFS_ORDERED_NOCOW;
Chris Mason46bfbb52010-05-26 11:04:10 -04006799 len = min(len, em->len - (start - em->start));
Josef Bacik4b46fce2010-05-23 11:00:55 -04006800 block_start = em->block_start + (start - em->start);
Chris Mason46bfbb52010-05-26 11:04:10 -04006801
6802 /*
6803 * we're not going to log anything, but we do need
6804 * to make sure the current transaction stays open
6805 * while we look for nocow cross refs
6806 */
Josef Bacik7a7eaa42011-04-13 12:54:33 -04006807 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00006808 if (IS_ERR(trans))
Chris Mason46bfbb52010-05-26 11:04:10 -04006809 goto must_cow;
6810
6811 if (can_nocow_odirect(trans, inode, start, len) == 1) {
Josef Bacik70c8a912012-10-11 16:54:30 -04006812 u64 orig_start = em->orig_start;
Josef Bacikb4939682012-12-03 10:31:19 -05006813 u64 orig_block_len = em->orig_block_len;
Josef Bacikcc95bef2013-04-04 14:31:27 -04006814 u64 ram_bytes = em->ram_bytes;
Josef Bacik69ffb542012-09-11 15:40:07 -04006815
6816 if (type == BTRFS_ORDERED_PREALLOC) {
6817 free_extent_map(em);
6818 em = create_pinned_em(inode, start, len,
6819 orig_start,
Josef Bacikb4939682012-12-03 10:31:19 -05006820 block_start, len,
Josef Bacikcc95bef2013-04-04 14:31:27 -04006821 orig_block_len,
6822 ram_bytes, type);
Josef Bacik69ffb542012-09-11 15:40:07 -04006823 if (IS_ERR(em)) {
6824 btrfs_end_transaction(trans, root);
6825 goto unlock_err;
6826 }
6827 }
6828
Chris Mason46bfbb52010-05-26 11:04:10 -04006829 ret = btrfs_add_ordered_extent_dio(inode, start,
6830 block_start, len, len, type);
6831 btrfs_end_transaction(trans, root);
6832 if (ret) {
6833 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04006834 goto unlock_err;
Chris Mason46bfbb52010-05-26 11:04:10 -04006835 }
6836 goto unlock;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006837 }
Chris Mason46bfbb52010-05-26 11:04:10 -04006838 btrfs_end_transaction(trans, root);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006839 }
Chris Mason46bfbb52010-05-26 11:04:10 -04006840must_cow:
6841 /*
6842 * this will cow the extent, reset the len in case we changed
6843 * it above
6844 */
6845 len = bh_result->b_size;
Josef Bacik70c8a912012-10-11 16:54:30 -04006846 free_extent_map(em);
6847 em = btrfs_new_extent_direct(inode, start, len);
Josef Bacikeb838e72012-07-31 16:28:48 -04006848 if (IS_ERR(em)) {
6849 ret = PTR_ERR(em);
6850 goto unlock_err;
6851 }
Chris Mason46bfbb52010-05-26 11:04:10 -04006852 len = min(len, em->len - (start - em->start));
6853unlock:
Josef Bacik4b46fce2010-05-23 11:00:55 -04006854 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
6855 inode->i_blkbits;
Chris Mason46bfbb52010-05-26 11:04:10 -04006856 bh_result->b_size = len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006857 bh_result->b_bdev = em->bdev;
6858 set_buffer_mapped(bh_result);
Josef Bacikc3473e82012-06-19 10:59:00 -04006859 if (create) {
6860 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
6861 set_buffer_new(bh_result);
6862
6863 /*
6864 * Need to update the i_size under the extent lock so buffered
6865 * readers will get the updated i_size when we unlock.
6866 */
6867 if (start + len > i_size_read(inode))
6868 i_size_write(inode, start + len);
Miao Xie09348562013-02-07 10:12:07 +00006869
Miao Xie172a5042013-02-21 02:48:22 -07006870 spin_lock(&BTRFS_I(inode)->lock);
6871 BTRFS_I(inode)->outstanding_extents++;
6872 spin_unlock(&BTRFS_I(inode)->lock);
6873
Miao Xie09348562013-02-07 10:12:07 +00006874 ret = set_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
6875 lockstart + len - 1, EXTENT_DELALLOC, NULL,
6876 &cached_state, GFP_NOFS);
6877 BUG_ON(ret);
Josef Bacikc3473e82012-06-19 10:59:00 -04006878 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04006879
Josef Bacikeb838e72012-07-31 16:28:48 -04006880 /*
6881 * In the case of write we need to clear and unlock the entire range,
6882 * in the case of read we need to unlock only the end area that we
6883 * aren't using if there is any left over space.
6884 */
Liu Bo24c03fa2012-08-22 20:10:38 -06006885 if (lockstart < lockend) {
Miao Xie09348562013-02-07 10:12:07 +00006886 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
6887 lockend, unlock_bits, 1, 0,
6888 &cached_state, GFP_NOFS);
Liu Bo24c03fa2012-08-22 20:10:38 -06006889 } else {
Josef Bacikeb838e72012-07-31 16:28:48 -04006890 free_extent_state(cached_state);
Liu Bo24c03fa2012-08-22 20:10:38 -06006891 }
Josef Bacikeb838e72012-07-31 16:28:48 -04006892
Josef Bacik4b46fce2010-05-23 11:00:55 -04006893 free_extent_map(em);
6894
6895 return 0;
Josef Bacikeb838e72012-07-31 16:28:48 -04006896
6897unlock_err:
Josef Bacikeb838e72012-07-31 16:28:48 -04006898 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6899 unlock_bits, 1, 0, &cached_state, GFP_NOFS);
6900 return ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006901}
6902
6903struct btrfs_dio_private {
6904 struct inode *inode;
6905 u64 logical_offset;
6906 u64 disk_bytenr;
6907 u64 bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006908 void *private;
Miao Xiee65e1532010-11-22 03:04:43 +00006909
6910 /* number of bios pending for this dio */
6911 atomic_t pending_bios;
6912
6913 /* IO errors */
6914 int errors;
6915
6916 struct bio *orig_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006917};
6918
6919static void btrfs_endio_direct_read(struct bio *bio, int err)
6920{
Miao Xiee65e1532010-11-22 03:04:43 +00006921 struct btrfs_dio_private *dip = bio->bi_private;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006922 struct bio_vec *bvec_end = bio->bi_io_vec + bio->bi_vcnt - 1;
6923 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006924 struct inode *inode = dip->inode;
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006925 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006926 u64 start;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006927
6928 start = dip->logical_offset;
6929 do {
6930 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)) {
6931 struct page *page = bvec->bv_page;
6932 char *kaddr;
6933 u32 csum = ~(u32)0;
Josef Bacikc3298612012-08-03 16:49:19 -04006934 u64 private = ~(u32)0;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006935 unsigned long flags;
6936
Josef Bacikc3298612012-08-03 16:49:19 -04006937 if (get_state_private(&BTRFS_I(inode)->io_tree,
6938 start, &private))
6939 goto failed;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006940 local_irq_save(flags);
Cong Wang7ac687d2011-11-25 23:14:28 +08006941 kaddr = kmap_atomic(page);
Liu Bob0496682013-03-14 14:57:45 +00006942 csum = btrfs_csum_data(kaddr + bvec->bv_offset,
Josef Bacik4b46fce2010-05-23 11:00:55 -04006943 csum, bvec->bv_len);
6944 btrfs_csum_final(csum, (char *)&csum);
Cong Wang7ac687d2011-11-25 23:14:28 +08006945 kunmap_atomic(kaddr);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006946 local_irq_restore(flags);
6947
6948 flush_dcache_page(bvec->bv_page);
Josef Bacikc3298612012-08-03 16:49:19 -04006949 if (csum != private) {
6950failed:
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006951 btrfs_err(root->fs_info, "csum failed ino %llu off %llu csum %u private %u",
6952 (unsigned long long)btrfs_ino(inode),
6953 (unsigned long long)start,
6954 csum, (unsigned)private);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006955 err = -EIO;
6956 }
6957 }
6958
6959 start += bvec->bv_len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006960 bvec++;
6961 } while (bvec <= bvec_end);
6962
6963 unlock_extent(&BTRFS_I(inode)->io_tree, dip->logical_offset,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006964 dip->logical_offset + dip->bytes - 1);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006965 bio->bi_private = dip->private;
6966
Josef Bacik4b46fce2010-05-23 11:00:55 -04006967 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04006968
6969 /* If we had a csum failure make sure to clear the uptodate flag */
6970 if (err)
6971 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006972 dio_end_io(bio, err);
6973}
6974
6975static void btrfs_endio_direct_write(struct bio *bio, int err)
6976{
6977 struct btrfs_dio_private *dip = bio->bi_private;
6978 struct inode *inode = dip->inode;
6979 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006980 struct btrfs_ordered_extent *ordered = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05006981 u64 ordered_offset = dip->logical_offset;
6982 u64 ordered_bytes = dip->bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006983 int ret;
6984
6985 if (err)
6986 goto out_done;
Chris Mason163cf092010-11-28 19:56:33 -05006987again:
6988 ret = btrfs_dec_test_first_ordered_pending(inode, &ordered,
6989 &ordered_offset,
Josef Bacik5fd02042012-05-02 14:00:54 -04006990 ordered_bytes, !err);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006991 if (!ret)
Chris Mason163cf092010-11-28 19:56:33 -05006992 goto out_test;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006993
Josef Bacik5fd02042012-05-02 14:00:54 -04006994 ordered->work.func = finish_ordered_fn;
6995 ordered->work.flags = 0;
6996 btrfs_queue_worker(&root->fs_info->endio_write_workers,
6997 &ordered->work);
Chris Mason163cf092010-11-28 19:56:33 -05006998out_test:
6999 /*
7000 * our bio might span multiple ordered extents. If we haven't
7001 * completed the accounting for the whole dio, go back and try again
7002 */
7003 if (ordered_offset < dip->logical_offset + dip->bytes) {
7004 ordered_bytes = dip->logical_offset + dip->bytes -
7005 ordered_offset;
Josef Bacik5fd02042012-05-02 14:00:54 -04007006 ordered = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05007007 goto again;
7008 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007009out_done:
7010 bio->bi_private = dip->private;
7011
Josef Bacik4b46fce2010-05-23 11:00:55 -04007012 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04007013
7014 /* If we had an error make sure to clear the uptodate flag */
7015 if (err)
7016 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007017 dio_end_io(bio, err);
7018}
7019
Chris Masoneaf25d92010-05-25 09:48:28 -04007020static int __btrfs_submit_bio_start_direct_io(struct inode *inode, int rw,
7021 struct bio *bio, int mirror_num,
7022 unsigned long bio_flags, u64 offset)
7023{
7024 int ret;
7025 struct btrfs_root *root = BTRFS_I(inode)->root;
7026 ret = btrfs_csum_one_bio(root, inode, bio, offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007027 BUG_ON(ret); /* -ENOMEM */
Chris Masoneaf25d92010-05-25 09:48:28 -04007028 return 0;
7029}
7030
Miao Xiee65e1532010-11-22 03:04:43 +00007031static void btrfs_end_dio_bio(struct bio *bio, int err)
7032{
7033 struct btrfs_dio_private *dip = bio->bi_private;
7034
7035 if (err) {
Li Zefan33345d012011-04-20 10:31:50 +08007036 printk(KERN_ERR "btrfs direct IO failed ino %llu rw %lu "
Jan Beulich3dd14622010-12-07 14:54:09 +00007037 "sector %#Lx len %u err no %d\n",
Li Zefan33345d012011-04-20 10:31:50 +08007038 (unsigned long long)btrfs_ino(dip->inode), bio->bi_rw,
Jan Beulich3dd14622010-12-07 14:54:09 +00007039 (unsigned long long)bio->bi_sector, bio->bi_size, err);
Miao Xiee65e1532010-11-22 03:04:43 +00007040 dip->errors = 1;
7041
7042 /*
7043 * before atomic variable goto zero, we must make sure
7044 * dip->errors is perceived to be set.
7045 */
7046 smp_mb__before_atomic_dec();
7047 }
7048
7049 /* if there are more bios still pending for this dio, just exit */
7050 if (!atomic_dec_and_test(&dip->pending_bios))
7051 goto out;
7052
7053 if (dip->errors)
7054 bio_io_error(dip->orig_bio);
7055 else {
7056 set_bit(BIO_UPTODATE, &dip->orig_bio->bi_flags);
7057 bio_endio(dip->orig_bio, 0);
7058 }
7059out:
7060 bio_put(bio);
7061}
7062
7063static struct bio *btrfs_dio_bio_alloc(struct block_device *bdev,
7064 u64 first_sector, gfp_t gfp_flags)
7065{
7066 int nr_vecs = bio_get_nr_vecs(bdev);
7067 return btrfs_bio_alloc(bdev, first_sector, nr_vecs, gfp_flags);
7068}
7069
7070static inline int __btrfs_submit_dio_bio(struct bio *bio, struct inode *inode,
7071 int rw, u64 file_offset, int skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04007072 int async_submit)
Miao Xiee65e1532010-11-22 03:04:43 +00007073{
7074 int write = rw & REQ_WRITE;
7075 struct btrfs_root *root = BTRFS_I(inode)->root;
7076 int ret;
7077
Josef Bacikb812ce22012-11-16 13:56:32 -05007078 if (async_submit)
7079 async_submit = !atomic_read(&BTRFS_I(inode)->sync_writers);
7080
Miao Xiee65e1532010-11-22 03:04:43 +00007081 bio_get(bio);
Josef Bacik5fd02042012-05-02 14:00:54 -04007082
7083 if (!write) {
7084 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
7085 if (ret)
7086 goto err;
7087 }
Miao Xiee65e1532010-11-22 03:04:43 +00007088
Josef Bacik1ae39932011-04-06 14:41:34 -04007089 if (skip_sum)
7090 goto map;
7091
7092 if (write && async_submit) {
Miao Xiee65e1532010-11-22 03:04:43 +00007093 ret = btrfs_wq_submit_bio(root->fs_info,
7094 inode, rw, bio, 0, 0,
7095 file_offset,
7096 __btrfs_submit_bio_start_direct_io,
7097 __btrfs_submit_bio_done);
7098 goto err;
Josef Bacik1ae39932011-04-06 14:41:34 -04007099 } else if (write) {
7100 /*
7101 * If we aren't doing async submit, calculate the csum of the
7102 * bio now.
7103 */
7104 ret = btrfs_csum_one_bio(root, inode, bio, file_offset, 1);
7105 if (ret)
7106 goto err;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00007107 } else if (!skip_sum) {
Josef Bacikc3298612012-08-03 16:49:19 -04007108 ret = btrfs_lookup_bio_sums_dio(root, inode, bio, file_offset);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00007109 if (ret)
7110 goto err;
7111 }
Miao Xiee65e1532010-11-22 03:04:43 +00007112
Josef Bacik1ae39932011-04-06 14:41:34 -04007113map:
7114 ret = btrfs_map_bio(root, rw, bio, 0, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00007115err:
7116 bio_put(bio);
7117 return ret;
7118}
7119
7120static int btrfs_submit_direct_hook(int rw, struct btrfs_dio_private *dip,
7121 int skip_sum)
7122{
7123 struct inode *inode = dip->inode;
7124 struct btrfs_root *root = BTRFS_I(inode)->root;
Miao Xiee65e1532010-11-22 03:04:43 +00007125 struct bio *bio;
7126 struct bio *orig_bio = dip->orig_bio;
7127 struct bio_vec *bvec = orig_bio->bi_io_vec;
7128 u64 start_sector = orig_bio->bi_sector;
7129 u64 file_offset = dip->logical_offset;
7130 u64 submit_len = 0;
7131 u64 map_length;
7132 int nr_pages = 0;
Miao Xiee65e1532010-11-22 03:04:43 +00007133 int ret = 0;
Josef Bacik1ae39932011-04-06 14:41:34 -04007134 int async_submit = 0;
Miao Xiee65e1532010-11-22 03:04:43 +00007135
Miao Xiee65e1532010-11-22 03:04:43 +00007136 map_length = orig_bio->bi_size;
David Woodhouse53b381b2013-01-29 18:40:14 -05007137 ret = btrfs_map_block(root->fs_info, rw, start_sector << 9,
Miao Xiee65e1532010-11-22 03:04:43 +00007138 &map_length, NULL, 0);
7139 if (ret) {
Josef Bacik64728bb2011-04-25 19:43:52 -04007140 bio_put(orig_bio);
Miao Xiee65e1532010-11-22 03:04:43 +00007141 return -EIO;
7142 }
Josef Bacik02f57c72011-04-06 14:25:44 -04007143 if (map_length >= orig_bio->bi_size) {
7144 bio = orig_bio;
7145 goto submit;
7146 }
7147
David Woodhouse53b381b2013-01-29 18:40:14 -05007148 /* async crcs make it difficult to collect full stripe writes. */
7149 if (btrfs_get_alloc_profile(root, 1) &
7150 (BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6))
7151 async_submit = 0;
7152 else
7153 async_submit = 1;
7154
Josef Bacik02f57c72011-04-06 14:25:44 -04007155 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev, start_sector, GFP_NOFS);
7156 if (!bio)
7157 return -ENOMEM;
7158 bio->bi_private = dip;
7159 bio->bi_end_io = btrfs_end_dio_bio;
7160 atomic_inc(&dip->pending_bios);
7161
Miao Xiee65e1532010-11-22 03:04:43 +00007162 while (bvec <= (orig_bio->bi_io_vec + orig_bio->bi_vcnt - 1)) {
7163 if (unlikely(map_length < submit_len + bvec->bv_len ||
7164 bio_add_page(bio, bvec->bv_page, bvec->bv_len,
7165 bvec->bv_offset) < bvec->bv_len)) {
7166 /*
7167 * inc the count before we submit the bio so
7168 * we know the end IO handler won't happen before
7169 * we inc the count. Otherwise, the dip might get freed
7170 * before we're done setting it up
7171 */
7172 atomic_inc(&dip->pending_bios);
7173 ret = __btrfs_submit_dio_bio(bio, inode, rw,
7174 file_offset, skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04007175 async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00007176 if (ret) {
7177 bio_put(bio);
7178 atomic_dec(&dip->pending_bios);
7179 goto out_err;
7180 }
7181
Miao Xiee65e1532010-11-22 03:04:43 +00007182 start_sector += submit_len >> 9;
7183 file_offset += submit_len;
7184
7185 submit_len = 0;
7186 nr_pages = 0;
7187
7188 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev,
7189 start_sector, GFP_NOFS);
7190 if (!bio)
7191 goto out_err;
7192 bio->bi_private = dip;
7193 bio->bi_end_io = btrfs_end_dio_bio;
7194
7195 map_length = orig_bio->bi_size;
David Woodhouse53b381b2013-01-29 18:40:14 -05007196 ret = btrfs_map_block(root->fs_info, rw,
Stefan Behrens3ec706c2012-11-05 15:46:42 +01007197 start_sector << 9,
Miao Xiee65e1532010-11-22 03:04:43 +00007198 &map_length, NULL, 0);
7199 if (ret) {
7200 bio_put(bio);
7201 goto out_err;
7202 }
7203 } else {
7204 submit_len += bvec->bv_len;
7205 nr_pages ++;
7206 bvec++;
7207 }
7208 }
7209
Josef Bacik02f57c72011-04-06 14:25:44 -04007210submit:
Miao Xiee65e1532010-11-22 03:04:43 +00007211 ret = __btrfs_submit_dio_bio(bio, inode, rw, file_offset, skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04007212 async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00007213 if (!ret)
7214 return 0;
7215
7216 bio_put(bio);
7217out_err:
7218 dip->errors = 1;
7219 /*
7220 * before atomic variable goto zero, we must
7221 * make sure dip->errors is perceived to be set.
7222 */
7223 smp_mb__before_atomic_dec();
7224 if (atomic_dec_and_test(&dip->pending_bios))
7225 bio_io_error(dip->orig_bio);
7226
7227 /* bio_end_io() will handle error, so we needn't return it */
7228 return 0;
7229}
7230
Josef Bacik4b46fce2010-05-23 11:00:55 -04007231static void btrfs_submit_direct(int rw, struct bio *bio, struct inode *inode,
7232 loff_t file_offset)
7233{
7234 struct btrfs_root *root = BTRFS_I(inode)->root;
7235 struct btrfs_dio_private *dip;
7236 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007237 int skip_sum;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02007238 int write = rw & REQ_WRITE;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007239 int ret = 0;
7240
7241 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
7242
7243 dip = kmalloc(sizeof(*dip), GFP_NOFS);
7244 if (!dip) {
7245 ret = -ENOMEM;
7246 goto free_ordered;
7247 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04007248
7249 dip->private = bio->bi_private;
7250 dip->inode = inode;
7251 dip->logical_offset = file_offset;
7252
Josef Bacik4b46fce2010-05-23 11:00:55 -04007253 dip->bytes = 0;
7254 do {
7255 dip->bytes += bvec->bv_len;
7256 bvec++;
7257 } while (bvec <= (bio->bi_io_vec + bio->bi_vcnt - 1));
7258
Chris Mason46bfbb52010-05-26 11:04:10 -04007259 dip->disk_bytenr = (u64)bio->bi_sector << 9;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007260 bio->bi_private = dip;
Miao Xiee65e1532010-11-22 03:04:43 +00007261 dip->errors = 0;
7262 dip->orig_bio = bio;
7263 atomic_set(&dip->pending_bios, 0);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007264
7265 if (write)
7266 bio->bi_end_io = btrfs_endio_direct_write;
7267 else
7268 bio->bi_end_io = btrfs_endio_direct_read;
7269
Miao Xiee65e1532010-11-22 03:04:43 +00007270 ret = btrfs_submit_direct_hook(rw, dip, skip_sum);
7271 if (!ret)
Chris Masoneaf25d92010-05-25 09:48:28 -04007272 return;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007273free_ordered:
7274 /*
7275 * If this is a write, we need to clean up the reserved space and kill
7276 * the ordered extent.
7277 */
7278 if (write) {
7279 struct btrfs_ordered_extent *ordered;
Josef Bacik955256f2010-11-19 09:41:10 -05007280 ordered = btrfs_lookup_ordered_extent(inode, file_offset);
Josef Bacik4b46fce2010-05-23 11:00:55 -04007281 if (!test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags) &&
7282 !test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags))
7283 btrfs_free_reserved_extent(root, ordered->start,
7284 ordered->disk_len);
7285 btrfs_put_ordered_extent(ordered);
7286 btrfs_put_ordered_extent(ordered);
7287 }
7288 bio_endio(bio, ret);
7289}
7290
Chris Mason5a5f79b2010-05-26 21:33:37 -04007291static ssize_t check_direct_IO(struct btrfs_root *root, int rw, struct kiocb *iocb,
7292 const struct iovec *iov, loff_t offset,
7293 unsigned long nr_segs)
7294{
7295 int seg;
Josef Bacika1b75f72011-04-08 15:51:18 +00007296 int i;
Chris Mason5a5f79b2010-05-26 21:33:37 -04007297 size_t size;
7298 unsigned long addr;
7299 unsigned blocksize_mask = root->sectorsize - 1;
7300 ssize_t retval = -EINVAL;
7301 loff_t end = offset;
7302
7303 if (offset & blocksize_mask)
7304 goto out;
7305
7306 /* Check the memory alignment. Blocks cannot straddle pages */
7307 for (seg = 0; seg < nr_segs; seg++) {
7308 addr = (unsigned long)iov[seg].iov_base;
7309 size = iov[seg].iov_len;
7310 end += size;
Josef Bacika1b75f72011-04-08 15:51:18 +00007311 if ((addr & blocksize_mask) || (size & blocksize_mask))
Chris Mason5a5f79b2010-05-26 21:33:37 -04007312 goto out;
Josef Bacika1b75f72011-04-08 15:51:18 +00007313
7314 /* If this is a write we don't need to check anymore */
7315 if (rw & WRITE)
7316 continue;
7317
7318 /*
7319 * Check to make sure we don't have duplicate iov_base's in this
7320 * iovec, if so return EINVAL, otherwise we'll get csum errors
7321 * when reading back.
7322 */
7323 for (i = seg + 1; i < nr_segs; i++) {
7324 if (iov[seg].iov_base == iov[i].iov_base)
7325 goto out;
7326 }
Chris Mason5a5f79b2010-05-26 21:33:37 -04007327 }
7328 retval = 0;
7329out:
7330 return retval;
7331}
Josef Bacikeb838e72012-07-31 16:28:48 -04007332
Chris Mason16432982008-04-10 10:23:21 -04007333static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
7334 const struct iovec *iov, loff_t offset,
7335 unsigned long nr_segs)
7336{
Josef Bacik4b46fce2010-05-23 11:00:55 -04007337 struct file *file = iocb->ki_filp;
7338 struct inode *inode = file->f_mapping->host;
Miao Xie09348562013-02-07 10:12:07 +00007339 size_t count = 0;
Miao Xie2e60a512013-02-08 07:01:08 +00007340 int flags = 0;
Miao Xie38851cc2013-02-08 07:04:11 +00007341 bool wakeup = true;
7342 bool relock = false;
Miao Xie09348562013-02-07 10:12:07 +00007343 ssize_t ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04007344
Chris Mason5a5f79b2010-05-26 21:33:37 -04007345 if (check_direct_IO(BTRFS_I(inode)->root, rw, iocb, iov,
Josef Bacikeb838e72012-07-31 16:28:48 -04007346 offset, nr_segs))
Chris Mason5a5f79b2010-05-26 21:33:37 -04007347 return 0;
Chris Mason5a5f79b2010-05-26 21:33:37 -04007348
Miao Xie38851cc2013-02-08 07:04:11 +00007349 atomic_inc(&inode->i_dio_count);
7350 smp_mb__after_atomic_inc();
7351
Miao Xie09348562013-02-07 10:12:07 +00007352 if (rw & WRITE) {
7353 count = iov_length(iov, nr_segs);
Miao Xie38851cc2013-02-08 07:04:11 +00007354 /*
7355 * If the write DIO is beyond the EOF, we need update
7356 * the isize, but it is protected by i_mutex. So we can
7357 * not unlock the i_mutex at this case.
7358 */
7359 if (offset + count <= inode->i_size) {
7360 mutex_unlock(&inode->i_mutex);
7361 relock = true;
7362 }
Miao Xie09348562013-02-07 10:12:07 +00007363 ret = btrfs_delalloc_reserve_space(inode, count);
7364 if (ret)
Miao Xie38851cc2013-02-08 07:04:11 +00007365 goto out;
7366 } else if (unlikely(test_bit(BTRFS_INODE_READDIO_NEED_LOCK,
7367 &BTRFS_I(inode)->runtime_flags))) {
7368 inode_dio_done(inode);
7369 flags = DIO_LOCKING | DIO_SKIP_HOLES;
7370 wakeup = false;
Miao Xie09348562013-02-07 10:12:07 +00007371 }
7372
7373 ret = __blockdev_direct_IO(rw, iocb, inode,
7374 BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev,
7375 iov, offset, nr_segs, btrfs_get_blocks_direct, NULL,
Miao Xie2e60a512013-02-08 07:01:08 +00007376 btrfs_submit_direct, flags);
Miao Xie09348562013-02-07 10:12:07 +00007377 if (rw & WRITE) {
7378 if (ret < 0 && ret != -EIOCBQUEUED)
7379 btrfs_delalloc_release_space(inode, count);
Miao Xie172a5042013-02-21 02:48:22 -07007380 else if (ret >= 0 && (size_t)ret < count)
Miao Xie09348562013-02-07 10:12:07 +00007381 btrfs_delalloc_release_space(inode,
7382 count - (size_t)ret);
Miao Xie172a5042013-02-21 02:48:22 -07007383 else
7384 btrfs_delalloc_release_metadata(inode, 0);
Miao Xie09348562013-02-07 10:12:07 +00007385 }
Miao Xie38851cc2013-02-08 07:04:11 +00007386out:
Miao Xie2e60a512013-02-08 07:01:08 +00007387 if (wakeup)
7388 inode_dio_done(inode);
Miao Xie38851cc2013-02-08 07:04:11 +00007389 if (relock)
7390 mutex_lock(&inode->i_mutex);
Miao Xie09348562013-02-07 10:12:07 +00007391
7392 return ret;
Chris Mason16432982008-04-10 10:23:21 -04007393}
7394
Tsutomu Itoh05dadc02012-11-29 05:08:26 +00007395#define BTRFS_FIEMAP_FLAGS (FIEMAP_FLAG_SYNC)
7396
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05007397static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
7398 __u64 start, __u64 len)
7399{
Tsutomu Itoh05dadc02012-11-29 05:08:26 +00007400 int ret;
7401
7402 ret = fiemap_check_flags(fieinfo, BTRFS_FIEMAP_FLAGS);
7403 if (ret)
7404 return ret;
7405
Chris Masonec29ed52011-02-23 16:23:20 -05007406 return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent_fiemap);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05007407}
7408
Chris Mason9ebefb182007-06-15 13:50:00 -04007409int btrfs_readpage(struct file *file, struct page *page)
7410{
Chris Masond1310b22008-01-24 16:13:08 -05007411 struct extent_io_tree *tree;
7412 tree = &BTRFS_I(page->mapping->host)->io_tree;
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02007413 return extent_read_full_page(tree, page, btrfs_get_extent, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04007414}
Chris Mason1832a6d2007-12-21 16:27:21 -05007415
Chris Mason39279cc2007-06-12 06:35:45 -04007416static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
7417{
Chris Masond1310b22008-01-24 16:13:08 -05007418 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04007419
7420
7421 if (current->flags & PF_MEMALLOC) {
7422 redirty_page_for_writepage(wbc, page);
7423 unlock_page(page);
7424 return 0;
7425 }
Chris Masond1310b22008-01-24 16:13:08 -05007426 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04007427 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
7428}
Chris Mason39279cc2007-06-12 06:35:45 -04007429
Chris Masonf4219502008-07-22 11:18:09 -04007430int btrfs_writepages(struct address_space *mapping,
7431 struct writeback_control *wbc)
Chris Masonb293f022007-11-01 19:45:34 -04007432{
Chris Masond1310b22008-01-24 16:13:08 -05007433 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05007434
Chris Masond1310b22008-01-24 16:13:08 -05007435 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04007436 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
7437}
7438
Chris Mason3ab2fb52007-11-08 10:59:22 -05007439static int
7440btrfs_readpages(struct file *file, struct address_space *mapping,
7441 struct list_head *pages, unsigned nr_pages)
7442{
Chris Masond1310b22008-01-24 16:13:08 -05007443 struct extent_io_tree *tree;
7444 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05007445 return extent_readpages(tree, mapping, pages, nr_pages,
7446 btrfs_get_extent);
7447}
Chris Masone6dcd2d2008-07-17 12:53:50 -04007448static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04007449{
Chris Masond1310b22008-01-24 16:13:08 -05007450 struct extent_io_tree *tree;
7451 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04007452 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04007453
Chris Masond1310b22008-01-24 16:13:08 -05007454 tree = &BTRFS_I(page->mapping->host)->io_tree;
7455 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05007456 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04007457 if (ret == 1) {
7458 ClearPagePrivate(page);
7459 set_page_private(page, 0);
7460 page_cache_release(page);
7461 }
7462 return ret;
7463}
Chris Mason39279cc2007-06-12 06:35:45 -04007464
Chris Masone6dcd2d2008-07-17 12:53:50 -04007465static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
7466{
Chris Mason98509cf2008-09-11 15:51:43 -04007467 if (PageWriteback(page) || PageDirty(page))
7468 return 0;
Yan Zhengb335b002009-02-12 10:06:04 -05007469 return __btrfs_releasepage(page, gfp_flags & GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007470}
7471
Chris Masona52d9a82007-08-27 16:49:44 -04007472static void btrfs_invalidatepage(struct page *page, unsigned long offset)
7473{
Josef Bacik5fd02042012-05-02 14:00:54 -04007474 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05007475 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04007476 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00007477 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04007478 u64 page_start = page_offset(page);
7479 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04007480
Chris Mason8b62b722009-09-02 16:53:46 -04007481 /*
7482 * we have the page locked, so new writeback can't start,
7483 * and the dirty bit won't be cleared while we are here.
7484 *
7485 * Wait for IO on this page so that we can safely clear
7486 * the PagePrivate2 bit and do ordered accounting
7487 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04007488 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04007489
Josef Bacik5fd02042012-05-02 14:00:54 -04007490 tree = &BTRFS_I(inode)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04007491 if (offset) {
7492 btrfs_releasepage(page, GFP_NOFS);
7493 return;
7494 }
Jeff Mahoneyd0082372012-03-01 14:57:19 +01007495 lock_extent_bits(tree, page_start, page_end, 0, &cached_state);
Miao Xie4eee4fa2012-12-21 09:17:45 +00007496 ordered = btrfs_lookup_ordered_extent(inode, page_offset(page));
Chris Masone6dcd2d2008-07-17 12:53:50 -04007497 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04007498 /*
7499 * IO on this page will never be started, so we need
7500 * to account for any ordered extents now
7501 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04007502 clear_extent_bit(tree, page_start, page_end,
7503 EXTENT_DIRTY | EXTENT_DELALLOC |
Liu Bo9e8a4a82012-09-05 19:10:51 -06007504 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING |
7505 EXTENT_DEFRAG, 1, 0, &cached_state, GFP_NOFS);
Chris Mason8b62b722009-09-02 16:53:46 -04007506 /*
7507 * whoever cleared the private bit is responsible
7508 * for the finish_ordered_io
7509 */
Josef Bacik5fd02042012-05-02 14:00:54 -04007510 if (TestClearPagePrivate2(page) &&
7511 btrfs_dec_test_ordered_pending(inode, &ordered, page_start,
7512 PAGE_CACHE_SIZE, 1)) {
7513 btrfs_finish_ordered_io(ordered);
Chris Mason8b62b722009-09-02 16:53:46 -04007514 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04007515 btrfs_put_ordered_extent(ordered);
Josef Bacik2ac55d42010-02-03 19:33:23 +00007516 cached_state = NULL;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01007517 lock_extent_bits(tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007518 }
7519 clear_extent_bit(tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04007520 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
Liu Bo9e8a4a82012-09-05 19:10:51 -06007521 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 1, 1,
7522 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007523 __btrfs_releasepage(page, GFP_NOFS);
7524
Chris Mason4a096752008-07-21 10:29:44 -04007525 ClearPageChecked(page);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04007526 if (PagePrivate(page)) {
Chris Mason9ad6b7b2008-04-18 16:11:30 -04007527 ClearPagePrivate(page);
7528 set_page_private(page, 0);
7529 page_cache_release(page);
7530 }
Chris Mason39279cc2007-06-12 06:35:45 -04007531}
7532
Chris Mason9ebefb182007-06-15 13:50:00 -04007533/*
7534 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
7535 * called from a page fault handler when a page is first dirtied. Hence we must
7536 * be careful to check for EOF conditions here. We set the page up correctly
7537 * for a written page which means we get ENOSPC checking when writing into
7538 * holes and correct delalloc and unwritten extent mapping on filesystems that
7539 * support these features.
7540 *
7541 * We are not allowed to take the i_mutex here so we have to play games to
7542 * protect against truncate races as the page could now be beyond EOF. Because
7543 * vmtruncate() writes the inode size before removing pages, once we have the
7544 * page lock we can determine safely if the page is beyond EOF. If it is not
7545 * beyond EOF, then the page is guaranteed safe against truncation until we
7546 * unlock the page.
7547 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07007548int btrfs_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04007549{
Nick Pigginc2ec1752009-03-31 15:23:21 -07007550 struct page *page = vmf->page;
Al Viro496ad9a2013-01-23 17:07:38 -05007551 struct inode *inode = file_inode(vma->vm_file);
Chris Mason1832a6d2007-12-21 16:27:21 -05007552 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04007553 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
7554 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00007555 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04007556 char *kaddr;
7557 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04007558 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05007559 int ret;
Chris Mason9998eb72012-01-25 13:47:40 -05007560 int reserved = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04007561 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04007562 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04007563
Jan Karab2b5ef52012-06-12 16:20:45 +02007564 sb_start_pagefault(inode->i_sb);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04007565 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Chris Mason9998eb72012-01-25 13:47:40 -05007566 if (!ret) {
Josef Bacike41f9412012-03-26 09:46:47 -04007567 ret = file_update_time(vma->vm_file);
Chris Mason9998eb72012-01-25 13:47:40 -05007568 reserved = 1;
7569 }
Nick Piggin56a76f82009-03-31 15:23:23 -07007570 if (ret) {
7571 if (ret == -ENOMEM)
7572 ret = VM_FAULT_OOM;
7573 else /* -ENOSPC, -EIO, etc */
7574 ret = VM_FAULT_SIGBUS;
Chris Mason9998eb72012-01-25 13:47:40 -05007575 if (reserved)
7576 goto out;
7577 goto out_noreserve;
Nick Piggin56a76f82009-03-31 15:23:23 -07007578 }
Chris Mason1832a6d2007-12-21 16:27:21 -05007579
Nick Piggin56a76f82009-03-31 15:23:23 -07007580 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04007581again:
Chris Mason9ebefb182007-06-15 13:50:00 -04007582 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04007583 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007584 page_start = page_offset(page);
7585 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04007586
Chris Mason9ebefb182007-06-15 13:50:00 -04007587 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04007588 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04007589 /* page got truncated out from underneath us */
7590 goto out_unlock;
7591 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04007592 wait_on_page_writeback(page);
7593
Jeff Mahoneyd0082372012-03-01 14:57:19 +01007594 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007595 set_page_extent_mapped(page);
7596
Chris Masoneb84ae02008-07-17 13:53:27 -04007597 /*
7598 * we can't set the delalloc bits if there are pending ordered
7599 * extents. Drop our locks and wait for them to finish
7600 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04007601 ordered = btrfs_lookup_ordered_extent(inode, page_start);
7602 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00007603 unlock_extent_cached(io_tree, page_start, page_end,
7604 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007605 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04007606 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007607 btrfs_put_ordered_extent(ordered);
7608 goto again;
7609 }
7610
Josef Bacikfbf19082009-10-01 17:10:23 -04007611 /*
7612 * XXX - page_mkwrite gets called every time the page is dirtied, even
7613 * if it was already dirty, so for space accounting reasons we need to
7614 * clear any delalloc bits for the range we are fixing to save. There
7615 * is probably a better way to do this, but for now keep consistent with
7616 * prepare_pages in the normal write path.
7617 */
Josef Bacik2ac55d42010-02-03 19:33:23 +00007618 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Liu Bo9e8a4a82012-09-05 19:10:51 -06007619 EXTENT_DIRTY | EXTENT_DELALLOC |
7620 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
Josef Bacik2ac55d42010-02-03 19:33:23 +00007621 0, 0, &cached_state, GFP_NOFS);
Josef Bacikfbf19082009-10-01 17:10:23 -04007622
Josef Bacik2ac55d42010-02-03 19:33:23 +00007623 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
7624 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04007625 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00007626 unlock_extent_cached(io_tree, page_start, page_end,
7627 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04007628 ret = VM_FAULT_SIGBUS;
7629 goto out_unlock;
7630 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04007631 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04007632
7633 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04007634 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04007635 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04007636 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04007637 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04007638
Chris Masone6dcd2d2008-07-17 12:53:50 -04007639 if (zero_start != PAGE_CACHE_SIZE) {
7640 kaddr = kmap(page);
7641 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
7642 flush_dcache_page(page);
7643 kunmap(page);
7644 }
Chris Mason247e7432008-07-17 12:53:51 -04007645 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007646 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04007647 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04007648
Chris Mason257c62e2009-10-13 13:21:08 -04007649 BTRFS_I(inode)->last_trans = root->fs_info->generation;
7650 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
Liu Bo46d8bc32012-08-29 01:07:55 -06007651 BTRFS_I(inode)->last_log_commit = BTRFS_I(inode)->root->last_log_commit;
Chris Mason257c62e2009-10-13 13:21:08 -04007652
Josef Bacik2ac55d42010-02-03 19:33:23 +00007653 unlock_extent_cached(io_tree, page_start, page_end, &cached_state, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04007654
7655out_unlock:
Jan Karab2b5ef52012-06-12 16:20:45 +02007656 if (!ret) {
7657 sb_end_pagefault(inode->i_sb);
Chris Mason50a9b212009-09-11 12:33:12 -04007658 return VM_FAULT_LOCKED;
Jan Karab2b5ef52012-06-12 16:20:45 +02007659 }
Chris Mason9ebefb182007-06-15 13:50:00 -04007660 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05007661out:
Josef Bacikec39e182012-01-12 19:10:12 -05007662 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason9998eb72012-01-25 13:47:40 -05007663out_noreserve:
Jan Karab2b5ef52012-06-12 16:20:45 +02007664 sb_end_pagefault(inode->i_sb);
Chris Mason9ebefb182007-06-15 13:50:00 -04007665 return ret;
7666}
7667
Josef Bacika41ad392011-01-31 15:30:16 -05007668static int btrfs_truncate(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04007669{
7670 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikfcb80c22011-05-03 10:40:22 -04007671 struct btrfs_block_rsv *rsv;
Chris Mason39279cc2007-06-12 06:35:45 -04007672 int ret;
Josef Bacik3893e332011-01-31 16:03:11 -05007673 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007674 struct btrfs_trans_handle *trans;
Chris Masondbe674a2008-07-17 12:54:05 -04007675 u64 mask = root->sectorsize - 1;
Josef Bacik07127182011-08-19 10:29:59 -04007676 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04007677
Josef Bacik2aaa6652012-08-29 14:27:18 -04007678 ret = btrfs_truncate_page(inode, inode->i_size, 0, 0);
Josef Bacik5d5e1032009-10-13 16:46:49 -04007679 if (ret)
Josef Bacika41ad392011-01-31 15:30:16 -05007680 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00007681
Chris Mason4a096752008-07-21 10:29:44 -04007682 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
Yan, Zheng80825102009-11-12 09:35:36 +00007683 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04007684
Josef Bacikfcb80c22011-05-03 10:40:22 -04007685 /*
7686 * Yes ladies and gentelment, this is indeed ugly. The fact is we have
7687 * 3 things going on here
7688 *
7689 * 1) We need to reserve space for our orphan item and the space to
7690 * delete our orphan item. Lord knows we don't want to have a dangling
7691 * orphan item because we didn't reserve space to remove it.
7692 *
7693 * 2) We need to reserve space to update our inode.
7694 *
7695 * 3) We need to have something to cache all the space that is going to
7696 * be free'd up by the truncate operation, but also have some slack
7697 * space reserved in case it uses space during the truncate (thank you
7698 * very much snapshotting).
7699 *
7700 * And we need these to all be seperate. The fact is we can use alot of
7701 * space doing the truncate, and we have no earthly idea how much space
7702 * we will use, so we need the truncate reservation to be seperate so it
7703 * doesn't end up using space reserved for updating the inode or
7704 * removing the orphan item. We also need to be able to stop the
7705 * transaction and start a new one, which means we need to be able to
7706 * update the inode several times, and we have no idea of knowing how
7707 * many times that will be, so we can't just reserve 1 item for the
7708 * entirety of the opration, so that has to be done seperately as well.
7709 * Then there is the orphan item, which does indeed need to be held on
7710 * to for the whole operation, and we need nobody to touch this reserved
7711 * space except the orphan code.
7712 *
7713 * So that leaves us with
7714 *
7715 * 1) root->orphan_block_rsv - for the orphan deletion.
7716 * 2) rsv - for the truncate reservation, which we will steal from the
7717 * transaction reservation.
7718 * 3) fs_info->trans_block_rsv - this will have 1 items worth left for
7719 * updating the inode.
7720 */
Miao Xie66d8f3d2012-09-06 04:02:28 -06007721 rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP);
Josef Bacikfcb80c22011-05-03 10:40:22 -04007722 if (!rsv)
7723 return -ENOMEM;
Josef Bacik4a338542011-08-29 11:01:31 -04007724 rsv->size = min_size;
Josef Bacikca7e70f2012-08-27 17:48:15 -04007725 rsv->failfast = 1;
Josef Bacikf0cd8462011-03-04 14:37:08 -05007726
Josef Bacik907cbce2011-08-08 13:46:15 -04007727 /*
Josef Bacik07127182011-08-19 10:29:59 -04007728 * 1 for the truncate slack space
Josef Bacik907cbce2011-08-08 13:46:15 -04007729 * 1 for updating the inode.
7730 */
Josef Bacikf3fe8202013-01-07 17:03:21 -05007731 trans = btrfs_start_transaction(root, 2);
Josef Bacikfcb80c22011-05-03 10:40:22 -04007732 if (IS_ERR(trans)) {
7733 err = PTR_ERR(trans);
7734 goto out;
7735 }
Josef Bacikf0cd8462011-03-04 14:37:08 -05007736
Josef Bacik907cbce2011-08-08 13:46:15 -04007737 /* Migrate the slack space for the truncate to our reserve */
7738 ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv, rsv,
7739 min_size);
Josef Bacikfcb80c22011-05-03 10:40:22 -04007740 BUG_ON(ret);
Josef Bacikf0cd8462011-03-04 14:37:08 -05007741
Chris Mason5a3f23d2009-03-31 13:27:11 -04007742 /*
7743 * setattr is responsible for setting the ordered_data_close flag,
7744 * but that is only tested during the last file release. That
7745 * could happen well after the next commit, leaving a great big
7746 * window where new writes may get lost if someone chooses to write
7747 * to this file after truncating to zero
7748 *
7749 * The inode doesn't have any dirty data here, and so if we commit
7750 * this is a noop. If someone immediately starts writing to the inode
7751 * it is very likely we'll catch some of their writes in this
7752 * transaction, and the commit will find this file on the ordered
7753 * data list with good things to send down.
7754 *
7755 * This is a best effort solution, there is still a window where
7756 * using truncate to replace the contents of the file will
7757 * end up with a zero length file after a crash.
7758 */
Josef Bacik72ac3c02012-05-23 14:13:11 -04007759 if (inode->i_size == 0 && test_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
7760 &BTRFS_I(inode)->runtime_flags))
Chris Mason5a3f23d2009-03-31 13:27:11 -04007761 btrfs_add_ordered_operation(trans, root, inode);
7762
Josef Bacik5dc562c2012-08-17 13:14:17 -04007763 /*
7764 * So if we truncate and then write and fsync we normally would just
7765 * write the extents that changed, which is a problem if we need to
7766 * first truncate that entire inode. So set this flag so we write out
7767 * all of the extents in the inode to the sync log so we're completely
7768 * safe.
7769 */
7770 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
Josef Bacikca7e70f2012-08-27 17:48:15 -04007771 trans->block_rsv = rsv;
Josef Bacik5dc562c2012-08-17 13:14:17 -04007772
Yan, Zheng80825102009-11-12 09:35:36 +00007773 while (1) {
7774 ret = btrfs_truncate_inode_items(trans, root, inode,
7775 inode->i_size,
7776 BTRFS_EXTENT_DATA_KEY);
Josef Bacikca7e70f2012-08-27 17:48:15 -04007777 if (ret != -ENOSPC) {
Josef Bacik3893e332011-01-31 16:03:11 -05007778 err = ret;
Yan, Zheng80825102009-11-12 09:35:36 +00007779 break;
Josef Bacik3893e332011-01-31 16:03:11 -05007780 }
Chris Mason39279cc2007-06-12 06:35:45 -04007781
Josef Bacikfcb80c22011-05-03 10:40:22 -04007782 trans->block_rsv = &root->fs_info->trans_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00007783 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05007784 if (ret) {
7785 err = ret;
7786 break;
7787 }
Josef Bacikca7e70f2012-08-27 17:48:15 -04007788
Yan, Zheng80825102009-11-12 09:35:36 +00007789 btrfs_end_transaction(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00007790 btrfs_btree_balance_dirty(root);
Josef Bacikca7e70f2012-08-27 17:48:15 -04007791
7792 trans = btrfs_start_transaction(root, 2);
7793 if (IS_ERR(trans)) {
7794 ret = err = PTR_ERR(trans);
7795 trans = NULL;
7796 break;
7797 }
7798
7799 ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv,
7800 rsv, min_size);
7801 BUG_ON(ret); /* shouldn't happen */
7802 trans->block_rsv = rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00007803 }
7804
7805 if (ret == 0 && inode->i_nlink > 0) {
Josef Bacikfcb80c22011-05-03 10:40:22 -04007806 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00007807 ret = btrfs_orphan_del(trans, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05007808 if (ret)
7809 err = ret;
Yan, Zheng80825102009-11-12 09:35:36 +00007810 }
7811
Chris Mason917c16b2011-11-08 14:49:59 -05007812 if (trans) {
7813 trans->block_rsv = &root->fs_info->trans_block_rsv;
7814 ret = btrfs_update_inode(trans, root, inode);
7815 if (ret && !err)
7816 err = ret;
Josef Bacik7b128762008-07-24 12:17:14 -04007817
Josef Bacik7ad85bb2012-01-12 19:10:12 -05007818 ret = btrfs_end_transaction(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00007819 btrfs_btree_balance_dirty(root);
Chris Mason917c16b2011-11-08 14:49:59 -05007820 }
Josef Bacikfcb80c22011-05-03 10:40:22 -04007821
7822out:
7823 btrfs_free_block_rsv(root, rsv);
7824
Josef Bacik3893e332011-01-31 16:03:11 -05007825 if (ret && !err)
7826 err = ret;
Josef Bacika41ad392011-01-31 15:30:16 -05007827
Josef Bacik3893e332011-01-31 16:03:11 -05007828 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04007829}
7830
Sven Wegener3b963622008-06-09 21:57:42 -04007831/*
Chris Masond352ac62008-09-29 15:18:18 -04007832 * create a new subvolume directory/inode (helper for the ioctl).
7833 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05007834int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Josef Bacikd82a6f12011-05-11 15:26:06 -04007835 struct btrfs_root *new_root, u64 new_dirid)
Chris Mason39279cc2007-06-12 06:35:45 -04007836{
Chris Mason39279cc2007-06-12 06:35:45 -04007837 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04007838 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04007839 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007840
Florian Albrechtskirchinger12fc9d02012-02-10 22:15:54 +01007841 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2,
7842 new_dirid, new_dirid,
7843 S_IFDIR | (~current_umask() & S_IRWXUGO),
7844 &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04007845 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04007846 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007847 inode->i_op = &btrfs_dir_inode_operations;
7848 inode->i_fop = &btrfs_dir_file_operations;
7849
Miklos Szeredibfe86842011-10-28 14:13:29 +02007850 set_nlink(inode, 1);
Chris Masondbe674a2008-07-17 12:54:05 -04007851 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04007852
Yan, Zheng76dda932009-09-21 16:00:26 -04007853 err = btrfs_update_inode(trans, new_root, inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04007854
Yan, Zheng76dda932009-09-21 16:00:26 -04007855 iput(inode);
Mark Fashehce598972011-07-26 11:32:23 -07007856 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04007857}
7858
Chris Mason39279cc2007-06-12 06:35:45 -04007859struct inode *btrfs_alloc_inode(struct super_block *sb)
7860{
7861 struct btrfs_inode *ei;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007862 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04007863
7864 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
7865 if (!ei)
7866 return NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007867
7868 ei->root = NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007869 ei->generation = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04007870 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04007871 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04007872 ei->logged_trans = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007873 ei->delalloc_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007874 ei->disk_i_size = 0;
7875 ei->flags = 0;
Josef Bacik7709cde2011-08-04 10:25:02 -04007876 ei->csum_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007877 ei->index_cnt = (u64)-1;
7878 ei->last_unlink_trans = 0;
Liu Bo46d8bc32012-08-29 01:07:55 -06007879 ei->last_log_commit = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007880
Josef Bacik9e0baf62011-07-15 15:16:44 +00007881 spin_lock_init(&ei->lock);
7882 ei->outstanding_extents = 0;
7883 ei->reserved_extents = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007884
Josef Bacik72ac3c02012-05-23 14:13:11 -04007885 ei->runtime_flags = 0;
Li Zefan261507a02010-12-17 14:21:50 +08007886 ei->force_compress = BTRFS_COMPRESS_NONE;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007887
Miao Xie16cdcec2011-04-22 18:12:22 +08007888 ei->delayed_node = NULL;
7889
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007890 inode = &ei->vfs_inode;
David Sterbaa8067e02011-04-21 00:34:43 +02007891 extent_map_tree_init(&ei->extent_tree);
David Sterbaf993c882011-04-20 23:35:57 +02007892 extent_io_tree_init(&ei->io_tree, &inode->i_data);
7893 extent_io_tree_init(&ei->io_failure_tree, &inode->i_data);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04007894 ei->io_tree.track_uptodate = 1;
7895 ei->io_failure_tree.track_uptodate = 1;
Josef Bacikb812ce22012-11-16 13:56:32 -05007896 atomic_set(&ei->sync_writers, 0);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007897 mutex_init(&ei->log_mutex);
Josef Bacikf2486792012-01-13 12:09:22 -05007898 mutex_init(&ei->delalloc_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007899 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007900 INIT_LIST_HEAD(&ei->delalloc_inodes);
Chris Mason5a3f23d2009-03-31 13:27:11 -04007901 INIT_LIST_HEAD(&ei->ordered_operations);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007902 RB_CLEAR_NODE(&ei->rb_node);
7903
7904 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04007905}
7906
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11007907static void btrfs_i_callback(struct rcu_head *head)
7908{
7909 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11007910 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
7911}
7912
Chris Mason39279cc2007-06-12 06:35:45 -04007913void btrfs_destroy_inode(struct inode *inode)
7914{
Chris Masone6dcd2d2008-07-17 12:53:50 -04007915 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04007916 struct btrfs_root *root = BTRFS_I(inode)->root;
7917
Al Virob3d9b7a2012-06-09 13:51:19 -04007918 WARN_ON(!hlist_empty(&inode->i_dentry));
Chris Mason39279cc2007-06-12 06:35:45 -04007919 WARN_ON(inode->i_data.nrpages);
Josef Bacik9e0baf62011-07-15 15:16:44 +00007920 WARN_ON(BTRFS_I(inode)->outstanding_extents);
7921 WARN_ON(BTRFS_I(inode)->reserved_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04007922 WARN_ON(BTRFS_I(inode)->delalloc_bytes);
7923 WARN_ON(BTRFS_I(inode)->csum_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -04007924
Chris Mason5a3f23d2009-03-31 13:27:11 -04007925 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05007926 * This can happen where we create an inode, but somebody else also
7927 * created the same inode and we need to destroy the one we already
7928 * created.
7929 */
7930 if (!root)
7931 goto free;
7932
7933 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04007934 * Make sure we're properly removed from the ordered operation
7935 * lists.
7936 */
7937 smp_mb();
7938 if (!list_empty(&BTRFS_I(inode)->ordered_operations)) {
7939 spin_lock(&root->fs_info->ordered_extent_lock);
7940 list_del_init(&BTRFS_I(inode)->ordered_operations);
7941 spin_unlock(&root->fs_info->ordered_extent_lock);
7942 }
7943
Josef Bacik8a35d952012-05-23 14:26:42 -04007944 if (test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
7945 &BTRFS_I(inode)->runtime_flags)) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00007946 btrfs_info(root->fs_info, "inode %llu still on the orphan list",
7947 (unsigned long long)btrfs_ino(inode));
Josef Bacik8a35d952012-05-23 14:26:42 -04007948 atomic_dec(&root->orphan_inodes);
Josef Bacik7b128762008-07-24 12:17:14 -04007949 }
Josef Bacik7b128762008-07-24 12:17:14 -04007950
Chris Masond3977122009-01-05 21:25:51 -05007951 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04007952 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
7953 if (!ordered)
7954 break;
7955 else {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00007956 btrfs_err(root->fs_info, "found ordered extent %llu %llu on inode cleanup",
7957 (unsigned long long)ordered->file_offset,
7958 (unsigned long long)ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007959 btrfs_remove_ordered_extent(inode, ordered);
7960 btrfs_put_ordered_extent(ordered);
7961 btrfs_put_ordered_extent(ordered);
7962 }
7963 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007964 inode_tree_del(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007965 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
Josef Bacika6dbd422009-11-11 15:53:34 -05007966free:
Miao Xie16cdcec2011-04-22 18:12:22 +08007967 btrfs_remove_delayed_node(inode);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11007968 call_rcu(&inode->i_rcu, btrfs_i_callback);
Chris Mason39279cc2007-06-12 06:35:45 -04007969}
7970
Al Viro45321ac2010-06-07 13:43:19 -04007971int btrfs_drop_inode(struct inode *inode)
Yan, Zheng76dda932009-09-21 16:00:26 -04007972{
7973 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro45321ac2010-06-07 13:43:19 -04007974
Liu Bofa6ac872013-02-20 14:10:23 +00007975 /* the snap/subvol tree is on deleting */
Josef Bacik0af3d002010-06-21 14:48:16 -04007976 if (btrfs_root_refs(&root->root_item) == 0 &&
Liu Bofa6ac872013-02-20 14:10:23 +00007977 root != root->fs_info->tree_root)
Al Viro45321ac2010-06-07 13:43:19 -04007978 return 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04007979 else
Al Viro45321ac2010-06-07 13:43:19 -04007980 return generic_drop_inode(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04007981}
7982
Sven Wegener0ee0fda2008-07-30 16:54:26 -04007983static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04007984{
7985 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
7986
7987 inode_init_once(&ei->vfs_inode);
7988}
7989
7990void btrfs_destroy_cachep(void)
7991{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +10007992 /*
7993 * Make sure all delayed rcu free inodes are flushed before we
7994 * destroy cache.
7995 */
7996 rcu_barrier();
Chris Mason39279cc2007-06-12 06:35:45 -04007997 if (btrfs_inode_cachep)
7998 kmem_cache_destroy(btrfs_inode_cachep);
7999 if (btrfs_trans_handle_cachep)
8000 kmem_cache_destroy(btrfs_trans_handle_cachep);
8001 if (btrfs_transaction_cachep)
8002 kmem_cache_destroy(btrfs_transaction_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04008003 if (btrfs_path_cachep)
8004 kmem_cache_destroy(btrfs_path_cachep);
Josef Bacikdc89e982011-01-28 17:05:48 -05008005 if (btrfs_free_space_cachep)
8006 kmem_cache_destroy(btrfs_free_space_cachep);
Miao Xie8ccf6f192012-10-25 09:28:04 +00008007 if (btrfs_delalloc_work_cachep)
8008 kmem_cache_destroy(btrfs_delalloc_work_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04008009}
8010
8011int btrfs_init_cachep(void)
8012{
David Sterba837e1972012-09-07 03:00:48 -06008013 btrfs_inode_cachep = kmem_cache_create("btrfs_inode",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02008014 sizeof(struct btrfs_inode), 0,
8015 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04008016 if (!btrfs_inode_cachep)
8017 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02008018
David Sterba837e1972012-09-07 03:00:48 -06008019 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02008020 sizeof(struct btrfs_trans_handle), 0,
8021 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04008022 if (!btrfs_trans_handle_cachep)
8023 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02008024
David Sterba837e1972012-09-07 03:00:48 -06008025 btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02008026 sizeof(struct btrfs_transaction), 0,
8027 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04008028 if (!btrfs_transaction_cachep)
8029 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02008030
David Sterba837e1972012-09-07 03:00:48 -06008031 btrfs_path_cachep = kmem_cache_create("btrfs_path",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02008032 sizeof(struct btrfs_path), 0,
8033 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04008034 if (!btrfs_path_cachep)
8035 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02008036
David Sterba837e1972012-09-07 03:00:48 -06008037 btrfs_free_space_cachep = kmem_cache_create("btrfs_free_space",
Josef Bacikdc89e982011-01-28 17:05:48 -05008038 sizeof(struct btrfs_free_space), 0,
8039 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
8040 if (!btrfs_free_space_cachep)
8041 goto fail;
8042
Miao Xie8ccf6f192012-10-25 09:28:04 +00008043 btrfs_delalloc_work_cachep = kmem_cache_create("btrfs_delalloc_work",
8044 sizeof(struct btrfs_delalloc_work), 0,
8045 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD,
8046 NULL);
8047 if (!btrfs_delalloc_work_cachep)
8048 goto fail;
8049
Chris Mason39279cc2007-06-12 06:35:45 -04008050 return 0;
8051fail:
8052 btrfs_destroy_cachep();
8053 return -ENOMEM;
8054}
8055
8056static int btrfs_getattr(struct vfsmount *mnt,
8057 struct dentry *dentry, struct kstat *stat)
8058{
Miao Xiedf0af1a2013-01-29 10:11:59 +00008059 u64 delalloc_bytes;
Chris Mason39279cc2007-06-12 06:35:45 -04008060 struct inode *inode = dentry->d_inode;
David Sterbafadc0d82011-11-20 07:33:38 -05008061 u32 blocksize = inode->i_sb->s_blocksize;
8062
Chris Mason39279cc2007-06-12 06:35:45 -04008063 generic_fillattr(inode, stat);
Al Viro0ee5dc62011-07-07 15:44:25 -04008064 stat->dev = BTRFS_I(inode)->root->anon_dev;
Chris Masond6667462008-01-03 14:51:00 -05008065 stat->blksize = PAGE_CACHE_SIZE;
Miao Xiedf0af1a2013-01-29 10:11:59 +00008066
8067 spin_lock(&BTRFS_I(inode)->lock);
8068 delalloc_bytes = BTRFS_I(inode)->delalloc_bytes;
8069 spin_unlock(&BTRFS_I(inode)->lock);
David Sterbafadc0d82011-11-20 07:33:38 -05008070 stat->blocks = (ALIGN(inode_get_bytes(inode), blocksize) +
Miao Xiedf0af1a2013-01-29 10:11:59 +00008071 ALIGN(delalloc_bytes, blocksize)) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04008072 return 0;
8073}
8074
Chris Masond3977122009-01-05 21:25:51 -05008075static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
8076 struct inode *new_dir, struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04008077{
8078 struct btrfs_trans_handle *trans;
8079 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008080 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04008081 struct inode *new_inode = new_dentry->d_inode;
8082 struct inode *old_inode = old_dentry->d_inode;
8083 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04008084 u64 index = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008085 u64 root_objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04008086 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08008087 u64 old_ino = btrfs_ino(old_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04008088
Li Zefan33345d012011-04-20 10:31:50 +08008089 if (btrfs_ino(new_dir) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhengf679a842009-09-24 09:17:31 -04008090 return -EPERM;
8091
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008092 /* we only allow rename subvolume link between subvolumes */
Li Zefan33345d012011-04-20 10:31:50 +08008093 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05008094 return -EXDEV;
8095
Li Zefan33345d012011-04-20 10:31:50 +08008096 if (old_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
8097 (new_inode && btrfs_ino(new_inode) == BTRFS_FIRST_FREE_OBJECTID))
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008098 return -ENOTEMPTY;
8099
Chris Mason39279cc2007-06-12 06:35:45 -04008100 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008101 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04008102 return -ENOTEMPTY;
Chris Mason9c520572012-12-17 14:26:57 -05008103
8104
8105 /* check for collisions, even if the name isn't there */
8106 ret = btrfs_check_dir_item_collision(root, new_dir->i_ino,
8107 new_dentry->d_name.name,
8108 new_dentry->d_name.len);
8109
8110 if (ret) {
8111 if (ret == -EEXIST) {
8112 /* we shouldn't get
8113 * eexist without a new_inode */
8114 if (!new_inode) {
8115 WARN_ON(1);
8116 return ret;
8117 }
8118 } else {
8119 /* maybe -EOVERFLOW */
8120 return ret;
8121 }
8122 }
8123 ret = 0;
8124
Chris Mason5a3f23d2009-03-31 13:27:11 -04008125 /*
8126 * we're using rename to replace one file with another.
8127 * and the replacement file is large. Start IO on it now so
8128 * we don't add too much work to the end of the transaction
8129 */
Bartlomiej Zolnierkiewicz4baf8c92009-08-07 13:47:08 -04008130 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size &&
Chris Mason5a3f23d2009-03-31 13:27:11 -04008131 old_inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
8132 filemap_flush(old_inode->i_mapping);
8133
Yan, Zheng76dda932009-09-21 16:00:26 -04008134 /* close the racy window with snapshot create/destroy ioctl */
Li Zefan33345d012011-04-20 10:31:50 +08008135 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04008136 down_read(&root->fs_info->subvol_sem);
Yan, Zhenga22285a2010-05-16 10:48:46 -04008137 /*
8138 * We want to reserve the absolute worst case amount of items. So if
8139 * both inodes are subvols and we need to unlink them then that would
8140 * require 4 item modifications, but if they are both normal inodes it
8141 * would require 5 item modifications, so we'll assume their normal
8142 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
8143 * should cover the worst case number of items we'll modify.
8144 */
Josef Bacik6e137ed2013-03-26 15:26:55 -04008145 trans = btrfs_start_transaction(root, 11);
Johann Lombardib44c59a2011-03-31 13:23:47 +00008146 if (IS_ERR(trans)) {
8147 ret = PTR_ERR(trans);
8148 goto out_notrans;
8149 }
Chris Mason5f39d392007-10-15 16:14:19 -04008150
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008151 if (dest != root)
8152 btrfs_record_root_in_trans(trans, dest);
8153
Yan, Zhenga5719522009-09-24 09:17:31 -04008154 ret = btrfs_set_inode_index(new_dir, &index);
8155 if (ret)
8156 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04008157
Li Zefan33345d012011-04-20 10:31:50 +08008158 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008159 /* force full log commit if subvolume involved. */
8160 root->fs_info->last_trans_log_full_commit = trans->transid;
8161 } else {
Yan, Zhenga5719522009-09-24 09:17:31 -04008162 ret = btrfs_insert_inode_ref(trans, dest,
8163 new_dentry->d_name.name,
8164 new_dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08008165 old_ino,
8166 btrfs_ino(new_dir), index);
Yan, Zhenga5719522009-09-24 09:17:31 -04008167 if (ret)
8168 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008169 /*
8170 * this is an ugly little race, but the rename is required
8171 * to make sure that if we crash, the inode is either at the
8172 * old name or the new one. pinning the log transaction lets
8173 * us make sure we don't allow a log commit to come in after
8174 * we unlink the name but before we add the new name back in.
8175 */
8176 btrfs_pin_log_trans(root);
8177 }
Chris Mason12fcfd22009-03-24 10:24:20 -04008178 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04008179 * make sure the inode gets flushed if it is replacing
8180 * something.
8181 */
Li Zefan33345d012011-04-20 10:31:50 +08008182 if (new_inode && new_inode->i_size && S_ISREG(old_inode->i_mode))
Chris Mason5a3f23d2009-03-31 13:27:11 -04008183 btrfs_add_ordered_operation(trans, root, old_inode);
Chris Mason5a3f23d2009-03-31 13:27:11 -04008184
Josef Bacik0c4d2d92012-04-05 15:03:02 -04008185 inode_inc_iversion(old_dir);
8186 inode_inc_iversion(new_dir);
8187 inode_inc_iversion(old_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04008188 old_dir->i_ctime = old_dir->i_mtime = ctime;
8189 new_dir->i_ctime = new_dir->i_mtime = ctime;
8190 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04008191
Chris Mason12fcfd22009-03-24 10:24:20 -04008192 if (old_dentry->d_parent != new_dentry->d_parent)
8193 btrfs_record_unlink_dir(trans, old_dir, old_inode, 1);
8194
Li Zefan33345d012011-04-20 10:31:50 +08008195 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008196 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
8197 ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid,
8198 old_dentry->d_name.name,
8199 old_dentry->d_name.len);
8200 } else {
Al Viro92986792011-03-04 17:14:37 +00008201 ret = __btrfs_unlink_inode(trans, root, old_dir,
8202 old_dentry->d_inode,
8203 old_dentry->d_name.name,
8204 old_dentry->d_name.len);
8205 if (!ret)
8206 ret = btrfs_update_inode(trans, root, old_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008207 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008208 if (ret) {
8209 btrfs_abort_transaction(trans, root, ret);
8210 goto out_fail;
8211 }
Chris Mason39279cc2007-06-12 06:35:45 -04008212
8213 if (new_inode) {
Josef Bacik0c4d2d92012-04-05 15:03:02 -04008214 inode_inc_iversion(new_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04008215 new_inode->i_ctime = CURRENT_TIME;
Li Zefan33345d012011-04-20 10:31:50 +08008216 if (unlikely(btrfs_ino(new_inode) ==
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008217 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
8218 root_objectid = BTRFS_I(new_inode)->location.objectid;
8219 ret = btrfs_unlink_subvol(trans, dest, new_dir,
8220 root_objectid,
8221 new_dentry->d_name.name,
8222 new_dentry->d_name.len);
8223 BUG_ON(new_inode->i_nlink == 0);
8224 } else {
8225 ret = btrfs_unlink_inode(trans, dest, new_dir,
8226 new_dentry->d_inode,
8227 new_dentry->d_name.name,
8228 new_dentry->d_name.len);
8229 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008230 if (!ret && new_inode->i_nlink == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04008231 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008232 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04008233 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008234 if (ret) {
8235 btrfs_abort_transaction(trans, root, ret);
8236 goto out_fail;
8237 }
Chris Mason39279cc2007-06-12 06:35:45 -04008238 }
Josef Bacikaec74772008-07-24 12:12:38 -04008239
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008240 ret = btrfs_add_link(trans, new_dir, old_inode,
8241 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04008242 new_dentry->d_name.len, 0, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008243 if (ret) {
8244 btrfs_abort_transaction(trans, root, ret);
8245 goto out_fail;
8246 }
Chris Mason39279cc2007-06-12 06:35:45 -04008247
Li Zefan33345d012011-04-20 10:31:50 +08008248 if (old_ino != BTRFS_FIRST_FREE_OBJECTID) {
Al Viro10d9f302011-07-16 23:09:10 -04008249 struct dentry *parent = new_dentry->d_parent;
Josef Bacik6a912212010-11-20 09:48:00 +00008250 btrfs_log_new_name(trans, old_inode, old_dir, parent);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04008251 btrfs_end_log_trans(root);
8252 }
Chris Mason39279cc2007-06-12 06:35:45 -04008253out_fail:
Josef Bacik7ad85bb2012-01-12 19:10:12 -05008254 btrfs_end_transaction(trans, root);
Johann Lombardib44c59a2011-03-31 13:23:47 +00008255out_notrans:
Li Zefan33345d012011-04-20 10:31:50 +08008256 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04008257 up_read(&root->fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04008258
Chris Mason39279cc2007-06-12 06:35:45 -04008259 return ret;
8260}
8261
Miao Xie8ccf6f192012-10-25 09:28:04 +00008262static void btrfs_run_delalloc_work(struct btrfs_work *work)
8263{
8264 struct btrfs_delalloc_work *delalloc_work;
8265
8266 delalloc_work = container_of(work, struct btrfs_delalloc_work,
8267 work);
8268 if (delalloc_work->wait)
8269 btrfs_wait_ordered_range(delalloc_work->inode, 0, (u64)-1);
8270 else
8271 filemap_flush(delalloc_work->inode->i_mapping);
8272
8273 if (delalloc_work->delay_iput)
8274 btrfs_add_delayed_iput(delalloc_work->inode);
8275 else
8276 iput(delalloc_work->inode);
8277 complete(&delalloc_work->completion);
8278}
8279
8280struct btrfs_delalloc_work *btrfs_alloc_delalloc_work(struct inode *inode,
8281 int wait, int delay_iput)
8282{
8283 struct btrfs_delalloc_work *work;
8284
8285 work = kmem_cache_zalloc(btrfs_delalloc_work_cachep, GFP_NOFS);
8286 if (!work)
8287 return NULL;
8288
8289 init_completion(&work->completion);
8290 INIT_LIST_HEAD(&work->list);
8291 work->inode = inode;
8292 work->wait = wait;
8293 work->delay_iput = delay_iput;
8294 work->work.func = btrfs_run_delalloc_work;
8295
8296 return work;
8297}
8298
8299void btrfs_wait_and_free_delalloc_work(struct btrfs_delalloc_work *work)
8300{
8301 wait_for_completion(&work->completion);
8302 kmem_cache_free(btrfs_delalloc_work_cachep, work);
8303}
8304
Chris Masond352ac62008-09-29 15:18:18 -04008305/*
8306 * some fairly slow code that needs optimization. This walks the list
8307 * of all the inodes with pending delalloc and forces them to disk.
8308 */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00008309int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput)
Chris Masonea8c2812008-08-04 23:17:27 -04008310{
Chris Masonea8c2812008-08-04 23:17:27 -04008311 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04008312 struct inode *inode;
Miao Xie8ccf6f192012-10-25 09:28:04 +00008313 struct btrfs_delalloc_work *work, *next;
8314 struct list_head works;
Miao Xie1eafa6c2013-01-22 10:49:00 +00008315 struct list_head splice;
Miao Xie8ccf6f192012-10-25 09:28:04 +00008316 int ret = 0;
Chris Masonea8c2812008-08-04 23:17:27 -04008317
Yan Zhengc146afa2008-11-12 14:34:12 -05008318 if (root->fs_info->sb->s_flags & MS_RDONLY)
8319 return -EROFS;
8320
Miao Xie8ccf6f192012-10-25 09:28:04 +00008321 INIT_LIST_HEAD(&works);
Miao Xie1eafa6c2013-01-22 10:49:00 +00008322 INIT_LIST_HEAD(&splice);
Miao Xie63607cc2013-01-22 10:50:35 +00008323
Chris Mason75eff682008-12-15 15:54:40 -05008324 spin_lock(&root->fs_info->delalloc_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +00008325 list_splice_init(&root->fs_info->delalloc_inodes, &splice);
8326 while (!list_empty(&splice)) {
8327 binode = list_entry(splice.next, struct btrfs_inode,
Chris Masonea8c2812008-08-04 23:17:27 -04008328 delalloc_inodes);
Miao Xie1eafa6c2013-01-22 10:49:00 +00008329
8330 list_del_init(&binode->delalloc_inodes);
8331
Zheng Yan5b21f2e2008-09-26 10:05:38 -04008332 inode = igrab(&binode->vfs_inode);
Miao Xiedf0af1a2013-01-29 10:11:59 +00008333 if (!inode) {
8334 clear_bit(BTRFS_INODE_IN_DELALLOC_LIST,
8335 &binode->runtime_flags);
Miao Xie1eafa6c2013-01-22 10:49:00 +00008336 continue;
Miao Xiedf0af1a2013-01-29 10:11:59 +00008337 }
Miao Xie1eafa6c2013-01-22 10:49:00 +00008338
8339 list_add_tail(&binode->delalloc_inodes,
8340 &root->fs_info->delalloc_inodes);
Chris Mason75eff682008-12-15 15:54:40 -05008341 spin_unlock(&root->fs_info->delalloc_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +00008342
8343 work = btrfs_alloc_delalloc_work(inode, 0, delay_iput);
8344 if (unlikely(!work)) {
8345 ret = -ENOMEM;
8346 goto out;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04008347 }
Miao Xie1eafa6c2013-01-22 10:49:00 +00008348 list_add_tail(&work->list, &works);
8349 btrfs_queue_worker(&root->fs_info->flush_workers,
8350 &work->work);
8351
Zheng Yan5b21f2e2008-09-26 10:05:38 -04008352 cond_resched();
Chris Mason75eff682008-12-15 15:54:40 -05008353 spin_lock(&root->fs_info->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04008354 }
Chris Mason75eff682008-12-15 15:54:40 -05008355 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -04008356
Miao Xie1eafa6c2013-01-22 10:49:00 +00008357 list_for_each_entry_safe(work, next, &works, list) {
8358 list_del_init(&work->list);
8359 btrfs_wait_and_free_delalloc_work(work);
8360 }
8361
Chris Mason8c8bee12008-09-29 11:19:10 -04008362 /* the filemap_flush will queue IO into the worker threads, but
8363 * we have to make sure the IO is actually started and that
8364 * ordered extents get created before we return
8365 */
8366 atomic_inc(&root->fs_info->async_submit_draining);
Chris Masond3977122009-01-05 21:25:51 -05008367 while (atomic_read(&root->fs_info->nr_async_submits) ||
Chris Mason771ed682008-11-06 22:02:51 -05008368 atomic_read(&root->fs_info->async_delalloc_pages)) {
Chris Mason8c8bee12008-09-29 11:19:10 -04008369 wait_event(root->fs_info->async_submit_wait,
Chris Mason771ed682008-11-06 22:02:51 -05008370 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
8371 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee12008-09-29 11:19:10 -04008372 }
8373 atomic_dec(&root->fs_info->async_submit_draining);
Miao Xie1eafa6c2013-01-22 10:49:00 +00008374 return 0;
Miao Xie8ccf6f192012-10-25 09:28:04 +00008375out:
8376 list_for_each_entry_safe(work, next, &works, list) {
8377 list_del_init(&work->list);
8378 btrfs_wait_and_free_delalloc_work(work);
8379 }
Miao Xie1eafa6c2013-01-22 10:49:00 +00008380
8381 if (!list_empty_careful(&splice)) {
8382 spin_lock(&root->fs_info->delalloc_lock);
8383 list_splice_tail(&splice, &root->fs_info->delalloc_inodes);
8384 spin_unlock(&root->fs_info->delalloc_lock);
8385 }
Miao Xie8ccf6f192012-10-25 09:28:04 +00008386 return ret;
Chris Masonea8c2812008-08-04 23:17:27 -04008387}
8388
Chris Mason39279cc2007-06-12 06:35:45 -04008389static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
8390 const char *symname)
8391{
8392 struct btrfs_trans_handle *trans;
8393 struct btrfs_root *root = BTRFS_I(dir)->root;
8394 struct btrfs_path *path;
8395 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05008396 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04008397 int err;
8398 int drop_inode = 0;
8399 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04008400 u64 index = 0 ;
Chris Mason39279cc2007-06-12 06:35:45 -04008401 int name_len;
8402 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04008403 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04008404 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04008405 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04008406
8407 name_len = strlen(symname) + 1;
8408 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
8409 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05008410
Josef Bacik9ed74f22009-09-11 16:12:44 -04008411 /*
8412 * 2 items for inode item and ref
8413 * 2 items for dir items
8414 * 1 item for xattr if selinux is on
8415 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04008416 trans = btrfs_start_transaction(root, 5);
8417 if (IS_ERR(trans))
8418 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05008419
Li Zefan581bb052011-04-20 10:06:11 +08008420 err = btrfs_find_free_ino(root, &objectid);
8421 if (err)
8422 goto out_unlock;
8423
Josef Bacikaec74772008-07-24 12:12:38 -04008424 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08008425 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04008426 S_IFLNK|S_IRWXUGO, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04008427 if (IS_ERR(inode)) {
8428 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04008429 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04008430 }
Chris Mason39279cc2007-06-12 06:35:45 -04008431
Eric Paris2a7dba32011-02-01 11:05:39 -05008432 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04008433 if (err) {
8434 drop_inode = 1;
8435 goto out_unlock;
8436 }
8437
Casey Schauflerad19db72011-12-15 10:09:07 -05008438 /*
8439 * If the active LSM wants to access the inode during
8440 * d_instantiate it needs these. Smack checks to see
8441 * if the filesystem supports xattrs by looking at the
8442 * ops vector.
8443 */
8444 inode->i_fop = &btrfs_file_operations;
8445 inode->i_op = &btrfs_file_inode_operations;
8446
Josef Bacika1b075d2010-11-19 20:36:11 +00008447 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04008448 if (err)
8449 drop_inode = 1;
8450 else {
8451 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04008452 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05008453 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04008454 }
Chris Mason39279cc2007-06-12 06:35:45 -04008455 if (drop_inode)
8456 goto out_unlock;
8457
8458 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07008459 if (!path) {
8460 err = -ENOMEM;
8461 drop_inode = 1;
8462 goto out_unlock;
8463 }
Li Zefan33345d012011-04-20 10:31:50 +08008464 key.objectid = btrfs_ino(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04008465 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04008466 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
8467 datasize = btrfs_file_extent_calc_inline_size(name_len);
8468 err = btrfs_insert_empty_item(trans, root, path, &key,
8469 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04008470 if (err) {
8471 drop_inode = 1;
Julia Lawallb0839162011-05-14 07:10:51 +00008472 btrfs_free_path(path);
Chris Mason54aa1f42007-06-22 14:16:25 -04008473 goto out_unlock;
8474 }
Chris Mason5f39d392007-10-15 16:14:19 -04008475 leaf = path->nodes[0];
8476 ei = btrfs_item_ptr(leaf, path->slots[0],
8477 struct btrfs_file_extent_item);
8478 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
8479 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04008480 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -04008481 btrfs_set_file_extent_encryption(leaf, ei, 0);
8482 btrfs_set_file_extent_compression(leaf, ei, 0);
8483 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
8484 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
8485
Chris Mason39279cc2007-06-12 06:35:45 -04008486 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04008487 write_extent_buffer(leaf, symname, ptr, name_len);
8488 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04008489 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04008490
Chris Mason39279cc2007-06-12 06:35:45 -04008491 inode->i_op = &btrfs_symlink_inode_operations;
8492 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04008493 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Yan Zhengd899e052008-10-30 14:25:28 -04008494 inode_set_bytes(inode, name_len);
Chris Masondbe674a2008-07-17 12:54:05 -04008495 btrfs_i_size_write(inode, name_len - 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04008496 err = btrfs_update_inode(trans, root, inode);
8497 if (err)
8498 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04008499
8500out_unlock:
Al Viro08c422c2011-12-23 07:58:13 -05008501 if (!err)
8502 d_instantiate(dentry, inode);
Josef Bacik7ad85bb2012-01-12 19:10:12 -05008503 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04008504 if (drop_inode) {
8505 inode_dec_link_count(inode);
8506 iput(inode);
8507 }
Liu Bob53d3f52012-11-14 14:34:34 +00008508 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04008509 return err;
8510}
Chris Mason16432982008-04-10 10:23:21 -04008511
Josef Bacik0af3d002010-06-21 14:48:16 -04008512static int __btrfs_prealloc_file_range(struct inode *inode, int mode,
8513 u64 start, u64 num_bytes, u64 min_size,
8514 loff_t actual_len, u64 *alloc_hint,
8515 struct btrfs_trans_handle *trans)
Yan Zhengd899e052008-10-30 14:25:28 -04008516{
Josef Bacik5dc562c2012-08-17 13:14:17 -04008517 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
8518 struct extent_map *em;
Yan Zhengd899e052008-10-30 14:25:28 -04008519 struct btrfs_root *root = BTRFS_I(inode)->root;
8520 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -04008521 u64 cur_offset = start;
Josef Bacik55a61d12010-11-22 18:50:32 +00008522 u64 i_size;
Chris Mason154ea282013-03-05 11:11:26 -05008523 u64 cur_bytes;
Yan Zhengd899e052008-10-30 14:25:28 -04008524 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04008525 bool own_trans = true;
Yan Zhengd899e052008-10-30 14:25:28 -04008526
Josef Bacik0af3d002010-06-21 14:48:16 -04008527 if (trans)
8528 own_trans = false;
Yan Zhengd899e052008-10-30 14:25:28 -04008529 while (num_bytes > 0) {
Josef Bacik0af3d002010-06-21 14:48:16 -04008530 if (own_trans) {
8531 trans = btrfs_start_transaction(root, 3);
8532 if (IS_ERR(trans)) {
8533 ret = PTR_ERR(trans);
8534 break;
8535 }
Yan Zhengd899e052008-10-30 14:25:28 -04008536 }
Yan, Zheng5a303d52009-11-12 09:34:52 +00008537
Chris Mason154ea282013-03-05 11:11:26 -05008538 cur_bytes = min(num_bytes, 256ULL * 1024 * 1024);
8539 cur_bytes = max(cur_bytes, min_size);
8540 ret = btrfs_reserve_extent(trans, root, cur_bytes,
Zach Brown24542bf2012-11-16 00:04:43 +00008541 min_size, 0, *alloc_hint, &ins, 1);
Yan, Zheng5a303d52009-11-12 09:34:52 +00008542 if (ret) {
Josef Bacik0af3d002010-06-21 14:48:16 -04008543 if (own_trans)
8544 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04008545 break;
Yan, Zheng5a303d52009-11-12 09:34:52 +00008546 }
8547
Yan Zhengd899e052008-10-30 14:25:28 -04008548 ret = insert_reserved_file_extent(trans, inode,
8549 cur_offset, ins.objectid,
8550 ins.offset, ins.offset,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00008551 ins.offset, 0, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04008552 BTRFS_FILE_EXTENT_PREALLOC);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008553 if (ret) {
8554 btrfs_abort_transaction(trans, root, ret);
8555 if (own_trans)
8556 btrfs_end_transaction(trans, root);
8557 break;
8558 }
Chris Masona1ed8352009-09-11 12:27:37 -04008559 btrfs_drop_extent_cache(inode, cur_offset,
8560 cur_offset + ins.offset -1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +00008561
Josef Bacik5dc562c2012-08-17 13:14:17 -04008562 em = alloc_extent_map();
8563 if (!em) {
8564 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
8565 &BTRFS_I(inode)->runtime_flags);
8566 goto next;
8567 }
8568
8569 em->start = cur_offset;
8570 em->orig_start = cur_offset;
8571 em->len = ins.offset;
8572 em->block_start = ins.objectid;
8573 em->block_len = ins.offset;
Josef Bacikb4939682012-12-03 10:31:19 -05008574 em->orig_block_len = ins.offset;
Josef Bacikcc95bef2013-04-04 14:31:27 -04008575 em->ram_bytes = ins.offset;
Josef Bacik5dc562c2012-08-17 13:14:17 -04008576 em->bdev = root->fs_info->fs_devices->latest_bdev;
8577 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
8578 em->generation = trans->transid;
8579
8580 while (1) {
8581 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04008582 ret = add_extent_mapping(em_tree, em, 1);
Josef Bacik5dc562c2012-08-17 13:14:17 -04008583 write_unlock(&em_tree->lock);
8584 if (ret != -EEXIST)
8585 break;
8586 btrfs_drop_extent_cache(inode, cur_offset,
8587 cur_offset + ins.offset - 1,
8588 0);
8589 }
8590 free_extent_map(em);
8591next:
Yan Zhengd899e052008-10-30 14:25:28 -04008592 num_bytes -= ins.offset;
8593 cur_offset += ins.offset;
Yan, Zhengefa56462010-05-16 10:49:59 -04008594 *alloc_hint = ins.objectid + ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +00008595
Josef Bacik0c4d2d92012-04-05 15:03:02 -04008596 inode_inc_iversion(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04008597 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +02008598 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -04008599 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
Yan, Zhengefa56462010-05-16 10:49:59 -04008600 (actual_len > inode->i_size) &&
8601 (cur_offset > inode->i_size)) {
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00008602 if (cur_offset > actual_len)
Josef Bacik55a61d12010-11-22 18:50:32 +00008603 i_size = actual_len;
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00008604 else
Josef Bacik55a61d12010-11-22 18:50:32 +00008605 i_size = cur_offset;
8606 i_size_write(inode, i_size);
8607 btrfs_ordered_update_i_size(inode, i_size, NULL);
Yan, Zheng5a303d52009-11-12 09:34:52 +00008608 }
8609
Yan Zhengd899e052008-10-30 14:25:28 -04008610 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008611
8612 if (ret) {
8613 btrfs_abort_transaction(trans, root, ret);
8614 if (own_trans)
8615 btrfs_end_transaction(trans, root);
8616 break;
8617 }
Yan Zhengd899e052008-10-30 14:25:28 -04008618
Josef Bacik0af3d002010-06-21 14:48:16 -04008619 if (own_trans)
8620 btrfs_end_transaction(trans, root);
Yan, Zheng5a303d52009-11-12 09:34:52 +00008621 }
Yan Zhengd899e052008-10-30 14:25:28 -04008622 return ret;
8623}
8624
Josef Bacik0af3d002010-06-21 14:48:16 -04008625int btrfs_prealloc_file_range(struct inode *inode, int mode,
8626 u64 start, u64 num_bytes, u64 min_size,
8627 loff_t actual_len, u64 *alloc_hint)
8628{
8629 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
8630 min_size, actual_len, alloc_hint,
8631 NULL);
8632}
8633
8634int btrfs_prealloc_file_range_trans(struct inode *inode,
8635 struct btrfs_trans_handle *trans, int mode,
8636 u64 start, u64 num_bytes, u64 min_size,
8637 loff_t actual_len, u64 *alloc_hint)
8638{
8639 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
8640 min_size, actual_len, alloc_hint, trans);
8641}
8642
Chris Masone6dcd2d2008-07-17 12:53:50 -04008643static int btrfs_set_page_dirty(struct page *page)
8644{
Chris Masone6dcd2d2008-07-17 12:53:50 -04008645 return __set_page_dirty_nobuffers(page);
8646}
8647
Al Viro10556cb2011-06-20 19:28:19 -04008648static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -05008649{
Li Zefanb83cc962010-12-20 16:04:08 +08008650 struct btrfs_root *root = BTRFS_I(inode)->root;
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +00008651 umode_t mode = inode->i_mode;
Li Zefanb83cc962010-12-20 16:04:08 +08008652
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +00008653 if (mask & MAY_WRITE &&
8654 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) {
8655 if (btrfs_root_readonly(root))
8656 return -EROFS;
8657 if (BTRFS_I(inode)->flags & BTRFS_INODE_READONLY)
8658 return -EACCES;
8659 }
Al Viro2830ba72011-06-20 19:16:29 -04008660 return generic_permission(inode, mask);
Yanfdebe2b2008-01-14 13:26:08 -05008661}
Chris Mason39279cc2007-06-12 06:35:45 -04008662
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07008663static const struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -05008664 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -04008665 .lookup = btrfs_lookup,
8666 .create = btrfs_create,
8667 .unlink = btrfs_unlink,
8668 .link = btrfs_link,
8669 .mkdir = btrfs_mkdir,
8670 .rmdir = btrfs_rmdir,
8671 .rename = btrfs_rename,
8672 .symlink = btrfs_symlink,
8673 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04008674 .mknod = btrfs_mknod,
Christoph Hellwig95819c02008-08-28 06:21:17 -04008675 .setxattr = btrfs_setxattr,
8676 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05008677 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04008678 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05008679 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02008680 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04008681};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07008682static const struct inode_operations btrfs_dir_ro_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04008683 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05008684 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02008685 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04008686};
Yan, Zheng76dda932009-09-21 16:00:26 -04008687
Alexey Dobriyan828c0952009-10-01 15:43:56 -07008688static const struct file_operations btrfs_dir_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04008689 .llseek = generic_file_llseek,
8690 .read = generic_read_dir,
David Woodhousecbdf5a22008-08-06 19:42:33 +01008691 .readdir = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04008692 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04008693#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04008694 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04008695#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04008696 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -04008697 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -04008698};
8699
Chris Masond1310b22008-01-24 16:13:08 -05008700static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04008701 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05008702 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04008703 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04008704 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04008705 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04008706 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05008707 .set_bit_hook = btrfs_set_bit_hook,
8708 .clear_bit_hook = btrfs_clear_bit_hook,
Josef Bacik9ed74f22009-09-11 16:12:44 -04008709 .merge_extent_hook = btrfs_merge_extent_hook,
8710 .split_extent_hook = btrfs_split_extent_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04008711};
8712
Chris Mason35054392009-01-21 13:11:13 -05008713/*
8714 * btrfs doesn't support the bmap operation because swapfiles
8715 * use bmap to make a mapping of extents in the file. They assume
8716 * these extents won't change over the life of the file and they
8717 * use the bmap result to do IO directly to the drive.
8718 *
8719 * the btrfs bmap call would return logical addresses that aren't
8720 * suitable for IO and they also will change frequently as COW
8721 * operations happen. So, swapfile + btrfs == corruption.
8722 *
8723 * For now we're avoiding this by dropping bmap.
8724 */
Alexey Dobriyan7f094102009-09-21 17:01:10 -07008725static const struct address_space_operations btrfs_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04008726 .readpage = btrfs_readpage,
8727 .writepage = btrfs_writepage,
Chris Masonb293f022007-11-01 19:45:34 -04008728 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05008729 .readpages = btrfs_readpages,
Chris Mason16432982008-04-10 10:23:21 -04008730 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04008731 .invalidatepage = btrfs_invalidatepage,
8732 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04008733 .set_page_dirty = btrfs_set_page_dirty,
Andi Kleen465fdd92009-09-16 11:50:18 +02008734 .error_remove_page = generic_error_remove_page,
Chris Mason39279cc2007-06-12 06:35:45 -04008735};
8736
Alexey Dobriyan7f094102009-09-21 17:01:10 -07008737static const struct address_space_operations btrfs_symlink_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04008738 .readpage = btrfs_readpage,
8739 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04008740 .invalidatepage = btrfs_invalidatepage,
8741 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04008742};
8743
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07008744static const struct inode_operations btrfs_file_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04008745 .getattr = btrfs_getattr,
8746 .setattr = btrfs_setattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04008747 .setxattr = btrfs_setxattr,
8748 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05008749 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04008750 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05008751 .permission = btrfs_permission,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05008752 .fiemap = btrfs_fiemap,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02008753 .get_acl = btrfs_get_acl,
Josef Bacike41f9412012-03-26 09:46:47 -04008754 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -04008755};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07008756static const struct inode_operations btrfs_special_inode_operations = {
Josef Bacik618e21d2007-07-11 10:18:17 -04008757 .getattr = btrfs_getattr,
8758 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05008759 .permission = btrfs_permission,
Christoph Hellwig95819c02008-08-28 06:21:17 -04008760 .setxattr = btrfs_setxattr,
8761 .getxattr = btrfs_getxattr,
Josef Bacik33268ea2008-07-24 12:16:36 -04008762 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04008763 .removexattr = btrfs_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02008764 .get_acl = btrfs_get_acl,
Josef Bacike41f9412012-03-26 09:46:47 -04008765 .update_time = btrfs_update_time,
Josef Bacik618e21d2007-07-11 10:18:17 -04008766};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07008767static const struct inode_operations btrfs_symlink_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04008768 .readlink = generic_readlink,
8769 .follow_link = page_follow_link_light,
8770 .put_link = page_put_link,
Li Zefanf2095612010-11-19 02:05:24 +00008771 .getattr = btrfs_getattr,
Josef Bacik22c44fe2011-11-30 10:45:38 -05008772 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05008773 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -05008774 .setxattr = btrfs_setxattr,
8775 .getxattr = btrfs_getxattr,
8776 .listxattr = btrfs_listxattr,
8777 .removexattr = btrfs_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02008778 .get_acl = btrfs_get_acl,
Josef Bacike41f9412012-03-26 09:46:47 -04008779 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -04008780};
Yan, Zheng76dda932009-09-21 16:00:26 -04008781
Alexey Dobriyan82d339d2009-10-09 09:54:36 -04008782const struct dentry_operations btrfs_dentry_operations = {
Yan, Zheng76dda932009-09-21 16:00:26 -04008783 .d_delete = btrfs_dentry_delete,
Josef Bacikb4aff1f2011-06-28 16:18:59 -04008784 .d_release = btrfs_dentry_release,
Yan, Zheng76dda932009-09-21 16:00:26 -04008785};