blob: 2dc59734e0719ea1b5f5fbdaac7973771eb22e20 [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>
Chris Mason4b4e25f2008-11-20 10:22:27 -050043#include "compat.h"
Chris Mason39279cc2007-06-12 06:35:45 -040044#include "ctree.h"
45#include "disk-io.h"
46#include "transaction.h"
47#include "btrfs_inode.h"
Chris Mason39279cc2007-06-12 06:35:45 -040048#include "print-tree.h"
Chris Masone6dcd2d2008-07-17 12:53:50 -040049#include "ordered-data.h"
Christoph Hellwig95819c02008-08-28 06:21:17 -040050#include "xattr.h"
Chris Masone02119d2008-09-05 16:13:11 -040051#include "tree-log.h"
Jan Schmidt4a54c8c2011-07-22 15:41:52 +020052#include "volumes.h"
Chris Masonc8b97812008-10-29 14:49:59 -040053#include "compression.h"
Chris Masonb4ce94d2009-02-04 09:25:08 -050054#include "locking.h"
Josef Bacikdc89e982011-01-28 17:05:48 -050055#include "free-space-cache.h"
Li Zefan581bb052011-04-20 10:06:11 +080056#include "inode-map.h"
Chris Mason39279cc2007-06-12 06:35:45 -040057
58struct btrfs_iget_args {
59 u64 ino;
60 struct btrfs_root *root;
61};
62
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070063static const struct inode_operations btrfs_dir_inode_operations;
64static const struct inode_operations btrfs_symlink_inode_operations;
65static const struct inode_operations btrfs_dir_ro_inode_operations;
66static const struct inode_operations btrfs_special_inode_operations;
67static const struct inode_operations btrfs_file_inode_operations;
Alexey Dobriyan7f094102009-09-21 17:01:10 -070068static const struct address_space_operations btrfs_aops;
69static const struct address_space_operations btrfs_symlink_aops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -070070static const struct file_operations btrfs_dir_file_operations;
Chris Masond1310b22008-01-24 16:13:08 -050071static struct extent_io_ops btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -040072
73static struct kmem_cache *btrfs_inode_cachep;
Miao Xie8ccf6f192012-10-25 09:28:04 +000074static struct kmem_cache *btrfs_delalloc_work_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040075struct kmem_cache *btrfs_trans_handle_cachep;
76struct kmem_cache *btrfs_transaction_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040077struct kmem_cache *btrfs_path_cachep;
Josef Bacikdc89e982011-01-28 17:05:48 -050078struct kmem_cache *btrfs_free_space_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040079
80#define S_SHIFT 12
81static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
82 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
83 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
84 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
85 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
86 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
87 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
88 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
89};
90
Eric Sandeen3972f262013-01-12 02:57:22 +000091static int btrfs_setsize(struct inode *inode, struct iattr *attr);
Josef Bacika41ad392011-01-31 15:30:16 -050092static int btrfs_truncate(struct inode *inode);
Josef Bacik5fd02042012-05-02 14:00:54 -040093static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent);
Chris Mason771ed682008-11-06 22:02:51 -050094static noinline int cow_file_range(struct inode *inode,
95 struct page *locked_page,
96 u64 start, u64 end, int *page_started,
97 unsigned long *nr_written, int unlock);
Josef Bacik70c8a912012-10-11 16:54:30 -040098static struct extent_map *create_pinned_em(struct inode *inode, u64 start,
99 u64 len, u64 orig_start,
100 u64 block_start, u64 block_len,
101 u64 orig_block_len, int type);
Josef Bacik7b128762008-07-24 12:17:14 -0400102
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000103static int btrfs_init_inode_security(struct btrfs_trans_handle *trans,
Eric Paris2a7dba32011-02-01 11:05:39 -0500104 struct inode *inode, struct inode *dir,
105 const struct qstr *qstr)
Jim Owens0279b4c2009-02-04 09:29:13 -0500106{
107 int err;
108
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000109 err = btrfs_init_acl(trans, inode, dir);
Jim Owens0279b4c2009-02-04 09:29:13 -0500110 if (!err)
Eric Paris2a7dba32011-02-01 11:05:39 -0500111 err = btrfs_xattr_security_init(trans, inode, dir, qstr);
Jim Owens0279b4c2009-02-04 09:29:13 -0500112 return err;
113}
114
Chris Masond352ac62008-09-29 15:18:18 -0400115/*
Chris Masonc8b97812008-10-29 14:49:59 -0400116 * this does all the hard work for inserting an inline extent into
117 * the btree. The caller should have done a btrfs_drop_extents so that
118 * no overlapping inline items exist in the btree
119 */
Chris Masond3977122009-01-05 21:25:51 -0500120static noinline int insert_inline_extent(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400121 struct btrfs_root *root, struct inode *inode,
122 u64 start, size_t size, size_t compressed_size,
Li Zefanfe3f5662011-03-28 08:30:38 +0000123 int compress_type,
Chris Masonc8b97812008-10-29 14:49:59 -0400124 struct page **compressed_pages)
125{
126 struct btrfs_key key;
127 struct btrfs_path *path;
128 struct extent_buffer *leaf;
129 struct page *page = NULL;
130 char *kaddr;
131 unsigned long ptr;
132 struct btrfs_file_extent_item *ei;
133 int err = 0;
134 int ret;
135 size_t cur_size = size;
136 size_t datasize;
137 unsigned long offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400138
Li Zefanfe3f5662011-03-28 08:30:38 +0000139 if (compressed_size && compressed_pages)
Chris Masonc8b97812008-10-29 14:49:59 -0400140 cur_size = compressed_size;
Chris Masonc8b97812008-10-29 14:49:59 -0400141
Chris Masond3977122009-01-05 21:25:51 -0500142 path = btrfs_alloc_path();
143 if (!path)
Chris Masonc8b97812008-10-29 14:49:59 -0400144 return -ENOMEM;
145
Chris Masonb9473432009-03-13 11:00:37 -0400146 path->leave_spinning = 1;
Chris Masonc8b97812008-10-29 14:49:59 -0400147
Li Zefan33345d012011-04-20 10:31:50 +0800148 key.objectid = btrfs_ino(inode);
Chris Masonc8b97812008-10-29 14:49:59 -0400149 key.offset = start;
150 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
Chris Masonc8b97812008-10-29 14:49:59 -0400151 datasize = btrfs_file_extent_calc_inline_size(cur_size);
152
153 inode_add_bytes(inode, size);
154 ret = btrfs_insert_empty_item(trans, root, path, &key,
155 datasize);
Chris Masonc8b97812008-10-29 14:49:59 -0400156 if (ret) {
157 err = ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400158 goto fail;
159 }
160 leaf = path->nodes[0];
161 ei = btrfs_item_ptr(leaf, path->slots[0],
162 struct btrfs_file_extent_item);
163 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
164 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
165 btrfs_set_file_extent_encryption(leaf, ei, 0);
166 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
167 btrfs_set_file_extent_ram_bytes(leaf, ei, size);
168 ptr = btrfs_file_extent_inline_start(ei);
169
Li Zefan261507a02010-12-17 14:21:50 +0800170 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -0400171 struct page *cpage;
172 int i = 0;
Chris Masond3977122009-01-05 21:25:51 -0500173 while (compressed_size > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -0400174 cpage = compressed_pages[i];
Chris Mason5b050f02008-11-11 09:34:41 -0500175 cur_size = min_t(unsigned long, compressed_size,
Chris Masonc8b97812008-10-29 14:49:59 -0400176 PAGE_CACHE_SIZE);
177
Cong Wang7ac687d2011-11-25 23:14:28 +0800178 kaddr = kmap_atomic(cpage);
Chris Masonc8b97812008-10-29 14:49:59 -0400179 write_extent_buffer(leaf, kaddr, ptr, cur_size);
Cong Wang7ac687d2011-11-25 23:14:28 +0800180 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400181
182 i++;
183 ptr += cur_size;
184 compressed_size -= cur_size;
185 }
186 btrfs_set_file_extent_compression(leaf, ei,
Li Zefan261507a02010-12-17 14:21:50 +0800187 compress_type);
Chris Masonc8b97812008-10-29 14:49:59 -0400188 } else {
189 page = find_get_page(inode->i_mapping,
190 start >> PAGE_CACHE_SHIFT);
191 btrfs_set_file_extent_compression(leaf, ei, 0);
Cong Wang7ac687d2011-11-25 23:14:28 +0800192 kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -0400193 offset = start & (PAGE_CACHE_SIZE - 1);
194 write_extent_buffer(leaf, kaddr + offset, ptr, size);
Cong Wang7ac687d2011-11-25 23:14:28 +0800195 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400196 page_cache_release(page);
197 }
198 btrfs_mark_buffer_dirty(leaf);
199 btrfs_free_path(path);
200
Yan, Zhengc2167752009-11-12 09:34:21 +0000201 /*
202 * we're an inline extent, so nobody can
203 * extend the file past i_size without locking
204 * a page we already have locked.
205 *
206 * We must do any isize and inode updates
207 * before we unlock the pages. Otherwise we
208 * could end up racing with unlink.
209 */
Chris Masonc8b97812008-10-29 14:49:59 -0400210 BTRFS_I(inode)->disk_i_size = inode->i_size;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100211 ret = btrfs_update_inode(trans, root, inode);
Yan, Zhengc2167752009-11-12 09:34:21 +0000212
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100213 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400214fail:
215 btrfs_free_path(path);
216 return err;
217}
218
219
220/*
221 * conditionally insert an inline extent into the file. This
222 * does the checks required to make sure the data is small enough
223 * to fit as an inline extent.
224 */
Chris Mason7f366cf2009-03-12 20:12:45 -0400225static noinline int cow_file_range_inline(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400226 struct btrfs_root *root,
227 struct inode *inode, u64 start, u64 end,
Li Zefanfe3f5662011-03-28 08:30:38 +0000228 size_t compressed_size, int compress_type,
Chris Masonc8b97812008-10-29 14:49:59 -0400229 struct page **compressed_pages)
230{
231 u64 isize = i_size_read(inode);
232 u64 actual_end = min(end + 1, isize);
233 u64 inline_len = actual_end - start;
234 u64 aligned_end = (end + root->sectorsize - 1) &
235 ~((u64)root->sectorsize - 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400236 u64 data_len = inline_len;
237 int ret;
238
239 if (compressed_size)
240 data_len = compressed_size;
241
242 if (start > 0 ||
Chris Mason70b99e62008-10-31 12:46:39 -0400243 actual_end >= PAGE_CACHE_SIZE ||
Chris Masonc8b97812008-10-29 14:49:59 -0400244 data_len >= BTRFS_MAX_INLINE_DATA_SIZE(root) ||
245 (!compressed_size &&
246 (actual_end & (root->sectorsize - 1)) == 0) ||
247 end + 1 < isize ||
248 data_len > root->fs_info->max_inline) {
249 return 1;
250 }
251
Josef Bacik26714852012-08-29 12:24:27 -0400252 ret = btrfs_drop_extents(trans, root, inode, start, aligned_end, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100253 if (ret)
254 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400255
256 if (isize > actual_end)
257 inline_len = min_t(u64, isize, actual_end);
258 ret = insert_inline_extent(trans, root, inode, start,
259 inline_len, compressed_size,
Li Zefanfe3f5662011-03-28 08:30:38 +0000260 compress_type, compressed_pages);
Josef Bacik2adcac12012-05-23 16:10:14 -0400261 if (ret && ret != -ENOSPC) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100262 btrfs_abort_transaction(trans, root, ret);
263 return ret;
Josef Bacik2adcac12012-05-23 16:10:14 -0400264 } else if (ret == -ENOSPC) {
265 return 1;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100266 }
Josef Bacik2adcac12012-05-23 16:10:14 -0400267
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400268 btrfs_delalloc_release_metadata(inode, end + 1 - start);
Chris Masona1ed8352009-09-11 12:27:37 -0400269 btrfs_drop_extent_cache(inode, start, aligned_end - 1, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400270 return 0;
271}
272
Chris Mason771ed682008-11-06 22:02:51 -0500273struct async_extent {
274 u64 start;
275 u64 ram_size;
276 u64 compressed_size;
277 struct page **pages;
278 unsigned long nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800279 int compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500280 struct list_head list;
281};
282
283struct async_cow {
284 struct inode *inode;
285 struct btrfs_root *root;
286 struct page *locked_page;
287 u64 start;
288 u64 end;
289 struct list_head extents;
290 struct btrfs_work work;
291};
292
293static noinline int add_async_extent(struct async_cow *cow,
294 u64 start, u64 ram_size,
295 u64 compressed_size,
296 struct page **pages,
Li Zefan261507a02010-12-17 14:21:50 +0800297 unsigned long nr_pages,
298 int compress_type)
Chris Mason771ed682008-11-06 22:02:51 -0500299{
300 struct async_extent *async_extent;
301
302 async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100303 BUG_ON(!async_extent); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -0500304 async_extent->start = start;
305 async_extent->ram_size = ram_size;
306 async_extent->compressed_size = compressed_size;
307 async_extent->pages = pages;
308 async_extent->nr_pages = nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800309 async_extent->compress_type = compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500310 list_add_tail(&async_extent->list, &cow->extents);
311 return 0;
312}
313
Chris Masonc8b97812008-10-29 14:49:59 -0400314/*
Chris Mason771ed682008-11-06 22:02:51 -0500315 * we create compressed extents in two phases. The first
316 * phase compresses a range of pages that have already been
317 * locked (both pages and state bits are locked).
Chris Masonc8b97812008-10-29 14:49:59 -0400318 *
Chris Mason771ed682008-11-06 22:02:51 -0500319 * This is done inside an ordered work queue, and the compression
320 * is spread across many cpus. The actual IO submission is step
321 * two, and the ordered work queue takes care of making sure that
322 * happens in the same order things were put onto the queue by
323 * writepages and friends.
Chris Masonc8b97812008-10-29 14:49:59 -0400324 *
Chris Mason771ed682008-11-06 22:02:51 -0500325 * If this code finds it can't get good compression, it puts an
326 * entry onto the work queue to write the uncompressed bytes. This
327 * makes sure that both compressed inodes and uncompressed inodes
Artem Bityutskiyb2570312012-07-25 18:12:06 +0300328 * are written in the same order that the flusher thread sent them
329 * down.
Chris Masond352ac62008-09-29 15:18:18 -0400330 */
Chris Mason771ed682008-11-06 22:02:51 -0500331static noinline int compress_file_range(struct inode *inode,
332 struct page *locked_page,
333 u64 start, u64 end,
334 struct async_cow *async_cow,
335 int *num_added)
Chris Masonb888db2b2007-08-27 16:49:44 -0400336{
337 struct btrfs_root *root = BTRFS_I(inode)->root;
338 struct btrfs_trans_handle *trans;
Chris Masondb945352007-10-15 16:15:53 -0400339 u64 num_bytes;
Chris Masondb945352007-10-15 16:15:53 -0400340 u64 blocksize = root->sectorsize;
Chris Masonc8b97812008-10-29 14:49:59 -0400341 u64 actual_end;
Chris Mason42dc7ba2008-12-15 11:44:56 -0500342 u64 isize = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400343 int ret = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400344 struct page **pages = NULL;
345 unsigned long nr_pages;
346 unsigned long nr_pages_ret = 0;
347 unsigned long total_compressed = 0;
348 unsigned long total_in = 0;
349 unsigned long max_compressed = 128 * 1024;
Chris Mason771ed682008-11-06 22:02:51 -0500350 unsigned long max_uncompressed = 128 * 1024;
Chris Masonc8b97812008-10-29 14:49:59 -0400351 int i;
352 int will_compress;
Li Zefan261507a02010-12-17 14:21:50 +0800353 int compress_type = root->fs_info->compress_type;
Chris Masonb888db2b2007-08-27 16:49:44 -0400354
Liu Bo4cb13e52012-03-29 09:57:45 -0400355 /* if this is a small write inside eof, kick off a defrag */
356 if ((end - start + 1) < 16 * 1024 &&
357 (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size))
Chris Mason4cb53002011-05-24 15:35:30 -0400358 btrfs_add_inode_defrag(NULL, inode);
359
Chris Mason42dc7ba2008-12-15 11:44:56 -0500360 actual_end = min_t(u64, isize, end + 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400361again:
362 will_compress = 0;
363 nr_pages = (end >> PAGE_CACHE_SHIFT) - (start >> PAGE_CACHE_SHIFT) + 1;
364 nr_pages = min(nr_pages, (128 * 1024UL) / PAGE_CACHE_SIZE);
365
Chris Masonf03d9301f2009-02-04 09:31:06 -0500366 /*
367 * we don't want to send crud past the end of i_size through
368 * compression, that's just a waste of CPU time. So, if the
369 * end of the file is before the start of our current
370 * requested range of bytes, we bail out to the uncompressed
371 * cleanup code that can deal with all of this.
372 *
373 * It isn't really the fastest way to fix things, but this is a
374 * very uncommon corner.
375 */
376 if (actual_end <= start)
377 goto cleanup_and_bail_uncompressed;
378
Chris Masonc8b97812008-10-29 14:49:59 -0400379 total_compressed = actual_end - start;
380
381 /* we want to make sure that amount of ram required to uncompress
382 * an extent is reasonable, so we limit the total size in ram
Chris Mason771ed682008-11-06 22:02:51 -0500383 * of a compressed extent to 128k. This is a crucial number
384 * because it also controls how easily we can spread reads across
385 * cpus for decompression.
386 *
387 * We also want to make sure the amount of IO required to do
388 * a random read is reasonably small, so we limit the size of
389 * a compressed extent to 128k.
Chris Masonc8b97812008-10-29 14:49:59 -0400390 */
391 total_compressed = min(total_compressed, max_uncompressed);
Chris Masondb945352007-10-15 16:15:53 -0400392 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
Chris Masonbe20aa92007-12-17 20:14:01 -0500393 num_bytes = max(blocksize, num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -0400394 total_in = 0;
395 ret = 0;
Chris Masondb945352007-10-15 16:15:53 -0400396
Chris Mason771ed682008-11-06 22:02:51 -0500397 /*
398 * we do compression for mount -o compress and when the
399 * inode has not been flagged as nocompress. This flag can
400 * change at any time if we discover bad compression ratios.
Chris Masonc8b97812008-10-29 14:49:59 -0400401 */
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200402 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS) &&
Chris Mason1e701a32010-03-11 09:42:04 -0500403 (btrfs_test_opt(root, COMPRESS) ||
Liu Bo75e7cb72011-03-22 10:12:20 +0000404 (BTRFS_I(inode)->force_compress) ||
405 (BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS))) {
Chris Masonc8b97812008-10-29 14:49:59 -0400406 WARN_ON(pages);
Chris Masoncfbc2462008-10-30 13:22:14 -0400407 pages = kzalloc(sizeof(struct page *) * nr_pages, GFP_NOFS);
Li Zefan560f7d72011-09-08 10:22:01 +0800408 if (!pages) {
409 /* just bail out to the uncompressed code */
410 goto cont;
411 }
Chris Mason179e29e2007-11-01 11:28:41 -0400412
Li Zefan261507a02010-12-17 14:21:50 +0800413 if (BTRFS_I(inode)->force_compress)
414 compress_type = BTRFS_I(inode)->force_compress;
415
416 ret = btrfs_compress_pages(compress_type,
417 inode->i_mapping, start,
418 total_compressed, pages,
419 nr_pages, &nr_pages_ret,
420 &total_in,
421 &total_compressed,
422 max_compressed);
Chris Masonc8b97812008-10-29 14:49:59 -0400423
424 if (!ret) {
425 unsigned long offset = total_compressed &
426 (PAGE_CACHE_SIZE - 1);
427 struct page *page = pages[nr_pages_ret - 1];
428 char *kaddr;
429
430 /* zero the tail end of the last page, we might be
431 * sending it down to disk
432 */
433 if (offset) {
Cong Wang7ac687d2011-11-25 23:14:28 +0800434 kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -0400435 memset(kaddr + offset, 0,
436 PAGE_CACHE_SIZE - offset);
Cong Wang7ac687d2011-11-25 23:14:28 +0800437 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400438 }
439 will_compress = 1;
440 }
441 }
Li Zefan560f7d72011-09-08 10:22:01 +0800442cont:
Chris Masonc8b97812008-10-29 14:49:59 -0400443 if (start == 0) {
Josef Bacik7a7eaa42011-04-13 12:54:33 -0400444 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100445 if (IS_ERR(trans)) {
446 ret = PTR_ERR(trans);
447 trans = NULL;
448 goto cleanup_and_out;
449 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400450 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason771ed682008-11-06 22:02:51 -0500451
Chris Masonc8b97812008-10-29 14:49:59 -0400452 /* lets try to make an inline extent */
Chris Mason771ed682008-11-06 22:02:51 -0500453 if (ret || total_in < (actual_end - start)) {
Chris Masonc8b97812008-10-29 14:49:59 -0400454 /* we didn't compress the entire range, try
Chris Mason771ed682008-11-06 22:02:51 -0500455 * to make an uncompressed inline extent.
Chris Masonc8b97812008-10-29 14:49:59 -0400456 */
457 ret = cow_file_range_inline(trans, root, inode,
Li Zefanfe3f5662011-03-28 08:30:38 +0000458 start, end, 0, 0, NULL);
Chris Masonc8b97812008-10-29 14:49:59 -0400459 } else {
Chris Mason771ed682008-11-06 22:02:51 -0500460 /* try making a compressed inline extent */
Chris Masonc8b97812008-10-29 14:49:59 -0400461 ret = cow_file_range_inline(trans, root, inode,
462 start, end,
Li Zefanfe3f5662011-03-28 08:30:38 +0000463 total_compressed,
464 compress_type, pages);
Chris Masonc8b97812008-10-29 14:49:59 -0400465 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100466 if (ret <= 0) {
Chris Mason771ed682008-11-06 22:02:51 -0500467 /*
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100468 * inline extent creation worked or returned error,
469 * we don't need to create any more async work items.
470 * Unlock and free up our temp pages.
Chris Mason771ed682008-11-06 22:02:51 -0500471 */
Chris Masonc8b97812008-10-29 14:49:59 -0400472 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400473 &BTRFS_I(inode)->io_tree,
474 start, end, NULL,
475 EXTENT_CLEAR_UNLOCK_PAGE | EXTENT_CLEAR_DIRTY |
Chris Masona3429ab2009-10-08 12:30:20 -0400476 EXTENT_CLEAR_DELALLOC |
Chris Masona791e352009-10-08 11:27:10 -0400477 EXTENT_SET_WRITEBACK | EXTENT_END_WRITEBACK);
Yan, Zhengc2167752009-11-12 09:34:21 +0000478
479 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400480 goto free_pages_out;
481 }
Yan, Zhengc2167752009-11-12 09:34:21 +0000482 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400483 }
484
485 if (will_compress) {
486 /*
487 * we aren't doing an inline extent round the compressed size
488 * up to a block size boundary so the allocator does sane
489 * things
490 */
491 total_compressed = (total_compressed + blocksize - 1) &
492 ~(blocksize - 1);
493
494 /*
495 * one last check to make sure the compression is really a
496 * win, compare the page count read with the blocks on disk
497 */
498 total_in = (total_in + PAGE_CACHE_SIZE - 1) &
499 ~(PAGE_CACHE_SIZE - 1);
500 if (total_compressed >= total_in) {
501 will_compress = 0;
502 } else {
Chris Masonc8b97812008-10-29 14:49:59 -0400503 num_bytes = total_in;
504 }
505 }
506 if (!will_compress && pages) {
507 /*
508 * the compression code ran but failed to make things smaller,
509 * free any pages it allocated and our page pointer array
510 */
511 for (i = 0; i < nr_pages_ret; i++) {
Chris Mason70b99e62008-10-31 12:46:39 -0400512 WARN_ON(pages[i]->mapping);
Chris Masonc8b97812008-10-29 14:49:59 -0400513 page_cache_release(pages[i]);
514 }
515 kfree(pages);
516 pages = NULL;
517 total_compressed = 0;
518 nr_pages_ret = 0;
519
520 /* flag the file so we don't compress in the future */
Chris Mason1e701a32010-03-11 09:42:04 -0500521 if (!btrfs_test_opt(root, FORCE_COMPRESS) &&
522 !(BTRFS_I(inode)->force_compress)) {
Chris Masona555f812010-01-28 16:18:15 -0500523 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
Chris Mason1e701a32010-03-11 09:42:04 -0500524 }
Chris Masonc8b97812008-10-29 14:49:59 -0400525 }
Chris Mason771ed682008-11-06 22:02:51 -0500526 if (will_compress) {
527 *num_added += 1;
528
529 /* the async work queues will take care of doing actual
530 * allocation on disk for these compressed pages,
531 * and will submit them to the elevator.
532 */
533 add_async_extent(async_cow, start, num_bytes,
Li Zefan261507a02010-12-17 14:21:50 +0800534 total_compressed, pages, nr_pages_ret,
535 compress_type);
Chris Mason771ed682008-11-06 22:02:51 -0500536
Yan, Zheng24ae6362010-12-06 07:02:36 +0000537 if (start + num_bytes < end) {
Chris Mason771ed682008-11-06 22:02:51 -0500538 start += num_bytes;
539 pages = NULL;
540 cond_resched();
541 goto again;
542 }
543 } else {
Chris Masonf03d9301f2009-02-04 09:31:06 -0500544cleanup_and_bail_uncompressed:
Chris Mason771ed682008-11-06 22:02:51 -0500545 /*
546 * No compression, but we still need to write the pages in
547 * the file we've been given so far. redirty the locked
548 * page if it corresponds to our extent and set things up
549 * for the async work queue to run cow_file_range to do
550 * the normal delalloc dance
551 */
552 if (page_offset(locked_page) >= start &&
553 page_offset(locked_page) <= end) {
554 __set_page_dirty_nobuffers(locked_page);
555 /* unlocked later on in the async handlers */
556 }
Li Zefan261507a02010-12-17 14:21:50 +0800557 add_async_extent(async_cow, start, end - start + 1,
558 0, NULL, 0, BTRFS_COMPRESS_NONE);
Chris Mason771ed682008-11-06 22:02:51 -0500559 *num_added += 1;
560 }
561
562out:
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100563 return ret;
Chris Mason771ed682008-11-06 22:02:51 -0500564
565free_pages_out:
566 for (i = 0; i < nr_pages_ret; i++) {
567 WARN_ON(pages[i]->mapping);
568 page_cache_release(pages[i]);
569 }
Chris Masond3977122009-01-05 21:25:51 -0500570 kfree(pages);
Chris Mason771ed682008-11-06 22:02:51 -0500571
572 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100573
574cleanup_and_out:
575 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
576 start, end, NULL,
577 EXTENT_CLEAR_UNLOCK_PAGE |
578 EXTENT_CLEAR_DIRTY |
579 EXTENT_CLEAR_DELALLOC |
580 EXTENT_SET_WRITEBACK |
581 EXTENT_END_WRITEBACK);
582 if (!trans || IS_ERR(trans))
583 btrfs_error(root->fs_info, ret, "Failed to join transaction");
584 else
585 btrfs_abort_transaction(trans, root, ret);
586 goto free_pages_out;
Chris Mason771ed682008-11-06 22:02:51 -0500587}
588
589/*
590 * phase two of compressed writeback. This is the ordered portion
591 * of the code, which only gets called in the order the work was
592 * queued. We walk all the async extents created by compress_file_range
593 * and send them down to the disk.
594 */
595static noinline int submit_compressed_extents(struct inode *inode,
596 struct async_cow *async_cow)
597{
598 struct async_extent *async_extent;
599 u64 alloc_hint = 0;
600 struct btrfs_trans_handle *trans;
601 struct btrfs_key ins;
602 struct extent_map *em;
603 struct btrfs_root *root = BTRFS_I(inode)->root;
604 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
605 struct extent_io_tree *io_tree;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500606 int ret = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500607
608 if (list_empty(&async_cow->extents))
609 return 0;
610
Chris Mason771ed682008-11-06 22:02:51 -0500611
Chris Masond3977122009-01-05 21:25:51 -0500612 while (!list_empty(&async_cow->extents)) {
Chris Mason771ed682008-11-06 22:02:51 -0500613 async_extent = list_entry(async_cow->extents.next,
614 struct async_extent, list);
615 list_del(&async_extent->list);
616
617 io_tree = &BTRFS_I(inode)->io_tree;
618
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500619retry:
Chris Mason771ed682008-11-06 22:02:51 -0500620 /* did the compression code fall back to uncompressed IO? */
621 if (!async_extent->pages) {
622 int page_started = 0;
623 unsigned long nr_written = 0;
624
625 lock_extent(io_tree, async_extent->start,
Josef Bacik2ac55d42010-02-03 19:33:23 +0000626 async_extent->start +
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100627 async_extent->ram_size - 1);
Chris Mason771ed682008-11-06 22:02:51 -0500628
629 /* allocate blocks */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500630 ret = cow_file_range(inode, async_cow->locked_page,
631 async_extent->start,
632 async_extent->start +
633 async_extent->ram_size - 1,
634 &page_started, &nr_written, 0);
Chris Mason771ed682008-11-06 22:02:51 -0500635
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100636 /* JDM XXX */
637
Chris Mason771ed682008-11-06 22:02:51 -0500638 /*
639 * if page_started, cow_file_range inserted an
640 * inline extent and took care of all the unlocking
641 * and IO for us. Otherwise, we need to submit
642 * all those pages down to the drive.
643 */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500644 if (!page_started && !ret)
Chris Mason771ed682008-11-06 22:02:51 -0500645 extent_write_locked_range(io_tree,
646 inode, async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500647 async_extent->start +
Chris Mason771ed682008-11-06 22:02:51 -0500648 async_extent->ram_size - 1,
649 btrfs_get_extent,
650 WB_SYNC_ALL);
651 kfree(async_extent);
652 cond_resched();
653 continue;
654 }
655
656 lock_extent(io_tree, async_extent->start,
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100657 async_extent->start + async_extent->ram_size - 1);
Chris Mason771ed682008-11-06 22:02:51 -0500658
Josef Bacik7a7eaa42011-04-13 12:54:33 -0400659 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100660 if (IS_ERR(trans)) {
661 ret = PTR_ERR(trans);
662 } else {
663 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
664 ret = btrfs_reserve_extent(trans, root,
Chris Mason771ed682008-11-06 22:02:51 -0500665 async_extent->compressed_size,
666 async_extent->compressed_size,
Josef Bacik81c9ad22012-01-18 10:56:06 -0500667 0, alloc_hint, &ins, 1);
Miao Xie962197b2012-09-11 23:27:35 -0600668 if (ret && ret != -ENOSPC)
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100669 btrfs_abort_transaction(trans, root, ret);
670 btrfs_end_transaction(trans, root);
671 }
Yan, Zhengc2167752009-11-12 09:34:21 +0000672
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500673 if (ret) {
674 int i;
675 for (i = 0; i < async_extent->nr_pages; i++) {
676 WARN_ON(async_extent->pages[i]->mapping);
677 page_cache_release(async_extent->pages[i]);
678 }
679 kfree(async_extent->pages);
680 async_extent->nr_pages = 0;
681 async_extent->pages = NULL;
682 unlock_extent(io_tree, async_extent->start,
683 async_extent->start +
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100684 async_extent->ram_size - 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100685 if (ret == -ENOSPC)
686 goto retry;
687 goto out_free; /* JDM: Requeue? */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500688 }
689
Yan, Zhengc2167752009-11-12 09:34:21 +0000690 /*
691 * here we're doing allocation and writeback of the
692 * compressed pages
693 */
694 btrfs_drop_extent_cache(inode, async_extent->start,
695 async_extent->start +
696 async_extent->ram_size - 1, 0);
697
David Sterba172ddd62011-04-21 00:48:27 +0200698 em = alloc_extent_map();
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100699 BUG_ON(!em); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -0500700 em->start = async_extent->start;
701 em->len = async_extent->ram_size;
Chris Mason445a6942008-11-10 11:53:33 -0500702 em->orig_start = em->start;
Josef Bacik2ab28f32012-10-12 15:27:49 -0400703 em->mod_start = em->start;
704 em->mod_len = em->len;
Chris Mason771ed682008-11-06 22:02:51 -0500705
706 em->block_start = ins.objectid;
707 em->block_len = ins.offset;
Josef Bacikb4939682012-12-03 10:31:19 -0500708 em->orig_block_len = ins.offset;
Chris Mason771ed682008-11-06 22:02:51 -0500709 em->bdev = root->fs_info->fs_devices->latest_bdev;
Li Zefan261507a02010-12-17 14:21:50 +0800710 em->compress_type = async_extent->compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500711 set_bit(EXTENT_FLAG_PINNED, &em->flags);
712 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Josef Bacik70c8a912012-10-11 16:54:30 -0400713 em->generation = -1;
Chris Mason771ed682008-11-06 22:02:51 -0500714
Chris Masond3977122009-01-05 21:25:51 -0500715 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400716 write_lock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500717 ret = add_extent_mapping(em_tree, em);
Josef Bacik70c8a912012-10-11 16:54:30 -0400718 if (!ret)
719 list_move(&em->list,
720 &em_tree->modified_extents);
Chris Mason890871b2009-09-02 16:24:52 -0400721 write_unlock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500722 if (ret != -EEXIST) {
723 free_extent_map(em);
724 break;
725 }
726 btrfs_drop_extent_cache(inode, async_extent->start,
727 async_extent->start +
728 async_extent->ram_size - 1, 0);
729 }
730
Li Zefan261507a02010-12-17 14:21:50 +0800731 ret = btrfs_add_ordered_extent_compress(inode,
732 async_extent->start,
733 ins.objectid,
734 async_extent->ram_size,
735 ins.offset,
736 BTRFS_ORDERED_COMPRESSED,
737 async_extent->compress_type);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100738 BUG_ON(ret); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -0500739
Chris Mason771ed682008-11-06 22:02:51 -0500740 /*
741 * clear dirty, set writeback and unlock the pages.
742 */
743 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400744 &BTRFS_I(inode)->io_tree,
745 async_extent->start,
746 async_extent->start +
747 async_extent->ram_size - 1,
748 NULL, EXTENT_CLEAR_UNLOCK_PAGE |
749 EXTENT_CLEAR_UNLOCK |
Chris Masona3429ab2009-10-08 12:30:20 -0400750 EXTENT_CLEAR_DELALLOC |
Chris Masona791e352009-10-08 11:27:10 -0400751 EXTENT_CLEAR_DIRTY | EXTENT_SET_WRITEBACK);
Chris Mason771ed682008-11-06 22:02:51 -0500752
753 ret = btrfs_submit_compressed_write(inode,
Chris Masond3977122009-01-05 21:25:51 -0500754 async_extent->start,
755 async_extent->ram_size,
756 ins.objectid,
757 ins.offset, async_extent->pages,
758 async_extent->nr_pages);
Chris Mason771ed682008-11-06 22:02:51 -0500759
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100760 BUG_ON(ret); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -0500761 alloc_hint = ins.objectid + ins.offset;
762 kfree(async_extent);
763 cond_resched();
764 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100765 ret = 0;
766out:
767 return ret;
768out_free:
769 kfree(async_extent);
770 goto out;
Chris Mason771ed682008-11-06 22:02:51 -0500771}
772
Josef Bacik4b46fce2010-05-23 11:00:55 -0400773static u64 get_extent_allocation_hint(struct inode *inode, u64 start,
774 u64 num_bytes)
775{
776 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
777 struct extent_map *em;
778 u64 alloc_hint = 0;
779
780 read_lock(&em_tree->lock);
781 em = search_extent_mapping(em_tree, start, num_bytes);
782 if (em) {
783 /*
784 * if block start isn't an actual block number then find the
785 * first block in this inode and use that as a hint. If that
786 * block is also bogus then just don't worry about it.
787 */
788 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
789 free_extent_map(em);
790 em = search_extent_mapping(em_tree, 0, 0);
791 if (em && em->block_start < EXTENT_MAP_LAST_BYTE)
792 alloc_hint = em->block_start;
793 if (em)
794 free_extent_map(em);
795 } else {
796 alloc_hint = em->block_start;
797 free_extent_map(em);
798 }
799 }
800 read_unlock(&em_tree->lock);
801
802 return alloc_hint;
803}
804
Chris Mason771ed682008-11-06 22:02:51 -0500805/*
806 * when extent_io.c finds a delayed allocation range in the file,
807 * the call backs end up in this code. The basic idea is to
808 * allocate extents on disk for the range, and create ordered data structs
809 * in ram to track those extents.
810 *
811 * locked_page is the page that writepage had locked already. We use
812 * it to make sure we don't do extra locks or unlocks.
813 *
814 * *page_started is set to one if we unlock locked_page and do everything
815 * required to start IO on it. It may be clean and already done with
816 * IO when we return.
817 */
Miao Xieb7d5b0a2012-11-01 07:32:18 +0000818static noinline int __cow_file_range(struct btrfs_trans_handle *trans,
819 struct inode *inode,
820 struct btrfs_root *root,
821 struct page *locked_page,
822 u64 start, u64 end, int *page_started,
823 unsigned long *nr_written,
824 int unlock)
Chris Mason771ed682008-11-06 22:02:51 -0500825{
Chris Mason771ed682008-11-06 22:02:51 -0500826 u64 alloc_hint = 0;
827 u64 num_bytes;
828 unsigned long ram_size;
829 u64 disk_num_bytes;
830 u64 cur_alloc_size;
831 u64 blocksize = root->sectorsize;
Chris Mason771ed682008-11-06 22:02:51 -0500832 struct btrfs_key ins;
833 struct extent_map *em;
834 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
835 int ret = 0;
836
Liu Bo83eea1f2012-07-10 05:28:39 -0600837 BUG_ON(btrfs_is_free_space_inode(inode));
Chris Mason771ed682008-11-06 22:02:51 -0500838
Chris Mason771ed682008-11-06 22:02:51 -0500839 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
840 num_bytes = max(blocksize, num_bytes);
841 disk_num_bytes = num_bytes;
Chris Mason771ed682008-11-06 22:02:51 -0500842
Chris Mason4cb53002011-05-24 15:35:30 -0400843 /* if this is a small write inside eof, kick off defrag */
Liu Bo4cb13e52012-03-29 09:57:45 -0400844 if (num_bytes < 64 * 1024 &&
845 (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size))
Chris Mason4cb53002011-05-24 15:35:30 -0400846 btrfs_add_inode_defrag(trans, inode);
847
Chris Mason771ed682008-11-06 22:02:51 -0500848 if (start == 0) {
849 /* lets try to make an inline extent */
850 ret = cow_file_range_inline(trans, root, inode,
Li Zefanfe3f5662011-03-28 08:30:38 +0000851 start, end, 0, 0, NULL);
Chris Mason771ed682008-11-06 22:02:51 -0500852 if (ret == 0) {
853 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400854 &BTRFS_I(inode)->io_tree,
855 start, end, NULL,
856 EXTENT_CLEAR_UNLOCK_PAGE |
857 EXTENT_CLEAR_UNLOCK |
858 EXTENT_CLEAR_DELALLOC |
859 EXTENT_CLEAR_DIRTY |
860 EXTENT_SET_WRITEBACK |
861 EXTENT_END_WRITEBACK);
Yan, Zhengc2167752009-11-12 09:34:21 +0000862
Chris Mason771ed682008-11-06 22:02:51 -0500863 *nr_written = *nr_written +
864 (end - start + PAGE_CACHE_SIZE) / PAGE_CACHE_SIZE;
865 *page_started = 1;
Chris Mason771ed682008-11-06 22:02:51 -0500866 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100867 } else if (ret < 0) {
868 btrfs_abort_transaction(trans, root, ret);
869 goto out_unlock;
Chris Mason771ed682008-11-06 22:02:51 -0500870 }
871 }
Chris Masonc8b97812008-10-29 14:49:59 -0400872
873 BUG_ON(disk_num_bytes >
David Sterba6c417612011-04-13 15:41:04 +0200874 btrfs_super_total_bytes(root->fs_info->super_copy));
Chris Masonc8b97812008-10-29 14:49:59 -0400875
Josef Bacik4b46fce2010-05-23 11:00:55 -0400876 alloc_hint = get_extent_allocation_hint(inode, start, num_bytes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400877 btrfs_drop_extent_cache(inode, start, start + num_bytes - 1, 0);
Chris Mason3b951512008-04-17 11:29:12 -0400878
Chris Masond3977122009-01-05 21:25:51 -0500879 while (disk_num_bytes > 0) {
Chris Masona791e352009-10-08 11:27:10 -0400880 unsigned long op;
881
Josef Bacik287a0ab2010-03-19 18:07:23 +0000882 cur_alloc_size = disk_num_bytes;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400883 ret = btrfs_reserve_extent(trans, root, cur_alloc_size,
Chris Mason771ed682008-11-06 22:02:51 -0500884 root->sectorsize, 0, alloc_hint,
Josef Bacik81c9ad22012-01-18 10:56:06 -0500885 &ins, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100886 if (ret < 0) {
887 btrfs_abort_transaction(trans, root, ret);
888 goto out_unlock;
889 }
Chris Masond3977122009-01-05 21:25:51 -0500890
David Sterba172ddd62011-04-21 00:48:27 +0200891 em = alloc_extent_map();
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100892 BUG_ON(!em); /* -ENOMEM */
Chris Masone6dcd2d2008-07-17 12:53:50 -0400893 em->start = start;
Chris Mason445a6942008-11-10 11:53:33 -0500894 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500895 ram_size = ins.offset;
896 em->len = ins.offset;
Josef Bacik2ab28f32012-10-12 15:27:49 -0400897 em->mod_start = em->start;
898 em->mod_len = em->len;
Chris Masonc8b97812008-10-29 14:49:59 -0400899
Chris Masone6dcd2d2008-07-17 12:53:50 -0400900 em->block_start = ins.objectid;
Chris Masonc8b97812008-10-29 14:49:59 -0400901 em->block_len = ins.offset;
Josef Bacikb4939682012-12-03 10:31:19 -0500902 em->orig_block_len = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400903 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -0400904 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Josef Bacik70c8a912012-10-11 16:54:30 -0400905 em->generation = -1;
Chris Masonc8b97812008-10-29 14:49:59 -0400906
Chris Masond3977122009-01-05 21:25:51 -0500907 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400908 write_lock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400909 ret = add_extent_mapping(em_tree, em);
Josef Bacik70c8a912012-10-11 16:54:30 -0400910 if (!ret)
911 list_move(&em->list,
912 &em_tree->modified_extents);
Chris Mason890871b2009-09-02 16:24:52 -0400913 write_unlock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400914 if (ret != -EEXIST) {
915 free_extent_map(em);
916 break;
917 }
918 btrfs_drop_extent_cache(inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -0400919 start + ram_size - 1, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400920 }
921
Chris Mason98d20f62008-04-14 09:46:10 -0400922 cur_alloc_size = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400923 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
Chris Mason771ed682008-11-06 22:02:51 -0500924 ram_size, cur_alloc_size, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100925 BUG_ON(ret); /* -ENOMEM */
Chris Masonc8b97812008-10-29 14:49:59 -0400926
Yan Zheng17d217f2008-12-12 10:03:38 -0500927 if (root->root_key.objectid ==
928 BTRFS_DATA_RELOC_TREE_OBJECTID) {
929 ret = btrfs_reloc_clone_csums(inode, start,
930 cur_alloc_size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100931 if (ret) {
932 btrfs_abort_transaction(trans, root, ret);
933 goto out_unlock;
934 }
Yan Zheng17d217f2008-12-12 10:03:38 -0500935 }
936
Chris Masond3977122009-01-05 21:25:51 -0500937 if (disk_num_bytes < cur_alloc_size)
Chris Mason3b951512008-04-17 11:29:12 -0400938 break;
Chris Masond3977122009-01-05 21:25:51 -0500939
Chris Masonc8b97812008-10-29 14:49:59 -0400940 /* we're not doing compressed IO, don't unlock the first
941 * page (which the caller expects to stay locked), don't
942 * clear any dirty bits and don't set any writeback bits
Chris Mason8b62b722009-09-02 16:53:46 -0400943 *
944 * Do set the Private2 bit so we know this page was properly
945 * setup for writepage
Chris Masonc8b97812008-10-29 14:49:59 -0400946 */
Chris Masona791e352009-10-08 11:27:10 -0400947 op = unlock ? EXTENT_CLEAR_UNLOCK_PAGE : 0;
948 op |= EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
949 EXTENT_SET_PRIVATE2;
950
Chris Masonc8b97812008-10-29 14:49:59 -0400951 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
952 start, start + ram_size - 1,
Chris Masona791e352009-10-08 11:27:10 -0400953 locked_page, op);
Chris Masonc8b97812008-10-29 14:49:59 -0400954 disk_num_bytes -= cur_alloc_size;
Chris Masonc59f8952007-12-17 20:14:04 -0500955 num_bytes -= cur_alloc_size;
956 alloc_hint = ins.objectid + ins.offset;
957 start += cur_alloc_size;
Chris Masonb888db2b2007-08-27 16:49:44 -0400958 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100959out:
Chris Masonbe20aa92007-12-17 20:14:01 -0500960 return ret;
Miao Xieb7d5b0a2012-11-01 07:32:18 +0000961
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100962out_unlock:
963 extent_clear_unlock_delalloc(inode,
964 &BTRFS_I(inode)->io_tree,
Josef Bacikbeb42dd2012-05-30 15:35:17 -0400965 start, end, locked_page,
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100966 EXTENT_CLEAR_UNLOCK_PAGE |
967 EXTENT_CLEAR_UNLOCK |
968 EXTENT_CLEAR_DELALLOC |
969 EXTENT_CLEAR_DIRTY |
970 EXTENT_SET_WRITEBACK |
971 EXTENT_END_WRITEBACK);
972
973 goto out;
Chris Mason771ed682008-11-06 22:02:51 -0500974}
Chris Masonc8b97812008-10-29 14:49:59 -0400975
Miao Xieb7d5b0a2012-11-01 07:32:18 +0000976static noinline int cow_file_range(struct inode *inode,
977 struct page *locked_page,
978 u64 start, u64 end, int *page_started,
979 unsigned long *nr_written,
980 int unlock)
981{
982 struct btrfs_trans_handle *trans;
983 struct btrfs_root *root = BTRFS_I(inode)->root;
984 int ret;
985
986 trans = btrfs_join_transaction(root);
987 if (IS_ERR(trans)) {
988 extent_clear_unlock_delalloc(inode,
989 &BTRFS_I(inode)->io_tree,
990 start, end, locked_page,
991 EXTENT_CLEAR_UNLOCK_PAGE |
992 EXTENT_CLEAR_UNLOCK |
993 EXTENT_CLEAR_DELALLOC |
994 EXTENT_CLEAR_DIRTY |
995 EXTENT_SET_WRITEBACK |
996 EXTENT_END_WRITEBACK);
997 return PTR_ERR(trans);
998 }
999 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
1000
1001 ret = __cow_file_range(trans, inode, root, locked_page, start, end,
1002 page_started, nr_written, unlock);
1003
1004 btrfs_end_transaction(trans, root);
1005
1006 return ret;
1007}
1008
Chris Mason771ed682008-11-06 22:02:51 -05001009/*
1010 * work queue call back to started compression on a file and pages
1011 */
1012static noinline void async_cow_start(struct btrfs_work *work)
1013{
1014 struct async_cow *async_cow;
1015 int num_added = 0;
1016 async_cow = container_of(work, struct async_cow, work);
1017
1018 compress_file_range(async_cow->inode, async_cow->locked_page,
1019 async_cow->start, async_cow->end, async_cow,
1020 &num_added);
Josef Bacik8180ef82012-06-08 15:16:12 -04001021 if (num_added == 0) {
Josef Bacikcb77fcd2012-06-15 12:19:48 -06001022 btrfs_add_delayed_iput(async_cow->inode);
Chris Mason771ed682008-11-06 22:02:51 -05001023 async_cow->inode = NULL;
Josef Bacik8180ef82012-06-08 15:16:12 -04001024 }
Chris Mason771ed682008-11-06 22:02:51 -05001025}
1026
1027/*
1028 * work queue call back to submit previously compressed pages
1029 */
1030static noinline void async_cow_submit(struct btrfs_work *work)
1031{
1032 struct async_cow *async_cow;
1033 struct btrfs_root *root;
1034 unsigned long nr_pages;
1035
1036 async_cow = container_of(work, struct async_cow, work);
1037
1038 root = async_cow->root;
1039 nr_pages = (async_cow->end - async_cow->start + PAGE_CACHE_SIZE) >>
1040 PAGE_CACHE_SHIFT;
1041
Josef Bacik66657b32012-08-01 15:36:24 -04001042 if (atomic_sub_return(nr_pages, &root->fs_info->async_delalloc_pages) <
Liu Bo287082b2012-06-28 04:02:24 -06001043 5 * 1024 * 1024 &&
Chris Mason771ed682008-11-06 22:02:51 -05001044 waitqueue_active(&root->fs_info->async_submit_wait))
1045 wake_up(&root->fs_info->async_submit_wait);
1046
Chris Masond3977122009-01-05 21:25:51 -05001047 if (async_cow->inode)
Chris Mason771ed682008-11-06 22:02:51 -05001048 submit_compressed_extents(async_cow->inode, async_cow);
Chris Mason771ed682008-11-06 22:02:51 -05001049}
Chris Masonc8b97812008-10-29 14:49:59 -04001050
Chris Mason771ed682008-11-06 22:02:51 -05001051static noinline void async_cow_free(struct btrfs_work *work)
1052{
1053 struct async_cow *async_cow;
1054 async_cow = container_of(work, struct async_cow, work);
Josef Bacik8180ef82012-06-08 15:16:12 -04001055 if (async_cow->inode)
Josef Bacikcb77fcd2012-06-15 12:19:48 -06001056 btrfs_add_delayed_iput(async_cow->inode);
Chris Mason771ed682008-11-06 22:02:51 -05001057 kfree(async_cow);
1058}
1059
1060static int cow_file_range_async(struct inode *inode, struct page *locked_page,
1061 u64 start, u64 end, int *page_started,
1062 unsigned long *nr_written)
1063{
1064 struct async_cow *async_cow;
1065 struct btrfs_root *root = BTRFS_I(inode)->root;
1066 unsigned long nr_pages;
1067 u64 cur_end;
Liu Bo287082b2012-06-28 04:02:24 -06001068 int limit = 10 * 1024 * 1024;
Chris Mason771ed682008-11-06 22:02:51 -05001069
Chris Masona3429ab2009-10-08 12:30:20 -04001070 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED,
1071 1, 0, NULL, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -05001072 while (start < end) {
Chris Mason771ed682008-11-06 22:02:51 -05001073 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001074 BUG_ON(!async_cow); /* -ENOMEM */
Josef Bacik8180ef82012-06-08 15:16:12 -04001075 async_cow->inode = igrab(inode);
Chris Mason771ed682008-11-06 22:02:51 -05001076 async_cow->root = root;
1077 async_cow->locked_page = locked_page;
1078 async_cow->start = start;
1079
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001080 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS)
Chris Mason771ed682008-11-06 22:02:51 -05001081 cur_end = end;
1082 else
1083 cur_end = min(end, start + 512 * 1024 - 1);
1084
1085 async_cow->end = cur_end;
1086 INIT_LIST_HEAD(&async_cow->extents);
1087
1088 async_cow->work.func = async_cow_start;
1089 async_cow->work.ordered_func = async_cow_submit;
1090 async_cow->work.ordered_free = async_cow_free;
1091 async_cow->work.flags = 0;
1092
Chris Mason771ed682008-11-06 22:02:51 -05001093 nr_pages = (cur_end - start + PAGE_CACHE_SIZE) >>
1094 PAGE_CACHE_SHIFT;
1095 atomic_add(nr_pages, &root->fs_info->async_delalloc_pages);
1096
1097 btrfs_queue_worker(&root->fs_info->delalloc_workers,
1098 &async_cow->work);
1099
1100 if (atomic_read(&root->fs_info->async_delalloc_pages) > limit) {
1101 wait_event(root->fs_info->async_submit_wait,
1102 (atomic_read(&root->fs_info->async_delalloc_pages) <
1103 limit));
1104 }
1105
Chris Masond3977122009-01-05 21:25:51 -05001106 while (atomic_read(&root->fs_info->async_submit_draining) &&
Chris Mason771ed682008-11-06 22:02:51 -05001107 atomic_read(&root->fs_info->async_delalloc_pages)) {
1108 wait_event(root->fs_info->async_submit_wait,
1109 (atomic_read(&root->fs_info->async_delalloc_pages) ==
1110 0));
1111 }
1112
1113 *nr_written += nr_pages;
1114 start = cur_end + 1;
1115 }
1116 *page_started = 1;
1117 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001118}
1119
Chris Masond3977122009-01-05 21:25:51 -05001120static noinline int csum_exist_in_range(struct btrfs_root *root,
Yan Zheng17d217f2008-12-12 10:03:38 -05001121 u64 bytenr, u64 num_bytes)
1122{
1123 int ret;
1124 struct btrfs_ordered_sum *sums;
1125 LIST_HEAD(list);
1126
Yan Zheng07d400a2009-01-06 11:42:00 -05001127 ret = btrfs_lookup_csums_range(root->fs_info->csum_root, bytenr,
Arne Jansena2de7332011-03-08 14:14:00 +01001128 bytenr + num_bytes - 1, &list, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -05001129 if (ret == 0 && list_empty(&list))
1130 return 0;
1131
1132 while (!list_empty(&list)) {
1133 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
1134 list_del(&sums->list);
1135 kfree(sums);
1136 }
1137 return 1;
1138}
1139
Chris Masond352ac62008-09-29 15:18:18 -04001140/*
1141 * when nowcow writeback call back. This checks for snapshots or COW copies
1142 * of the extents that exist in the file, and COWs the file as required.
1143 *
1144 * If no cow copies or snapshots exist, we write directly to the existing
1145 * blocks on disk
1146 */
Chris Mason7f366cf2009-03-12 20:12:45 -04001147static noinline int run_delalloc_nocow(struct inode *inode,
1148 struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001149 u64 start, u64 end, int *page_started, int force,
1150 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001151{
Chris Masonbe20aa92007-12-17 20:14:01 -05001152 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001153 struct btrfs_trans_handle *trans;
Chris Masonbe20aa92007-12-17 20:14:01 -05001154 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -05001155 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -04001156 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -05001157 struct btrfs_key found_key;
Yan Zheng80ff3852008-10-30 14:20:02 -04001158 u64 cow_start;
1159 u64 cur_offset;
1160 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001161 u64 extent_offset;
Yan Zheng80ff3852008-10-30 14:20:02 -04001162 u64 disk_bytenr;
1163 u64 num_bytes;
Josef Bacikb4939682012-12-03 10:31:19 -05001164 u64 disk_num_bytes;
Yan Zheng80ff3852008-10-30 14:20:02 -04001165 int extent_type;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001166 int ret, err;
Yan Zhengd899e052008-10-30 14:25:28 -04001167 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -04001168 int nocow;
1169 int check_prev = 1;
Li Zefan82d59022011-04-20 10:33:24 +08001170 bool nolock;
Li Zefan33345d012011-04-20 10:31:50 +08001171 u64 ino = btrfs_ino(inode);
Chris Masonbe20aa92007-12-17 20:14:01 -05001172
1173 path = btrfs_alloc_path();
Josef Bacik17ca04a2012-05-31 15:58:55 -04001174 if (!path) {
1175 extent_clear_unlock_delalloc(inode,
1176 &BTRFS_I(inode)->io_tree,
1177 start, end, locked_page,
1178 EXTENT_CLEAR_UNLOCK_PAGE |
1179 EXTENT_CLEAR_UNLOCK |
1180 EXTENT_CLEAR_DELALLOC |
1181 EXTENT_CLEAR_DIRTY |
1182 EXTENT_SET_WRITEBACK |
1183 EXTENT_END_WRITEBACK);
Mark Fashehd8926bb2011-07-13 10:38:47 -07001184 return -ENOMEM;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001185 }
Li Zefan82d59022011-04-20 10:33:24 +08001186
Liu Bo83eea1f2012-07-10 05:28:39 -06001187 nolock = btrfs_is_free_space_inode(inode);
Li Zefan82d59022011-04-20 10:33:24 +08001188
1189 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001190 trans = btrfs_join_transaction_nolock(root);
Li Zefan82d59022011-04-20 10:33:24 +08001191 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001192 trans = btrfs_join_transaction(root);
Chris Masonff5714c2011-05-28 07:00:39 -04001193
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001194 if (IS_ERR(trans)) {
Josef Bacik17ca04a2012-05-31 15:58:55 -04001195 extent_clear_unlock_delalloc(inode,
1196 &BTRFS_I(inode)->io_tree,
1197 start, end, locked_page,
1198 EXTENT_CLEAR_UNLOCK_PAGE |
1199 EXTENT_CLEAR_UNLOCK |
1200 EXTENT_CLEAR_DELALLOC |
1201 EXTENT_CLEAR_DIRTY |
1202 EXTENT_SET_WRITEBACK |
1203 EXTENT_END_WRITEBACK);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001204 btrfs_free_path(path);
1205 return PTR_ERR(trans);
1206 }
1207
Josef Bacik74b21072011-04-13 12:02:53 -04001208 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Masonbe20aa92007-12-17 20:14:01 -05001209
Yan Zheng80ff3852008-10-30 14:20:02 -04001210 cow_start = (u64)-1;
1211 cur_offset = start;
1212 while (1) {
Li Zefan33345d012011-04-20 10:31:50 +08001213 ret = btrfs_lookup_file_extent(trans, root, path, ino,
Yan Zheng80ff3852008-10-30 14:20:02 -04001214 cur_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001215 if (ret < 0) {
1216 btrfs_abort_transaction(trans, root, ret);
1217 goto error;
1218 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001219 if (ret > 0 && path->slots[0] > 0 && check_prev) {
1220 leaf = path->nodes[0];
1221 btrfs_item_key_to_cpu(leaf, &found_key,
1222 path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +08001223 if (found_key.objectid == ino &&
Yan Zheng80ff3852008-10-30 14:20:02 -04001224 found_key.type == BTRFS_EXTENT_DATA_KEY)
1225 path->slots[0]--;
1226 }
1227 check_prev = 0;
1228next_slot:
1229 leaf = path->nodes[0];
1230 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1231 ret = btrfs_next_leaf(root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001232 if (ret < 0) {
1233 btrfs_abort_transaction(trans, root, ret);
1234 goto error;
1235 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001236 if (ret > 0)
1237 break;
1238 leaf = path->nodes[0];
1239 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001240
Yan Zheng80ff3852008-10-30 14:20:02 -04001241 nocow = 0;
1242 disk_bytenr = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -05001243 num_bytes = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001244 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05001245
Li Zefan33345d012011-04-20 10:31:50 +08001246 if (found_key.objectid > ino ||
Yan Zheng80ff3852008-10-30 14:20:02 -04001247 found_key.type > BTRFS_EXTENT_DATA_KEY ||
1248 found_key.offset > end)
1249 break;
Chris Masonbe20aa92007-12-17 20:14:01 -05001250
Yan Zheng80ff3852008-10-30 14:20:02 -04001251 if (found_key.offset > cur_offset) {
1252 extent_end = found_key.offset;
Chris Masone9061e22009-10-09 09:57:45 -04001253 extent_type = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001254 goto out_check;
1255 }
Chris Masonc31f8832008-01-08 15:46:31 -05001256
Yan Zheng80ff3852008-10-30 14:20:02 -04001257 fi = btrfs_item_ptr(leaf, path->slots[0],
1258 struct btrfs_file_extent_item);
1259 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -05001260
Yan Zhengd899e052008-10-30 14:25:28 -04001261 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1262 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001263 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001264 extent_offset = btrfs_file_extent_offset(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001265 extent_end = found_key.offset +
1266 btrfs_file_extent_num_bytes(leaf, fi);
Josef Bacikb4939682012-12-03 10:31:19 -05001267 disk_num_bytes =
1268 btrfs_file_extent_disk_num_bytes(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001269 if (extent_end <= start) {
1270 path->slots[0]++;
1271 goto next_slot;
1272 }
Yan Zheng17d217f2008-12-12 10:03:38 -05001273 if (disk_bytenr == 0)
1274 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001275 if (btrfs_file_extent_compression(leaf, fi) ||
1276 btrfs_file_extent_encryption(leaf, fi) ||
1277 btrfs_file_extent_other_encoding(leaf, fi))
1278 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001279 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1280 goto out_check;
Yan Zhengd2fb3432008-12-11 16:30:39 -05001281 if (btrfs_extent_readonly(root, disk_bytenr))
Yan Zheng80ff3852008-10-30 14:20:02 -04001282 goto out_check;
Li Zefan33345d012011-04-20 10:31:50 +08001283 if (btrfs_cross_ref_exist(trans, root, ino,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001284 found_key.offset -
1285 extent_offset, disk_bytenr))
Yan Zheng17d217f2008-12-12 10:03:38 -05001286 goto out_check;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001287 disk_bytenr += extent_offset;
Yan Zheng17d217f2008-12-12 10:03:38 -05001288 disk_bytenr += cur_offset - found_key.offset;
1289 num_bytes = min(end + 1, extent_end) - cur_offset;
1290 /*
1291 * force cow if csum exists in the range.
1292 * this ensure that csum for a given extent are
1293 * either valid or do not exist.
1294 */
1295 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
1296 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001297 nocow = 1;
1298 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1299 extent_end = found_key.offset +
1300 btrfs_file_extent_inline_len(leaf, fi);
1301 extent_end = ALIGN(extent_end, root->sectorsize);
1302 } else {
1303 BUG_ON(1);
1304 }
1305out_check:
1306 if (extent_end <= start) {
1307 path->slots[0]++;
1308 goto next_slot;
1309 }
1310 if (!nocow) {
1311 if (cow_start == (u64)-1)
1312 cow_start = cur_offset;
1313 cur_offset = extent_end;
1314 if (cur_offset > end)
1315 break;
1316 path->slots[0]++;
1317 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001318 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001319
David Sterbab3b4aa72011-04-21 01:20:15 +02001320 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001321 if (cow_start != (u64)-1) {
Miao Xieb7d5b0a2012-11-01 07:32:18 +00001322 ret = __cow_file_range(trans, inode, root, locked_page,
1323 cow_start, found_key.offset - 1,
1324 page_started, nr_written, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001325 if (ret) {
1326 btrfs_abort_transaction(trans, root, ret);
1327 goto error;
1328 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001329 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001330 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001331
Yan Zhengd899e052008-10-30 14:25:28 -04001332 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1333 struct extent_map *em;
1334 struct extent_map_tree *em_tree;
1335 em_tree = &BTRFS_I(inode)->extent_tree;
David Sterba172ddd62011-04-21 00:48:27 +02001336 em = alloc_extent_map();
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001337 BUG_ON(!em); /* -ENOMEM */
Yan Zhengd899e052008-10-30 14:25:28 -04001338 em->start = cur_offset;
Josef Bacik70c8a912012-10-11 16:54:30 -04001339 em->orig_start = found_key.offset - extent_offset;
Yan Zhengd899e052008-10-30 14:25:28 -04001340 em->len = num_bytes;
1341 em->block_len = num_bytes;
1342 em->block_start = disk_bytenr;
Josef Bacikb4939682012-12-03 10:31:19 -05001343 em->orig_block_len = disk_num_bytes;
Yan Zhengd899e052008-10-30 14:25:28 -04001344 em->bdev = root->fs_info->fs_devices->latest_bdev;
Josef Bacik2ab28f32012-10-12 15:27:49 -04001345 em->mod_start = em->start;
1346 em->mod_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04001347 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Josef Bacikb11e2342012-12-03 10:58:15 -05001348 set_bit(EXTENT_FLAG_FILLING, &em->flags);
Josef Bacik70c8a912012-10-11 16:54:30 -04001349 em->generation = -1;
Yan Zhengd899e052008-10-30 14:25:28 -04001350 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04001351 write_lock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001352 ret = add_extent_mapping(em_tree, em);
Josef Bacik70c8a912012-10-11 16:54:30 -04001353 if (!ret)
1354 list_move(&em->list,
1355 &em_tree->modified_extents);
Chris Mason890871b2009-09-02 16:24:52 -04001356 write_unlock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001357 if (ret != -EEXIST) {
1358 free_extent_map(em);
1359 break;
1360 }
1361 btrfs_drop_extent_cache(inode, em->start,
1362 em->start + em->len - 1, 0);
1363 }
1364 type = BTRFS_ORDERED_PREALLOC;
1365 } else {
1366 type = BTRFS_ORDERED_NOCOW;
1367 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001368
1369 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001370 num_bytes, num_bytes, type);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001371 BUG_ON(ret); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -05001372
Yan, Zhengefa56462010-05-16 10:49:59 -04001373 if (root->root_key.objectid ==
1374 BTRFS_DATA_RELOC_TREE_OBJECTID) {
1375 ret = btrfs_reloc_clone_csums(inode, cur_offset,
1376 num_bytes);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001377 if (ret) {
1378 btrfs_abort_transaction(trans, root, ret);
1379 goto error;
1380 }
Yan, Zhengefa56462010-05-16 10:49:59 -04001381 }
1382
Yan Zhengd899e052008-10-30 14:25:28 -04001383 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
Chris Masona791e352009-10-08 11:27:10 -04001384 cur_offset, cur_offset + num_bytes - 1,
1385 locked_page, EXTENT_CLEAR_UNLOCK_PAGE |
1386 EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
1387 EXTENT_SET_PRIVATE2);
Yan Zheng80ff3852008-10-30 14:20:02 -04001388 cur_offset = extent_end;
1389 if (cur_offset > end)
1390 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001391 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001392 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001393
Josef Bacik17ca04a2012-05-31 15:58:55 -04001394 if (cur_offset <= end && cow_start == (u64)-1) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001395 cow_start = cur_offset;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001396 cur_offset = end;
1397 }
1398
Yan Zheng80ff3852008-10-30 14:20:02 -04001399 if (cow_start != (u64)-1) {
Miao Xieb7d5b0a2012-11-01 07:32:18 +00001400 ret = __cow_file_range(trans, inode, root, locked_page,
1401 cow_start, end,
1402 page_started, nr_written, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001403 if (ret) {
1404 btrfs_abort_transaction(trans, root, ret);
1405 goto error;
1406 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001407 }
1408
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001409error:
Miao Xiea698d0752012-09-20 01:51:59 -06001410 err = btrfs_end_transaction(trans, root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001411 if (!ret)
1412 ret = err;
1413
Josef Bacik17ca04a2012-05-31 15:58:55 -04001414 if (ret && cur_offset < end)
1415 extent_clear_unlock_delalloc(inode,
1416 &BTRFS_I(inode)->io_tree,
1417 cur_offset, end, locked_page,
1418 EXTENT_CLEAR_UNLOCK_PAGE |
1419 EXTENT_CLEAR_UNLOCK |
1420 EXTENT_CLEAR_DELALLOC |
1421 EXTENT_CLEAR_DIRTY |
1422 EXTENT_SET_WRITEBACK |
1423 EXTENT_END_WRITEBACK);
1424
Yan Zheng7ea394f2008-08-05 13:05:02 -04001425 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001426 return ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05001427}
1428
Chris Masond352ac62008-09-29 15:18:18 -04001429/*
1430 * extent_io.c call back to do delayed allocation processing
1431 */
Chris Masonc8b97812008-10-29 14:49:59 -04001432static int run_delalloc_range(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001433 u64 start, u64 end, int *page_started,
1434 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001435{
Chris Masonbe20aa92007-12-17 20:14:01 -05001436 int ret;
Chris Mason7f366cf2009-03-12 20:12:45 -04001437 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masona2135012008-06-25 16:01:30 -04001438
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001439 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) {
Chris Masonc8b97812008-10-29 14:49:59 -04001440 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001441 page_started, 1, nr_written);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001442 } else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC) {
Yan Zhengd899e052008-10-30 14:25:28 -04001443 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001444 page_started, 0, nr_written);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001445 } else if (!btrfs_test_opt(root, COMPRESS) &&
1446 !(BTRFS_I(inode)->force_compress) &&
1447 !(BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS)) {
Chris Mason7f366cf2009-03-12 20:12:45 -04001448 ret = cow_file_range(inode, locked_page, start, end,
1449 page_started, nr_written, 1);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001450 } else {
1451 set_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1452 &BTRFS_I(inode)->runtime_flags);
Chris Mason771ed682008-11-06 22:02:51 -05001453 ret = cow_file_range_async(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001454 page_started, nr_written);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001455 }
Chris Masonb888db2b2007-08-27 16:49:44 -04001456 return ret;
1457}
1458
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001459static void btrfs_split_extent_hook(struct inode *inode,
1460 struct extent_state *orig, u64 split)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001461{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001462 /* not delalloc, ignore it */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001463 if (!(orig->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001464 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001465
Josef Bacik9e0baf62011-07-15 15:16:44 +00001466 spin_lock(&BTRFS_I(inode)->lock);
1467 BTRFS_I(inode)->outstanding_extents++;
1468 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001469}
1470
1471/*
1472 * extent_io.c merge_extent_hook, used to track merged delayed allocation
1473 * extents so we can keep track of new extents that are just merged onto old
1474 * extents, such as when we are doing sequential writes, so we can properly
1475 * account for the metadata space we'll need.
1476 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001477static void btrfs_merge_extent_hook(struct inode *inode,
1478 struct extent_state *new,
1479 struct extent_state *other)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001480{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001481 /* not delalloc, ignore it */
1482 if (!(other->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001483 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001484
Josef Bacik9e0baf62011-07-15 15:16:44 +00001485 spin_lock(&BTRFS_I(inode)->lock);
1486 BTRFS_I(inode)->outstanding_extents--;
1487 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001488}
1489
Chris Masond352ac62008-09-29 15:18:18 -04001490/*
1491 * extent_io.c set_bit_hook, used to track delayed allocation
1492 * bytes in this file, and to maintain the list of inodes that
1493 * have pending delalloc work to be done.
1494 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001495static void btrfs_set_bit_hook(struct inode *inode,
1496 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001497{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001498
Chris Mason75eff682008-12-15 15:54:40 -05001499 /*
1500 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001501 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001502 * bit, which is only set or cleared with irqs on
1503 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001504 if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001505 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001506 u64 len = state->end + 1 - state->start;
Liu Bo83eea1f2012-07-10 05:28:39 -06001507 bool do_list = !btrfs_is_free_space_inode(inode);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001508
Josef Bacik9e0baf62011-07-15 15:16:44 +00001509 if (*bits & EXTENT_FIRST_DELALLOC) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001510 *bits &= ~EXTENT_FIRST_DELALLOC;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001511 } else {
1512 spin_lock(&BTRFS_I(inode)->lock);
1513 BTRFS_I(inode)->outstanding_extents++;
1514 spin_unlock(&BTRFS_I(inode)->lock);
1515 }
Josef Bacik287a0ab2010-03-19 18:07:23 +00001516
Miao Xie963d6782013-01-29 10:10:51 +00001517 __percpu_counter_add(&root->fs_info->delalloc_bytes, len,
1518 root->fs_info->delalloc_batch);
Miao Xiedf0af1a2013-01-29 10:11:59 +00001519 spin_lock(&BTRFS_I(inode)->lock);
1520 BTRFS_I(inode)->delalloc_bytes += len;
1521 if (do_list && !test_bit(BTRFS_INODE_IN_DELALLOC_LIST,
1522 &BTRFS_I(inode)->runtime_flags)) {
1523 spin_lock(&root->fs_info->delalloc_lock);
1524 if (list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1525 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1526 &root->fs_info->delalloc_inodes);
1527 set_bit(BTRFS_INODE_IN_DELALLOC_LIST,
1528 &BTRFS_I(inode)->runtime_flags);
1529 }
1530 spin_unlock(&root->fs_info->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04001531 }
Miao Xiedf0af1a2013-01-29 10:11:59 +00001532 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason291d6732008-01-29 15:55:23 -05001533 }
Chris Mason291d6732008-01-29 15:55:23 -05001534}
1535
Chris Masond352ac62008-09-29 15:18:18 -04001536/*
1537 * extent_io.c clear_bit_hook, see set_bit_hook for why
1538 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001539static void btrfs_clear_bit_hook(struct inode *inode,
1540 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001541{
Chris Mason75eff682008-12-15 15:54:40 -05001542 /*
1543 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001544 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001545 * bit, which is only set or cleared with irqs on
1546 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001547 if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001548 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001549 u64 len = state->end + 1 - state->start;
Liu Bo83eea1f2012-07-10 05:28:39 -06001550 bool do_list = !btrfs_is_free_space_inode(inode);
Chris Masonbcbfce82008-04-22 13:26:47 -04001551
Josef Bacik9e0baf62011-07-15 15:16:44 +00001552 if (*bits & EXTENT_FIRST_DELALLOC) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001553 *bits &= ~EXTENT_FIRST_DELALLOC;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001554 } else if (!(*bits & EXTENT_DO_ACCOUNTING)) {
1555 spin_lock(&BTRFS_I(inode)->lock);
1556 BTRFS_I(inode)->outstanding_extents--;
1557 spin_unlock(&BTRFS_I(inode)->lock);
1558 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001559
1560 if (*bits & EXTENT_DO_ACCOUNTING)
1561 btrfs_delalloc_release_metadata(inode, len);
1562
Josef Bacik0cb59c92010-07-02 12:14:14 -04001563 if (root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID
1564 && do_list)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001565 btrfs_free_reserved_data_space(inode, len);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001566
Miao Xie963d6782013-01-29 10:10:51 +00001567 __percpu_counter_add(&root->fs_info->delalloc_bytes, -len,
1568 root->fs_info->delalloc_batch);
Miao Xiedf0af1a2013-01-29 10:11:59 +00001569 spin_lock(&BTRFS_I(inode)->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001570 BTRFS_I(inode)->delalloc_bytes -= len;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001571 if (do_list && BTRFS_I(inode)->delalloc_bytes == 0 &&
Miao Xiedf0af1a2013-01-29 10:11:59 +00001572 test_bit(BTRFS_INODE_IN_DELALLOC_LIST,
1573 &BTRFS_I(inode)->runtime_flags)) {
1574 spin_lock(&root->fs_info->delalloc_lock);
1575 if (!list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1576 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
1577 clear_bit(BTRFS_INODE_IN_DELALLOC_LIST,
1578 &BTRFS_I(inode)->runtime_flags);
1579 }
1580 spin_unlock(&root->fs_info->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04001581 }
Miao Xiedf0af1a2013-01-29 10:11:59 +00001582 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason291d6732008-01-29 15:55:23 -05001583 }
Chris Mason291d6732008-01-29 15:55:23 -05001584}
1585
Chris Masond352ac62008-09-29 15:18:18 -04001586/*
1587 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1588 * we don't create bios that span stripes or chunks
1589 */
Chris Mason239b14b2008-03-24 15:02:07 -04001590int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001591 size_t size, struct bio *bio,
1592 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001593{
1594 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
Chris Masona62b9402008-10-03 16:31:08 -04001595 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001596 u64 length = 0;
1597 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001598 int ret;
1599
Chris Mason771ed682008-11-06 22:02:51 -05001600 if (bio_flags & EXTENT_BIO_COMPRESSED)
1601 return 0;
1602
Chris Masonf2d8d742008-04-21 10:03:05 -04001603 length = bio->bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001604 map_length = length;
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001605 ret = btrfs_map_block(root->fs_info, READ, logical,
Chris Masonf1885912008-04-09 16:28:12 -04001606 &map_length, NULL, 0);
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001607 /* Will always return 0 with map_multi == NULL */
Jeff Mahoney3444a972011-10-03 23:23:13 -04001608 BUG_ON(ret < 0);
Chris Masond3977122009-01-05 21:25:51 -05001609 if (map_length < length + size)
Chris Mason239b14b2008-03-24 15:02:07 -04001610 return 1;
Jeff Mahoney3444a972011-10-03 23:23:13 -04001611 return 0;
Chris Mason239b14b2008-03-24 15:02:07 -04001612}
1613
Chris Masond352ac62008-09-29 15:18:18 -04001614/*
1615 * in order to insert checksums into the metadata in large chunks,
1616 * we wait until bio submission time. All the pages in the bio are
1617 * checksummed and sums are attached onto the ordered extent record.
1618 *
1619 * At IO completion time the cums attached on the ordered extent record
1620 * are inserted into the btree
1621 */
Chris Masond3977122009-01-05 21:25:51 -05001622static int __btrfs_submit_bio_start(struct inode *inode, int rw,
1623 struct bio *bio, int mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001624 unsigned long bio_flags,
1625 u64 bio_offset)
Chris Mason065631f2008-02-20 12:07:25 -05001626{
Chris Mason065631f2008-02-20 12:07:25 -05001627 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason065631f2008-02-20 12:07:25 -05001628 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001629
Chris Masond20f7042008-12-08 16:58:54 -05001630 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001631 BUG_ON(ret); /* -ENOMEM */
Chris Mason4a69a412008-11-06 22:03:00 -05001632 return 0;
1633}
Chris Masone0156402008-04-16 11:15:20 -04001634
Chris Mason4a69a412008-11-06 22:03:00 -05001635/*
1636 * in order to insert checksums into the metadata in large chunks,
1637 * we wait until bio submission time. All the pages in the bio are
1638 * checksummed and sums are attached onto the ordered extent record.
1639 *
1640 * At IO completion time the cums attached on the ordered extent record
1641 * are inserted into the btree
1642 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001643static int __btrfs_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001644 int mirror_num, unsigned long bio_flags,
1645 u64 bio_offset)
Chris Mason4a69a412008-11-06 22:03:00 -05001646{
1647 struct btrfs_root *root = BTRFS_I(inode)->root;
Stefan Behrens61891922012-11-05 18:51:52 +01001648 int ret;
1649
1650 ret = btrfs_map_bio(root, rw, bio, mirror_num, 1);
1651 if (ret)
1652 bio_endio(bio, ret);
1653 return ret;
Chris Mason44b8bd72008-04-16 11:14:51 -04001654}
1655
Chris Masond352ac62008-09-29 15:18:18 -04001656/*
Chris Masoncad321a2008-12-17 14:51:42 -05001657 * extent_io.c submission hook. This does the right thing for csum calculation
1658 * on write, or reading the csums from the tree before a read
Chris Masond352ac62008-09-29 15:18:18 -04001659 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001660static int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001661 int mirror_num, unsigned long bio_flags,
1662 u64 bio_offset)
Chris Mason44b8bd72008-04-16 11:14:51 -04001663{
1664 struct btrfs_root *root = BTRFS_I(inode)->root;
1665 int ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001666 int skip_sum;
Jeff Mahoney04173412011-10-03 23:23:12 -04001667 int metadata = 0;
Josef Bacikb812ce22012-11-16 13:56:32 -05001668 int async = !atomic_read(&BTRFS_I(inode)->sync_writers);
Chris Mason44b8bd72008-04-16 11:14:51 -04001669
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001670 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masoncad321a2008-12-17 14:51:42 -05001671
Liu Bo83eea1f2012-07-10 05:28:39 -06001672 if (btrfs_is_free_space_inode(inode))
Jeff Mahoney04173412011-10-03 23:23:12 -04001673 metadata = 2;
1674
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001675 if (!(rw & REQ_WRITE)) {
Josef Bacik5fd02042012-05-02 14:00:54 -04001676 ret = btrfs_bio_wq_end_io(root->fs_info, bio, metadata);
1677 if (ret)
Stefan Behrens61891922012-11-05 18:51:52 +01001678 goto out;
Josef Bacik5fd02042012-05-02 14:00:54 -04001679
Chris Masond20f7042008-12-08 16:58:54 -05001680 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Stefan Behrens61891922012-11-05 18:51:52 +01001681 ret = btrfs_submit_compressed_read(inode, bio,
1682 mirror_num,
1683 bio_flags);
1684 goto out;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001685 } else if (!skip_sum) {
1686 ret = btrfs_lookup_bio_sums(root, inode, bio, NULL);
1687 if (ret)
Stefan Behrens61891922012-11-05 18:51:52 +01001688 goto out;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001689 }
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001690 goto mapit;
Josef Bacikb812ce22012-11-16 13:56:32 -05001691 } else if (async && !skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001692 /* csum items have already been cloned */
1693 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1694 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001695 /* we're doing a write, do the async checksumming */
Stefan Behrens61891922012-11-05 18:51:52 +01001696 ret = btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
Chris Mason44b8bd72008-04-16 11:14:51 -04001697 inode, rw, bio, mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001698 bio_flags, bio_offset,
1699 __btrfs_submit_bio_start,
Chris Mason4a69a412008-11-06 22:03:00 -05001700 __btrfs_submit_bio_done);
Stefan Behrens61891922012-11-05 18:51:52 +01001701 goto out;
Josef Bacikb812ce22012-11-16 13:56:32 -05001702 } else if (!skip_sum) {
1703 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
1704 if (ret)
1705 goto out;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001706 }
1707
Chris Mason0b86a832008-03-24 15:01:56 -04001708mapit:
Stefan Behrens61891922012-11-05 18:51:52 +01001709 ret = btrfs_map_bio(root, rw, bio, mirror_num, 0);
1710
1711out:
1712 if (ret < 0)
1713 bio_endio(bio, ret);
1714 return ret;
Chris Mason065631f2008-02-20 12:07:25 -05001715}
Chris Mason6885f302008-02-20 16:11:05 -05001716
Chris Masond352ac62008-09-29 15:18:18 -04001717/*
1718 * given a list of ordered sums record them in the inode. This happens
1719 * at IO completion time based on sums calculated at bio submission time.
1720 */
Chris Masonba1da2f2008-07-17 12:54:15 -04001721static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -04001722 struct inode *inode, u64 file_offset,
1723 struct list_head *list)
1724{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001725 struct btrfs_ordered_sum *sum;
1726
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001727 list_for_each_entry(sum, list, list) {
Chris Masond20f7042008-12-08 16:58:54 -05001728 btrfs_csum_file_blocks(trans,
1729 BTRFS_I(inode)->root->fs_info->csum_root, sum);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001730 }
1731 return 0;
1732}
1733
Josef Bacik2ac55d42010-02-03 19:33:23 +00001734int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end,
1735 struct extent_state **cached_state)
Chris Masonea8c2812008-08-04 23:17:27 -04001736{
Julia Lawall6c1500f2012-11-03 20:30:18 +00001737 WARN_ON((end & (PAGE_CACHE_SIZE - 1)) == 0);
Chris Masonea8c2812008-08-04 23:17:27 -04001738 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001739 cached_state, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04001740}
1741
Chris Masond352ac62008-09-29 15:18:18 -04001742/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04001743struct btrfs_writepage_fixup {
1744 struct page *page;
1745 struct btrfs_work work;
1746};
1747
Christoph Hellwigb2950862008-12-02 09:54:17 -05001748static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04001749{
1750 struct btrfs_writepage_fixup *fixup;
1751 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001752 struct extent_state *cached_state = NULL;
Chris Mason247e7432008-07-17 12:53:51 -04001753 struct page *page;
1754 struct inode *inode;
1755 u64 page_start;
1756 u64 page_end;
Jeff Mahoney87826df2012-02-15 16:23:57 +01001757 int ret;
Chris Mason247e7432008-07-17 12:53:51 -04001758
1759 fixup = container_of(work, struct btrfs_writepage_fixup, work);
1760 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04001761again:
Chris Mason247e7432008-07-17 12:53:51 -04001762 lock_page(page);
1763 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
1764 ClearPageChecked(page);
1765 goto out_page;
1766 }
1767
1768 inode = page->mapping->host;
1769 page_start = page_offset(page);
1770 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
1771
Josef Bacik2ac55d42010-02-03 19:33:23 +00001772 lock_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001773 &cached_state);
Chris Mason4a096752008-07-21 10:29:44 -04001774
1775 /* already ordered? We're done */
Chris Mason8b62b722009-09-02 16:53:46 -04001776 if (PagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001777 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04001778
1779 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1780 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00001781 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start,
1782 page_end, &cached_state, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001783 unlock_page(page);
1784 btrfs_start_ordered_extent(inode, ordered, 1);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001785 btrfs_put_ordered_extent(ordered);
Chris Mason4a096752008-07-21 10:29:44 -04001786 goto again;
1787 }
Chris Mason247e7432008-07-17 12:53:51 -04001788
Jeff Mahoney87826df2012-02-15 16:23:57 +01001789 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
1790 if (ret) {
1791 mapping_set_error(page->mapping, ret);
1792 end_extent_writepage(page, ret, page_start, page_end);
1793 ClearPageChecked(page);
1794 goto out;
1795 }
1796
Josef Bacik2ac55d42010-02-03 19:33:23 +00001797 btrfs_set_extent_delalloc(inode, page_start, page_end, &cached_state);
Chris Mason247e7432008-07-17 12:53:51 -04001798 ClearPageChecked(page);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001799 set_page_dirty(page);
Chris Mason247e7432008-07-17 12:53:51 -04001800out:
Josef Bacik2ac55d42010-02-03 19:33:23 +00001801 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, page_end,
1802 &cached_state, GFP_NOFS);
Chris Mason247e7432008-07-17 12:53:51 -04001803out_page:
1804 unlock_page(page);
1805 page_cache_release(page);
Miao Xieb897abe2011-01-26 16:19:22 +08001806 kfree(fixup);
Chris Mason247e7432008-07-17 12:53:51 -04001807}
1808
1809/*
1810 * There are a few paths in the higher layers of the kernel that directly
1811 * set the page dirty bit without asking the filesystem if it is a
1812 * good idea. This causes problems because we want to make sure COW
1813 * properly happens and the data=ordered rules are followed.
1814 *
Chris Masonc8b97812008-10-29 14:49:59 -04001815 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04001816 * hasn't been properly setup for IO. We kick off an async process
1817 * to fix it up. The async helper will wait for ordered extents, set
1818 * the delalloc bit and make it safe to write the page.
1819 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001820static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04001821{
1822 struct inode *inode = page->mapping->host;
1823 struct btrfs_writepage_fixup *fixup;
1824 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason247e7432008-07-17 12:53:51 -04001825
Chris Mason8b62b722009-09-02 16:53:46 -04001826 /* this page is properly in the ordered list */
1827 if (TestClearPagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001828 return 0;
1829
1830 if (PageChecked(page))
1831 return -EAGAIN;
1832
1833 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
1834 if (!fixup)
1835 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04001836
Chris Mason247e7432008-07-17 12:53:51 -04001837 SetPageChecked(page);
1838 page_cache_get(page);
1839 fixup->work.func = btrfs_writepage_fixup_worker;
1840 fixup->page = page;
1841 btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001842 return -EBUSY;
Chris Mason247e7432008-07-17 12:53:51 -04001843}
1844
Yan Zhengd899e052008-10-30 14:25:28 -04001845static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
1846 struct inode *inode, u64 file_pos,
1847 u64 disk_bytenr, u64 disk_num_bytes,
1848 u64 num_bytes, u64 ram_bytes,
1849 u8 compression, u8 encryption,
1850 u16 other_encoding, int extent_type)
1851{
1852 struct btrfs_root *root = BTRFS_I(inode)->root;
1853 struct btrfs_file_extent_item *fi;
1854 struct btrfs_path *path;
1855 struct extent_buffer *leaf;
1856 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -04001857 int ret;
1858
1859 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07001860 if (!path)
1861 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -04001862
Chris Masonb9473432009-03-13 11:00:37 -04001863 path->leave_spinning = 1;
Chris Masona1ed8352009-09-11 12:27:37 -04001864
1865 /*
1866 * we may be replacing one extent in the tree with another.
1867 * The new extent is pinned in the extent map, and we don't want
1868 * to drop it from the cache until it is completely in the btree.
1869 *
1870 * So, tell btrfs_drop_extents to leave this extent in the cache.
1871 * the caller is expected to unpin it and allow it to be merged
1872 * with the others.
1873 */
Josef Bacik5dc562c2012-08-17 13:14:17 -04001874 ret = btrfs_drop_extents(trans, root, inode, file_pos,
Josef Bacik26714852012-08-29 12:24:27 -04001875 file_pos + num_bytes, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001876 if (ret)
1877 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04001878
Li Zefan33345d012011-04-20 10:31:50 +08001879 ins.objectid = btrfs_ino(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04001880 ins.offset = file_pos;
1881 ins.type = BTRFS_EXTENT_DATA_KEY;
1882 ret = btrfs_insert_empty_item(trans, root, path, &ins, sizeof(*fi));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001883 if (ret)
1884 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04001885 leaf = path->nodes[0];
1886 fi = btrfs_item_ptr(leaf, path->slots[0],
1887 struct btrfs_file_extent_item);
1888 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
1889 btrfs_set_file_extent_type(leaf, fi, extent_type);
1890 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
1891 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
1892 btrfs_set_file_extent_offset(leaf, fi, 0);
1893 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
1894 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
1895 btrfs_set_file_extent_compression(leaf, fi, compression);
1896 btrfs_set_file_extent_encryption(leaf, fi, encryption);
1897 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
Chris Masonb9473432009-03-13 11:00:37 -04001898
Yan Zhengd899e052008-10-30 14:25:28 -04001899 btrfs_mark_buffer_dirty(leaf);
Josef Bacikce195332012-09-25 15:26:16 -04001900 btrfs_release_path(path);
Yan Zhengd899e052008-10-30 14:25:28 -04001901
1902 inode_add_bytes(inode, num_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -04001903
1904 ins.objectid = disk_bytenr;
1905 ins.offset = disk_num_bytes;
1906 ins.type = BTRFS_EXTENT_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001907 ret = btrfs_alloc_reserved_file_extent(trans, root,
1908 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08001909 btrfs_ino(inode), file_pos, &ins);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001910out:
Yan Zhengd899e052008-10-30 14:25:28 -04001911 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04001912
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001913 return ret;
Yan Zhengd899e052008-10-30 14:25:28 -04001914}
1915
Chris Mason5d13a982009-03-13 11:41:46 -04001916/*
1917 * helper function for btrfs_finish_ordered_io, this
1918 * just reads in some of the csum leaves to prime them into ram
1919 * before we start the transaction. It limits the amount of btree
1920 * reads required while inside the transaction.
1921 */
Chris Masond352ac62008-09-29 15:18:18 -04001922/* as ordered data IO finishes, this gets called so we can finish
1923 * an ordered extent if the range of bytes in the file it covers are
1924 * fully written.
1925 */
Josef Bacik5fd02042012-05-02 14:00:54 -04001926static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001927{
Josef Bacik5fd02042012-05-02 14:00:54 -04001928 struct inode *inode = ordered_extent->inode;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001929 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001930 struct btrfs_trans_handle *trans = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001931 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001932 struct extent_state *cached_state = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08001933 int compress_type = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001934 int ret;
Li Zefan82d59022011-04-20 10:33:24 +08001935 bool nolock;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001936
Liu Bo83eea1f2012-07-10 05:28:39 -06001937 nolock = btrfs_is_free_space_inode(inode);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001938
Josef Bacik5fd02042012-05-02 14:00:54 -04001939 if (test_bit(BTRFS_ORDERED_IOERR, &ordered_extent->flags)) {
1940 ret = -EIO;
1941 goto out;
1942 }
1943
Yan, Zhengc2167752009-11-12 09:34:21 +00001944 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001945 BUG_ON(!list_empty(&ordered_extent->list)); /* Logic error */
Josef Bacik6c760c02012-11-09 10:53:21 -05001946 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
1947 if (nolock)
1948 trans = btrfs_join_transaction_nolock(root);
1949 else
1950 trans = btrfs_join_transaction(root);
1951 if (IS_ERR(trans)) {
1952 ret = PTR_ERR(trans);
1953 trans = NULL;
1954 goto out;
Yan, Zhengc2167752009-11-12 09:34:21 +00001955 }
Josef Bacik6c760c02012-11-09 10:53:21 -05001956 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
1957 ret = btrfs_update_inode_fallback(trans, root, inode);
1958 if (ret) /* -ENOMEM or corruption */
1959 btrfs_abort_transaction(trans, root, ret);
Yan, Zhengc2167752009-11-12 09:34:21 +00001960 goto out;
1961 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001962
Josef Bacik2ac55d42010-02-03 19:33:23 +00001963 lock_extent_bits(io_tree, ordered_extent->file_offset,
1964 ordered_extent->file_offset + ordered_extent->len - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001965 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001966
Josef Bacik0cb59c92010-07-02 12:14:14 -04001967 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001968 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001969 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001970 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001971 if (IS_ERR(trans)) {
1972 ret = PTR_ERR(trans);
1973 trans = NULL;
1974 goto out_unlock;
1975 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001976 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Yan, Zhengc2167752009-11-12 09:34:21 +00001977
Chris Masonc8b97812008-10-29 14:49:59 -04001978 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Li Zefan261507a02010-12-17 14:21:50 +08001979 compress_type = ordered_extent->compress_type;
Yan Zhengd899e052008-10-30 14:25:28 -04001980 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Li Zefan261507a02010-12-17 14:21:50 +08001981 BUG_ON(compress_type);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001982 ret = btrfs_mark_extent_written(trans, inode,
Yan Zhengd899e052008-10-30 14:25:28 -04001983 ordered_extent->file_offset,
1984 ordered_extent->file_offset +
1985 ordered_extent->len);
Yan Zhengd899e052008-10-30 14:25:28 -04001986 } else {
Josef Bacik0af3d002010-06-21 14:48:16 -04001987 BUG_ON(root == root->fs_info->tree_root);
Yan Zhengd899e052008-10-30 14:25:28 -04001988 ret = insert_reserved_file_extent(trans, inode,
1989 ordered_extent->file_offset,
1990 ordered_extent->start,
1991 ordered_extent->disk_len,
1992 ordered_extent->len,
1993 ordered_extent->len,
Li Zefan261507a02010-12-17 14:21:50 +08001994 compress_type, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04001995 BTRFS_FILE_EXTENT_REG);
Yan Zhengd899e052008-10-30 14:25:28 -04001996 }
Josef Bacik5dc562c2012-08-17 13:14:17 -04001997 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
1998 ordered_extent->file_offset, ordered_extent->len,
1999 trans->transid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002000 if (ret < 0) {
2001 btrfs_abort_transaction(trans, root, ret);
Josef Bacik5fd02042012-05-02 14:00:54 -04002002 goto out_unlock;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002003 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00002004
Chris Masone6dcd2d2008-07-17 12:53:50 -04002005 add_pending_csums(trans, inode, ordered_extent->file_offset,
2006 &ordered_extent->list);
2007
Josef Bacik6c760c02012-11-09 10:53:21 -05002008 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
2009 ret = btrfs_update_inode_fallback(trans, root, inode);
2010 if (ret) { /* -ENOMEM or corruption */
2011 btrfs_abort_transaction(trans, root, ret);
2012 goto out_unlock;
Josef Bacik1ef30be2011-04-05 19:25:36 -04002013 }
2014 ret = 0;
Josef Bacik5fd02042012-05-02 14:00:54 -04002015out_unlock:
2016 unlock_extent_cached(io_tree, ordered_extent->file_offset,
2017 ordered_extent->file_offset +
2018 ordered_extent->len - 1, &cached_state, GFP_NOFS);
Yan, Zhengc2167752009-11-12 09:34:21 +00002019out:
Josef Bacik5b0e95b2011-10-06 08:58:24 -04002020 if (root != root->fs_info->tree_root)
Josef Bacik0cb59c92010-07-02 12:14:14 -04002021 btrfs_delalloc_release_metadata(inode, ordered_extent->len);
Miao Xiea698d0752012-09-20 01:51:59 -06002022 if (trans)
2023 btrfs_end_transaction(trans, root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04002024
Josef Bacik0bec9ef2013-01-31 14:58:00 -05002025 if (ret) {
Josef Bacik5fd02042012-05-02 14:00:54 -04002026 clear_extent_uptodate(io_tree, ordered_extent->file_offset,
2027 ordered_extent->file_offset +
2028 ordered_extent->len - 1, NULL, GFP_NOFS);
2029
Josef Bacik0bec9ef2013-01-31 14:58:00 -05002030 /*
2031 * If the ordered extent had an IOERR or something else went
2032 * wrong we need to return the space for this ordered extent
2033 * back to the allocator.
2034 */
2035 if (!test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags) &&
2036 !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags))
2037 btrfs_free_reserved_extent(root, ordered_extent->start,
2038 ordered_extent->disk_len);
2039 }
2040
2041
Josef Bacik5fd02042012-05-02 14:00:54 -04002042 /*
Liu Bo8bad3c02012-06-18 12:14:23 +08002043 * This needs to be done to make sure anybody waiting knows we are done
2044 * updating everything for this ordered extent.
Josef Bacik5fd02042012-05-02 14:00:54 -04002045 */
2046 btrfs_remove_ordered_extent(inode, ordered_extent);
2047
Chris Masone6dcd2d2008-07-17 12:53:50 -04002048 /* once for us */
2049 btrfs_put_ordered_extent(ordered_extent);
2050 /* once for the tree */
2051 btrfs_put_ordered_extent(ordered_extent);
2052
Josef Bacik5fd02042012-05-02 14:00:54 -04002053 return ret;
2054}
2055
2056static void finish_ordered_fn(struct btrfs_work *work)
2057{
2058 struct btrfs_ordered_extent *ordered_extent;
2059 ordered_extent = container_of(work, struct btrfs_ordered_extent, work);
2060 btrfs_finish_ordered_io(ordered_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002061}
2062
Christoph Hellwigb2950862008-12-02 09:54:17 -05002063static int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04002064 struct extent_state *state, int uptodate)
2065{
Josef Bacik5fd02042012-05-02 14:00:54 -04002066 struct inode *inode = page->mapping->host;
2067 struct btrfs_root *root = BTRFS_I(inode)->root;
2068 struct btrfs_ordered_extent *ordered_extent = NULL;
2069 struct btrfs_workers *workers;
2070
liubo1abe9b82011-03-24 11:18:59 +00002071 trace_btrfs_writepage_end_io_hook(page, start, end, uptodate);
2072
Chris Mason8b62b722009-09-02 16:53:46 -04002073 ClearPagePrivate2(page);
Josef Bacik5fd02042012-05-02 14:00:54 -04002074 if (!btrfs_dec_test_ordered_pending(inode, &ordered_extent, start,
2075 end - start + 1, uptodate))
2076 return 0;
2077
2078 ordered_extent->work.func = finish_ordered_fn;
2079 ordered_extent->work.flags = 0;
2080
Liu Bo83eea1f2012-07-10 05:28:39 -06002081 if (btrfs_is_free_space_inode(inode))
Josef Bacik5fd02042012-05-02 14:00:54 -04002082 workers = &root->fs_info->endio_freespace_worker;
2083 else
2084 workers = &root->fs_info->endio_write_workers;
2085 btrfs_queue_worker(workers, &ordered_extent->work);
2086
2087 return 0;
Chris Mason211f90e2008-07-18 11:56:15 -04002088}
2089
Chris Masond352ac62008-09-29 15:18:18 -04002090/*
Chris Masond352ac62008-09-29 15:18:18 -04002091 * when reads are done, we need to check csums to verify the data is correct
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002092 * if there's a match, we allow the bio to finish. If not, the code in
2093 * extent_io.c will try to find good copies for us.
Chris Masond352ac62008-09-29 15:18:18 -04002094 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05002095static int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002096 struct extent_state *state, int mirror)
Chris Mason07157aa2007-08-30 08:50:51 -04002097{
Miao Xie4eee4fa2012-12-21 09:17:45 +00002098 size_t offset = start - page_offset(page);
Chris Mason07157aa2007-08-30 08:50:51 -04002099 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05002100 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -04002101 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -05002102 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -04002103 int ret;
Chris Masonff79f812007-10-15 16:22:25 -04002104 struct btrfs_root *root = BTRFS_I(inode)->root;
2105 u32 csum = ~(u32)0;
Chris Masond1310b22008-01-24 16:13:08 -05002106
Chris Masond20f7042008-12-08 16:58:54 -05002107 if (PageChecked(page)) {
2108 ClearPageChecked(page);
2109 goto good;
2110 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002111
2112 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Jan Schmidt08d2f342011-05-04 16:18:50 +02002113 goto good;
Chris Masond20f7042008-12-08 16:58:54 -05002114
Yan Zheng17d217f2008-12-12 10:03:38 -05002115 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04002116 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
Yan Zheng17d217f2008-12-12 10:03:38 -05002117 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM,
2118 GFP_NOFS);
2119 return 0;
2120 }
2121
Yanc2e639f2008-02-04 08:57:25 -05002122 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -05002123 private = state->private;
2124 ret = 0;
2125 } else {
2126 ret = get_state_private(io_tree, start, &private);
2127 }
Cong Wang7ac687d2011-11-25 23:14:28 +08002128 kaddr = kmap_atomic(page);
Chris Masond3977122009-01-05 21:25:51 -05002129 if (ret)
Chris Mason07157aa2007-08-30 08:50:51 -04002130 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05002131
Chris Masonff79f812007-10-15 16:22:25 -04002132 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
2133 btrfs_csum_final(csum, (char *)&csum);
Chris Masond3977122009-01-05 21:25:51 -05002134 if (csum != private)
Chris Mason07157aa2007-08-30 08:50:51 -04002135 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05002136
Cong Wang7ac687d2011-11-25 23:14:28 +08002137 kunmap_atomic(kaddr);
Chris Masond20f7042008-12-08 16:58:54 -05002138good:
Chris Mason07157aa2007-08-30 08:50:51 -04002139 return 0;
2140
2141zeroit:
Chris Mason945d8962011-05-22 12:33:42 -04002142 printk_ratelimited(KERN_INFO "btrfs csum failed ino %llu off %llu csum %u "
Li Zefan33345d012011-04-20 10:31:50 +08002143 "private %llu\n",
2144 (unsigned long long)btrfs_ino(page->mapping->host),
Chris Mason193f2842009-04-27 07:29:05 -04002145 (unsigned long long)start, csum,
2146 (unsigned long long)private);
Chris Masondb945352007-10-15 16:15:53 -04002147 memset(kaddr + offset, 1, end - start + 1);
2148 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002149 kunmap_atomic(kaddr);
Chris Mason3b951512008-04-17 11:29:12 -04002150 if (private == 0)
2151 return 0;
Chris Mason7e383262008-04-09 16:28:12 -04002152 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -04002153}
Chris Masonb888db2b2007-08-27 16:49:44 -04002154
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002155struct delayed_iput {
2156 struct list_head list;
2157 struct inode *inode;
2158};
2159
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002160/* JDM: If this is fs-wide, why can't we add a pointer to
2161 * btrfs_inode instead and avoid the allocation? */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002162void btrfs_add_delayed_iput(struct inode *inode)
2163{
2164 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2165 struct delayed_iput *delayed;
2166
2167 if (atomic_add_unless(&inode->i_count, -1, 1))
2168 return;
2169
2170 delayed = kmalloc(sizeof(*delayed), GFP_NOFS | __GFP_NOFAIL);
2171 delayed->inode = inode;
2172
2173 spin_lock(&fs_info->delayed_iput_lock);
2174 list_add_tail(&delayed->list, &fs_info->delayed_iputs);
2175 spin_unlock(&fs_info->delayed_iput_lock);
2176}
2177
2178void btrfs_run_delayed_iputs(struct btrfs_root *root)
2179{
2180 LIST_HEAD(list);
2181 struct btrfs_fs_info *fs_info = root->fs_info;
2182 struct delayed_iput *delayed;
2183 int empty;
2184
2185 spin_lock(&fs_info->delayed_iput_lock);
2186 empty = list_empty(&fs_info->delayed_iputs);
2187 spin_unlock(&fs_info->delayed_iput_lock);
2188 if (empty)
2189 return;
2190
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002191 spin_lock(&fs_info->delayed_iput_lock);
2192 list_splice_init(&fs_info->delayed_iputs, &list);
2193 spin_unlock(&fs_info->delayed_iput_lock);
2194
2195 while (!list_empty(&list)) {
2196 delayed = list_entry(list.next, struct delayed_iput, list);
2197 list_del(&delayed->list);
2198 iput(delayed->inode);
2199 kfree(delayed);
2200 }
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002201}
2202
Yan, Zhengd68fc572010-05-16 10:49:58 -04002203enum btrfs_orphan_cleanup_state {
2204 ORPHAN_CLEANUP_STARTED = 1,
2205 ORPHAN_CLEANUP_DONE = 2,
2206};
2207
2208/*
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08002209 * This is called in transaction commit time. If there are no orphan
Yan, Zhengd68fc572010-05-16 10:49:58 -04002210 * files in the subvolume, it removes orphan item and frees block_rsv
2211 * structure.
2212 */
2213void btrfs_orphan_commit_root(struct btrfs_trans_handle *trans,
2214 struct btrfs_root *root)
2215{
Josef Bacik90290e12011-12-02 15:44:12 -05002216 struct btrfs_block_rsv *block_rsv;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002217 int ret;
2218
Josef Bacik8a35d952012-05-23 14:26:42 -04002219 if (atomic_read(&root->orphan_inodes) ||
Yan, Zhengd68fc572010-05-16 10:49:58 -04002220 root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE)
2221 return;
2222
Josef Bacik90290e12011-12-02 15:44:12 -05002223 spin_lock(&root->orphan_lock);
Josef Bacik8a35d952012-05-23 14:26:42 -04002224 if (atomic_read(&root->orphan_inodes)) {
Josef Bacik90290e12011-12-02 15:44:12 -05002225 spin_unlock(&root->orphan_lock);
2226 return;
2227 }
2228
2229 if (root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE) {
2230 spin_unlock(&root->orphan_lock);
2231 return;
2232 }
2233
2234 block_rsv = root->orphan_block_rsv;
2235 root->orphan_block_rsv = NULL;
2236 spin_unlock(&root->orphan_lock);
2237
Yan, Zhengd68fc572010-05-16 10:49:58 -04002238 if (root->orphan_item_inserted &&
2239 btrfs_root_refs(&root->root_item) > 0) {
2240 ret = btrfs_del_orphan_item(trans, root->fs_info->tree_root,
2241 root->root_key.objectid);
2242 BUG_ON(ret);
2243 root->orphan_item_inserted = 0;
2244 }
2245
Josef Bacik90290e12011-12-02 15:44:12 -05002246 if (block_rsv) {
2247 WARN_ON(block_rsv->size > 0);
2248 btrfs_free_block_rsv(root, block_rsv);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002249 }
2250}
2251
2252/*
Josef Bacik7b128762008-07-24 12:17:14 -04002253 * This creates an orphan entry for the given inode in case something goes
2254 * wrong in the middle of an unlink/truncate.
Yan, Zhengd68fc572010-05-16 10:49:58 -04002255 *
2256 * NOTE: caller of this function should reserve 5 units of metadata for
2257 * this function.
Josef Bacik7b128762008-07-24 12:17:14 -04002258 */
2259int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
2260{
2261 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002262 struct btrfs_block_rsv *block_rsv = NULL;
2263 int reserve = 0;
2264 int insert = 0;
2265 int ret;
Josef Bacik7b128762008-07-24 12:17:14 -04002266
Yan, Zhengd68fc572010-05-16 10:49:58 -04002267 if (!root->orphan_block_rsv) {
Miao Xie66d8f3d2012-09-06 04:02:28 -06002268 block_rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP);
Tsutomu Itohb5324022011-07-19 07:27:20 +00002269 if (!block_rsv)
2270 return -ENOMEM;
Josef Bacik7b128762008-07-24 12:17:14 -04002271 }
2272
Yan, Zhengd68fc572010-05-16 10:49:58 -04002273 spin_lock(&root->orphan_lock);
2274 if (!root->orphan_block_rsv) {
2275 root->orphan_block_rsv = block_rsv;
2276 } else if (block_rsv) {
2277 btrfs_free_block_rsv(root, block_rsv);
2278 block_rsv = NULL;
2279 }
Josef Bacik7b128762008-07-24 12:17:14 -04002280
Josef Bacik8a35d952012-05-23 14:26:42 -04002281 if (!test_and_set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2282 &BTRFS_I(inode)->runtime_flags)) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04002283#if 0
2284 /*
2285 * For proper ENOSPC handling, we should do orphan
2286 * cleanup when mounting. But this introduces backward
2287 * compatibility issue.
2288 */
2289 if (!xchg(&root->orphan_item_inserted, 1))
2290 insert = 2;
2291 else
2292 insert = 1;
2293#endif
2294 insert = 1;
Miao Xie321f0e72012-08-28 22:13:02 -06002295 atomic_inc(&root->orphan_inodes);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002296 }
Josef Bacik7b128762008-07-24 12:17:14 -04002297
Josef Bacik72ac3c02012-05-23 14:13:11 -04002298 if (!test_and_set_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
2299 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04002300 reserve = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002301 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002302
Yan, Zhengd68fc572010-05-16 10:49:58 -04002303 /* grab metadata reservation from transaction handle */
2304 if (reserve) {
2305 ret = btrfs_orphan_reserve_metadata(trans, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002306 BUG_ON(ret); /* -ENOSPC in reservation; Logic error? JDM */
Yan, Zhengd68fc572010-05-16 10:49:58 -04002307 }
2308
2309 /* insert an orphan item to track this unlinked/truncated file */
2310 if (insert >= 1) {
Li Zefan33345d012011-04-20 10:31:50 +08002311 ret = btrfs_insert_orphan_item(trans, root, btrfs_ino(inode));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002312 if (ret && ret != -EEXIST) {
Josef Bacik8a35d952012-05-23 14:26:42 -04002313 clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2314 &BTRFS_I(inode)->runtime_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002315 btrfs_abort_transaction(trans, root, ret);
2316 return ret;
2317 }
2318 ret = 0;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002319 }
2320
2321 /* insert an orphan item to track subvolume contains orphan files */
2322 if (insert >= 2) {
2323 ret = btrfs_insert_orphan_item(trans, root->fs_info->tree_root,
2324 root->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002325 if (ret && ret != -EEXIST) {
2326 btrfs_abort_transaction(trans, root, ret);
2327 return ret;
2328 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002329 }
2330 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002331}
2332
2333/*
2334 * We have done the truncate/delete so we can go ahead and remove the orphan
2335 * item for this particular inode.
2336 */
2337int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode)
2338{
2339 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002340 int delete_item = 0;
2341 int release_rsv = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002342 int ret = 0;
2343
Yan, Zhengd68fc572010-05-16 10:49:58 -04002344 spin_lock(&root->orphan_lock);
Josef Bacik8a35d952012-05-23 14:26:42 -04002345 if (test_and_clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2346 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04002347 delete_item = 1;
Josef Bacik7b128762008-07-24 12:17:14 -04002348
Josef Bacik72ac3c02012-05-23 14:13:11 -04002349 if (test_and_clear_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
2350 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04002351 release_rsv = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002352 spin_unlock(&root->orphan_lock);
2353
2354 if (trans && delete_item) {
Li Zefan33345d012011-04-20 10:31:50 +08002355 ret = btrfs_del_orphan_item(trans, root, btrfs_ino(inode));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002356 BUG_ON(ret); /* -ENOMEM or corruption (JDM: Recheck) */
Josef Bacik7b128762008-07-24 12:17:14 -04002357 }
2358
Josef Bacik8a35d952012-05-23 14:26:42 -04002359 if (release_rsv) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04002360 btrfs_orphan_release_metadata(inode);
Josef Bacik8a35d952012-05-23 14:26:42 -04002361 atomic_dec(&root->orphan_inodes);
2362 }
Josef Bacik7b128762008-07-24 12:17:14 -04002363
Yan, Zhengd68fc572010-05-16 10:49:58 -04002364 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002365}
2366
2367/*
2368 * this cleans up any orphans that may be left on the list from the last use
2369 * of this root.
2370 */
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002371int btrfs_orphan_cleanup(struct btrfs_root *root)
Josef Bacik7b128762008-07-24 12:17:14 -04002372{
2373 struct btrfs_path *path;
2374 struct extent_buffer *leaf;
Josef Bacik7b128762008-07-24 12:17:14 -04002375 struct btrfs_key key, found_key;
2376 struct btrfs_trans_handle *trans;
2377 struct inode *inode;
Josef Bacik8f6d7f42011-09-26 15:55:20 -04002378 u64 last_objectid = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002379 int ret = 0, nr_unlink = 0, nr_truncate = 0;
2380
Yan, Zhengd68fc572010-05-16 10:49:58 -04002381 if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002382 return 0;
Yan, Zhengc71bf092009-11-12 09:34:40 +00002383
2384 path = btrfs_alloc_path();
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002385 if (!path) {
2386 ret = -ENOMEM;
2387 goto out;
2388 }
Josef Bacik7b128762008-07-24 12:17:14 -04002389 path->reada = -1;
2390
2391 key.objectid = BTRFS_ORPHAN_OBJECTID;
2392 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
2393 key.offset = (u64)-1;
2394
Josef Bacik7b128762008-07-24 12:17:14 -04002395 while (1) {
2396 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002397 if (ret < 0)
2398 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04002399
2400 /*
2401 * if ret == 0 means we found what we were searching for, which
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002402 * is weird, but possible, so only screw with path if we didn't
Josef Bacik7b128762008-07-24 12:17:14 -04002403 * find the key and see if we have stuff that matches
2404 */
2405 if (ret > 0) {
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002406 ret = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002407 if (path->slots[0] == 0)
2408 break;
2409 path->slots[0]--;
2410 }
2411
2412 /* pull out the item */
2413 leaf = path->nodes[0];
Josef Bacik7b128762008-07-24 12:17:14 -04002414 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2415
2416 /* make sure the item matches what we want */
2417 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
2418 break;
2419 if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY)
2420 break;
2421
2422 /* release the path since we're done with it */
David Sterbab3b4aa72011-04-21 01:20:15 +02002423 btrfs_release_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04002424
2425 /*
2426 * this is where we are basically btrfs_lookup, without the
2427 * crossing root thing. we store the inode number in the
2428 * offset of the orphan item.
2429 */
Josef Bacik8f6d7f42011-09-26 15:55:20 -04002430
2431 if (found_key.offset == last_objectid) {
2432 printk(KERN_ERR "btrfs: Error removing orphan entry, "
2433 "stopping orphan cleanup\n");
2434 ret = -EINVAL;
2435 goto out;
2436 }
2437
2438 last_objectid = found_key.offset;
2439
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002440 found_key.objectid = found_key.offset;
2441 found_key.type = BTRFS_INODE_ITEM_KEY;
2442 found_key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +00002443 inode = btrfs_iget(root->fs_info->sb, &found_key, root, NULL);
Josef Bacika8c9e572011-09-21 16:55:59 -04002444 ret = PTR_RET(inode);
2445 if (ret && ret != -ESTALE)
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002446 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04002447
Arne Jansenf8e9e0b2011-12-14 20:12:02 -05002448 if (ret == -ESTALE && root == root->fs_info->tree_root) {
2449 struct btrfs_root *dead_root;
2450 struct btrfs_fs_info *fs_info = root->fs_info;
2451 int is_dead_root = 0;
2452
2453 /*
2454 * this is an orphan in the tree root. Currently these
2455 * could come from 2 sources:
2456 * a) a snapshot deletion in progress
2457 * b) a free space cache inode
2458 * We need to distinguish those two, as the snapshot
2459 * orphan must not get deleted.
2460 * find_dead_roots already ran before us, so if this
2461 * is a snapshot deletion, we should find the root
2462 * in the dead_roots list
2463 */
2464 spin_lock(&fs_info->trans_lock);
2465 list_for_each_entry(dead_root, &fs_info->dead_roots,
2466 root_list) {
2467 if (dead_root->root_key.objectid ==
2468 found_key.objectid) {
2469 is_dead_root = 1;
2470 break;
2471 }
2472 }
2473 spin_unlock(&fs_info->trans_lock);
2474 if (is_dead_root) {
2475 /* prevent this orphan from being found again */
2476 key.offset = found_key.objectid - 1;
2477 continue;
2478 }
2479 }
Josef Bacika8c9e572011-09-21 16:55:59 -04002480 /*
2481 * Inode is already gone but the orphan item is still there,
2482 * kill the orphan item.
2483 */
2484 if (ret == -ESTALE) {
2485 trans = btrfs_start_transaction(root, 1);
2486 if (IS_ERR(trans)) {
2487 ret = PTR_ERR(trans);
2488 goto out;
2489 }
Josef Bacik8a35d952012-05-23 14:26:42 -04002490 printk(KERN_ERR "auto deleting %Lu\n",
2491 found_key.objectid);
Josef Bacika8c9e572011-09-21 16:55:59 -04002492 ret = btrfs_del_orphan_item(trans, root,
2493 found_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002494 BUG_ON(ret); /* -ENOMEM or corruption (JDM: Recheck) */
Josef Bacika8c9e572011-09-21 16:55:59 -04002495 btrfs_end_transaction(trans, root);
2496 continue;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002497 }
Josef Bacik7b128762008-07-24 12:17:14 -04002498
Josef Bacik7b128762008-07-24 12:17:14 -04002499 /*
2500 * add this inode to the orphan list so btrfs_orphan_del does
2501 * the proper thing when we hit it
2502 */
Josef Bacik8a35d952012-05-23 14:26:42 -04002503 set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2504 &BTRFS_I(inode)->runtime_flags);
Josef Bacik925396e2013-02-01 15:57:47 -05002505 atomic_inc(&root->orphan_inodes);
Josef Bacik7b128762008-07-24 12:17:14 -04002506
Josef Bacik7b128762008-07-24 12:17:14 -04002507 /* if we have links, this was a truncate, lets do that */
2508 if (inode->i_nlink) {
Josef Bacika41ad392011-01-31 15:30:16 -05002509 if (!S_ISREG(inode->i_mode)) {
2510 WARN_ON(1);
2511 iput(inode);
2512 continue;
2513 }
Josef Bacik7b128762008-07-24 12:17:14 -04002514 nr_truncate++;
Josef Bacikf3fe8202013-01-07 17:03:21 -05002515
2516 /* 1 for the orphan item deletion. */
2517 trans = btrfs_start_transaction(root, 1);
2518 if (IS_ERR(trans)) {
2519 ret = PTR_ERR(trans);
2520 goto out;
2521 }
2522 ret = btrfs_orphan_add(trans, inode);
2523 btrfs_end_transaction(trans, root);
2524 if (ret)
2525 goto out;
2526
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002527 ret = btrfs_truncate(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04002528 } else {
2529 nr_unlink++;
2530 }
2531
2532 /* this will do delete_inode and everything for us */
2533 iput(inode);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002534 if (ret)
2535 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04002536 }
Miao Xie3254c872011-11-10 20:45:05 -05002537 /* release the path since we're done with it */
2538 btrfs_release_path(path);
2539
Yan, Zhengd68fc572010-05-16 10:49:58 -04002540 root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE;
2541
2542 if (root->orphan_block_rsv)
2543 btrfs_block_rsv_release(root, root->orphan_block_rsv,
2544 (u64)-1);
2545
2546 if (root->orphan_block_rsv || root->orphan_item_inserted) {
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002547 trans = btrfs_join_transaction(root);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002548 if (!IS_ERR(trans))
2549 btrfs_end_transaction(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002550 }
Josef Bacik7b128762008-07-24 12:17:14 -04002551
2552 if (nr_unlink)
2553 printk(KERN_INFO "btrfs: unlinked %d orphans\n", nr_unlink);
2554 if (nr_truncate)
2555 printk(KERN_INFO "btrfs: truncated %d orphans\n", nr_truncate);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002556
2557out:
2558 if (ret)
2559 printk(KERN_CRIT "btrfs: could not do orphan cleanup %d\n", ret);
2560 btrfs_free_path(path);
2561 return ret;
Josef Bacik7b128762008-07-24 12:17:14 -04002562}
2563
Chris Masond352ac62008-09-29 15:18:18 -04002564/*
Chris Mason46a53cc2009-04-27 11:47:50 -04002565 * very simple check to peek ahead in the leaf looking for xattrs. If we
2566 * don't find any xattrs, we know there can't be any acls.
2567 *
2568 * slot is the slot the inode is in, objectid is the objectid of the inode
2569 */
2570static noinline int acls_after_inode_item(struct extent_buffer *leaf,
2571 int slot, u64 objectid)
2572{
2573 u32 nritems = btrfs_header_nritems(leaf);
2574 struct btrfs_key found_key;
2575 int scanned = 0;
2576
2577 slot++;
2578 while (slot < nritems) {
2579 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2580
2581 /* we found a different objectid, there must not be acls */
2582 if (found_key.objectid != objectid)
2583 return 0;
2584
2585 /* we found an xattr, assume we've got an acl */
2586 if (found_key.type == BTRFS_XATTR_ITEM_KEY)
2587 return 1;
2588
2589 /*
2590 * we found a key greater than an xattr key, there can't
2591 * be any acls later on
2592 */
2593 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
2594 return 0;
2595
2596 slot++;
2597 scanned++;
2598
2599 /*
2600 * it goes inode, inode backrefs, xattrs, extents,
2601 * so if there are a ton of hard links to an inode there can
2602 * be a lot of backrefs. Don't waste time searching too hard,
2603 * this is just an optimization
2604 */
2605 if (scanned >= 8)
2606 break;
2607 }
2608 /* we hit the end of the leaf before we found an xattr or
2609 * something larger than an xattr. We have to assume the inode
2610 * has acls
2611 */
2612 return 1;
2613}
2614
2615/*
Chris Masond352ac62008-09-29 15:18:18 -04002616 * read an inode from the btree into the in-memory inode
2617 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002618static void btrfs_read_locked_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002619{
2620 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002621 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002622 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -04002623 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -04002624 struct btrfs_root *root = BTRFS_I(inode)->root;
2625 struct btrfs_key location;
Chris Mason46a53cc2009-04-27 11:47:50 -04002626 int maybe_acls;
Josef Bacik618e21d2007-07-11 10:18:17 -04002627 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04002628 int ret;
Miao Xie2f7e33d2011-06-23 07:27:13 +00002629 bool filled = false;
2630
2631 ret = btrfs_fill_inode(inode, &rdev);
2632 if (!ret)
2633 filled = true;
Chris Mason39279cc2007-06-12 06:35:45 -04002634
2635 path = btrfs_alloc_path();
Mark Fasheh1748f842011-07-12 11:25:31 -07002636 if (!path)
2637 goto make_bad;
2638
Josef Bacikd90c7322011-05-17 09:50:54 -04002639 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002640 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05002641
Chris Mason39279cc2007-06-12 06:35:45 -04002642 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002643 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04002644 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -04002645
Chris Mason5f39d392007-10-15 16:14:19 -04002646 leaf = path->nodes[0];
Miao Xie2f7e33d2011-06-23 07:27:13 +00002647
2648 if (filled)
2649 goto cache_acl;
2650
Chris Mason5f39d392007-10-15 16:14:19 -04002651 inode_item = btrfs_item_ptr(leaf, path->slots[0],
2652 struct btrfs_inode_item);
Chris Mason5f39d392007-10-15 16:14:19 -04002653 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
Miklos Szeredibfe86842011-10-28 14:13:29 +02002654 set_nlink(inode, btrfs_inode_nlink(leaf, inode_item));
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -08002655 i_uid_write(inode, btrfs_inode_uid(leaf, inode_item));
2656 i_gid_write(inode, btrfs_inode_gid(leaf, inode_item));
Chris Masondbe674a2008-07-17 12:54:05 -04002657 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002658
2659 tspec = btrfs_inode_atime(inode_item);
2660 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2661 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2662
2663 tspec = btrfs_inode_mtime(inode_item);
2664 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2665 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2666
2667 tspec = btrfs_inode_ctime(inode_item);
2668 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2669 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2670
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002671 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04002672 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Josef Bacik5dc562c2012-08-17 13:14:17 -04002673 BTRFS_I(inode)->last_trans = btrfs_inode_transid(leaf, inode_item);
2674
2675 /*
2676 * If we were modified in the current generation and evicted from memory
2677 * and then re-read we need to do a full sync since we don't have any
2678 * idea about which extents were modified before we were evicted from
2679 * cache.
2680 */
2681 if (BTRFS_I(inode)->last_trans == root->fs_info->generation)
2682 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
2683 &BTRFS_I(inode)->runtime_flags);
2684
Josef Bacik0c4d2d92012-04-05 15:03:02 -04002685 inode->i_version = btrfs_inode_sequence(leaf, inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04002686 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04002687 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002688 rdev = btrfs_inode_rdev(leaf, inode_item);
2689
Josef Bacikaec74772008-07-24 12:12:38 -04002690 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05002691 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Miao Xie2f7e33d2011-06-23 07:27:13 +00002692cache_acl:
Chris Mason46a53cc2009-04-27 11:47:50 -04002693 /*
2694 * try to precache a NULL acl entry for files that don't have
2695 * any xattrs or acls
2696 */
Li Zefan33345d012011-04-20 10:31:50 +08002697 maybe_acls = acls_after_inode_item(leaf, path->slots[0],
2698 btrfs_ino(inode));
Al Viro72c04902009-06-24 16:58:48 -04002699 if (!maybe_acls)
2700 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04002701
Chris Mason39279cc2007-06-12 06:35:45 -04002702 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002703
Chris Mason39279cc2007-06-12 06:35:45 -04002704 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04002705 case S_IFREG:
2706 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04002707 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05002708 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04002709 inode->i_fop = &btrfs_file_operations;
2710 inode->i_op = &btrfs_file_inode_operations;
2711 break;
2712 case S_IFDIR:
2713 inode->i_fop = &btrfs_dir_file_operations;
2714 if (root == root->fs_info->tree_root)
2715 inode->i_op = &btrfs_dir_ro_inode_operations;
2716 else
2717 inode->i_op = &btrfs_dir_inode_operations;
2718 break;
2719 case S_IFLNK:
2720 inode->i_op = &btrfs_symlink_inode_operations;
2721 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04002722 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04002723 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04002724 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05002725 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04002726 init_special_inode(inode, inode->i_mode, rdev);
2727 break;
Chris Mason39279cc2007-06-12 06:35:45 -04002728 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002729
2730 btrfs_update_iflags(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002731 return;
2732
2733make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04002734 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002735 make_bad_inode(inode);
2736}
2737
Chris Masond352ac62008-09-29 15:18:18 -04002738/*
2739 * given a leaf and an inode, copy the inode fields into the leaf
2740 */
Chris Masone02119d2008-09-05 16:13:11 -04002741static void fill_inode_item(struct btrfs_trans_handle *trans,
2742 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04002743 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04002744 struct inode *inode)
2745{
Liu Bo51fab692012-12-27 09:01:21 +00002746 struct btrfs_map_token token;
Chris Mason5f39d392007-10-15 16:14:19 -04002747
Liu Bo51fab692012-12-27 09:01:21 +00002748 btrfs_init_map_token(&token);
Chris Mason5f39d392007-10-15 16:14:19 -04002749
Liu Bo51fab692012-12-27 09:01:21 +00002750 btrfs_set_token_inode_uid(leaf, item, i_uid_read(inode), &token);
2751 btrfs_set_token_inode_gid(leaf, item, i_gid_read(inode), &token);
2752 btrfs_set_token_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size,
2753 &token);
2754 btrfs_set_token_inode_mode(leaf, item, inode->i_mode, &token);
2755 btrfs_set_token_inode_nlink(leaf, item, inode->i_nlink, &token);
Chris Mason5f39d392007-10-15 16:14:19 -04002756
Liu Bo51fab692012-12-27 09:01:21 +00002757 btrfs_set_token_timespec_sec(leaf, btrfs_inode_atime(item),
2758 inode->i_atime.tv_sec, &token);
2759 btrfs_set_token_timespec_nsec(leaf, btrfs_inode_atime(item),
2760 inode->i_atime.tv_nsec, &token);
Chris Mason5f39d392007-10-15 16:14:19 -04002761
Liu Bo51fab692012-12-27 09:01:21 +00002762 btrfs_set_token_timespec_sec(leaf, btrfs_inode_mtime(item),
2763 inode->i_mtime.tv_sec, &token);
2764 btrfs_set_token_timespec_nsec(leaf, btrfs_inode_mtime(item),
2765 inode->i_mtime.tv_nsec, &token);
2766
2767 btrfs_set_token_timespec_sec(leaf, btrfs_inode_ctime(item),
2768 inode->i_ctime.tv_sec, &token);
2769 btrfs_set_token_timespec_nsec(leaf, btrfs_inode_ctime(item),
2770 inode->i_ctime.tv_nsec, &token);
2771
2772 btrfs_set_token_inode_nbytes(leaf, item, inode_get_bytes(inode),
2773 &token);
2774 btrfs_set_token_inode_generation(leaf, item, BTRFS_I(inode)->generation,
2775 &token);
2776 btrfs_set_token_inode_sequence(leaf, item, inode->i_version, &token);
2777 btrfs_set_token_inode_transid(leaf, item, trans->transid, &token);
2778 btrfs_set_token_inode_rdev(leaf, item, inode->i_rdev, &token);
2779 btrfs_set_token_inode_flags(leaf, item, BTRFS_I(inode)->flags, &token);
2780 btrfs_set_token_inode_block_group(leaf, item, 0, &token);
Chris Mason39279cc2007-06-12 06:35:45 -04002781}
2782
Chris Masond352ac62008-09-29 15:18:18 -04002783/*
2784 * copy everything in the in-memory inode into the btree.
2785 */
Chris Mason21151332011-11-10 20:39:08 -05002786static noinline int btrfs_update_inode_item(struct btrfs_trans_handle *trans,
Chris Masond3977122009-01-05 21:25:51 -05002787 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002788{
2789 struct btrfs_inode_item *inode_item;
2790 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002791 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002792 int ret;
2793
2794 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08002795 if (!path)
2796 return -ENOMEM;
2797
Chris Masonb9473432009-03-13 11:00:37 -04002798 path->leave_spinning = 1;
Miao Xie16cdcec2011-04-22 18:12:22 +08002799 ret = btrfs_lookup_inode(trans, root, path, &BTRFS_I(inode)->location,
2800 1);
Chris Mason39279cc2007-06-12 06:35:45 -04002801 if (ret) {
2802 if (ret > 0)
2803 ret = -ENOENT;
2804 goto failed;
2805 }
2806
Chris Masonb4ce94d2009-02-04 09:25:08 -05002807 btrfs_unlock_up_safe(path, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002808 leaf = path->nodes[0];
2809 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Miao Xie16cdcec2011-04-22 18:12:22 +08002810 struct btrfs_inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -04002811
Chris Masone02119d2008-09-05 16:13:11 -04002812 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002813 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002814 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002815 ret = 0;
2816failed:
Chris Mason39279cc2007-06-12 06:35:45 -04002817 btrfs_free_path(path);
2818 return ret;
2819}
2820
Chris Masond352ac62008-09-29 15:18:18 -04002821/*
Chris Mason21151332011-11-10 20:39:08 -05002822 * copy everything in the in-memory inode into the btree.
2823 */
2824noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
2825 struct btrfs_root *root, struct inode *inode)
2826{
2827 int ret;
2828
2829 /*
2830 * If the inode is a free space inode, we can deadlock during commit
2831 * if we put it into the delayed code.
2832 *
2833 * The data relocation inode should also be directly updated
2834 * without delay
2835 */
Liu Bo83eea1f2012-07-10 05:28:39 -06002836 if (!btrfs_is_free_space_inode(inode)
Chris Mason21151332011-11-10 20:39:08 -05002837 && root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID) {
Alexander Block8ea05e32012-07-25 17:35:53 +02002838 btrfs_update_root_times(trans, root);
2839
Chris Mason21151332011-11-10 20:39:08 -05002840 ret = btrfs_delayed_update_inode(trans, root, inode);
2841 if (!ret)
2842 btrfs_set_inode_last_trans(trans, inode);
2843 return ret;
2844 }
2845
2846 return btrfs_update_inode_item(trans, root, inode);
2847}
2848
Josef Bacikbe6aef62012-10-22 15:43:12 -04002849noinline int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans,
2850 struct btrfs_root *root,
2851 struct inode *inode)
Chris Mason21151332011-11-10 20:39:08 -05002852{
2853 int ret;
2854
2855 ret = btrfs_update_inode(trans, root, inode);
2856 if (ret == -ENOSPC)
2857 return btrfs_update_inode_item(trans, root, inode);
2858 return ret;
2859}
2860
2861/*
Chris Masond352ac62008-09-29 15:18:18 -04002862 * unlink helper that gets used here in inode.c and in the tree logging
2863 * recovery code. It remove a link in a directory with a given name, and
2864 * also drops the back refs in the inode to the directory
2865 */
Al Viro92986792011-03-04 17:14:37 +00002866static int __btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2867 struct btrfs_root *root,
2868 struct inode *dir, struct inode *inode,
2869 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04002870{
2871 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04002872 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002873 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002874 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04002875 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04002876 u64 index;
Li Zefan33345d012011-04-20 10:31:50 +08002877 u64 ino = btrfs_ino(inode);
2878 u64 dir_ino = btrfs_ino(dir);
Chris Mason39279cc2007-06-12 06:35:45 -04002879
2880 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002881 if (!path) {
2882 ret = -ENOMEM;
Tsutomu Itoh554233a2011-02-03 03:16:25 +00002883 goto out;
Chris Mason54aa1f42007-06-22 14:16:25 -04002884 }
2885
Chris Masonb9473432009-03-13 11:00:37 -04002886 path->leave_spinning = 1;
Li Zefan33345d012011-04-20 10:31:50 +08002887 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Chris Mason39279cc2007-06-12 06:35:45 -04002888 name, name_len, -1);
2889 if (IS_ERR(di)) {
2890 ret = PTR_ERR(di);
2891 goto err;
2892 }
2893 if (!di) {
2894 ret = -ENOENT;
2895 goto err;
2896 }
Chris Mason5f39d392007-10-15 16:14:19 -04002897 leaf = path->nodes[0];
2898 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04002899 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04002900 if (ret)
2901 goto err;
David Sterbab3b4aa72011-04-21 01:20:15 +02002902 btrfs_release_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002903
Li Zefan33345d012011-04-20 10:31:50 +08002904 ret = btrfs_del_inode_ref(trans, root, name, name_len, ino,
2905 dir_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04002906 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05002907 printk(KERN_INFO "btrfs failed to delete reference to %.*s, "
Li Zefan33345d012011-04-20 10:31:50 +08002908 "inode %llu parent %llu\n", name_len, name,
2909 (unsigned long long)ino, (unsigned long long)dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002910 btrfs_abort_transaction(trans, root, ret);
Josef Bacikaec74772008-07-24 12:12:38 -04002911 goto err;
2912 }
2913
Miao Xie16cdcec2011-04-22 18:12:22 +08002914 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002915 if (ret) {
2916 btrfs_abort_transaction(trans, root, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04002917 goto err;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002918 }
Chris Mason39279cc2007-06-12 06:35:45 -04002919
Chris Masone02119d2008-09-05 16:13:11 -04002920 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
Li Zefan33345d012011-04-20 10:31:50 +08002921 inode, dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002922 if (ret != 0 && ret != -ENOENT) {
2923 btrfs_abort_transaction(trans, root, ret);
2924 goto err;
2925 }
Chris Masone02119d2008-09-05 16:13:11 -04002926
2927 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
2928 dir, index);
Chris Mason6418c962010-10-30 07:34:24 -04002929 if (ret == -ENOENT)
2930 ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002931err:
2932 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002933 if (ret)
2934 goto out;
2935
2936 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04002937 inode_inc_iversion(inode);
2938 inode_inc_iversion(dir);
Chris Masone02119d2008-09-05 16:13:11 -04002939 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
Tsutomu Itohb9959292012-06-25 21:25:22 -06002940 ret = btrfs_update_inode(trans, root, dir);
Chris Masone02119d2008-09-05 16:13:11 -04002941out:
Chris Mason39279cc2007-06-12 06:35:45 -04002942 return ret;
2943}
2944
Al Viro92986792011-03-04 17:14:37 +00002945int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2946 struct btrfs_root *root,
2947 struct inode *dir, struct inode *inode,
2948 const char *name, int name_len)
2949{
2950 int ret;
2951 ret = __btrfs_unlink_inode(trans, root, dir, inode, name, name_len);
2952 if (!ret) {
2953 btrfs_drop_nlink(inode);
2954 ret = btrfs_update_inode(trans, root, inode);
2955 }
2956 return ret;
2957}
2958
2959
Yan, Zhenga22285a2010-05-16 10:48:46 -04002960/* helper to check if there is any shared block in the path */
2961static int check_path_shared(struct btrfs_root *root,
2962 struct btrfs_path *path)
2963{
2964 struct extent_buffer *eb;
2965 int level;
Dan Carpenter0e4dcbef2010-06-01 08:23:11 +00002966 u64 refs = 1;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002967
2968 for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
Josef Bacikdedefd72011-01-24 21:43:18 +00002969 int ret;
2970
Yan, Zhenga22285a2010-05-16 10:48:46 -04002971 if (!path->nodes[level])
2972 break;
2973 eb = path->nodes[level];
2974 if (!btrfs_block_can_be_shared(root, eb))
2975 continue;
2976 ret = btrfs_lookup_extent_info(NULL, root, eb->start, eb->len,
2977 &refs, NULL);
2978 if (refs > 1)
2979 return 1;
2980 }
Josef Bacikdedefd72011-01-24 21:43:18 +00002981 return 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002982}
2983
2984/*
2985 * helper to start transaction for unlink and rmdir.
2986 *
2987 * unlink and rmdir are special in btrfs, they do not always free space.
2988 * so in enospc case, we should make sure they will free space before
2989 * allowing them to use the global metadata reservation.
2990 */
2991static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir,
2992 struct dentry *dentry)
2993{
2994 struct btrfs_trans_handle *trans;
2995 struct btrfs_root *root = BTRFS_I(dir)->root;
2996 struct btrfs_path *path;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002997 struct btrfs_dir_item *di;
2998 struct inode *inode = dentry->d_inode;
2999 u64 index;
3000 int check_link = 1;
3001 int err = -ENOSPC;
3002 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08003003 u64 ino = btrfs_ino(inode);
3004 u64 dir_ino = btrfs_ino(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003005
Josef Bacike70bea52011-10-11 14:18:24 -04003006 /*
3007 * 1 for the possible orphan item
3008 * 1 for the dir item
3009 * 1 for the dir index
3010 * 1 for the inode ref
3011 * 1 for the inode ref in the tree log
3012 * 2 for the dir entries in the log
3013 * 1 for the inode
3014 */
3015 trans = btrfs_start_transaction(root, 8);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003016 if (!IS_ERR(trans) || PTR_ERR(trans) != -ENOSPC)
3017 return trans;
3018
Li Zefan33345d012011-04-20 10:31:50 +08003019 if (ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhenga22285a2010-05-16 10:48:46 -04003020 return ERR_PTR(-ENOSPC);
3021
3022 /* check if there is someone else holds reference */
3023 if (S_ISDIR(inode->i_mode) && atomic_read(&inode->i_count) > 1)
3024 return ERR_PTR(-ENOSPC);
3025
3026 if (atomic_read(&inode->i_count) > 2)
3027 return ERR_PTR(-ENOSPC);
3028
3029 if (xchg(&root->fs_info->enospc_unlink, 1))
3030 return ERR_PTR(-ENOSPC);
3031
3032 path = btrfs_alloc_path();
3033 if (!path) {
3034 root->fs_info->enospc_unlink = 0;
3035 return ERR_PTR(-ENOMEM);
3036 }
3037
Josef Bacik3880a1b2011-10-14 14:46:51 -04003038 /* 1 for the orphan item */
3039 trans = btrfs_start_transaction(root, 1);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003040 if (IS_ERR(trans)) {
3041 btrfs_free_path(path);
3042 root->fs_info->enospc_unlink = 0;
3043 return trans;
3044 }
3045
3046 path->skip_locking = 1;
3047 path->search_commit_root = 1;
3048
3049 ret = btrfs_lookup_inode(trans, root, path,
3050 &BTRFS_I(dir)->location, 0);
3051 if (ret < 0) {
3052 err = ret;
3053 goto out;
3054 }
3055 if (ret == 0) {
3056 if (check_path_shared(root, path))
3057 goto out;
3058 } else {
3059 check_link = 0;
3060 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003061 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003062
3063 ret = btrfs_lookup_inode(trans, root, path,
3064 &BTRFS_I(inode)->location, 0);
3065 if (ret < 0) {
3066 err = ret;
3067 goto out;
3068 }
3069 if (ret == 0) {
3070 if (check_path_shared(root, path))
3071 goto out;
3072 } else {
3073 check_link = 0;
3074 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003075 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003076
3077 if (ret == 0 && S_ISREG(inode->i_mode)) {
3078 ret = btrfs_lookup_file_extent(trans, root, path,
Li Zefan33345d012011-04-20 10:31:50 +08003079 ino, (u64)-1, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003080 if (ret < 0) {
3081 err = ret;
3082 goto out;
3083 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003084 BUG_ON(ret == 0); /* Corruption */
Yan, Zhenga22285a2010-05-16 10:48:46 -04003085 if (check_path_shared(root, path))
3086 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +02003087 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003088 }
3089
3090 if (!check_link) {
3091 err = 0;
3092 goto out;
3093 }
3094
Li Zefan33345d012011-04-20 10:31:50 +08003095 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zhenga22285a2010-05-16 10:48:46 -04003096 dentry->d_name.name, dentry->d_name.len, 0);
3097 if (IS_ERR(di)) {
3098 err = PTR_ERR(di);
3099 goto out;
3100 }
3101 if (di) {
3102 if (check_path_shared(root, path))
3103 goto out;
3104 } else {
3105 err = 0;
3106 goto out;
3107 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003108 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003109
Mark Fashehf1863732012-08-08 11:32:27 -07003110 ret = btrfs_get_inode_ref_index(trans, root, path, dentry->d_name.name,
3111 dentry->d_name.len, ino, dir_ino, 0,
3112 &index);
3113 if (ret) {
3114 err = ret;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003115 goto out;
3116 }
Mark Fashehf1863732012-08-08 11:32:27 -07003117
Yan, Zhenga22285a2010-05-16 10:48:46 -04003118 if (check_path_shared(root, path))
3119 goto out;
Mark Fashehf1863732012-08-08 11:32:27 -07003120
David Sterbab3b4aa72011-04-21 01:20:15 +02003121 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003122
Miao Xie16cdcec2011-04-22 18:12:22 +08003123 /*
3124 * This is a commit root search, if we can lookup inode item and other
3125 * relative items in the commit root, it means the transaction of
3126 * dir/file creation has been committed, and the dir index item that we
3127 * delay to insert has also been inserted into the commit root. So
3128 * we needn't worry about the delayed insertion of the dir index item
3129 * here.
3130 */
Li Zefan33345d012011-04-20 10:31:50 +08003131 di = btrfs_lookup_dir_index_item(trans, root, path, dir_ino, index,
Yan, Zhenga22285a2010-05-16 10:48:46 -04003132 dentry->d_name.name, dentry->d_name.len, 0);
3133 if (IS_ERR(di)) {
3134 err = PTR_ERR(di);
3135 goto out;
3136 }
3137 BUG_ON(ret == -ENOENT);
3138 if (check_path_shared(root, path))
3139 goto out;
3140
3141 err = 0;
3142out:
3143 btrfs_free_path(path);
Josef Bacik3880a1b2011-10-14 14:46:51 -04003144 /* Migrate the orphan reservation over */
3145 if (!err)
3146 err = btrfs_block_rsv_migrate(trans->block_rsv,
3147 &root->fs_info->global_block_rsv,
Josef Bacik5a77d762011-11-01 14:32:23 -04003148 trans->bytes_reserved);
Josef Bacik3880a1b2011-10-14 14:46:51 -04003149
Yan, Zhenga22285a2010-05-16 10:48:46 -04003150 if (err) {
3151 btrfs_end_transaction(trans, root);
3152 root->fs_info->enospc_unlink = 0;
3153 return ERR_PTR(err);
3154 }
3155
3156 trans->block_rsv = &root->fs_info->global_block_rsv;
3157 return trans;
3158}
3159
3160static void __unlink_end_trans(struct btrfs_trans_handle *trans,
3161 struct btrfs_root *root)
3162{
Miao Xie66d8f3d2012-09-06 04:02:28 -06003163 if (trans->block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL) {
Josef Bacik5a77d762011-11-01 14:32:23 -04003164 btrfs_block_rsv_release(root, trans->block_rsv,
3165 trans->bytes_reserved);
3166 trans->block_rsv = &root->fs_info->trans_block_rsv;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003167 BUG_ON(!root->fs_info->enospc_unlink);
3168 root->fs_info->enospc_unlink = 0;
3169 }
Josef Bacik7ad85bb2012-01-12 19:10:12 -05003170 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003171}
3172
Chris Mason39279cc2007-06-12 06:35:45 -04003173static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
3174{
Yan, Zhenga22285a2010-05-16 10:48:46 -04003175 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003176 struct btrfs_trans_handle *trans;
Josef Bacik7b128762008-07-24 12:17:14 -04003177 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04003178 int ret;
3179
Yan, Zhenga22285a2010-05-16 10:48:46 -04003180 trans = __unlink_start_trans(dir, dentry);
3181 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003182 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04003183
Chris Mason12fcfd22009-03-24 10:24:20 -04003184 btrfs_record_unlink_dir(trans, dir, dentry->d_inode, 0);
3185
Chris Masone02119d2008-09-05 16:13:11 -04003186 ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
3187 dentry->d_name.name, dentry->d_name.len);
Tsutomu Itohb5324022011-07-19 07:27:20 +00003188 if (ret)
3189 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003190
Yan, Zhenga22285a2010-05-16 10:48:46 -04003191 if (inode->i_nlink == 0) {
Josef Bacik7b128762008-07-24 12:17:14 -04003192 ret = btrfs_orphan_add(trans, inode);
Tsutomu Itohb5324022011-07-19 07:27:20 +00003193 if (ret)
3194 goto out;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003195 }
Josef Bacik7b128762008-07-24 12:17:14 -04003196
Tsutomu Itohb5324022011-07-19 07:27:20 +00003197out:
Yan, Zhenga22285a2010-05-16 10:48:46 -04003198 __unlink_end_trans(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00003199 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04003200 return ret;
3201}
3202
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003203int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
3204 struct btrfs_root *root,
3205 struct inode *dir, u64 objectid,
3206 const char *name, int name_len)
3207{
3208 struct btrfs_path *path;
3209 struct extent_buffer *leaf;
3210 struct btrfs_dir_item *di;
3211 struct btrfs_key key;
3212 u64 index;
3213 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08003214 u64 dir_ino = btrfs_ino(dir);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003215
3216 path = btrfs_alloc_path();
3217 if (!path)
3218 return -ENOMEM;
3219
Li Zefan33345d012011-04-20 10:31:50 +08003220 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003221 name, name_len, -1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003222 if (IS_ERR_OR_NULL(di)) {
3223 if (!di)
3224 ret = -ENOENT;
3225 else
3226 ret = PTR_ERR(di);
3227 goto out;
3228 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003229
3230 leaf = path->nodes[0];
3231 btrfs_dir_item_key_to_cpu(leaf, di, &key);
3232 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
3233 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003234 if (ret) {
3235 btrfs_abort_transaction(trans, root, ret);
3236 goto out;
3237 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003238 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003239
3240 ret = btrfs_del_root_ref(trans, root->fs_info->tree_root,
3241 objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08003242 dir_ino, &index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003243 if (ret < 0) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003244 if (ret != -ENOENT) {
3245 btrfs_abort_transaction(trans, root, ret);
3246 goto out;
3247 }
Li Zefan33345d012011-04-20 10:31:50 +08003248 di = btrfs_search_dir_index_item(root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003249 name, name_len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003250 if (IS_ERR_OR_NULL(di)) {
3251 if (!di)
3252 ret = -ENOENT;
3253 else
3254 ret = PTR_ERR(di);
3255 btrfs_abort_transaction(trans, root, ret);
3256 goto out;
3257 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003258
3259 leaf = path->nodes[0];
3260 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02003261 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003262 index = key.offset;
3263 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003264 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003265
Miao Xie16cdcec2011-04-22 18:12:22 +08003266 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003267 if (ret) {
3268 btrfs_abort_transaction(trans, root, ret);
3269 goto out;
3270 }
Miao Xie16cdcec2011-04-22 18:12:22 +08003271
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003272 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04003273 inode_inc_iversion(dir);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003274 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
Josef Bacik5a24e842012-08-08 10:12:59 -06003275 ret = btrfs_update_inode_fallback(trans, root, dir);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003276 if (ret)
3277 btrfs_abort_transaction(trans, root, ret);
3278out:
Josef Bacik71d7aed2011-06-14 14:24:32 -04003279 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003280 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003281}
3282
Chris Mason39279cc2007-06-12 06:35:45 -04003283static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
3284{
3285 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05003286 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003287 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003288 struct btrfs_trans_handle *trans;
Chris Mason39279cc2007-06-12 06:35:45 -04003289
David Sterbab3ae2442012-09-13 16:04:34 -06003290 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Yan134d4512007-10-25 15:49:25 -04003291 return -ENOTEMPTY;
David Sterbab3ae2442012-09-13 16:04:34 -06003292 if (btrfs_ino(inode) == BTRFS_FIRST_FREE_OBJECTID)
3293 return -EPERM;
Yan134d4512007-10-25 15:49:25 -04003294
Yan, Zhenga22285a2010-05-16 10:48:46 -04003295 trans = __unlink_start_trans(dir, dentry);
3296 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003297 return PTR_ERR(trans);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003298
Li Zefan33345d012011-04-20 10:31:50 +08003299 if (unlikely(btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003300 err = btrfs_unlink_subvol(trans, root, dir,
3301 BTRFS_I(inode)->location.objectid,
3302 dentry->d_name.name,
3303 dentry->d_name.len);
3304 goto out;
3305 }
3306
Josef Bacik7b128762008-07-24 12:17:14 -04003307 err = btrfs_orphan_add(trans, inode);
3308 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003309 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003310
Chris Mason39279cc2007-06-12 06:35:45 -04003311 /* now the directory is empty */
Chris Masone02119d2008-09-05 16:13:11 -04003312 err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
3313 dentry->d_name.name, dentry->d_name.len);
Chris Masond3977122009-01-05 21:25:51 -05003314 if (!err)
Chris Masondbe674a2008-07-17 12:54:05 -04003315 btrfs_i_size_write(inode, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003316out:
Yan, Zhenga22285a2010-05-16 10:48:46 -04003317 __unlink_end_trans(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00003318 btrfs_btree_balance_dirty(root);
Chris Mason39544012007-12-12 14:38:19 -05003319
Chris Mason39279cc2007-06-12 06:35:45 -04003320 return err;
3321}
3322
Chris Mason323ac952008-10-01 19:05:46 -04003323/*
Chris Mason39279cc2007-06-12 06:35:45 -04003324 * this can truncate away extent items, csum items and directory items.
3325 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04003326 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04003327 *
3328 * csum items that cross the new i_size are truncated to the new size
3329 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04003330 *
3331 * min_type is the minimum key type to truncate down to. If set to 0, this
3332 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04003333 */
Yan, Zheng80825102009-11-12 09:35:36 +00003334int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
3335 struct btrfs_root *root,
3336 struct inode *inode,
3337 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003338{
Chris Mason39279cc2007-06-12 06:35:45 -04003339 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003340 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003341 struct btrfs_file_extent_item *fi;
Yan, Zheng80825102009-11-12 09:35:36 +00003342 struct btrfs_key key;
3343 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04003344 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04003345 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003346 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003347 u64 item_end = 0;
Yan, Zheng80825102009-11-12 09:35:36 +00003348 u64 mask = root->sectorsize - 1;
3349 u32 found_type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -04003350 int found_extent;
3351 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05003352 int pending_del_nr = 0;
3353 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04003354 int extent_type = -1;
Yan, Zheng80825102009-11-12 09:35:36 +00003355 int ret;
3356 int err = 0;
Li Zefan33345d012011-04-20 10:31:50 +08003357 u64 ino = btrfs_ino(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003358
3359 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04003360
Mark Fasheh0eb0e192011-07-12 16:44:10 -07003361 path = btrfs_alloc_path();
3362 if (!path)
3363 return -ENOMEM;
3364 path->reada = -1;
3365
Josef Bacik5dc562c2012-08-17 13:14:17 -04003366 /*
3367 * We want to drop from the next block forward in case this new size is
3368 * not block aligned since we will be keeping the last block of the
3369 * extent just the way it is.
3370 */
Josef Bacik0af3d002010-06-21 14:48:16 -04003371 if (root->ref_cows || root == root->fs_info->tree_root)
Josef Bacik5dc562c2012-08-17 13:14:17 -04003372 btrfs_drop_extent_cache(inode, (new_size + mask) & (~mask), (u64)-1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003373
Miao Xie16cdcec2011-04-22 18:12:22 +08003374 /*
3375 * This function is also used to drop the items in the log tree before
3376 * we relog the inode, so if root != BTRFS_I(inode)->root, it means
3377 * it is used to drop the loged items. So we shouldn't kill the delayed
3378 * items.
3379 */
3380 if (min_type == 0 && root == BTRFS_I(inode)->root)
3381 btrfs_kill_delayed_inode_items(inode);
3382
Li Zefan33345d012011-04-20 10:31:50 +08003383 key.objectid = ino;
Chris Mason39279cc2007-06-12 06:35:45 -04003384 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04003385 key.type = (u8)-1;
3386
Chris Mason85e21ba2008-01-29 15:11:36 -05003387search_again:
Chris Masonb9473432009-03-13 11:00:37 -04003388 path->leave_spinning = 1;
Chris Mason85e21ba2008-01-29 15:11:36 -05003389 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Yan, Zheng80825102009-11-12 09:35:36 +00003390 if (ret < 0) {
3391 err = ret;
3392 goto out;
3393 }
Chris Masond3977122009-01-05 21:25:51 -05003394
Chris Mason85e21ba2008-01-29 15:11:36 -05003395 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003396 /* there are no items in the tree for us to truncate, we're
3397 * done
3398 */
Yan, Zheng80825102009-11-12 09:35:36 +00003399 if (path->slots[0] == 0)
3400 goto out;
Chris Mason85e21ba2008-01-29 15:11:36 -05003401 path->slots[0]--;
3402 }
3403
Chris Masond3977122009-01-05 21:25:51 -05003404 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04003405 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04003406 leaf = path->nodes[0];
3407 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3408 found_type = btrfs_key_type(&found_key);
Chris Mason39279cc2007-06-12 06:35:45 -04003409
Li Zefan33345d012011-04-20 10:31:50 +08003410 if (found_key.objectid != ino)
Chris Mason39279cc2007-06-12 06:35:45 -04003411 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003412
Chris Mason85e21ba2008-01-29 15:11:36 -05003413 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003414 break;
3415
Chris Mason5f39d392007-10-15 16:14:19 -04003416 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04003417 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04003418 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04003419 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04003420 extent_type = btrfs_file_extent_type(leaf, fi);
3421 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04003422 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04003423 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04003424 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04003425 item_end += btrfs_file_extent_inline_len(leaf,
Chris Masonc8b97812008-10-29 14:49:59 -04003426 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003427 }
Yan008630c2007-11-07 13:31:09 -05003428 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04003429 }
Yan, Zheng80825102009-11-12 09:35:36 +00003430 if (found_type > min_type) {
Chris Mason39279cc2007-06-12 06:35:45 -04003431 del_item = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00003432 } else {
3433 if (item_end < new_size)
3434 break;
3435 if (found_key.offset >= new_size)
3436 del_item = 1;
3437 else
3438 del_item = 0;
3439 }
Chris Mason39279cc2007-06-12 06:35:45 -04003440 found_extent = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003441 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04003442 if (found_type != BTRFS_EXTENT_DATA_KEY)
3443 goto delete;
3444
3445 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04003446 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04003447 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Miao Xief70a9a6b2012-01-12 19:10:12 -05003448 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -04003449 u64 orig_num_bytes =
3450 btrfs_file_extent_num_bytes(leaf, fi);
Chris Masone02119d2008-09-05 16:13:11 -04003451 extent_num_bytes = new_size -
Chris Mason5f39d392007-10-15 16:14:19 -04003452 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -05003453 extent_num_bytes = extent_num_bytes &
3454 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04003455 btrfs_set_file_extent_num_bytes(leaf, fi,
3456 extent_num_bytes);
3457 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05003458 extent_num_bytes);
Chris Masone02119d2008-09-05 16:13:11 -04003459 if (root->ref_cows && extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003460 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04003461 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003462 } else {
Chris Masondb945352007-10-15 16:15:53 -04003463 extent_num_bytes =
3464 btrfs_file_extent_disk_num_bytes(leaf,
3465 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003466 extent_offset = found_key.offset -
3467 btrfs_file_extent_offset(leaf, fi);
3468
Chris Mason39279cc2007-06-12 06:35:45 -04003469 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05003470 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003471 if (extent_start != 0) {
3472 found_extent = 1;
Chris Masone02119d2008-09-05 16:13:11 -04003473 if (root->ref_cows)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003474 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04003475 }
3476 }
Chris Mason90692182008-02-08 13:49:28 -05003477 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003478 /*
3479 * we can't truncate inline items that have had
3480 * special encodings
3481 */
3482 if (!del_item &&
3483 btrfs_file_extent_compression(leaf, fi) == 0 &&
3484 btrfs_file_extent_encryption(leaf, fi) == 0 &&
3485 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003486 u32 size = new_size - found_key.offset;
3487
3488 if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003489 inode_sub_bytes(inode, item_end + 1 -
3490 new_size);
Chris Masone02119d2008-09-05 16:13:11 -04003491 }
3492 size =
3493 btrfs_file_extent_calc_inline_size(size);
Jeff Mahoney143bede2012-03-01 14:56:26 +01003494 btrfs_truncate_item(trans, root, path,
3495 size, 1);
Chris Masone02119d2008-09-05 16:13:11 -04003496 } else if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003497 inode_sub_bytes(inode, item_end + 1 -
3498 found_key.offset);
Chris Mason90692182008-02-08 13:49:28 -05003499 }
Chris Mason39279cc2007-06-12 06:35:45 -04003500 }
Chris Mason179e29e2007-11-01 11:28:41 -04003501delete:
Chris Mason39279cc2007-06-12 06:35:45 -04003502 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05003503 if (!pending_del_nr) {
3504 /* no pending yet, add ourselves */
3505 pending_del_slot = path->slots[0];
3506 pending_del_nr = 1;
3507 } else if (pending_del_nr &&
3508 path->slots[0] + 1 == pending_del_slot) {
3509 /* hop on the pending chunk */
3510 pending_del_nr++;
3511 pending_del_slot = path->slots[0];
3512 } else {
Chris Masond3977122009-01-05 21:25:51 -05003513 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05003514 }
Chris Mason39279cc2007-06-12 06:35:45 -04003515 } else {
3516 break;
3517 }
Josef Bacik0af3d002010-06-21 14:48:16 -04003518 if (found_extent && (root->ref_cows ||
3519 root == root->fs_info->tree_root)) {
Chris Masonb9473432009-03-13 11:00:37 -04003520 btrfs_set_path_blocking(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003521 ret = btrfs_free_extent(trans, root, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003522 extent_num_bytes, 0,
3523 btrfs_header_owner(leaf),
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003524 ino, extent_offset, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04003525 BUG_ON(ret);
3526 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003527
Yan, Zheng80825102009-11-12 09:35:36 +00003528 if (found_type == BTRFS_INODE_ITEM_KEY)
3529 break;
3530
3531 if (path->slots[0] == 0 ||
3532 path->slots[0] != pending_del_slot) {
Yan, Zheng80825102009-11-12 09:35:36 +00003533 if (pending_del_nr) {
3534 ret = btrfs_del_items(trans, root, path,
3535 pending_del_slot,
3536 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003537 if (ret) {
3538 btrfs_abort_transaction(trans,
3539 root, ret);
3540 goto error;
3541 }
Yan, Zheng80825102009-11-12 09:35:36 +00003542 pending_del_nr = 0;
3543 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003544 btrfs_release_path(path);
Chris Mason85e21ba2008-01-29 15:11:36 -05003545 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00003546 } else {
3547 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05003548 }
Chris Mason39279cc2007-06-12 06:35:45 -04003549 }
Yan, Zheng80825102009-11-12 09:35:36 +00003550out:
Chris Mason85e21ba2008-01-29 15:11:36 -05003551 if (pending_del_nr) {
3552 ret = btrfs_del_items(trans, root, path, pending_del_slot,
3553 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003554 if (ret)
3555 btrfs_abort_transaction(trans, root, ret);
Chris Mason85e21ba2008-01-29 15:11:36 -05003556 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003557error:
Chris Mason39279cc2007-06-12 06:35:45 -04003558 btrfs_free_path(path);
Yan, Zheng80825102009-11-12 09:35:36 +00003559 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003560}
3561
Chris Masona52d9a82007-08-27 16:49:44 -04003562/*
Josef Bacik2aaa6652012-08-29 14:27:18 -04003563 * btrfs_truncate_page - read, zero a chunk and write a page
3564 * @inode - inode that we're zeroing
3565 * @from - the offset to start zeroing
3566 * @len - the length to zero, 0 to zero the entire range respective to the
3567 * offset
3568 * @front - zero up to the offset instead of from the offset on
3569 *
3570 * This will find the page for the "from" offset and cow the page and zero the
3571 * part we want to zero. This is used with truncate and hole punching.
Chris Masona52d9a82007-08-27 16:49:44 -04003572 */
Josef Bacik2aaa6652012-08-29 14:27:18 -04003573int btrfs_truncate_page(struct inode *inode, loff_t from, loff_t len,
3574 int front)
Chris Masona52d9a82007-08-27 16:49:44 -04003575{
Josef Bacik2aaa6652012-08-29 14:27:18 -04003576 struct address_space *mapping = inode->i_mapping;
Chris Masondb945352007-10-15 16:15:53 -04003577 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003578 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
3579 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003580 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003581 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04003582 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04003583 pgoff_t index = from >> PAGE_CACHE_SHIFT;
3584 unsigned offset = from & (PAGE_CACHE_SIZE-1);
3585 struct page *page;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04003586 gfp_t mask = btrfs_alloc_write_mask(mapping);
Chris Masona52d9a82007-08-27 16:49:44 -04003587 int ret = 0;
3588 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003589 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04003590
Josef Bacik2aaa6652012-08-29 14:27:18 -04003591 if ((offset & (blocksize - 1)) == 0 &&
3592 (!len || ((len & (blocksize - 1)) == 0)))
Chris Masona52d9a82007-08-27 16:49:44 -04003593 goto out;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003594 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003595 if (ret)
3596 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003597
Chris Mason211c17f2008-05-15 09:13:45 -04003598again:
Josef Bacik3b16a4e2011-09-21 15:05:58 -04003599 page = find_or_create_page(mapping, index, mask);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003600 if (!page) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003601 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Miao Xieac6a2b32012-12-05 10:56:13 +00003602 ret = -ENOMEM;
Chris Masona52d9a82007-08-27 16:49:44 -04003603 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04003604 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003605
3606 page_start = page_offset(page);
3607 page_end = page_start + PAGE_CACHE_SIZE - 1;
3608
Chris Masona52d9a82007-08-27 16:49:44 -04003609 if (!PageUptodate(page)) {
3610 ret = btrfs_readpage(NULL, page);
3611 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04003612 if (page->mapping != mapping) {
3613 unlock_page(page);
3614 page_cache_release(page);
3615 goto again;
3616 }
Chris Masona52d9a82007-08-27 16:49:44 -04003617 if (!PageUptodate(page)) {
3618 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04003619 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04003620 }
3621 }
Chris Mason211c17f2008-05-15 09:13:45 -04003622 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003623
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003624 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003625 set_page_extent_mapped(page);
3626
3627 ordered = btrfs_lookup_ordered_extent(inode, page_start);
3628 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003629 unlock_extent_cached(io_tree, page_start, page_end,
3630 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003631 unlock_page(page);
3632 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04003633 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003634 btrfs_put_ordered_extent(ordered);
3635 goto again;
3636 }
3637
Josef Bacik2ac55d42010-02-03 19:33:23 +00003638 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Liu Bo9e8a4a82012-09-05 19:10:51 -06003639 EXTENT_DIRTY | EXTENT_DELALLOC |
3640 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003641 0, 0, &cached_state, GFP_NOFS);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003642
Josef Bacik2ac55d42010-02-03 19:33:23 +00003643 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
3644 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003645 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003646 unlock_extent_cached(io_tree, page_start, page_end,
3647 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003648 goto out_unlock;
3649 }
3650
Chris Masone6dcd2d2008-07-17 12:53:50 -04003651 if (offset != PAGE_CACHE_SIZE) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04003652 if (!len)
3653 len = PAGE_CACHE_SIZE - offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003654 kaddr = kmap(page);
Josef Bacik2aaa6652012-08-29 14:27:18 -04003655 if (front)
3656 memset(kaddr, 0, offset);
3657 else
3658 memset(kaddr + offset, 0, len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003659 flush_dcache_page(page);
3660 kunmap(page);
3661 }
Chris Mason247e7432008-07-17 12:53:51 -04003662 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003663 set_page_dirty(page);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003664 unlock_extent_cached(io_tree, page_start, page_end, &cached_state,
3665 GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04003666
Chris Mason89642222008-07-24 09:41:53 -04003667out_unlock:
Josef Bacik5d5e1032009-10-13 16:46:49 -04003668 if (ret)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003669 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason39279cc2007-06-12 06:35:45 -04003670 unlock_page(page);
3671 page_cache_release(page);
3672out:
3673 return ret;
3674}
3675
Josef Bacik695a0d02011-03-04 15:46:53 -05003676/*
3677 * This function puts in dummy file extents for the area we're creating a hole
3678 * for. So if we are truncating this file to a larger size we need to insert
3679 * these file extents so that btrfs_get_extent will return a EXTENT_MAP_HOLE for
3680 * the range between oldsize and size
3681 */
Josef Bacika41ad392011-01-31 15:30:16 -05003682int btrfs_cont_expand(struct inode *inode, loff_t oldsize, loff_t size)
Yan Zheng9036c102008-10-30 14:19:41 -04003683{
3684 struct btrfs_trans_handle *trans;
3685 struct btrfs_root *root = BTRFS_I(inode)->root;
3686 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003687 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003688 struct extent_state *cached_state = NULL;
Josef Bacik5dc562c2012-08-17 13:14:17 -04003689 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Yan Zheng9036c102008-10-30 14:19:41 -04003690 u64 mask = root->sectorsize - 1;
Josef Bacika41ad392011-01-31 15:30:16 -05003691 u64 hole_start = (oldsize + mask) & ~mask;
Yan Zheng9036c102008-10-30 14:19:41 -04003692 u64 block_end = (size + mask) & ~mask;
3693 u64 last_byte;
3694 u64 cur_offset;
3695 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003696 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003697
3698 if (size <= hole_start)
3699 return 0;
3700
Yan Zheng9036c102008-10-30 14:19:41 -04003701 while (1) {
3702 struct btrfs_ordered_extent *ordered;
3703 btrfs_wait_ordered_range(inode, hole_start,
3704 block_end - hole_start);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003705 lock_extent_bits(io_tree, hole_start, block_end - 1, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003706 &cached_state);
Yan Zheng9036c102008-10-30 14:19:41 -04003707 ordered = btrfs_lookup_ordered_extent(inode, hole_start);
3708 if (!ordered)
3709 break;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003710 unlock_extent_cached(io_tree, hole_start, block_end - 1,
3711 &cached_state, GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003712 btrfs_put_ordered_extent(ordered);
3713 }
3714
Yan Zheng9036c102008-10-30 14:19:41 -04003715 cur_offset = hole_start;
3716 while (1) {
3717 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
3718 block_end - cur_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003719 if (IS_ERR(em)) {
3720 err = PTR_ERR(em);
Zach Brownf2767952013-01-08 19:37:58 +00003721 em = NULL;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003722 break;
3723 }
Yan Zheng9036c102008-10-30 14:19:41 -04003724 last_byte = min(extent_map_end(em), block_end);
3725 last_byte = (last_byte + mask) & ~mask;
Yan, Zheng80825102009-11-12 09:35:36 +00003726 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Josef Bacik5dc562c2012-08-17 13:14:17 -04003727 struct extent_map *hole_em;
Yan Zheng9036c102008-10-30 14:19:41 -04003728 hole_size = last_byte - cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00003729
Miao Xie36423202011-12-14 20:12:02 -05003730 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003731 if (IS_ERR(trans)) {
3732 err = PTR_ERR(trans);
Chris Mason771ed682008-11-06 22:02:51 -05003733 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003734 }
Yan, Zheng80825102009-11-12 09:35:36 +00003735
Josef Bacik5dc562c2012-08-17 13:14:17 -04003736 err = btrfs_drop_extents(trans, root, inode,
3737 cur_offset,
Josef Bacik26714852012-08-29 12:24:27 -04003738 cur_offset + hole_size, 1);
Miao Xie5b397372011-09-11 10:52:24 -04003739 if (err) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003740 btrfs_abort_transaction(trans, root, err);
Miao Xie5b397372011-09-11 10:52:24 -04003741 btrfs_end_transaction(trans, root);
Josef Bacik3893e332011-01-31 16:03:11 -05003742 break;
Miao Xie5b397372011-09-11 10:52:24 -04003743 }
Josef Bacik9ed74f22009-09-11 16:12:44 -04003744
Yan Zheng9036c102008-10-30 14:19:41 -04003745 err = btrfs_insert_file_extent(trans, root,
Li Zefan33345d012011-04-20 10:31:50 +08003746 btrfs_ino(inode), cur_offset, 0,
Yan Zheng9036c102008-10-30 14:19:41 -04003747 0, hole_size, 0, hole_size,
3748 0, 0, 0);
Miao Xie5b397372011-09-11 10:52:24 -04003749 if (err) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003750 btrfs_abort_transaction(trans, root, err);
Miao Xie5b397372011-09-11 10:52:24 -04003751 btrfs_end_transaction(trans, root);
Josef Bacik3893e332011-01-31 16:03:11 -05003752 break;
Miao Xie5b397372011-09-11 10:52:24 -04003753 }
Yan, Zheng80825102009-11-12 09:35:36 +00003754
Josef Bacik5dc562c2012-08-17 13:14:17 -04003755 btrfs_drop_extent_cache(inode, cur_offset,
3756 cur_offset + hole_size - 1, 0);
3757 hole_em = alloc_extent_map();
3758 if (!hole_em) {
3759 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3760 &BTRFS_I(inode)->runtime_flags);
3761 goto next;
3762 }
3763 hole_em->start = cur_offset;
3764 hole_em->len = hole_size;
3765 hole_em->orig_start = cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00003766
Josef Bacik5dc562c2012-08-17 13:14:17 -04003767 hole_em->block_start = EXTENT_MAP_HOLE;
3768 hole_em->block_len = 0;
Josef Bacikb4939682012-12-03 10:31:19 -05003769 hole_em->orig_block_len = 0;
Josef Bacik5dc562c2012-08-17 13:14:17 -04003770 hole_em->bdev = root->fs_info->fs_devices->latest_bdev;
3771 hole_em->compress_type = BTRFS_COMPRESS_NONE;
3772 hole_em->generation = trans->transid;
3773
3774 while (1) {
3775 write_lock(&em_tree->lock);
3776 err = add_extent_mapping(em_tree, hole_em);
3777 if (!err)
3778 list_move(&hole_em->list,
3779 &em_tree->modified_extents);
3780 write_unlock(&em_tree->lock);
3781 if (err != -EEXIST)
3782 break;
3783 btrfs_drop_extent_cache(inode, cur_offset,
3784 cur_offset +
3785 hole_size - 1, 0);
3786 }
3787 free_extent_map(hole_em);
3788next:
Miao Xie36423202011-12-14 20:12:02 -05003789 btrfs_update_inode(trans, root, inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003790 btrfs_end_transaction(trans, root);
Yan Zheng9036c102008-10-30 14:19:41 -04003791 }
3792 free_extent_map(em);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003793 em = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04003794 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00003795 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04003796 break;
3797 }
3798
Yan, Zhenga22285a2010-05-16 10:48:46 -04003799 free_extent_map(em);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003800 unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state,
3801 GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003802 return err;
3803}
3804
Eric Sandeen3972f262013-01-12 02:57:22 +00003805static int btrfs_setsize(struct inode *inode, struct iattr *attr)
Yan, Zheng80825102009-11-12 09:35:36 +00003806{
Miao Xief4a2f4c2011-12-14 20:12:01 -05003807 struct btrfs_root *root = BTRFS_I(inode)->root;
3808 struct btrfs_trans_handle *trans;
Josef Bacika41ad392011-01-31 15:30:16 -05003809 loff_t oldsize = i_size_read(inode);
Eric Sandeen3972f262013-01-12 02:57:22 +00003810 loff_t newsize = attr->ia_size;
3811 int mask = attr->ia_valid;
Yan, Zheng80825102009-11-12 09:35:36 +00003812 int ret;
3813
Josef Bacika41ad392011-01-31 15:30:16 -05003814 if (newsize == oldsize)
Yan, Zheng80825102009-11-12 09:35:36 +00003815 return 0;
3816
Eric Sandeen3972f262013-01-12 02:57:22 +00003817 /*
3818 * The regular truncate() case without ATTR_CTIME and ATTR_MTIME is a
3819 * special case where we need to update the times despite not having
3820 * these flags set. For all other operations the VFS set these flags
3821 * explicitly if it wants a timestamp update.
3822 */
3823 if (newsize != oldsize && (!(mask & (ATTR_CTIME | ATTR_MTIME))))
3824 inode->i_ctime = inode->i_mtime = current_fs_time(inode->i_sb);
3825
Josef Bacika41ad392011-01-31 15:30:16 -05003826 if (newsize > oldsize) {
Josef Bacika41ad392011-01-31 15:30:16 -05003827 truncate_pagecache(inode, oldsize, newsize);
3828 ret = btrfs_cont_expand(inode, oldsize, newsize);
Miao Xief4a2f4c2011-12-14 20:12:01 -05003829 if (ret)
Yan, Zheng80825102009-11-12 09:35:36 +00003830 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00003831
Miao Xief4a2f4c2011-12-14 20:12:01 -05003832 trans = btrfs_start_transaction(root, 1);
3833 if (IS_ERR(trans))
3834 return PTR_ERR(trans);
3835
3836 i_size_write(inode, newsize);
3837 btrfs_ordered_update_i_size(inode, i_size_read(inode), NULL);
3838 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik7ad85bb2012-01-12 19:10:12 -05003839 btrfs_end_transaction(trans, root);
Josef Bacika41ad392011-01-31 15:30:16 -05003840 } else {
Yan, Zheng80825102009-11-12 09:35:36 +00003841
Josef Bacika41ad392011-01-31 15:30:16 -05003842 /*
3843 * We're truncating a file that used to have good data down to
3844 * zero. Make sure it gets into the ordered flush list so that
3845 * any new writes get down to disk quickly.
3846 */
3847 if (newsize == 0)
Josef Bacik72ac3c02012-05-23 14:13:11 -04003848 set_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
3849 &BTRFS_I(inode)->runtime_flags);
Yan, Zheng80825102009-11-12 09:35:36 +00003850
Josef Bacikf3fe8202013-01-07 17:03:21 -05003851 /*
3852 * 1 for the orphan item we're going to add
3853 * 1 for the orphan item deletion.
3854 */
3855 trans = btrfs_start_transaction(root, 2);
3856 if (IS_ERR(trans))
3857 return PTR_ERR(trans);
3858
3859 /*
3860 * We need to do this in case we fail at _any_ point during the
3861 * actual truncate. Once we do the truncate_setsize we could
3862 * invalidate pages which forces any outstanding ordered io to
3863 * be instantly completed which will give us extents that need
3864 * to be truncated. If we fail to get an orphan inode down we
3865 * could have left over extents that were never meant to live,
3866 * so we need to garuntee from this point on that everything
3867 * will be consistent.
3868 */
3869 ret = btrfs_orphan_add(trans, inode);
3870 btrfs_end_transaction(trans, root);
3871 if (ret)
3872 return ret;
3873
Josef Bacika41ad392011-01-31 15:30:16 -05003874 /* we don't support swapfiles, so vmtruncate shouldn't fail */
3875 truncate_setsize(inode, newsize);
3876 ret = btrfs_truncate(inode);
Josef Bacikf3fe8202013-01-07 17:03:21 -05003877 if (ret && inode->i_nlink)
3878 btrfs_orphan_del(NULL, inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003879 }
3880
Josef Bacika41ad392011-01-31 15:30:16 -05003881 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00003882}
3883
Chris Mason39279cc2007-06-12 06:35:45 -04003884static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
3885{
3886 struct inode *inode = dentry->d_inode;
Li Zefanb83cc962010-12-20 16:04:08 +08003887 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003888 int err;
3889
Li Zefanb83cc962010-12-20 16:04:08 +08003890 if (btrfs_root_readonly(root))
3891 return -EROFS;
3892
Chris Mason39279cc2007-06-12 06:35:45 -04003893 err = inode_change_ok(inode, attr);
3894 if (err)
3895 return err;
3896
Chris Mason5a3f23d2009-03-31 13:27:11 -04003897 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Eric Sandeen3972f262013-01-12 02:57:22 +00003898 err = btrfs_setsize(inode, attr);
Yan, Zheng80825102009-11-12 09:35:36 +00003899 if (err)
3900 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003901 }
Yan Zheng9036c102008-10-30 14:19:41 -04003902
Christoph Hellwig10257742010-06-04 11:30:02 +02003903 if (attr->ia_valid) {
3904 setattr_copy(inode, attr);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04003905 inode_inc_iversion(inode);
Josef Bacik22c44fe2011-11-30 10:45:38 -05003906 err = btrfs_dirty_inode(inode);
Josef Bacik33268ea2008-07-24 12:16:36 -04003907
Josef Bacik22c44fe2011-11-30 10:45:38 -05003908 if (!err && attr->ia_valid & ATTR_MODE)
Christoph Hellwig10257742010-06-04 11:30:02 +02003909 err = btrfs_acl_chmod(inode);
3910 }
3911
Chris Mason39279cc2007-06-12 06:35:45 -04003912 return err;
3913}
Chris Mason61295eb2008-01-14 16:24:38 -05003914
Al Virobd555972010-06-07 11:35:40 -04003915void btrfs_evict_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003916{
3917 struct btrfs_trans_handle *trans;
3918 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik726c35f2011-09-26 15:46:06 -04003919 struct btrfs_block_rsv *rsv, *global_rsv;
Josef Bacik07127182011-08-19 10:29:59 -04003920 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003921 int ret;
3922
liubo1abe9b82011-03-24 11:18:59 +00003923 trace_btrfs_inode_evict(inode);
3924
Chris Mason39279cc2007-06-12 06:35:45 -04003925 truncate_inode_pages(&inode->i_data, 0);
Josef Bacik0af3d002010-06-21 14:48:16 -04003926 if (inode->i_nlink && (btrfs_root_refs(&root->root_item) != 0 ||
Liu Bo83eea1f2012-07-10 05:28:39 -06003927 btrfs_is_free_space_inode(inode)))
Al Virobd555972010-06-07 11:35:40 -04003928 goto no_delete;
3929
Chris Mason39279cc2007-06-12 06:35:45 -04003930 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04003931 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003932 goto no_delete;
3933 }
Al Virobd555972010-06-07 11:35:40 -04003934 /* do we really want it for ->i_nlink > 0 and zero btrfs_root_refs? */
Chris Mason4a096752008-07-21 10:29:44 -04003935 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04003936
Yan, Zhengc71bf092009-11-12 09:34:40 +00003937 if (root->fs_info->log_root_recovering) {
Liu Bo6bf02312012-06-25 21:59:09 -06003938 BUG_ON(test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
Josef Bacik8a35d952012-05-23 14:26:42 -04003939 &BTRFS_I(inode)->runtime_flags));
Yan, Zhengc71bf092009-11-12 09:34:40 +00003940 goto no_delete;
3941 }
3942
Yan, Zheng76dda932009-09-21 16:00:26 -04003943 if (inode->i_nlink > 0) {
3944 BUG_ON(btrfs_root_refs(&root->root_item) != 0);
3945 goto no_delete;
3946 }
3947
Miao Xie0e8c36a2012-12-19 06:59:51 +00003948 ret = btrfs_commit_inode_delayed_inode(inode);
3949 if (ret) {
3950 btrfs_orphan_del(NULL, inode);
3951 goto no_delete;
3952 }
3953
Miao Xie66d8f3d2012-09-06 04:02:28 -06003954 rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP);
Josef Bacik4289a662011-08-05 13:22:24 -04003955 if (!rsv) {
3956 btrfs_orphan_del(NULL, inode);
3957 goto no_delete;
3958 }
Josef Bacik4a338542011-08-29 11:01:31 -04003959 rsv->size = min_size;
Josef Bacikca7e70f2012-08-27 17:48:15 -04003960 rsv->failfast = 1;
Josef Bacik726c35f2011-09-26 15:46:06 -04003961 global_rsv = &root->fs_info->global_block_rsv;
Josef Bacik4289a662011-08-05 13:22:24 -04003962
Chris Masondbe674a2008-07-17 12:54:05 -04003963 btrfs_i_size_write(inode, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003964
Josef Bacik4289a662011-08-05 13:22:24 -04003965 /*
Miao Xie8407aa42012-09-07 01:43:32 -06003966 * This is a bit simpler than btrfs_truncate since we've already
3967 * reserved our space for our orphan item in the unlink, so we just
3968 * need to reserve some slack space in case we add bytes and update
3969 * inode item when doing the truncate.
Josef Bacik4289a662011-08-05 13:22:24 -04003970 */
Yan, Zheng80825102009-11-12 09:35:36 +00003971 while (1) {
Miao Xie08e007d2012-10-16 11:33:38 +00003972 ret = btrfs_block_rsv_refill(root, rsv, min_size,
3973 BTRFS_RESERVE_FLUSH_LIMIT);
Yan, Zheng80825102009-11-12 09:35:36 +00003974
Josef Bacik726c35f2011-09-26 15:46:06 -04003975 /*
3976 * Try and steal from the global reserve since we will
3977 * likely not use this space anyway, we want to try as
3978 * hard as possible to get this to work.
3979 */
3980 if (ret)
3981 ret = btrfs_block_rsv_migrate(global_rsv, rsv, min_size);
3982
Yan, Zhengd68fc572010-05-16 10:49:58 -04003983 if (ret) {
Josef Bacik4289a662011-08-05 13:22:24 -04003984 printk(KERN_WARNING "Could not get space for a "
Josef Bacik482e6dc2011-08-19 10:31:56 -04003985 "delete, will truncate on mount %d\n", ret);
Josef Bacik4289a662011-08-05 13:22:24 -04003986 btrfs_orphan_del(NULL, inode);
3987 btrfs_free_block_rsv(root, rsv);
3988 goto no_delete;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003989 }
3990
Miao Xie0e8c36a2012-12-19 06:59:51 +00003991 trans = btrfs_join_transaction(root);
Josef Bacik4289a662011-08-05 13:22:24 -04003992 if (IS_ERR(trans)) {
3993 btrfs_orphan_del(NULL, inode);
3994 btrfs_free_block_rsv(root, rsv);
3995 goto no_delete;
3996 }
3997
3998 trans->block_rsv = rsv;
3999
Yan, Zhengd68fc572010-05-16 10:49:58 -04004000 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
Josef Bacikca7e70f2012-08-27 17:48:15 -04004001 if (ret != -ENOSPC)
Yan, Zheng80825102009-11-12 09:35:36 +00004002 break;
4003
Miao Xie8407aa42012-09-07 01:43:32 -06004004 trans->block_rsv = &root->fs_info->trans_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00004005 btrfs_end_transaction(trans, root);
4006 trans = NULL;
Liu Bob53d3f52012-11-14 14:34:34 +00004007 btrfs_btree_balance_dirty(root);
Josef Bacik7b128762008-07-24 12:17:14 -04004008 }
4009
Josef Bacik4289a662011-08-05 13:22:24 -04004010 btrfs_free_block_rsv(root, rsv);
4011
Yan, Zheng80825102009-11-12 09:35:36 +00004012 if (ret == 0) {
Josef Bacik4289a662011-08-05 13:22:24 -04004013 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00004014 ret = btrfs_orphan_del(trans, inode);
4015 BUG_ON(ret);
4016 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004017
Josef Bacik4289a662011-08-05 13:22:24 -04004018 trans->block_rsv = &root->fs_info->trans_block_rsv;
Li Zefan581bb052011-04-20 10:06:11 +08004019 if (!(root == root->fs_info->tree_root ||
4020 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID))
Li Zefan33345d012011-04-20 10:31:50 +08004021 btrfs_return_ino(root, btrfs_ino(inode));
Li Zefan581bb052011-04-20 10:06:11 +08004022
Chris Mason54aa1f42007-06-22 14:16:25 -04004023 btrfs_end_transaction(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00004024 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04004025no_delete:
Jan Karadbd57682012-05-03 14:48:02 +02004026 clear_inode(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00004027 return;
Chris Mason39279cc2007-06-12 06:35:45 -04004028}
4029
4030/*
4031 * this returns the key found in the dir entry in the location pointer.
4032 * If no dir entries were found, location->objectid is 0.
4033 */
4034static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
4035 struct btrfs_key *location)
4036{
4037 const char *name = dentry->d_name.name;
4038 int namelen = dentry->d_name.len;
4039 struct btrfs_dir_item *di;
4040 struct btrfs_path *path;
4041 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04004042 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004043
4044 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07004045 if (!path)
4046 return -ENOMEM;
Chris Mason39544012007-12-12 14:38:19 -05004047
Li Zefan33345d012011-04-20 10:31:50 +08004048 di = btrfs_lookup_dir_item(NULL, root, path, btrfs_ino(dir), name,
Chris Mason39279cc2007-06-12 06:35:45 -04004049 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04004050 if (IS_ERR(di))
4051 ret = PTR_ERR(di);
Chris Masond3977122009-01-05 21:25:51 -05004052
David Sterbac7040052011-04-19 18:00:01 +02004053 if (IS_ERR_OR_NULL(di))
Chris Mason39544012007-12-12 14:38:19 -05004054 goto out_err;
Chris Masond3977122009-01-05 21:25:51 -05004055
Chris Mason5f39d392007-10-15 16:14:19 -04004056 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04004057out:
Chris Mason39279cc2007-06-12 06:35:45 -04004058 btrfs_free_path(path);
4059 return ret;
Chris Mason39544012007-12-12 14:38:19 -05004060out_err:
4061 location->objectid = 0;
4062 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04004063}
4064
4065/*
4066 * when we hit a tree root in a directory, the btrfs part of the inode
4067 * needs to be changed to reflect the root directory of the tree root. This
4068 * is kind of like crossing a mount point.
4069 */
4070static int fixup_tree_root_location(struct btrfs_root *root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004071 struct inode *dir,
4072 struct dentry *dentry,
4073 struct btrfs_key *location,
4074 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04004075{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004076 struct btrfs_path *path;
4077 struct btrfs_root *new_root;
4078 struct btrfs_root_ref *ref;
4079 struct extent_buffer *leaf;
4080 int ret;
4081 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004082
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004083 path = btrfs_alloc_path();
4084 if (!path) {
4085 err = -ENOMEM;
4086 goto out;
4087 }
Chris Mason39279cc2007-06-12 06:35:45 -04004088
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004089 err = -ENOENT;
4090 ret = btrfs_find_root_ref(root->fs_info->tree_root, path,
4091 BTRFS_I(dir)->root->root_key.objectid,
4092 location->objectid);
4093 if (ret) {
4094 if (ret < 0)
4095 err = ret;
4096 goto out;
4097 }
Chris Mason39279cc2007-06-12 06:35:45 -04004098
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004099 leaf = path->nodes[0];
4100 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
Li Zefan33345d012011-04-20 10:31:50 +08004101 if (btrfs_root_ref_dirid(leaf, ref) != btrfs_ino(dir) ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004102 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
4103 goto out;
4104
4105 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
4106 (unsigned long)(ref + 1),
4107 dentry->d_name.len);
4108 if (ret)
4109 goto out;
4110
David Sterbab3b4aa72011-04-21 01:20:15 +02004111 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004112
4113 new_root = btrfs_read_fs_root_no_name(root->fs_info, location);
4114 if (IS_ERR(new_root)) {
4115 err = PTR_ERR(new_root);
4116 goto out;
4117 }
4118
4119 if (btrfs_root_refs(&new_root->root_item) == 0) {
4120 err = -ENOENT;
4121 goto out;
4122 }
4123
4124 *sub_root = new_root;
4125 location->objectid = btrfs_root_dirid(&new_root->root_item);
4126 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04004127 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004128 err = 0;
4129out:
4130 btrfs_free_path(path);
4131 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04004132}
4133
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004134static void inode_tree_add(struct inode *inode)
4135{
4136 struct btrfs_root *root = BTRFS_I(inode)->root;
4137 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004138 struct rb_node **p;
4139 struct rb_node *parent;
Li Zefan33345d012011-04-20 10:31:50 +08004140 u64 ino = btrfs_ino(inode);
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004141again:
4142 p = &root->inode_tree.rb_node;
4143 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004144
Al Viro1d3382cb2010-10-23 15:19:20 -04004145 if (inode_unhashed(inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04004146 return;
4147
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004148 spin_lock(&root->inode_lock);
4149 while (*p) {
4150 parent = *p;
4151 entry = rb_entry(parent, struct btrfs_inode, rb_node);
4152
Li Zefan33345d012011-04-20 10:31:50 +08004153 if (ino < btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004154 p = &parent->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08004155 else if (ino > btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004156 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004157 else {
4158 WARN_ON(!(entry->vfs_inode.i_state &
Al Viroa4ffdde2010-06-02 17:38:30 -04004159 (I_WILL_FREE | I_FREEING)));
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004160 rb_erase(parent, &root->inode_tree);
4161 RB_CLEAR_NODE(parent);
4162 spin_unlock(&root->inode_lock);
4163 goto again;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004164 }
4165 }
4166 rb_link_node(&BTRFS_I(inode)->rb_node, parent, p);
4167 rb_insert_color(&BTRFS_I(inode)->rb_node, &root->inode_tree);
4168 spin_unlock(&root->inode_lock);
4169}
4170
4171static void inode_tree_del(struct inode *inode)
4172{
4173 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04004174 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004175
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004176 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004177 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004178 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004179 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04004180 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004181 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004182 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04004183
Josef Bacik0af3d002010-06-21 14:48:16 -04004184 /*
4185 * Free space cache has inodes in the tree root, but the tree root has a
4186 * root_refs of 0, so this could end up dropping the tree root as a
4187 * snapshot, so we need the extra !root->fs_info->tree_root check to
4188 * make sure we don't drop it.
4189 */
4190 if (empty && btrfs_root_refs(&root->root_item) == 0 &&
4191 root != root->fs_info->tree_root) {
Yan, Zheng76dda932009-09-21 16:00:26 -04004192 synchronize_srcu(&root->fs_info->subvol_srcu);
4193 spin_lock(&root->inode_lock);
4194 empty = RB_EMPTY_ROOT(&root->inode_tree);
4195 spin_unlock(&root->inode_lock);
4196 if (empty)
4197 btrfs_add_dead_root(root);
4198 }
4199}
4200
Jeff Mahoney143bede2012-03-01 14:56:26 +01004201void btrfs_invalidate_inodes(struct btrfs_root *root)
Yan, Zheng76dda932009-09-21 16:00:26 -04004202{
4203 struct rb_node *node;
4204 struct rb_node *prev;
4205 struct btrfs_inode *entry;
4206 struct inode *inode;
4207 u64 objectid = 0;
4208
4209 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
4210
4211 spin_lock(&root->inode_lock);
4212again:
4213 node = root->inode_tree.rb_node;
4214 prev = NULL;
4215 while (node) {
4216 prev = node;
4217 entry = rb_entry(node, struct btrfs_inode, rb_node);
4218
Li Zefan33345d012011-04-20 10:31:50 +08004219 if (objectid < btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04004220 node = node->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08004221 else if (objectid > btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04004222 node = node->rb_right;
4223 else
4224 break;
4225 }
4226 if (!node) {
4227 while (prev) {
4228 entry = rb_entry(prev, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08004229 if (objectid <= btrfs_ino(&entry->vfs_inode)) {
Yan, Zheng76dda932009-09-21 16:00:26 -04004230 node = prev;
4231 break;
4232 }
4233 prev = rb_next(prev);
4234 }
4235 }
4236 while (node) {
4237 entry = rb_entry(node, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08004238 objectid = btrfs_ino(&entry->vfs_inode) + 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04004239 inode = igrab(&entry->vfs_inode);
4240 if (inode) {
4241 spin_unlock(&root->inode_lock);
4242 if (atomic_read(&inode->i_count) > 1)
4243 d_prune_aliases(inode);
4244 /*
Al Viro45321ac2010-06-07 13:43:19 -04004245 * btrfs_drop_inode will have it removed from
Yan, Zheng76dda932009-09-21 16:00:26 -04004246 * the inode cache when its usage count
4247 * hits zero.
4248 */
4249 iput(inode);
4250 cond_resched();
4251 spin_lock(&root->inode_lock);
4252 goto again;
4253 }
4254
4255 if (cond_resched_lock(&root->inode_lock))
4256 goto again;
4257
4258 node = rb_next(node);
4259 }
4260 spin_unlock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004261}
4262
Chris Masone02119d2008-09-05 16:13:11 -04004263static int btrfs_init_locked_inode(struct inode *inode, void *p)
4264{
4265 struct btrfs_iget_args *args = p;
4266 inode->i_ino = args->ino;
Chris Masone02119d2008-09-05 16:13:11 -04004267 BTRFS_I(inode)->root = args->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004268 return 0;
4269}
4270
4271static int btrfs_find_actor(struct inode *inode, void *opaque)
4272{
4273 struct btrfs_iget_args *args = opaque;
Li Zefan33345d012011-04-20 10:31:50 +08004274 return args->ino == btrfs_ino(inode) &&
Chris Masond3977122009-01-05 21:25:51 -05004275 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004276}
4277
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004278static struct inode *btrfs_iget_locked(struct super_block *s,
4279 u64 objectid,
4280 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04004281{
4282 struct inode *inode;
4283 struct btrfs_iget_args args;
4284 args.ino = objectid;
4285 args.root = root;
4286
4287 inode = iget5_locked(s, objectid, btrfs_find_actor,
4288 btrfs_init_locked_inode,
4289 (void *)&args);
4290 return inode;
4291}
4292
Balaji Rao1a54ef82008-07-21 02:01:04 +05304293/* Get an inode object given its location and corresponding root.
4294 * Returns in *is_new if the inode was read from disk
4295 */
4296struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
Josef Bacik73f73412009-12-04 17:38:27 +00004297 struct btrfs_root *root, int *new)
Balaji Rao1a54ef82008-07-21 02:01:04 +05304298{
4299 struct inode *inode;
4300
4301 inode = btrfs_iget_locked(s, location->objectid, root);
4302 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004303 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05304304
4305 if (inode->i_state & I_NEW) {
4306 BTRFS_I(inode)->root = root;
4307 memcpy(&BTRFS_I(inode)->location, location, sizeof(*location));
4308 btrfs_read_locked_inode(inode);
Mark Fasheh1748f842011-07-12 11:25:31 -07004309 if (!is_bad_inode(inode)) {
4310 inode_tree_add(inode);
4311 unlock_new_inode(inode);
4312 if (new)
4313 *new = 1;
4314 } else {
Sergei Trofimoviche0b6d652011-09-11 10:52:24 -04004315 unlock_new_inode(inode);
4316 iput(inode);
4317 inode = ERR_PTR(-ESTALE);
Mark Fasheh1748f842011-07-12 11:25:31 -07004318 }
4319 }
4320
Balaji Rao1a54ef82008-07-21 02:01:04 +05304321 return inode;
4322}
4323
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004324static struct inode *new_simple_dir(struct super_block *s,
4325 struct btrfs_key *key,
4326 struct btrfs_root *root)
4327{
4328 struct inode *inode = new_inode(s);
4329
4330 if (!inode)
4331 return ERR_PTR(-ENOMEM);
4332
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004333 BTRFS_I(inode)->root = root;
4334 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
Josef Bacik72ac3c02012-05-23 14:13:11 -04004335 set_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004336
4337 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
Li Zefan848cce02012-02-21 17:04:28 +08004338 inode->i_op = &btrfs_dir_ro_inode_operations;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004339 inode->i_fop = &simple_dir_operations;
4340 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
4341 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
4342
4343 return inode;
4344}
4345
Chris Mason3de45862008-11-17 21:02:50 -05004346struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04004347{
Chris Masond3977122009-01-05 21:25:51 -05004348 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004349 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004350 struct btrfs_root *sub_root = root;
4351 struct btrfs_key location;
Yan, Zheng76dda932009-09-21 16:00:26 -04004352 int index;
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004353 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004354
4355 if (dentry->d_name.len > BTRFS_NAME_LEN)
4356 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04004357
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004358 if (unlikely(d_need_lookup(dentry))) {
4359 memcpy(&location, dentry->d_fsdata, sizeof(struct btrfs_key));
4360 kfree(dentry->d_fsdata);
4361 dentry->d_fsdata = NULL;
Josef Bacika66e7cc2011-09-18 10:34:03 -04004362 /* This thing is hashed, drop it for now */
4363 d_drop(dentry);
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004364 } else {
4365 ret = btrfs_inode_by_name(dir, dentry, &location);
4366 }
Chris Mason5f39d392007-10-15 16:14:19 -04004367
Chris Mason39279cc2007-06-12 06:35:45 -04004368 if (ret < 0)
4369 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04004370
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004371 if (location.objectid == 0)
4372 return NULL;
4373
4374 if (location.type == BTRFS_INODE_ITEM_KEY) {
Josef Bacik73f73412009-12-04 17:38:27 +00004375 inode = btrfs_iget(dir->i_sb, &location, root, NULL);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004376 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004377 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004378
4379 BUG_ON(location.type != BTRFS_ROOT_ITEM_KEY);
4380
Yan, Zheng76dda932009-09-21 16:00:26 -04004381 index = srcu_read_lock(&root->fs_info->subvol_srcu);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004382 ret = fixup_tree_root_location(root, dir, dentry,
4383 &location, &sub_root);
4384 if (ret < 0) {
4385 if (ret != -ENOENT)
4386 inode = ERR_PTR(ret);
4387 else
4388 inode = new_simple_dir(dir->i_sb, &location, sub_root);
4389 } else {
Josef Bacik73f73412009-12-04 17:38:27 +00004390 inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004391 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004392 srcu_read_unlock(&root->fs_info->subvol_srcu, index);
4393
Julia Lawall34d19ba2011-01-24 19:55:19 +00004394 if (!IS_ERR(inode) && root != sub_root) {
Yan, Zhengc71bf092009-11-12 09:34:40 +00004395 down_read(&root->fs_info->cleanup_work_sem);
4396 if (!(inode->i_sb->s_flags & MS_RDONLY))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05004397 ret = btrfs_orphan_cleanup(sub_root);
Yan, Zhengc71bf092009-11-12 09:34:40 +00004398 up_read(&root->fs_info->cleanup_work_sem);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05004399 if (ret)
4400 inode = ERR_PTR(ret);
Yan, Zhengc71bf092009-11-12 09:34:40 +00004401 }
4402
Chris Mason3de45862008-11-17 21:02:50 -05004403 return inode;
4404}
4405
Nick Pigginfe15ce42011-01-07 17:49:23 +11004406static int btrfs_dentry_delete(const struct dentry *dentry)
Yan, Zheng76dda932009-09-21 16:00:26 -04004407{
4408 struct btrfs_root *root;
Li Zefan848cce02012-02-21 17:04:28 +08004409 struct inode *inode = dentry->d_inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04004410
Li Zefan848cce02012-02-21 17:04:28 +08004411 if (!inode && !IS_ROOT(dentry))
4412 inode = dentry->d_parent->d_inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04004413
Li Zefan848cce02012-02-21 17:04:28 +08004414 if (inode) {
4415 root = BTRFS_I(inode)->root;
Yan, Zhengefefb142009-10-09 09:25:16 -04004416 if (btrfs_root_refs(&root->root_item) == 0)
4417 return 1;
Li Zefan848cce02012-02-21 17:04:28 +08004418
4419 if (btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
4420 return 1;
Yan, Zhengefefb142009-10-09 09:25:16 -04004421 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004422 return 0;
4423}
4424
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004425static void btrfs_dentry_release(struct dentry *dentry)
4426{
4427 if (dentry->d_fsdata)
4428 kfree(dentry->d_fsdata);
4429}
4430
Chris Mason3de45862008-11-17 21:02:50 -05004431static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -04004432 unsigned int flags)
Chris Mason3de45862008-11-17 21:02:50 -05004433{
Josef Bacika66e7cc2011-09-18 10:34:03 -04004434 struct dentry *ret;
4435
4436 ret = d_splice_alias(btrfs_lookup_dentry(dir, dentry), dentry);
4437 if (unlikely(d_need_lookup(dentry))) {
4438 spin_lock(&dentry->d_lock);
4439 dentry->d_flags &= ~DCACHE_NEED_LOOKUP;
4440 spin_unlock(&dentry->d_lock);
4441 }
4442 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004443}
4444
Miao Xie16cdcec2011-04-22 18:12:22 +08004445unsigned char btrfs_filetype_table[] = {
Chris Mason39279cc2007-06-12 06:35:45 -04004446 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
4447};
4448
David Woodhousecbdf5a22008-08-06 19:42:33 +01004449static int btrfs_real_readdir(struct file *filp, void *dirent,
4450 filldir_t filldir)
Chris Mason39279cc2007-06-12 06:35:45 -04004451{
Chris Mason6da6aba2007-12-18 16:15:09 -05004452 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004453 struct btrfs_root *root = BTRFS_I(inode)->root;
4454 struct btrfs_item *item;
4455 struct btrfs_dir_item *di;
4456 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04004457 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04004458 struct btrfs_path *path;
Miao Xie16cdcec2011-04-22 18:12:22 +08004459 struct list_head ins_list;
4460 struct list_head del_list;
Chris Mason39279cc2007-06-12 06:35:45 -04004461 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04004462 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04004463 int slot;
Chris Mason39279cc2007-06-12 06:35:45 -04004464 unsigned char d_type;
4465 int over = 0;
4466 u32 di_cur;
4467 u32 di_total;
4468 u32 di_len;
4469 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004470 char tmp_name[32];
4471 char *name_ptr;
4472 int name_len;
Miao Xie16cdcec2011-04-22 18:12:22 +08004473 int is_curr = 0; /* filp->f_pos points to the current index? */
Chris Mason39279cc2007-06-12 06:35:45 -04004474
4475 /* FIXME, use a real flag for deciding about the key type */
4476 if (root->fs_info->tree_root == root)
4477 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004478
Chris Mason39544012007-12-12 14:38:19 -05004479 /* special case for "." */
4480 if (filp->f_pos == 0) {
Hidetoshi Seto3765fef2011-09-18 10:20:46 -04004481 over = filldir(dirent, ".", 1,
4482 filp->f_pos, btrfs_ino(inode), DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05004483 if (over)
4484 return 0;
4485 filp->f_pos = 1;
4486 }
Chris Mason39544012007-12-12 14:38:19 -05004487 /* special case for .., just use the back ref */
4488 if (filp->f_pos == 1) {
David Woodhouse5ecc7e52008-08-17 15:14:48 +01004489 u64 pino = parent_ino(filp->f_path.dentry);
Chris Mason39544012007-12-12 14:38:19 -05004490 over = filldir(dirent, "..", 2,
Hidetoshi Seto3765fef2011-09-18 10:20:46 -04004491 filp->f_pos, pino, DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05004492 if (over)
David Woodhouse49593bf2008-08-17 17:08:36 +01004493 return 0;
Chris Mason39544012007-12-12 14:38:19 -05004494 filp->f_pos = 2;
4495 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004496 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08004497 if (!path)
4498 return -ENOMEM;
Chris Masonff5714c2011-05-28 07:00:39 -04004499
Josef Bacik026fd312011-05-13 10:32:11 -04004500 path->reada = 1;
David Woodhouse49593bf2008-08-17 17:08:36 +01004501
Miao Xie16cdcec2011-04-22 18:12:22 +08004502 if (key_type == BTRFS_DIR_INDEX_KEY) {
4503 INIT_LIST_HEAD(&ins_list);
4504 INIT_LIST_HEAD(&del_list);
4505 btrfs_get_delayed_items(inode, &ins_list, &del_list);
4506 }
4507
Chris Mason39279cc2007-06-12 06:35:45 -04004508 btrfs_set_key_type(&key, key_type);
4509 key.offset = filp->f_pos;
Li Zefan33345d012011-04-20 10:31:50 +08004510 key.objectid = btrfs_ino(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004511
Chris Mason39279cc2007-06-12 06:35:45 -04004512 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4513 if (ret < 0)
4514 goto err;
David Woodhouse49593bf2008-08-17 17:08:36 +01004515
4516 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04004517 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -04004518 slot = path->slots[0];
Li Zefanb9e03af2011-03-23 10:43:58 +08004519 if (slot >= btrfs_header_nritems(leaf)) {
4520 ret = btrfs_next_leaf(root, path);
4521 if (ret < 0)
4522 goto err;
4523 else if (ret > 0)
4524 break;
4525 continue;
Chris Mason39279cc2007-06-12 06:35:45 -04004526 }
Chris Mason3de45862008-11-17 21:02:50 -05004527
Chris Mason5f39d392007-10-15 16:14:19 -04004528 item = btrfs_item_nr(leaf, slot);
4529 btrfs_item_key_to_cpu(leaf, &found_key, slot);
4530
4531 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04004532 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004533 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004534 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004535 if (found_key.offset < filp->f_pos)
Li Zefanb9e03af2011-03-23 10:43:58 +08004536 goto next;
Miao Xie16cdcec2011-04-22 18:12:22 +08004537 if (key_type == BTRFS_DIR_INDEX_KEY &&
4538 btrfs_should_delete_dir_index(&del_list,
4539 found_key.offset))
4540 goto next;
Chris Mason5f39d392007-10-15 16:14:19 -04004541
4542 filp->f_pos = found_key.offset;
Miao Xie16cdcec2011-04-22 18:12:22 +08004543 is_curr = 1;
David Woodhouse49593bf2008-08-17 17:08:36 +01004544
Chris Mason39279cc2007-06-12 06:35:45 -04004545 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
4546 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04004547 di_total = btrfs_item_size(leaf, item);
David Woodhouse49593bf2008-08-17 17:08:36 +01004548
4549 while (di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04004550 struct btrfs_key location;
4551
Josef Bacik22a94d42011-03-16 16:47:17 -04004552 if (verify_dir_item(root, leaf, di))
4553 break;
4554
Chris Mason5f39d392007-10-15 16:14:19 -04004555 name_len = btrfs_dir_name_len(leaf, di);
David Woodhouse49593bf2008-08-17 17:08:36 +01004556 if (name_len <= sizeof(tmp_name)) {
Chris Mason5f39d392007-10-15 16:14:19 -04004557 name_ptr = tmp_name;
4558 } else {
4559 name_ptr = kmalloc(name_len, GFP_NOFS);
David Woodhouse49593bf2008-08-17 17:08:36 +01004560 if (!name_ptr) {
4561 ret = -ENOMEM;
4562 goto err;
4563 }
Chris Mason5f39d392007-10-15 16:14:19 -04004564 }
4565 read_extent_buffer(leaf, name_ptr,
4566 (unsigned long)(di + 1), name_len);
4567
4568 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
4569 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason3de45862008-11-17 21:02:50 -05004570
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004571
Chris Mason3de45862008-11-17 21:02:50 -05004572 /* is this a reference to our own snapshot? If so
Arne Jansen8c9c2bf2012-02-25 09:09:30 +01004573 * skip it.
4574 *
4575 * In contrast to old kernels, we insert the snapshot's
4576 * dir item and dir index after it has been created, so
4577 * we won't find a reference to our own snapshot. We
4578 * still keep the following code for backward
4579 * compatibility.
Chris Mason3de45862008-11-17 21:02:50 -05004580 */
4581 if (location.type == BTRFS_ROOT_ITEM_KEY &&
4582 location.objectid == root->root_key.objectid) {
4583 over = 0;
4584 goto skip;
4585 }
Chris Mason5f39d392007-10-15 16:14:19 -04004586 over = filldir(dirent, name_ptr, name_len,
David Woodhouse49593bf2008-08-17 17:08:36 +01004587 found_key.offset, location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04004588 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04004589
Chris Mason3de45862008-11-17 21:02:50 -05004590skip:
Chris Mason5f39d392007-10-15 16:14:19 -04004591 if (name_ptr != tmp_name)
4592 kfree(name_ptr);
4593
Chris Mason39279cc2007-06-12 06:35:45 -04004594 if (over)
4595 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05004596 di_len = btrfs_dir_name_len(leaf, di) +
David Woodhouse49593bf2008-08-17 17:08:36 +01004597 btrfs_dir_data_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04004598 di_cur += di_len;
4599 di = (struct btrfs_dir_item *)((char *)di + di_len);
4600 }
Li Zefanb9e03af2011-03-23 10:43:58 +08004601next:
4602 path->slots[0]++;
Chris Mason39279cc2007-06-12 06:35:45 -04004603 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004604
Miao Xie16cdcec2011-04-22 18:12:22 +08004605 if (key_type == BTRFS_DIR_INDEX_KEY) {
4606 if (is_curr)
4607 filp->f_pos++;
4608 ret = btrfs_readdir_delayed_dir_index(filp, dirent, filldir,
4609 &ins_list);
4610 if (ret)
4611 goto nopos;
4612 }
4613
David Woodhouse49593bf2008-08-17 17:08:36 +01004614 /* Reached end of directory/root. Bump pos past the last item. */
Yan Zheng5e591a02008-02-19 11:41:02 -05004615 if (key_type == BTRFS_DIR_INDEX_KEY)
Jan Engelhardt406266a2009-12-09 22:00:38 +00004616 /*
4617 * 32-bit glibc will use getdents64, but then strtol -
4618 * so the last number we can serve is this.
4619 */
4620 filp->f_pos = 0x7fffffff;
Yan Zheng5e591a02008-02-19 11:41:02 -05004621 else
4622 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04004623nopos:
4624 ret = 0;
4625err:
Miao Xie16cdcec2011-04-22 18:12:22 +08004626 if (key_type == BTRFS_DIR_INDEX_KEY)
4627 btrfs_put_delayed_items(&ins_list, &del_list);
Chris Mason39279cc2007-06-12 06:35:45 -04004628 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004629 return ret;
4630}
4631
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004632int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc)
Chris Mason39279cc2007-06-12 06:35:45 -04004633{
4634 struct btrfs_root *root = BTRFS_I(inode)->root;
4635 struct btrfs_trans_handle *trans;
4636 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04004637 bool nolock = false;
Chris Mason39279cc2007-06-12 06:35:45 -04004638
Josef Bacik72ac3c02012-05-23 14:13:11 -04004639 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Chris Mason4ca8b412008-08-05 13:30:48 -04004640 return 0;
4641
Liu Bo83eea1f2012-07-10 05:28:39 -06004642 if (btrfs_fs_closing(root->fs_info) && btrfs_is_free_space_inode(inode))
Li Zefan82d59022011-04-20 10:33:24 +08004643 nolock = true;
Josef Bacik0af3d002010-06-21 14:48:16 -04004644
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004645 if (wbc->sync_mode == WB_SYNC_ALL) {
Josef Bacik0af3d002010-06-21 14:48:16 -04004646 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004647 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0af3d002010-06-21 14:48:16 -04004648 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004649 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00004650 if (IS_ERR(trans))
4651 return PTR_ERR(trans);
Miao Xiea698d0752012-09-20 01:51:59 -06004652 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004653 }
4654 return ret;
4655}
4656
4657/*
Chris Mason54aa1f42007-06-22 14:16:25 -04004658 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04004659 * inode changes. But, it is most likely to find the inode in cache.
4660 * FIXME, needs more benchmarking...there are no reasons other than performance
4661 * to keep or drop this code.
4662 */
Josef Bacik22c44fe2011-11-30 10:45:38 -05004663int btrfs_dirty_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04004664{
4665 struct btrfs_root *root = BTRFS_I(inode)->root;
4666 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004667 int ret;
4668
Josef Bacik72ac3c02012-05-23 14:13:11 -04004669 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Josef Bacik22c44fe2011-11-30 10:45:38 -05004670 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004671
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004672 trans = btrfs_join_transaction(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004673 if (IS_ERR(trans))
4674 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004675
4676 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04004677 if (ret && ret == -ENOSPC) {
4678 /* whoops, lets try again with the full transaction */
4679 btrfs_end_transaction(trans, root);
4680 trans = btrfs_start_transaction(root, 1);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004681 if (IS_ERR(trans))
4682 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004683
Chris Mason94b60442010-05-26 11:02:00 -04004684 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04004685 }
Chris Mason39279cc2007-06-12 06:35:45 -04004686 btrfs_end_transaction(trans, root);
Miao Xie16cdcec2011-04-22 18:12:22 +08004687 if (BTRFS_I(inode)->delayed_node)
4688 btrfs_balance_delayed_items(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004689
4690 return ret;
4691}
4692
4693/*
4694 * This is a copy of file_update_time. We need this so we can return error on
4695 * ENOSPC for updating the inode in the case of file write and mmap writes.
4696 */
Josef Bacike41f9412012-03-26 09:46:47 -04004697static int btrfs_update_time(struct inode *inode, struct timespec *now,
4698 int flags)
Josef Bacik22c44fe2011-11-30 10:45:38 -05004699{
Alexander Block2bc5565282012-06-15 09:49:33 +02004700 struct btrfs_root *root = BTRFS_I(inode)->root;
4701
4702 if (btrfs_root_readonly(root))
4703 return -EROFS;
4704
Josef Bacike41f9412012-03-26 09:46:47 -04004705 if (flags & S_VERSION)
Josef Bacik22c44fe2011-11-30 10:45:38 -05004706 inode_inc_iversion(inode);
Josef Bacike41f9412012-03-26 09:46:47 -04004707 if (flags & S_CTIME)
4708 inode->i_ctime = *now;
4709 if (flags & S_MTIME)
4710 inode->i_mtime = *now;
4711 if (flags & S_ATIME)
4712 inode->i_atime = *now;
4713 return btrfs_dirty_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004714}
4715
Chris Masond352ac62008-09-29 15:18:18 -04004716/*
4717 * find the highest existing sequence number in a directory
4718 * and then set the in-memory index_cnt variable to reflect
4719 * free sequence numbers
4720 */
Josef Bacikaec74772008-07-24 12:12:38 -04004721static int btrfs_set_inode_index_count(struct inode *inode)
4722{
4723 struct btrfs_root *root = BTRFS_I(inode)->root;
4724 struct btrfs_key key, found_key;
4725 struct btrfs_path *path;
4726 struct extent_buffer *leaf;
4727 int ret;
4728
Li Zefan33345d012011-04-20 10:31:50 +08004729 key.objectid = btrfs_ino(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004730 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
4731 key.offset = (u64)-1;
4732
4733 path = btrfs_alloc_path();
4734 if (!path)
4735 return -ENOMEM;
4736
4737 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4738 if (ret < 0)
4739 goto out;
4740 /* FIXME: we should be able to handle this */
4741 if (ret == 0)
4742 goto out;
4743 ret = 0;
4744
4745 /*
4746 * MAGIC NUMBER EXPLANATION:
4747 * since we search a directory based on f_pos we have to start at 2
4748 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
4749 * else has to start at 2
4750 */
4751 if (path->slots[0] == 0) {
4752 BTRFS_I(inode)->index_cnt = 2;
4753 goto out;
4754 }
4755
4756 path->slots[0]--;
4757
4758 leaf = path->nodes[0];
4759 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4760
Li Zefan33345d012011-04-20 10:31:50 +08004761 if (found_key.objectid != btrfs_ino(inode) ||
Josef Bacikaec74772008-07-24 12:12:38 -04004762 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
4763 BTRFS_I(inode)->index_cnt = 2;
4764 goto out;
4765 }
4766
4767 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
4768out:
4769 btrfs_free_path(path);
4770 return ret;
4771}
4772
Chris Masond352ac62008-09-29 15:18:18 -04004773/*
4774 * helper to find a free sequence number in a given directory. This current
4775 * code is very simple, later versions will do smarter things in the btree
4776 */
Chris Mason3de45862008-11-17 21:02:50 -05004777int btrfs_set_inode_index(struct inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04004778{
4779 int ret = 0;
4780
4781 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
Miao Xie16cdcec2011-04-22 18:12:22 +08004782 ret = btrfs_inode_delayed_dir_index_count(dir);
4783 if (ret) {
4784 ret = btrfs_set_inode_index_count(dir);
4785 if (ret)
4786 return ret;
4787 }
Josef Bacikaec74772008-07-24 12:12:38 -04004788 }
4789
Chris Mason00e4e6b2008-08-05 11:18:09 -04004790 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04004791 BTRFS_I(dir)->index_cnt++;
4792
4793 return ret;
4794}
4795
Chris Mason39279cc2007-06-12 06:35:45 -04004796static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
4797 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04004798 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05004799 const char *name, int name_len,
Al Viro175a4eb2011-07-26 03:30:54 -04004800 u64 ref_objectid, u64 objectid,
4801 umode_t mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04004802{
4803 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004804 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04004805 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04004806 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05004807 struct btrfs_inode_ref *ref;
4808 struct btrfs_key key[2];
4809 u32 sizes[2];
4810 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04004811 int ret;
4812 int owner;
4813
Chris Mason5f39d392007-10-15 16:14:19 -04004814 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07004815 if (!path)
4816 return ERR_PTR(-ENOMEM);
Chris Mason5f39d392007-10-15 16:14:19 -04004817
Chris Mason39279cc2007-06-12 06:35:45 -04004818 inode = new_inode(root->fs_info->sb);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004819 if (!inode) {
4820 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004821 return ERR_PTR(-ENOMEM);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004822 }
Chris Mason39279cc2007-06-12 06:35:45 -04004823
Li Zefan581bb052011-04-20 10:06:11 +08004824 /*
4825 * we have to initialize this early, so we can reclaim the inode
4826 * number if we fail afterwards in this function.
4827 */
4828 inode->i_ino = objectid;
4829
Josef Bacikaec74772008-07-24 12:12:38 -04004830 if (dir) {
liubo1abe9b82011-03-24 11:18:59 +00004831 trace_btrfs_inode_request(dir);
4832
Chris Mason3de45862008-11-17 21:02:50 -05004833 ret = btrfs_set_inode_index(dir, index);
Shen Feng09771432009-04-02 16:46:06 -04004834 if (ret) {
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004835 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004836 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004837 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04004838 }
Josef Bacikaec74772008-07-24 12:12:38 -04004839 }
4840 /*
4841 * index_cnt is ignored for everything but a dir,
4842 * btrfs_get_inode_index_count has an explanation for the magic
4843 * number
4844 */
4845 BTRFS_I(inode)->index_cnt = 2;
Chris Mason39279cc2007-06-12 06:35:45 -04004846 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04004847 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik76195852010-11-19 02:18:02 +00004848 inode->i_generation = BTRFS_I(inode)->generation;
Chris Masonb888db2b2007-08-27 16:49:44 -04004849
Josef Bacik5dc562c2012-08-17 13:14:17 -04004850 /*
4851 * We could have gotten an inode number from somebody who was fsynced
4852 * and then removed in this same transaction, so let's just set full
4853 * sync since it will be a full sync anyway and this will blow away the
4854 * old info in the log.
4855 */
4856 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
4857
Al Viro569254b2011-07-24 17:08:40 -04004858 if (S_ISDIR(mode))
Chris Mason39279cc2007-06-12 06:35:45 -04004859 owner = 0;
4860 else
4861 owner = 1;
Chris Mason9c583092008-01-29 15:15:18 -05004862
4863 key[0].objectid = objectid;
4864 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
4865 key[0].offset = 0;
4866
Mark Fashehf1863732012-08-08 11:32:27 -07004867 /*
4868 * Start new inodes with an inode_ref. This is slightly more
4869 * efficient for small numbers of hard links since they will
4870 * be packed into one item. Extended refs will kick in if we
4871 * add more hard links than can fit in the ref item.
4872 */
Chris Mason9c583092008-01-29 15:15:18 -05004873 key[1].objectid = objectid;
4874 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
4875 key[1].offset = ref_objectid;
4876
4877 sizes[0] = sizeof(struct btrfs_inode_item);
4878 sizes[1] = name_len + sizeof(*ref);
4879
Chris Masonb9473432009-03-13 11:00:37 -04004880 path->leave_spinning = 1;
Chris Mason9c583092008-01-29 15:15:18 -05004881 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
4882 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04004883 goto fail;
4884
Dmitry Monakhovecc11fab2010-03-04 17:31:47 +03004885 inode_init_owner(inode, dir, mode);
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004886 inode_set_bytes(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004887 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04004888 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
4889 struct btrfs_inode_item);
Li Zefan293f7e02012-07-10 00:58:58 -06004890 memset_extent_buffer(path->nodes[0], 0, (unsigned long)inode_item,
4891 sizeof(*inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04004892 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05004893
4894 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
4895 struct btrfs_inode_ref);
4896 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004897 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
Chris Mason9c583092008-01-29 15:15:18 -05004898 ptr = (unsigned long)(ref + 1);
4899 write_extent_buffer(path->nodes[0], name, ptr, name_len);
4900
Chris Mason5f39d392007-10-15 16:14:19 -04004901 btrfs_mark_buffer_dirty(path->nodes[0]);
4902 btrfs_free_path(path);
4903
Chris Mason39279cc2007-06-12 06:35:45 -04004904 location = &BTRFS_I(inode)->location;
4905 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04004906 location->offset = 0;
4907 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
4908
Christoph Hellwig6cbff002009-04-17 10:37:41 +02004909 btrfs_inherit_iflags(inode, dir);
4910
Al Viro569254b2011-07-24 17:08:40 -04004911 if (S_ISREG(mode)) {
Chris Mason94272162009-07-02 12:26:06 -04004912 if (btrfs_test_opt(root, NODATASUM))
4913 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
Liu Bo213490b2012-09-11 08:33:50 -06004914 if (btrfs_test_opt(root, NODATACOW))
Chris Mason94272162009-07-02 12:26:06 -04004915 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
4916 }
4917
Chris Mason39279cc2007-06-12 06:35:45 -04004918 insert_inode_hash(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004919 inode_tree_add(inode);
liubo1abe9b82011-03-24 11:18:59 +00004920
4921 trace_btrfs_inode_new(inode);
Chris Mason1973f0f2011-06-24 13:13:29 -04004922 btrfs_set_inode_last_trans(trans, inode);
liubo1abe9b82011-03-24 11:18:59 +00004923
Alexander Block8ea05e32012-07-25 17:35:53 +02004924 btrfs_update_root_times(trans, root);
4925
Chris Mason39279cc2007-06-12 06:35:45 -04004926 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004927fail:
Josef Bacikaec74772008-07-24 12:12:38 -04004928 if (dir)
4929 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04004930 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004931 iput(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004932 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004933}
4934
4935static inline u8 btrfs_inode_type(struct inode *inode)
4936{
4937 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
4938}
4939
Chris Masond352ac62008-09-29 15:18:18 -04004940/*
4941 * utility function to add 'inode' into 'parent_inode' with
4942 * a give name and a given sequence number.
4943 * if 'add_backref' is true, also insert a backref from the
4944 * inode to the parent directory.
4945 */
Chris Masone02119d2008-09-05 16:13:11 -04004946int btrfs_add_link(struct btrfs_trans_handle *trans,
4947 struct inode *parent_inode, struct inode *inode,
4948 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004949{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004950 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004951 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04004952 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Li Zefan33345d012011-04-20 10:31:50 +08004953 u64 ino = btrfs_ino(inode);
4954 u64 parent_ino = btrfs_ino(parent_inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004955
Li Zefan33345d012011-04-20 10:31:50 +08004956 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004957 memcpy(&key, &BTRFS_I(inode)->root->root_key, sizeof(key));
4958 } else {
Li Zefan33345d012011-04-20 10:31:50 +08004959 key.objectid = ino;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004960 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
4961 key.offset = 0;
4962 }
Chris Mason39279cc2007-06-12 06:35:45 -04004963
Li Zefan33345d012011-04-20 10:31:50 +08004964 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004965 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
4966 key.objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08004967 parent_ino, index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004968 } else if (add_backref) {
Li Zefan33345d012011-04-20 10:31:50 +08004969 ret = btrfs_insert_inode_ref(trans, root, name, name_len, ino,
4970 parent_ino, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004971 }
4972
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004973 /* Nothing to clean up yet */
4974 if (ret)
4975 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004976
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004977 ret = btrfs_insert_dir_item(trans, root, name, name_len,
4978 parent_inode, &key,
4979 btrfs_inode_type(inode), index);
Chris Mason9c520572012-12-17 14:26:57 -05004980 if (ret == -EEXIST || ret == -EOVERFLOW)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004981 goto fail_dir_item;
4982 else if (ret) {
4983 btrfs_abort_transaction(trans, root, ret);
4984 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004985 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004986
4987 btrfs_i_size_write(parent_inode, parent_inode->i_size +
4988 name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04004989 inode_inc_iversion(parent_inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004990 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
4991 ret = btrfs_update_inode(trans, root, parent_inode);
4992 if (ret)
4993 btrfs_abort_transaction(trans, root, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004994 return ret;
Chris Masonfe66a052012-02-20 08:40:56 -05004995
4996fail_dir_item:
4997 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
4998 u64 local_index;
4999 int err;
5000 err = btrfs_del_root_ref(trans, root->fs_info->tree_root,
5001 key.objectid, root->root_key.objectid,
5002 parent_ino, &local_index, name, name_len);
5003
5004 } else if (add_backref) {
5005 u64 local_index;
5006 int err;
5007
5008 err = btrfs_del_inode_ref(trans, root, name, name_len,
5009 ino, parent_ino, &local_index);
5010 }
5011 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04005012}
5013
5014static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Josef Bacika1b075d2010-11-19 20:36:11 +00005015 struct inode *dir, struct dentry *dentry,
5016 struct inode *inode, int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04005017{
Josef Bacika1b075d2010-11-19 20:36:11 +00005018 int err = btrfs_add_link(trans, dir, inode,
5019 dentry->d_name.name, dentry->d_name.len,
5020 backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04005021 if (err > 0)
5022 err = -EEXIST;
5023 return err;
5024}
5025
Josef Bacik618e21d2007-07-11 10:18:17 -04005026static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -04005027 umode_t mode, dev_t rdev)
Josef Bacik618e21d2007-07-11 10:18:17 -04005028{
5029 struct btrfs_trans_handle *trans;
5030 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05005031 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04005032 int err;
5033 int drop_inode = 0;
5034 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005035 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04005036
5037 if (!new_valid_dev(rdev))
5038 return -EINVAL;
5039
Josef Bacik9ed74f22009-09-11 16:12:44 -04005040 /*
5041 * 2 for inode item and ref
5042 * 2 for dir items
5043 * 1 for xattr if selinux is on
5044 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04005045 trans = btrfs_start_transaction(root, 5);
5046 if (IS_ERR(trans))
5047 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05005048
Li Zefan581bb052011-04-20 10:06:11 +08005049 err = btrfs_find_free_ino(root, &objectid);
5050 if (err)
5051 goto out_unlock;
5052
Josef Bacikaec74772008-07-24 12:12:38 -04005053 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08005054 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04005055 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04005056 if (IS_ERR(inode)) {
5057 err = PTR_ERR(inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04005058 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04005059 }
Josef Bacik618e21d2007-07-11 10:18:17 -04005060
Eric Paris2a7dba32011-02-01 11:05:39 -05005061 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04005062 if (err) {
5063 drop_inode = 1;
5064 goto out_unlock;
5065 }
5066
Casey Schauflerad19db72011-12-15 10:09:07 -05005067 /*
5068 * If the active LSM wants to access the inode during
5069 * d_instantiate it needs these. Smack checks to see
5070 * if the filesystem supports xattrs by looking at the
5071 * ops vector.
5072 */
5073
5074 inode->i_op = &btrfs_special_inode_operations;
Josef Bacika1b075d2010-11-19 20:36:11 +00005075 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Josef Bacik618e21d2007-07-11 10:18:17 -04005076 if (err)
5077 drop_inode = 1;
5078 else {
Josef Bacik618e21d2007-07-11 10:18:17 -04005079 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04005080 btrfs_update_inode(trans, root, inode);
Al Viro08c422c2011-12-23 07:58:13 -05005081 d_instantiate(dentry, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04005082 }
Josef Bacik618e21d2007-07-11 10:18:17 -04005083out_unlock:
Josef Bacik7ad85bb2012-01-12 19:10:12 -05005084 btrfs_end_transaction(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00005085 btrfs_btree_balance_dirty(root);
Josef Bacik618e21d2007-07-11 10:18:17 -04005086 if (drop_inode) {
5087 inode_dec_link_count(inode);
5088 iput(inode);
5089 }
Josef Bacik618e21d2007-07-11 10:18:17 -04005090 return err;
5091}
5092
Chris Mason39279cc2007-06-12 06:35:45 -04005093static int btrfs_create(struct inode *dir, struct dentry *dentry,
Al Viroebfc3b42012-06-10 18:05:36 -04005094 umode_t mode, bool excl)
Chris Mason39279cc2007-06-12 06:35:45 -04005095{
5096 struct btrfs_trans_handle *trans;
5097 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05005098 struct inode *inode = NULL;
Filipe Brandenburger43baa572012-11-30 03:40:09 +00005099 int drop_inode_on_err = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04005100 int err;
Chris Mason39279cc2007-06-12 06:35:45 -04005101 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005102 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005103
Josef Bacik9ed74f22009-09-11 16:12:44 -04005104 /*
5105 * 2 for inode item and ref
5106 * 2 for dir items
5107 * 1 for xattr if selinux is on
5108 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04005109 trans = btrfs_start_transaction(root, 5);
5110 if (IS_ERR(trans))
5111 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04005112
Li Zefan581bb052011-04-20 10:06:11 +08005113 err = btrfs_find_free_ino(root, &objectid);
5114 if (err)
5115 goto out_unlock;
5116
Josef Bacikaec74772008-07-24 12:12:38 -04005117 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08005118 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04005119 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04005120 if (IS_ERR(inode)) {
5121 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04005122 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04005123 }
Filipe Brandenburger43baa572012-11-30 03:40:09 +00005124 drop_inode_on_err = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04005125
Eric Paris2a7dba32011-02-01 11:05:39 -05005126 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Filipe Brandenburger43baa572012-11-30 03:40:09 +00005127 if (err)
Josef Bacik33268ea2008-07-24 12:16:36 -04005128 goto out_unlock;
Josef Bacik33268ea2008-07-24 12:16:36 -04005129
Filipe Brandenburger9185aa52012-11-30 03:40:08 +00005130 err = btrfs_update_inode(trans, root, inode);
5131 if (err)
5132 goto out_unlock;
5133
Casey Schauflerad19db72011-12-15 10:09:07 -05005134 /*
5135 * If the active LSM wants to access the inode during
5136 * d_instantiate it needs these. Smack checks to see
5137 * if the filesystem supports xattrs by looking at the
5138 * ops vector.
5139 */
5140 inode->i_fop = &btrfs_file_operations;
5141 inode->i_op = &btrfs_file_inode_operations;
5142
Josef Bacika1b075d2010-11-19 20:36:11 +00005143 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04005144 if (err)
Filipe Brandenburger43baa572012-11-30 03:40:09 +00005145 goto out_unlock;
5146
5147 inode->i_mapping->a_ops = &btrfs_aops;
5148 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
5149 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
5150 d_instantiate(dentry, inode);
5151
Chris Mason39279cc2007-06-12 06:35:45 -04005152out_unlock:
Josef Bacik7ad85bb2012-01-12 19:10:12 -05005153 btrfs_end_transaction(trans, root);
Filipe Brandenburger43baa572012-11-30 03:40:09 +00005154 if (err && drop_inode_on_err) {
Chris Mason39279cc2007-06-12 06:35:45 -04005155 inode_dec_link_count(inode);
5156 iput(inode);
5157 }
Liu Bob53d3f52012-11-14 14:34:34 +00005158 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04005159 return err;
5160}
5161
5162static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
5163 struct dentry *dentry)
5164{
5165 struct btrfs_trans_handle *trans;
5166 struct btrfs_root *root = BTRFS_I(dir)->root;
5167 struct inode *inode = old_dentry->d_inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005168 u64 index;
Chris Mason39279cc2007-06-12 06:35:45 -04005169 int err;
5170 int drop_inode = 0;
5171
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00005172 /* do not allow sys_link's with other subvols of the same device */
5173 if (root->objectid != BTRFS_I(inode)->root->objectid)
Mark Fasheh3ab35642011-03-22 17:20:26 +00005174 return -EXDEV;
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00005175
Mark Fashehf1863732012-08-08 11:32:27 -07005176 if (inode->i_nlink >= BTRFS_LINK_MAX)
Al Viroc055e992011-03-04 17:15:18 +00005177 return -EMLINK;
Josef Bacik9ed74f22009-09-11 16:12:44 -04005178
Chris Mason3de45862008-11-17 21:02:50 -05005179 err = btrfs_set_inode_index(dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04005180 if (err)
5181 goto fail;
5182
Yan, Zhenga22285a2010-05-16 10:48:46 -04005183 /*
Miao Xie7e6b6462011-02-18 09:21:17 +00005184 * 2 items for inode and inode ref
Yan, Zhenga22285a2010-05-16 10:48:46 -04005185 * 2 items for dir items
Miao Xie7e6b6462011-02-18 09:21:17 +00005186 * 1 item for parent inode
Yan, Zhenga22285a2010-05-16 10:48:46 -04005187 */
Miao Xie7e6b6462011-02-18 09:21:17 +00005188 trans = btrfs_start_transaction(root, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005189 if (IS_ERR(trans)) {
5190 err = PTR_ERR(trans);
5191 goto fail;
5192 }
Chris Mason5f39d392007-10-15 16:14:19 -04005193
Miao Xie31534952011-04-13 13:19:21 +08005194 btrfs_inc_nlink(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04005195 inode_inc_iversion(inode);
Miao Xie31534952011-04-13 13:19:21 +08005196 inode->i_ctime = CURRENT_TIME;
Al Viro7de9c6ee2010-10-23 11:11:40 -04005197 ihold(inode);
Josef Bacike9976152012-10-11 15:53:56 -04005198 set_bit(BTRFS_INODE_COPY_EVERYTHING, &BTRFS_I(inode)->runtime_flags);
Josef Bacikaec74772008-07-24 12:12:38 -04005199
Josef Bacika1b075d2010-11-19 20:36:11 +00005200 err = btrfs_add_nondir(trans, dir, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04005201
Yan, Zhenga5719522009-09-24 09:17:31 -04005202 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04005203 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04005204 } else {
Al Viro10d9f302011-07-16 23:09:10 -04005205 struct dentry *parent = dentry->d_parent;
Yan, Zhenga5719522009-09-24 09:17:31 -04005206 err = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005207 if (err)
5208 goto fail;
Al Viro08c422c2011-12-23 07:58:13 -05005209 d_instantiate(dentry, inode);
Josef Bacik6a912212010-11-20 09:48:00 +00005210 btrfs_log_new_name(trans, inode, NULL, parent);
Yan, Zhenga5719522009-09-24 09:17:31 -04005211 }
Chris Mason39279cc2007-06-12 06:35:45 -04005212
Josef Bacik7ad85bb2012-01-12 19:10:12 -05005213 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05005214fail:
Chris Mason39279cc2007-06-12 06:35:45 -04005215 if (drop_inode) {
5216 inode_dec_link_count(inode);
5217 iput(inode);
5218 }
Liu Bob53d3f52012-11-14 14:34:34 +00005219 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04005220 return err;
5221}
5222
Al Viro18bb1db2011-07-26 01:41:39 -04005223static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Chris Mason39279cc2007-06-12 06:35:45 -04005224{
Chris Masonb9d86662008-05-02 16:13:49 -04005225 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04005226 struct btrfs_trans_handle *trans;
5227 struct btrfs_root *root = BTRFS_I(dir)->root;
5228 int err = 0;
5229 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04005230 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005231 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005232
Josef Bacik9ed74f22009-09-11 16:12:44 -04005233 /*
5234 * 2 items for inode and ref
5235 * 2 items for dir items
5236 * 1 for xattr if selinux is on
5237 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04005238 trans = btrfs_start_transaction(root, 5);
5239 if (IS_ERR(trans))
5240 return PTR_ERR(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04005241
Li Zefan581bb052011-04-20 10:06:11 +08005242 err = btrfs_find_free_ino(root, &objectid);
5243 if (err)
5244 goto out_fail;
5245
Josef Bacikaec74772008-07-24 12:12:38 -04005246 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08005247 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04005248 S_IFDIR | mode, &index);
Chris Mason39279cc2007-06-12 06:35:45 -04005249 if (IS_ERR(inode)) {
5250 err = PTR_ERR(inode);
5251 goto out_fail;
5252 }
Chris Mason5f39d392007-10-15 16:14:19 -04005253
Chris Mason39279cc2007-06-12 06:35:45 -04005254 drop_on_err = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -04005255
Eric Paris2a7dba32011-02-01 11:05:39 -05005256 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04005257 if (err)
5258 goto out_fail;
5259
Chris Mason39279cc2007-06-12 06:35:45 -04005260 inode->i_op = &btrfs_dir_inode_operations;
5261 inode->i_fop = &btrfs_dir_file_operations;
Chris Mason39279cc2007-06-12 06:35:45 -04005262
Chris Masondbe674a2008-07-17 12:54:05 -04005263 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04005264 err = btrfs_update_inode(trans, root, inode);
5265 if (err)
5266 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04005267
Josef Bacika1b075d2010-11-19 20:36:11 +00005268 err = btrfs_add_link(trans, dir, inode, dentry->d_name.name,
5269 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04005270 if (err)
5271 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04005272
Chris Mason39279cc2007-06-12 06:35:45 -04005273 d_instantiate(dentry, inode);
5274 drop_on_err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005275
5276out_fail:
Josef Bacik7ad85bb2012-01-12 19:10:12 -05005277 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04005278 if (drop_on_err)
5279 iput(inode);
Liu Bob53d3f52012-11-14 14:34:34 +00005280 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04005281 return err;
5282}
5283
Chris Masond352ac62008-09-29 15:18:18 -04005284/* helper for btfs_get_extent. Given an existing extent in the tree,
5285 * and an extent that you want to insert, deal with overlap and insert
5286 * the new extent into the tree.
5287 */
Chris Mason3b951512008-04-17 11:29:12 -04005288static int merge_extent_mapping(struct extent_map_tree *em_tree,
5289 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005290 struct extent_map *em,
5291 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04005292{
5293 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04005294
Chris Masone6dcd2d2008-07-17 12:53:50 -04005295 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
5296 start_diff = map_start - em->start;
5297 em->start = map_start;
5298 em->len = map_len;
Chris Masonc8b97812008-10-29 14:49:59 -04005299 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
5300 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04005301 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04005302 em->block_len -= start_diff;
5303 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005304 return add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04005305}
5306
Chris Masonc8b97812008-10-29 14:49:59 -04005307static noinline int uncompress_inline(struct btrfs_path *path,
5308 struct inode *inode, struct page *page,
5309 size_t pg_offset, u64 extent_offset,
5310 struct btrfs_file_extent_item *item)
5311{
5312 int ret;
5313 struct extent_buffer *leaf = path->nodes[0];
5314 char *tmp;
5315 size_t max_size;
5316 unsigned long inline_size;
5317 unsigned long ptr;
Li Zefan261507a02010-12-17 14:21:50 +08005318 int compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04005319
5320 WARN_ON(pg_offset != 0);
Li Zefan261507a02010-12-17 14:21:50 +08005321 compress_type = btrfs_file_extent_compression(leaf, item);
Chris Masonc8b97812008-10-29 14:49:59 -04005322 max_size = btrfs_file_extent_ram_bytes(leaf, item);
5323 inline_size = btrfs_file_extent_inline_item_len(leaf,
5324 btrfs_item_nr(leaf, path->slots[0]));
5325 tmp = kmalloc(inline_size, GFP_NOFS);
Tsutomu Itoh8d413712011-04-25 19:43:52 -04005326 if (!tmp)
5327 return -ENOMEM;
Chris Masonc8b97812008-10-29 14:49:59 -04005328 ptr = btrfs_file_extent_inline_start(item);
5329
5330 read_extent_buffer(leaf, tmp, ptr, inline_size);
5331
Chris Mason5b050f02008-11-11 09:34:41 -05005332 max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size);
Li Zefan261507a02010-12-17 14:21:50 +08005333 ret = btrfs_decompress(compress_type, tmp, page,
5334 extent_offset, inline_size, max_size);
Chris Masonc8b97812008-10-29 14:49:59 -04005335 if (ret) {
Cong Wang7ac687d2011-11-25 23:14:28 +08005336 char *kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04005337 unsigned long copy_size = min_t(u64,
5338 PAGE_CACHE_SIZE - pg_offset,
5339 max_size - extent_offset);
5340 memset(kaddr + pg_offset, 0, copy_size);
Cong Wang7ac687d2011-11-25 23:14:28 +08005341 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -04005342 }
5343 kfree(tmp);
5344 return 0;
5345}
5346
Chris Masond352ac62008-09-29 15:18:18 -04005347/*
5348 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05005349 * the ugly parts come from merging extents from the disk with the in-ram
5350 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04005351 * where the in-ram extents might be locked pending data=ordered completion.
5352 *
5353 * This also copies inline extents directly into the page.
5354 */
Chris Masond3977122009-01-05 21:25:51 -05005355
Chris Masona52d9a82007-08-27 16:49:44 -04005356struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05005357 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04005358 int create)
5359{
5360 int ret;
5361 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04005362 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04005363 u64 extent_start = 0;
5364 u64 extent_end = 0;
Li Zefan33345d012011-04-20 10:31:50 +08005365 u64 objectid = btrfs_ino(inode);
Chris Masona52d9a82007-08-27 16:49:44 -04005366 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04005367 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04005368 struct btrfs_root *root = BTRFS_I(inode)->root;
5369 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04005370 struct extent_buffer *leaf;
5371 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04005372 struct extent_map *em = NULL;
5373 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05005374 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04005375 struct btrfs_trans_handle *trans = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08005376 int compress_type;
Chris Masona52d9a82007-08-27 16:49:44 -04005377
Chris Masona52d9a82007-08-27 16:49:44 -04005378again:
Chris Mason890871b2009-09-02 16:24:52 -04005379 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05005380 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04005381 if (em)
5382 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04005383 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05005384
Chris Masona52d9a82007-08-27 16:49:44 -04005385 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04005386 if (em->start > start || em->start + em->len <= start)
5387 free_extent_map(em);
5388 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05005389 free_extent_map(em);
5390 else
5391 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005392 }
David Sterba172ddd62011-04-21 00:48:27 +02005393 em = alloc_extent_map();
Chris Masona52d9a82007-08-27 16:49:44 -04005394 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05005395 err = -ENOMEM;
5396 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005397 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005398 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05005399 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05005400 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05005401 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04005402 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04005403
5404 if (!path) {
5405 path = btrfs_alloc_path();
Josef Bacik026fd312011-05-13 10:32:11 -04005406 if (!path) {
5407 err = -ENOMEM;
5408 goto out;
5409 }
5410 /*
5411 * Chances are we'll be called again, so go ahead and do
5412 * readahead
5413 */
5414 path->reada = 1;
Chris Masonf4219502008-07-22 11:18:09 -04005415 }
5416
Chris Mason179e29e2007-11-01 11:28:41 -04005417 ret = btrfs_lookup_file_extent(trans, root, path,
5418 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04005419 if (ret < 0) {
5420 err = ret;
5421 goto out;
5422 }
5423
5424 if (ret != 0) {
5425 if (path->slots[0] == 0)
5426 goto not_found;
5427 path->slots[0]--;
5428 }
5429
Chris Mason5f39d392007-10-15 16:14:19 -04005430 leaf = path->nodes[0];
5431 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04005432 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04005433 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04005434 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5435 found_type = btrfs_key_type(&found_key);
5436 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04005437 found_type != BTRFS_EXTENT_DATA_KEY) {
5438 goto not_found;
5439 }
5440
Chris Mason5f39d392007-10-15 16:14:19 -04005441 found_type = btrfs_file_extent_type(leaf, item);
5442 extent_start = found_key.offset;
Li Zefan261507a02010-12-17 14:21:50 +08005443 compress_type = btrfs_file_extent_compression(leaf, item);
Yan Zhengd899e052008-10-30 14:25:28 -04005444 if (found_type == BTRFS_FILE_EXTENT_REG ||
5445 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04005446 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04005447 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04005448 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
5449 size_t size;
5450 size = btrfs_file_extent_inline_len(leaf, item);
5451 extent_end = (extent_start + size + root->sectorsize - 1) &
5452 ~((u64)root->sectorsize - 1);
5453 }
5454
5455 if (start >= extent_end) {
5456 path->slots[0]++;
5457 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
5458 ret = btrfs_next_leaf(root, path);
5459 if (ret < 0) {
5460 err = ret;
5461 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005462 }
Yan Zheng9036c102008-10-30 14:19:41 -04005463 if (ret > 0)
5464 goto not_found;
5465 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04005466 }
Yan Zheng9036c102008-10-30 14:19:41 -04005467 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5468 if (found_key.objectid != objectid ||
5469 found_key.type != BTRFS_EXTENT_DATA_KEY)
5470 goto not_found;
5471 if (start + len <= found_key.offset)
5472 goto not_found;
5473 em->start = start;
Josef Bacik70c8a912012-10-11 16:54:30 -04005474 em->orig_start = start;
Yan Zheng9036c102008-10-30 14:19:41 -04005475 em->len = found_key.offset - start;
5476 goto not_found_em;
5477 }
5478
Yan Zhengd899e052008-10-30 14:25:28 -04005479 if (found_type == BTRFS_FILE_EXTENT_REG ||
5480 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng9036c102008-10-30 14:19:41 -04005481 em->start = extent_start;
5482 em->len = extent_end - extent_start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005483 em->orig_start = extent_start -
5484 btrfs_file_extent_offset(leaf, item);
Josef Bacikb4939682012-12-03 10:31:19 -05005485 em->orig_block_len = btrfs_file_extent_disk_num_bytes(leaf,
5486 item);
Chris Masondb945352007-10-15 16:15:53 -04005487 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
5488 if (bytenr == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04005489 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04005490 goto insert;
5491 }
Li Zefan261507a02010-12-17 14:21:50 +08005492 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04005493 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08005494 em->compress_type = compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04005495 em->block_start = bytenr;
Josef Bacikb4939682012-12-03 10:31:19 -05005496 em->block_len = em->orig_block_len;
Chris Masonc8b97812008-10-29 14:49:59 -04005497 } else {
5498 bytenr += btrfs_file_extent_offset(leaf, item);
5499 em->block_start = bytenr;
5500 em->block_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04005501 if (found_type == BTRFS_FILE_EXTENT_PREALLOC)
5502 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -04005503 }
Chris Masona52d9a82007-08-27 16:49:44 -04005504 goto insert;
5505 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04005506 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04005507 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04005508 size_t size;
5509 size_t extent_offset;
5510 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04005511
Chris Masona52d9a82007-08-27 16:49:44 -04005512 em->block_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04005513 if (!page || create) {
Yan689f9342007-10-29 11:41:07 -04005514 em->start = extent_start;
Yan Zheng9036c102008-10-30 14:19:41 -04005515 em->len = extent_end - extent_start;
Yan689f9342007-10-29 11:41:07 -04005516 goto out;
5517 }
5518
Yan Zheng9036c102008-10-30 14:19:41 -04005519 size = btrfs_file_extent_inline_len(leaf, item);
5520 extent_offset = page_offset(page) + pg_offset - extent_start;
Chris Mason70dec802008-01-29 09:59:12 -05005521 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04005522 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04005523 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05005524 em->len = (copy_size + root->sectorsize - 1) &
5525 ~((u64)root->sectorsize - 1);
Josef Bacikb4939682012-12-03 10:31:19 -05005526 em->orig_block_len = em->len;
Josef Bacik70c8a912012-10-11 16:54:30 -04005527 em->orig_start = em->start;
Li Zefan261507a02010-12-17 14:21:50 +08005528 if (compress_type) {
Chris Masonc8b97812008-10-29 14:49:59 -04005529 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08005530 em->compress_type = compress_type;
5531 }
Yan689f9342007-10-29 11:41:07 -04005532 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04005533 if (create == 0 && !PageUptodate(page)) {
Li Zefan261507a02010-12-17 14:21:50 +08005534 if (btrfs_file_extent_compression(leaf, item) !=
5535 BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04005536 ret = uncompress_inline(path, inode, page,
5537 pg_offset,
5538 extent_offset, item);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005539 BUG_ON(ret); /* -ENOMEM */
Chris Masonc8b97812008-10-29 14:49:59 -04005540 } else {
5541 map = kmap(page);
5542 read_extent_buffer(leaf, map + pg_offset, ptr,
5543 copy_size);
Chris Mason93c82d52009-09-11 12:36:29 -04005544 if (pg_offset + copy_size < PAGE_CACHE_SIZE) {
5545 memset(map + pg_offset + copy_size, 0,
5546 PAGE_CACHE_SIZE - pg_offset -
5547 copy_size);
5548 }
Chris Masonc8b97812008-10-29 14:49:59 -04005549 kunmap(page);
5550 }
Chris Mason179e29e2007-11-01 11:28:41 -04005551 flush_dcache_page(page);
5552 } else if (create && PageUptodate(page)) {
Jan Schmidt6bf7e082011-12-01 14:35:19 +01005553 BUG();
Chris Mason179e29e2007-11-01 11:28:41 -04005554 if (!trans) {
5555 kunmap(page);
5556 free_extent_map(em);
5557 em = NULL;
Chris Masonff5714c2011-05-28 07:00:39 -04005558
David Sterbab3b4aa72011-04-21 01:20:15 +02005559 btrfs_release_path(path);
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005560 trans = btrfs_join_transaction(root);
Chris Masonff5714c2011-05-28 07:00:39 -04005561
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005562 if (IS_ERR(trans))
5563 return ERR_CAST(trans);
Chris Mason179e29e2007-11-01 11:28:41 -04005564 goto again;
5565 }
Chris Masonc8b97812008-10-29 14:49:59 -04005566 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05005567 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04005568 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04005569 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04005570 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04005571 }
Chris Masond1310b22008-01-24 16:13:08 -05005572 set_extent_uptodate(io_tree, em->start,
Arne Jansen507903b2011-04-06 10:02:20 +00005573 extent_map_end(em) - 1, NULL, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04005574 goto insert;
5575 } else {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00005576 WARN(1, KERN_ERR "btrfs unknown found_type %d\n", found_type);
Chris Masona52d9a82007-08-27 16:49:44 -04005577 }
5578not_found:
5579 em->start = start;
Josef Bacik70c8a912012-10-11 16:54:30 -04005580 em->orig_start = start;
Chris Masond1310b22008-01-24 16:13:08 -05005581 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04005582not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04005583 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04005584 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04005585insert:
David Sterbab3b4aa72011-04-21 01:20:15 +02005586 btrfs_release_path(path);
Chris Masond1310b22008-01-24 16:13:08 -05005587 if (em->start > start || extent_map_end(em) <= start) {
Chris Masond3977122009-01-05 21:25:51 -05005588 printk(KERN_ERR "Btrfs: bad extent! em: [%llu %llu] passed "
5589 "[%llu %llu]\n", (unsigned long long)em->start,
5590 (unsigned long long)em->len,
5591 (unsigned long long)start,
5592 (unsigned long long)len);
Chris Masona52d9a82007-08-27 16:49:44 -04005593 err = -EIO;
5594 goto out;
5595 }
Chris Masond1310b22008-01-24 16:13:08 -05005596
5597 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04005598 write_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005599 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04005600 /* it is possible that someone inserted the extent into the tree
5601 * while we had the lock dropped. It is also possible that
5602 * an overlapping map exists in the tree
5603 */
Chris Masona52d9a82007-08-27 16:49:44 -04005604 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04005605 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005606
5607 ret = 0;
5608
Chris Mason3b951512008-04-17 11:29:12 -04005609 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04005610 if (existing && (existing->start > start ||
5611 existing->start + existing->len <= start)) {
5612 free_extent_map(existing);
5613 existing = NULL;
5614 }
Chris Mason3b951512008-04-17 11:29:12 -04005615 if (!existing) {
5616 existing = lookup_extent_mapping(em_tree, em->start,
5617 em->len);
5618 if (existing) {
5619 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005620 em, start,
5621 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04005622 free_extent_map(existing);
5623 if (err) {
5624 free_extent_map(em);
5625 em = NULL;
5626 }
5627 } else {
5628 err = -EIO;
Chris Mason3b951512008-04-17 11:29:12 -04005629 free_extent_map(em);
5630 em = NULL;
5631 }
5632 } else {
5633 free_extent_map(em);
5634 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005635 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04005636 }
Chris Masona52d9a82007-08-27 16:49:44 -04005637 }
Chris Mason890871b2009-09-02 16:24:52 -04005638 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005639out:
liubo1abe9b82011-03-24 11:18:59 +00005640
Tsutomu Itohf0bd95e2012-10-01 03:08:37 -06005641 if (em)
5642 trace_btrfs_get_extent(root, em);
liubo1abe9b82011-03-24 11:18:59 +00005643
Chris Masonf4219502008-07-22 11:18:09 -04005644 if (path)
5645 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04005646 if (trans) {
5647 ret = btrfs_end_transaction(trans, root);
Chris Masond3977122009-01-05 21:25:51 -05005648 if (!err)
Chris Masona52d9a82007-08-27 16:49:44 -04005649 err = ret;
5650 }
Chris Masona52d9a82007-08-27 16:49:44 -04005651 if (err) {
5652 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04005653 return ERR_PTR(err);
5654 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005655 BUG_ON(!em); /* Error is always set */
Chris Masona52d9a82007-08-27 16:49:44 -04005656 return em;
5657}
5658
Chris Masonec29ed52011-02-23 16:23:20 -05005659struct extent_map *btrfs_get_extent_fiemap(struct inode *inode, struct page *page,
5660 size_t pg_offset, u64 start, u64 len,
5661 int create)
5662{
5663 struct extent_map *em;
5664 struct extent_map *hole_em = NULL;
5665 u64 range_start = start;
5666 u64 end;
5667 u64 found;
5668 u64 found_end;
5669 int err = 0;
5670
5671 em = btrfs_get_extent(inode, page, pg_offset, start, len, create);
5672 if (IS_ERR(em))
5673 return em;
5674 if (em) {
5675 /*
Liu Bof9e4fb52013-01-07 10:10:12 +00005676 * if our em maps to
5677 * - a hole or
5678 * - a pre-alloc extent,
5679 * there might actually be delalloc bytes behind it.
Chris Masonec29ed52011-02-23 16:23:20 -05005680 */
Liu Bof9e4fb52013-01-07 10:10:12 +00005681 if (em->block_start != EXTENT_MAP_HOLE &&
5682 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
Chris Masonec29ed52011-02-23 16:23:20 -05005683 return em;
5684 else
5685 hole_em = em;
5686 }
5687
5688 /* check to see if we've wrapped (len == -1 or similar) */
5689 end = start + len;
5690 if (end < start)
5691 end = (u64)-1;
5692 else
5693 end -= 1;
5694
5695 em = NULL;
5696
5697 /* ok, we didn't find anything, lets look for delalloc */
5698 found = count_range_bits(&BTRFS_I(inode)->io_tree, &range_start,
5699 end, len, EXTENT_DELALLOC, 1);
5700 found_end = range_start + found;
5701 if (found_end < range_start)
5702 found_end = (u64)-1;
5703
5704 /*
5705 * we didn't find anything useful, return
5706 * the original results from get_extent()
5707 */
5708 if (range_start > end || found_end <= start) {
5709 em = hole_em;
5710 hole_em = NULL;
5711 goto out;
5712 }
5713
5714 /* adjust the range_start to make sure it doesn't
5715 * go backwards from the start they passed in
5716 */
5717 range_start = max(start,range_start);
5718 found = found_end - range_start;
5719
5720 if (found > 0) {
5721 u64 hole_start = start;
5722 u64 hole_len = len;
5723
David Sterba172ddd62011-04-21 00:48:27 +02005724 em = alloc_extent_map();
Chris Masonec29ed52011-02-23 16:23:20 -05005725 if (!em) {
5726 err = -ENOMEM;
5727 goto out;
5728 }
5729 /*
5730 * when btrfs_get_extent can't find anything it
5731 * returns one huge hole
5732 *
5733 * make sure what it found really fits our range, and
5734 * adjust to make sure it is based on the start from
5735 * the caller
5736 */
5737 if (hole_em) {
5738 u64 calc_end = extent_map_end(hole_em);
5739
5740 if (calc_end <= start || (hole_em->start > end)) {
5741 free_extent_map(hole_em);
5742 hole_em = NULL;
5743 } else {
5744 hole_start = max(hole_em->start, start);
5745 hole_len = calc_end - hole_start;
5746 }
5747 }
5748 em->bdev = NULL;
5749 if (hole_em && range_start > hole_start) {
5750 /* our hole starts before our delalloc, so we
5751 * have to return just the parts of the hole
5752 * that go until the delalloc starts
5753 */
5754 em->len = min(hole_len,
5755 range_start - hole_start);
5756 em->start = hole_start;
5757 em->orig_start = hole_start;
5758 /*
5759 * don't adjust block start at all,
5760 * it is fixed at EXTENT_MAP_HOLE
5761 */
5762 em->block_start = hole_em->block_start;
5763 em->block_len = hole_len;
Liu Bof9e4fb52013-01-07 10:10:12 +00005764 if (test_bit(EXTENT_FLAG_PREALLOC, &hole_em->flags))
5765 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonec29ed52011-02-23 16:23:20 -05005766 } else {
5767 em->start = range_start;
5768 em->len = found;
5769 em->orig_start = range_start;
5770 em->block_start = EXTENT_MAP_DELALLOC;
5771 em->block_len = found;
5772 }
5773 } else if (hole_em) {
5774 return hole_em;
5775 }
5776out:
5777
5778 free_extent_map(hole_em);
5779 if (err) {
5780 free_extent_map(em);
5781 return ERR_PTR(err);
5782 }
5783 return em;
5784}
5785
Josef Bacik4b46fce2010-05-23 11:00:55 -04005786static struct extent_map *btrfs_new_extent_direct(struct inode *inode,
5787 u64 start, u64 len)
5788{
5789 struct btrfs_root *root = BTRFS_I(inode)->root;
5790 struct btrfs_trans_handle *trans;
Josef Bacik70c8a912012-10-11 16:54:30 -04005791 struct extent_map *em;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005792 struct btrfs_key ins;
5793 u64 alloc_hint;
5794 int ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005795
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005796 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005797 if (IS_ERR(trans))
5798 return ERR_CAST(trans);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005799
5800 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
5801
5802 alloc_hint = get_extent_allocation_hint(inode, start, len);
5803 ret = btrfs_reserve_extent(trans, root, len, root->sectorsize, 0,
Josef Bacik81c9ad22012-01-18 10:56:06 -05005804 alloc_hint, &ins, 1);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005805 if (ret) {
5806 em = ERR_PTR(ret);
5807 goto out;
5808 }
5809
Josef Bacik70c8a912012-10-11 16:54:30 -04005810 em = create_pinned_em(inode, start, ins.offset, start, ins.objectid,
5811 ins.offset, ins.offset, 0);
5812 if (IS_ERR(em))
5813 goto out;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005814
5815 ret = btrfs_add_ordered_extent_dio(inode, start, ins.objectid,
5816 ins.offset, ins.offset, 0);
5817 if (ret) {
5818 btrfs_free_reserved_extent(root, ins.objectid, ins.offset);
5819 em = ERR_PTR(ret);
5820 }
5821out:
5822 btrfs_end_transaction(trans, root);
5823 return em;
5824}
5825
Chris Mason46bfbb52010-05-26 11:04:10 -04005826/*
5827 * returns 1 when the nocow is safe, < 1 on error, 0 if the
5828 * block must be cow'd
5829 */
5830static noinline int can_nocow_odirect(struct btrfs_trans_handle *trans,
5831 struct inode *inode, u64 offset, u64 len)
5832{
5833 struct btrfs_path *path;
5834 int ret;
5835 struct extent_buffer *leaf;
5836 struct btrfs_root *root = BTRFS_I(inode)->root;
5837 struct btrfs_file_extent_item *fi;
5838 struct btrfs_key key;
5839 u64 disk_bytenr;
5840 u64 backref_offset;
5841 u64 extent_end;
5842 u64 num_bytes;
5843 int slot;
5844 int found_type;
5845
5846 path = btrfs_alloc_path();
5847 if (!path)
5848 return -ENOMEM;
5849
Li Zefan33345d012011-04-20 10:31:50 +08005850 ret = btrfs_lookup_file_extent(trans, root, path, btrfs_ino(inode),
Chris Mason46bfbb52010-05-26 11:04:10 -04005851 offset, 0);
5852 if (ret < 0)
5853 goto out;
5854
5855 slot = path->slots[0];
5856 if (ret == 1) {
5857 if (slot == 0) {
5858 /* can't find the item, must cow */
5859 ret = 0;
5860 goto out;
5861 }
5862 slot--;
5863 }
5864 ret = 0;
5865 leaf = path->nodes[0];
5866 btrfs_item_key_to_cpu(leaf, &key, slot);
Li Zefan33345d012011-04-20 10:31:50 +08005867 if (key.objectid != btrfs_ino(inode) ||
Chris Mason46bfbb52010-05-26 11:04:10 -04005868 key.type != BTRFS_EXTENT_DATA_KEY) {
5869 /* not our file or wrong item type, must cow */
5870 goto out;
5871 }
5872
5873 if (key.offset > offset) {
5874 /* Wrong offset, must cow */
5875 goto out;
5876 }
5877
5878 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
5879 found_type = btrfs_file_extent_type(leaf, fi);
5880 if (found_type != BTRFS_FILE_EXTENT_REG &&
5881 found_type != BTRFS_FILE_EXTENT_PREALLOC) {
5882 /* not a regular extent, must cow */
5883 goto out;
5884 }
5885 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
5886 backref_offset = btrfs_file_extent_offset(leaf, fi);
5887
5888 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
5889 if (extent_end < offset + len) {
5890 /* extent doesn't include our full range, must cow */
5891 goto out;
5892 }
5893
5894 if (btrfs_extent_readonly(root, disk_bytenr))
5895 goto out;
5896
5897 /*
5898 * look for other files referencing this extent, if we
5899 * find any we must cow
5900 */
Li Zefan33345d012011-04-20 10:31:50 +08005901 if (btrfs_cross_ref_exist(trans, root, btrfs_ino(inode),
Chris Mason46bfbb52010-05-26 11:04:10 -04005902 key.offset - backref_offset, disk_bytenr))
5903 goto out;
5904
5905 /*
5906 * adjust disk_bytenr and num_bytes to cover just the bytes
5907 * in this extent we are about to write. If there
5908 * are any csums in that range we have to cow in order
5909 * to keep the csums correct
5910 */
5911 disk_bytenr += backref_offset;
5912 disk_bytenr += offset - key.offset;
5913 num_bytes = min(offset + len, extent_end) - offset;
5914 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
5915 goto out;
5916 /*
5917 * all of the above have passed, it is safe to overwrite this extent
5918 * without cow
5919 */
5920 ret = 1;
5921out:
5922 btrfs_free_path(path);
5923 return ret;
5924}
5925
Josef Bacikeb838e72012-07-31 16:28:48 -04005926static int lock_extent_direct(struct inode *inode, u64 lockstart, u64 lockend,
5927 struct extent_state **cached_state, int writing)
5928{
5929 struct btrfs_ordered_extent *ordered;
5930 int ret = 0;
5931
5932 while (1) {
5933 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
5934 0, cached_state);
5935 /*
5936 * We're concerned with the entire range that we're going to be
5937 * doing DIO to, so we need to make sure theres no ordered
5938 * extents in this range.
5939 */
5940 ordered = btrfs_lookup_ordered_range(inode, lockstart,
5941 lockend - lockstart + 1);
5942
5943 /*
5944 * We need to make sure there are no buffered pages in this
5945 * range either, we could have raced between the invalidate in
5946 * generic_file_direct_write and locking the extent. The
5947 * invalidate needs to happen so that reads after a write do not
5948 * get stale data.
5949 */
5950 if (!ordered && (!writing ||
5951 !test_range_bit(&BTRFS_I(inode)->io_tree,
5952 lockstart, lockend, EXTENT_UPTODATE, 0,
5953 *cached_state)))
5954 break;
5955
5956 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
5957 cached_state, GFP_NOFS);
5958
5959 if (ordered) {
5960 btrfs_start_ordered_extent(inode, ordered, 1);
5961 btrfs_put_ordered_extent(ordered);
5962 } else {
5963 /* Screw you mmap */
5964 ret = filemap_write_and_wait_range(inode->i_mapping,
5965 lockstart,
5966 lockend);
5967 if (ret)
5968 break;
5969
5970 /*
5971 * If we found a page that couldn't be invalidated just
5972 * fall back to buffered.
5973 */
5974 ret = invalidate_inode_pages2_range(inode->i_mapping,
5975 lockstart >> PAGE_CACHE_SHIFT,
5976 lockend >> PAGE_CACHE_SHIFT);
5977 if (ret)
5978 break;
5979 }
5980
5981 cond_resched();
5982 }
5983
5984 return ret;
5985}
5986
Josef Bacik69ffb542012-09-11 15:40:07 -04005987static struct extent_map *create_pinned_em(struct inode *inode, u64 start,
5988 u64 len, u64 orig_start,
5989 u64 block_start, u64 block_len,
Josef Bacikb4939682012-12-03 10:31:19 -05005990 u64 orig_block_len, int type)
Josef Bacik69ffb542012-09-11 15:40:07 -04005991{
5992 struct extent_map_tree *em_tree;
5993 struct extent_map *em;
5994 struct btrfs_root *root = BTRFS_I(inode)->root;
5995 int ret;
5996
5997 em_tree = &BTRFS_I(inode)->extent_tree;
5998 em = alloc_extent_map();
5999 if (!em)
6000 return ERR_PTR(-ENOMEM);
6001
6002 em->start = start;
6003 em->orig_start = orig_start;
Josef Bacik2ab28f32012-10-12 15:27:49 -04006004 em->mod_start = start;
6005 em->mod_len = len;
Josef Bacik69ffb542012-09-11 15:40:07 -04006006 em->len = len;
6007 em->block_len = block_len;
6008 em->block_start = block_start;
6009 em->bdev = root->fs_info->fs_devices->latest_bdev;
Josef Bacikb4939682012-12-03 10:31:19 -05006010 em->orig_block_len = orig_block_len;
Josef Bacik70c8a912012-10-11 16:54:30 -04006011 em->generation = -1;
Josef Bacik69ffb542012-09-11 15:40:07 -04006012 set_bit(EXTENT_FLAG_PINNED, &em->flags);
6013 if (type == BTRFS_ORDERED_PREALLOC)
Josef Bacikb11e2342012-12-03 10:58:15 -05006014 set_bit(EXTENT_FLAG_FILLING, &em->flags);
Josef Bacik69ffb542012-09-11 15:40:07 -04006015
6016 do {
6017 btrfs_drop_extent_cache(inode, em->start,
6018 em->start + em->len - 1, 0);
6019 write_lock(&em_tree->lock);
6020 ret = add_extent_mapping(em_tree, em);
Josef Bacik70c8a912012-10-11 16:54:30 -04006021 if (!ret)
6022 list_move(&em->list,
6023 &em_tree->modified_extents);
Josef Bacik69ffb542012-09-11 15:40:07 -04006024 write_unlock(&em_tree->lock);
6025 } while (ret == -EEXIST);
6026
6027 if (ret) {
6028 free_extent_map(em);
6029 return ERR_PTR(ret);
6030 }
6031
6032 return em;
6033}
6034
6035
Josef Bacik4b46fce2010-05-23 11:00:55 -04006036static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock,
6037 struct buffer_head *bh_result, int create)
6038{
6039 struct extent_map *em;
6040 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikeb838e72012-07-31 16:28:48 -04006041 struct extent_state *cached_state = NULL;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006042 u64 start = iblock << inode->i_blkbits;
Josef Bacikeb838e72012-07-31 16:28:48 -04006043 u64 lockstart, lockend;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006044 u64 len = bh_result->b_size;
Chris Mason46bfbb52010-05-26 11:04:10 -04006045 struct btrfs_trans_handle *trans;
Josef Bacikeb838e72012-07-31 16:28:48 -04006046 int unlock_bits = EXTENT_LOCKED;
6047 int ret;
6048
Josef Bacikeb838e72012-07-31 16:28:48 -04006049 if (create) {
6050 ret = btrfs_delalloc_reserve_space(inode, len);
6051 if (ret)
6052 return ret;
6053 unlock_bits |= EXTENT_DELALLOC | EXTENT_DIRTY;
Josef Bacikc3298612012-08-03 16:49:19 -04006054 } else {
6055 len = min_t(u64, len, root->sectorsize);
Josef Bacikeb838e72012-07-31 16:28:48 -04006056 }
6057
Josef Bacikc3298612012-08-03 16:49:19 -04006058 lockstart = start;
6059 lockend = start + len - 1;
6060
Josef Bacikeb838e72012-07-31 16:28:48 -04006061 /*
6062 * If this errors out it's because we couldn't invalidate pagecache for
6063 * this range and we need to fallback to buffered.
6064 */
6065 if (lock_extent_direct(inode, lockstart, lockend, &cached_state, create))
6066 return -ENOTBLK;
6067
6068 if (create) {
6069 ret = set_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
6070 lockend, EXTENT_DELALLOC, NULL,
6071 &cached_state, GFP_NOFS);
6072 if (ret)
6073 goto unlock_err;
6074 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04006075
6076 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
Josef Bacikeb838e72012-07-31 16:28:48 -04006077 if (IS_ERR(em)) {
6078 ret = PTR_ERR(em);
6079 goto unlock_err;
6080 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04006081
6082 /*
6083 * Ok for INLINE and COMPRESSED extents we need to fallback on buffered
6084 * io. INLINE is special, and we could probably kludge it in here, but
6085 * it's still buffered so for safety lets just fall back to the generic
6086 * buffered path.
6087 *
6088 * For COMPRESSED we _have_ to read the entire extent in so we can
6089 * decompress it, so there will be buffering required no matter what we
6090 * do, so go ahead and fallback to buffered.
6091 *
6092 * We return -ENOTBLK because thats what makes DIO go ahead and go back
6093 * to buffered IO. Don't blame me, this is the price we pay for using
6094 * the generic code.
6095 */
6096 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) ||
6097 em->block_start == EXTENT_MAP_INLINE) {
6098 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04006099 ret = -ENOTBLK;
6100 goto unlock_err;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006101 }
6102
6103 /* Just a good old fashioned hole, return */
6104 if (!create && (em->block_start == EXTENT_MAP_HOLE ||
6105 test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
6106 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04006107 ret = 0;
6108 goto unlock_err;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006109 }
6110
6111 /*
6112 * We don't allocate a new extent in the following cases
6113 *
6114 * 1) The inode is marked as NODATACOW. In this case we'll just use the
6115 * existing extent.
6116 * 2) The extent is marked as PREALLOC. We're good to go here and can
6117 * just use the extent.
6118 *
6119 */
Chris Mason46bfbb52010-05-26 11:04:10 -04006120 if (!create) {
Josef Bacikeb838e72012-07-31 16:28:48 -04006121 len = min(len, em->len - (start - em->start));
6122 lockstart = start + len;
6123 goto unlock;
Chris Mason46bfbb52010-05-26 11:04:10 -04006124 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04006125
6126 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
6127 ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
6128 em->block_start != EXTENT_MAP_HOLE)) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04006129 int type;
6130 int ret;
Chris Mason46bfbb52010-05-26 11:04:10 -04006131 u64 block_start;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006132
6133 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
6134 type = BTRFS_ORDERED_PREALLOC;
6135 else
6136 type = BTRFS_ORDERED_NOCOW;
Chris Mason46bfbb52010-05-26 11:04:10 -04006137 len = min(len, em->len - (start - em->start));
Josef Bacik4b46fce2010-05-23 11:00:55 -04006138 block_start = em->block_start + (start - em->start);
Chris Mason46bfbb52010-05-26 11:04:10 -04006139
6140 /*
6141 * we're not going to log anything, but we do need
6142 * to make sure the current transaction stays open
6143 * while we look for nocow cross refs
6144 */
Josef Bacik7a7eaa42011-04-13 12:54:33 -04006145 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00006146 if (IS_ERR(trans))
Chris Mason46bfbb52010-05-26 11:04:10 -04006147 goto must_cow;
6148
6149 if (can_nocow_odirect(trans, inode, start, len) == 1) {
Josef Bacik70c8a912012-10-11 16:54:30 -04006150 u64 orig_start = em->orig_start;
Josef Bacikb4939682012-12-03 10:31:19 -05006151 u64 orig_block_len = em->orig_block_len;
Josef Bacik69ffb542012-09-11 15:40:07 -04006152
6153 if (type == BTRFS_ORDERED_PREALLOC) {
6154 free_extent_map(em);
6155 em = create_pinned_em(inode, start, len,
6156 orig_start,
Josef Bacikb4939682012-12-03 10:31:19 -05006157 block_start, len,
6158 orig_block_len, type);
Josef Bacik69ffb542012-09-11 15:40:07 -04006159 if (IS_ERR(em)) {
6160 btrfs_end_transaction(trans, root);
6161 goto unlock_err;
6162 }
6163 }
6164
Chris Mason46bfbb52010-05-26 11:04:10 -04006165 ret = btrfs_add_ordered_extent_dio(inode, start,
6166 block_start, len, len, type);
6167 btrfs_end_transaction(trans, root);
6168 if (ret) {
6169 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04006170 goto unlock_err;
Chris Mason46bfbb52010-05-26 11:04:10 -04006171 }
6172 goto unlock;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006173 }
Chris Mason46bfbb52010-05-26 11:04:10 -04006174 btrfs_end_transaction(trans, root);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006175 }
Chris Mason46bfbb52010-05-26 11:04:10 -04006176must_cow:
6177 /*
6178 * this will cow the extent, reset the len in case we changed
6179 * it above
6180 */
6181 len = bh_result->b_size;
Josef Bacik70c8a912012-10-11 16:54:30 -04006182 free_extent_map(em);
6183 em = btrfs_new_extent_direct(inode, start, len);
Josef Bacikeb838e72012-07-31 16:28:48 -04006184 if (IS_ERR(em)) {
6185 ret = PTR_ERR(em);
6186 goto unlock_err;
6187 }
Chris Mason46bfbb52010-05-26 11:04:10 -04006188 len = min(len, em->len - (start - em->start));
6189unlock:
Josef Bacik4b46fce2010-05-23 11:00:55 -04006190 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
6191 inode->i_blkbits;
Chris Mason46bfbb52010-05-26 11:04:10 -04006192 bh_result->b_size = len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006193 bh_result->b_bdev = em->bdev;
6194 set_buffer_mapped(bh_result);
Josef Bacikc3473e82012-06-19 10:59:00 -04006195 if (create) {
6196 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
6197 set_buffer_new(bh_result);
6198
6199 /*
6200 * Need to update the i_size under the extent lock so buffered
6201 * readers will get the updated i_size when we unlock.
6202 */
6203 if (start + len > i_size_read(inode))
6204 i_size_write(inode, start + len);
6205 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04006206
Josef Bacikeb838e72012-07-31 16:28:48 -04006207 /*
6208 * In the case of write we need to clear and unlock the entire range,
6209 * in the case of read we need to unlock only the end area that we
6210 * aren't using if there is any left over space.
6211 */
Liu Bo24c03fa2012-08-22 20:10:38 -06006212 if (lockstart < lockend) {
6213 if (create && len < lockend - lockstart) {
6214 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
Liu Bo9e8a4a82012-09-05 19:10:51 -06006215 lockstart + len - 1,
6216 unlock_bits | EXTENT_DEFRAG, 1, 0,
Liu Bo24c03fa2012-08-22 20:10:38 -06006217 &cached_state, GFP_NOFS);
6218 /*
6219 * Beside unlock, we also need to cleanup reserved space
6220 * for the left range by attaching EXTENT_DO_ACCOUNTING.
6221 */
6222 clear_extent_bit(&BTRFS_I(inode)->io_tree,
6223 lockstart + len, lockend,
Liu Bo9e8a4a82012-09-05 19:10:51 -06006224 unlock_bits | EXTENT_DO_ACCOUNTING |
6225 EXTENT_DEFRAG, 1, 0, NULL, GFP_NOFS);
Liu Bo24c03fa2012-08-22 20:10:38 -06006226 } else {
6227 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
6228 lockend, unlock_bits, 1, 0,
6229 &cached_state, GFP_NOFS);
6230 }
6231 } else {
Josef Bacikeb838e72012-07-31 16:28:48 -04006232 free_extent_state(cached_state);
Liu Bo24c03fa2012-08-22 20:10:38 -06006233 }
Josef Bacikeb838e72012-07-31 16:28:48 -04006234
Josef Bacik4b46fce2010-05-23 11:00:55 -04006235 free_extent_map(em);
6236
6237 return 0;
Josef Bacikeb838e72012-07-31 16:28:48 -04006238
6239unlock_err:
6240 if (create)
6241 unlock_bits |= EXTENT_DO_ACCOUNTING;
6242
6243 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6244 unlock_bits, 1, 0, &cached_state, GFP_NOFS);
6245 return ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006246}
6247
6248struct btrfs_dio_private {
6249 struct inode *inode;
6250 u64 logical_offset;
6251 u64 disk_bytenr;
6252 u64 bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006253 void *private;
Miao Xiee65e1532010-11-22 03:04:43 +00006254
6255 /* number of bios pending for this dio */
6256 atomic_t pending_bios;
6257
6258 /* IO errors */
6259 int errors;
6260
6261 struct bio *orig_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006262};
6263
6264static void btrfs_endio_direct_read(struct bio *bio, int err)
6265{
Miao Xiee65e1532010-11-22 03:04:43 +00006266 struct btrfs_dio_private *dip = bio->bi_private;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006267 struct bio_vec *bvec_end = bio->bi_io_vec + bio->bi_vcnt - 1;
6268 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006269 struct inode *inode = dip->inode;
6270 struct btrfs_root *root = BTRFS_I(inode)->root;
6271 u64 start;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006272
6273 start = dip->logical_offset;
6274 do {
6275 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)) {
6276 struct page *page = bvec->bv_page;
6277 char *kaddr;
6278 u32 csum = ~(u32)0;
Josef Bacikc3298612012-08-03 16:49:19 -04006279 u64 private = ~(u32)0;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006280 unsigned long flags;
6281
Josef Bacikc3298612012-08-03 16:49:19 -04006282 if (get_state_private(&BTRFS_I(inode)->io_tree,
6283 start, &private))
6284 goto failed;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006285 local_irq_save(flags);
Cong Wang7ac687d2011-11-25 23:14:28 +08006286 kaddr = kmap_atomic(page);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006287 csum = btrfs_csum_data(root, kaddr + bvec->bv_offset,
6288 csum, bvec->bv_len);
6289 btrfs_csum_final(csum, (char *)&csum);
Cong Wang7ac687d2011-11-25 23:14:28 +08006290 kunmap_atomic(kaddr);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006291 local_irq_restore(flags);
6292
6293 flush_dcache_page(bvec->bv_page);
Josef Bacikc3298612012-08-03 16:49:19 -04006294 if (csum != private) {
6295failed:
Li Zefan33345d012011-04-20 10:31:50 +08006296 printk(KERN_ERR "btrfs csum failed ino %llu off"
Josef Bacik4b46fce2010-05-23 11:00:55 -04006297 " %llu csum %u private %u\n",
Li Zefan33345d012011-04-20 10:31:50 +08006298 (unsigned long long)btrfs_ino(inode),
6299 (unsigned long long)start,
Josef Bacikc3298612012-08-03 16:49:19 -04006300 csum, (unsigned)private);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006301 err = -EIO;
6302 }
6303 }
6304
6305 start += bvec->bv_len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006306 bvec++;
6307 } while (bvec <= bvec_end);
6308
6309 unlock_extent(&BTRFS_I(inode)->io_tree, dip->logical_offset,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006310 dip->logical_offset + dip->bytes - 1);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006311 bio->bi_private = dip->private;
6312
Josef Bacik4b46fce2010-05-23 11:00:55 -04006313 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04006314
6315 /* If we had a csum failure make sure to clear the uptodate flag */
6316 if (err)
6317 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006318 dio_end_io(bio, err);
6319}
6320
6321static void btrfs_endio_direct_write(struct bio *bio, int err)
6322{
6323 struct btrfs_dio_private *dip = bio->bi_private;
6324 struct inode *inode = dip->inode;
6325 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006326 struct btrfs_ordered_extent *ordered = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05006327 u64 ordered_offset = dip->logical_offset;
6328 u64 ordered_bytes = dip->bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006329 int ret;
6330
6331 if (err)
6332 goto out_done;
Chris Mason163cf092010-11-28 19:56:33 -05006333again:
6334 ret = btrfs_dec_test_first_ordered_pending(inode, &ordered,
6335 &ordered_offset,
Josef Bacik5fd02042012-05-02 14:00:54 -04006336 ordered_bytes, !err);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006337 if (!ret)
Chris Mason163cf092010-11-28 19:56:33 -05006338 goto out_test;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006339
Josef Bacik5fd02042012-05-02 14:00:54 -04006340 ordered->work.func = finish_ordered_fn;
6341 ordered->work.flags = 0;
6342 btrfs_queue_worker(&root->fs_info->endio_write_workers,
6343 &ordered->work);
Chris Mason163cf092010-11-28 19:56:33 -05006344out_test:
6345 /*
6346 * our bio might span multiple ordered extents. If we haven't
6347 * completed the accounting for the whole dio, go back and try again
6348 */
6349 if (ordered_offset < dip->logical_offset + dip->bytes) {
6350 ordered_bytes = dip->logical_offset + dip->bytes -
6351 ordered_offset;
Josef Bacik5fd02042012-05-02 14:00:54 -04006352 ordered = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05006353 goto again;
6354 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04006355out_done:
6356 bio->bi_private = dip->private;
6357
Josef Bacik4b46fce2010-05-23 11:00:55 -04006358 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04006359
6360 /* If we had an error make sure to clear the uptodate flag */
6361 if (err)
6362 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006363 dio_end_io(bio, err);
6364}
6365
Chris Masoneaf25d92010-05-25 09:48:28 -04006366static int __btrfs_submit_bio_start_direct_io(struct inode *inode, int rw,
6367 struct bio *bio, int mirror_num,
6368 unsigned long bio_flags, u64 offset)
6369{
6370 int ret;
6371 struct btrfs_root *root = BTRFS_I(inode)->root;
6372 ret = btrfs_csum_one_bio(root, inode, bio, offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006373 BUG_ON(ret); /* -ENOMEM */
Chris Masoneaf25d92010-05-25 09:48:28 -04006374 return 0;
6375}
6376
Miao Xiee65e1532010-11-22 03:04:43 +00006377static void btrfs_end_dio_bio(struct bio *bio, int err)
6378{
6379 struct btrfs_dio_private *dip = bio->bi_private;
6380
6381 if (err) {
Li Zefan33345d012011-04-20 10:31:50 +08006382 printk(KERN_ERR "btrfs direct IO failed ino %llu rw %lu "
Jan Beulich3dd14622010-12-07 14:54:09 +00006383 "sector %#Lx len %u err no %d\n",
Li Zefan33345d012011-04-20 10:31:50 +08006384 (unsigned long long)btrfs_ino(dip->inode), bio->bi_rw,
Jan Beulich3dd14622010-12-07 14:54:09 +00006385 (unsigned long long)bio->bi_sector, bio->bi_size, err);
Miao Xiee65e1532010-11-22 03:04:43 +00006386 dip->errors = 1;
6387
6388 /*
6389 * before atomic variable goto zero, we must make sure
6390 * dip->errors is perceived to be set.
6391 */
6392 smp_mb__before_atomic_dec();
6393 }
6394
6395 /* if there are more bios still pending for this dio, just exit */
6396 if (!atomic_dec_and_test(&dip->pending_bios))
6397 goto out;
6398
6399 if (dip->errors)
6400 bio_io_error(dip->orig_bio);
6401 else {
6402 set_bit(BIO_UPTODATE, &dip->orig_bio->bi_flags);
6403 bio_endio(dip->orig_bio, 0);
6404 }
6405out:
6406 bio_put(bio);
6407}
6408
6409static struct bio *btrfs_dio_bio_alloc(struct block_device *bdev,
6410 u64 first_sector, gfp_t gfp_flags)
6411{
6412 int nr_vecs = bio_get_nr_vecs(bdev);
6413 return btrfs_bio_alloc(bdev, first_sector, nr_vecs, gfp_flags);
6414}
6415
6416static inline int __btrfs_submit_dio_bio(struct bio *bio, struct inode *inode,
6417 int rw, u64 file_offset, int skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04006418 int async_submit)
Miao Xiee65e1532010-11-22 03:04:43 +00006419{
6420 int write = rw & REQ_WRITE;
6421 struct btrfs_root *root = BTRFS_I(inode)->root;
6422 int ret;
6423
Josef Bacikb812ce22012-11-16 13:56:32 -05006424 if (async_submit)
6425 async_submit = !atomic_read(&BTRFS_I(inode)->sync_writers);
6426
Miao Xiee65e1532010-11-22 03:04:43 +00006427 bio_get(bio);
Josef Bacik5fd02042012-05-02 14:00:54 -04006428
6429 if (!write) {
6430 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
6431 if (ret)
6432 goto err;
6433 }
Miao Xiee65e1532010-11-22 03:04:43 +00006434
Josef Bacik1ae39932011-04-06 14:41:34 -04006435 if (skip_sum)
6436 goto map;
6437
6438 if (write && async_submit) {
Miao Xiee65e1532010-11-22 03:04:43 +00006439 ret = btrfs_wq_submit_bio(root->fs_info,
6440 inode, rw, bio, 0, 0,
6441 file_offset,
6442 __btrfs_submit_bio_start_direct_io,
6443 __btrfs_submit_bio_done);
6444 goto err;
Josef Bacik1ae39932011-04-06 14:41:34 -04006445 } else if (write) {
6446 /*
6447 * If we aren't doing async submit, calculate the csum of the
6448 * bio now.
6449 */
6450 ret = btrfs_csum_one_bio(root, inode, bio, file_offset, 1);
6451 if (ret)
6452 goto err;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00006453 } else if (!skip_sum) {
Josef Bacikc3298612012-08-03 16:49:19 -04006454 ret = btrfs_lookup_bio_sums_dio(root, inode, bio, file_offset);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00006455 if (ret)
6456 goto err;
6457 }
Miao Xiee65e1532010-11-22 03:04:43 +00006458
Josef Bacik1ae39932011-04-06 14:41:34 -04006459map:
6460 ret = btrfs_map_bio(root, rw, bio, 0, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00006461err:
6462 bio_put(bio);
6463 return ret;
6464}
6465
6466static int btrfs_submit_direct_hook(int rw, struct btrfs_dio_private *dip,
6467 int skip_sum)
6468{
6469 struct inode *inode = dip->inode;
6470 struct btrfs_root *root = BTRFS_I(inode)->root;
Miao Xiee65e1532010-11-22 03:04:43 +00006471 struct bio *bio;
6472 struct bio *orig_bio = dip->orig_bio;
6473 struct bio_vec *bvec = orig_bio->bi_io_vec;
6474 u64 start_sector = orig_bio->bi_sector;
6475 u64 file_offset = dip->logical_offset;
6476 u64 submit_len = 0;
6477 u64 map_length;
6478 int nr_pages = 0;
Miao Xiee65e1532010-11-22 03:04:43 +00006479 int ret = 0;
Josef Bacik1ae39932011-04-06 14:41:34 -04006480 int async_submit = 0;
Miao Xiee65e1532010-11-22 03:04:43 +00006481
Miao Xiee65e1532010-11-22 03:04:43 +00006482 map_length = orig_bio->bi_size;
Stefan Behrens3ec706c2012-11-05 15:46:42 +01006483 ret = btrfs_map_block(root->fs_info, READ, start_sector << 9,
Miao Xiee65e1532010-11-22 03:04:43 +00006484 &map_length, NULL, 0);
6485 if (ret) {
Josef Bacik64728bb2011-04-25 19:43:52 -04006486 bio_put(orig_bio);
Miao Xiee65e1532010-11-22 03:04:43 +00006487 return -EIO;
6488 }
6489
Josef Bacik02f57c72011-04-06 14:25:44 -04006490 if (map_length >= orig_bio->bi_size) {
6491 bio = orig_bio;
6492 goto submit;
6493 }
6494
Josef Bacik1ae39932011-04-06 14:41:34 -04006495 async_submit = 1;
Josef Bacik02f57c72011-04-06 14:25:44 -04006496 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev, start_sector, GFP_NOFS);
6497 if (!bio)
6498 return -ENOMEM;
6499 bio->bi_private = dip;
6500 bio->bi_end_io = btrfs_end_dio_bio;
6501 atomic_inc(&dip->pending_bios);
6502
Miao Xiee65e1532010-11-22 03:04:43 +00006503 while (bvec <= (orig_bio->bi_io_vec + orig_bio->bi_vcnt - 1)) {
6504 if (unlikely(map_length < submit_len + bvec->bv_len ||
6505 bio_add_page(bio, bvec->bv_page, bvec->bv_len,
6506 bvec->bv_offset) < bvec->bv_len)) {
6507 /*
6508 * inc the count before we submit the bio so
6509 * we know the end IO handler won't happen before
6510 * we inc the count. Otherwise, the dip might get freed
6511 * before we're done setting it up
6512 */
6513 atomic_inc(&dip->pending_bios);
6514 ret = __btrfs_submit_dio_bio(bio, inode, rw,
6515 file_offset, skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04006516 async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00006517 if (ret) {
6518 bio_put(bio);
6519 atomic_dec(&dip->pending_bios);
6520 goto out_err;
6521 }
6522
Miao Xiee65e1532010-11-22 03:04:43 +00006523 start_sector += submit_len >> 9;
6524 file_offset += submit_len;
6525
6526 submit_len = 0;
6527 nr_pages = 0;
6528
6529 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev,
6530 start_sector, GFP_NOFS);
6531 if (!bio)
6532 goto out_err;
6533 bio->bi_private = dip;
6534 bio->bi_end_io = btrfs_end_dio_bio;
6535
6536 map_length = orig_bio->bi_size;
Stefan Behrens3ec706c2012-11-05 15:46:42 +01006537 ret = btrfs_map_block(root->fs_info, READ,
6538 start_sector << 9,
Miao Xiee65e1532010-11-22 03:04:43 +00006539 &map_length, NULL, 0);
6540 if (ret) {
6541 bio_put(bio);
6542 goto out_err;
6543 }
6544 } else {
6545 submit_len += bvec->bv_len;
6546 nr_pages ++;
6547 bvec++;
6548 }
6549 }
6550
Josef Bacik02f57c72011-04-06 14:25:44 -04006551submit:
Miao Xiee65e1532010-11-22 03:04:43 +00006552 ret = __btrfs_submit_dio_bio(bio, inode, rw, file_offset, skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04006553 async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00006554 if (!ret)
6555 return 0;
6556
6557 bio_put(bio);
6558out_err:
6559 dip->errors = 1;
6560 /*
6561 * before atomic variable goto zero, we must
6562 * make sure dip->errors is perceived to be set.
6563 */
6564 smp_mb__before_atomic_dec();
6565 if (atomic_dec_and_test(&dip->pending_bios))
6566 bio_io_error(dip->orig_bio);
6567
6568 /* bio_end_io() will handle error, so we needn't return it */
6569 return 0;
6570}
6571
Josef Bacik4b46fce2010-05-23 11:00:55 -04006572static void btrfs_submit_direct(int rw, struct bio *bio, struct inode *inode,
6573 loff_t file_offset)
6574{
6575 struct btrfs_root *root = BTRFS_I(inode)->root;
6576 struct btrfs_dio_private *dip;
6577 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006578 int skip_sum;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02006579 int write = rw & REQ_WRITE;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006580 int ret = 0;
6581
6582 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
6583
6584 dip = kmalloc(sizeof(*dip), GFP_NOFS);
6585 if (!dip) {
6586 ret = -ENOMEM;
6587 goto free_ordered;
6588 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04006589
6590 dip->private = bio->bi_private;
6591 dip->inode = inode;
6592 dip->logical_offset = file_offset;
6593
Josef Bacik4b46fce2010-05-23 11:00:55 -04006594 dip->bytes = 0;
6595 do {
6596 dip->bytes += bvec->bv_len;
6597 bvec++;
6598 } while (bvec <= (bio->bi_io_vec + bio->bi_vcnt - 1));
6599
Chris Mason46bfbb52010-05-26 11:04:10 -04006600 dip->disk_bytenr = (u64)bio->bi_sector << 9;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006601 bio->bi_private = dip;
Miao Xiee65e1532010-11-22 03:04:43 +00006602 dip->errors = 0;
6603 dip->orig_bio = bio;
6604 atomic_set(&dip->pending_bios, 0);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006605
6606 if (write)
6607 bio->bi_end_io = btrfs_endio_direct_write;
6608 else
6609 bio->bi_end_io = btrfs_endio_direct_read;
6610
Miao Xiee65e1532010-11-22 03:04:43 +00006611 ret = btrfs_submit_direct_hook(rw, dip, skip_sum);
6612 if (!ret)
Chris Masoneaf25d92010-05-25 09:48:28 -04006613 return;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006614free_ordered:
6615 /*
6616 * If this is a write, we need to clean up the reserved space and kill
6617 * the ordered extent.
6618 */
6619 if (write) {
6620 struct btrfs_ordered_extent *ordered;
Josef Bacik955256f2010-11-19 09:41:10 -05006621 ordered = btrfs_lookup_ordered_extent(inode, file_offset);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006622 if (!test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags) &&
6623 !test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags))
6624 btrfs_free_reserved_extent(root, ordered->start,
6625 ordered->disk_len);
6626 btrfs_put_ordered_extent(ordered);
6627 btrfs_put_ordered_extent(ordered);
6628 }
6629 bio_endio(bio, ret);
6630}
6631
Chris Mason5a5f79b2010-05-26 21:33:37 -04006632static ssize_t check_direct_IO(struct btrfs_root *root, int rw, struct kiocb *iocb,
6633 const struct iovec *iov, loff_t offset,
6634 unsigned long nr_segs)
6635{
6636 int seg;
Josef Bacika1b75f72011-04-08 15:51:18 +00006637 int i;
Chris Mason5a5f79b2010-05-26 21:33:37 -04006638 size_t size;
6639 unsigned long addr;
6640 unsigned blocksize_mask = root->sectorsize - 1;
6641 ssize_t retval = -EINVAL;
6642 loff_t end = offset;
6643
6644 if (offset & blocksize_mask)
6645 goto out;
6646
6647 /* Check the memory alignment. Blocks cannot straddle pages */
6648 for (seg = 0; seg < nr_segs; seg++) {
6649 addr = (unsigned long)iov[seg].iov_base;
6650 size = iov[seg].iov_len;
6651 end += size;
Josef Bacika1b75f72011-04-08 15:51:18 +00006652 if ((addr & blocksize_mask) || (size & blocksize_mask))
Chris Mason5a5f79b2010-05-26 21:33:37 -04006653 goto out;
Josef Bacika1b75f72011-04-08 15:51:18 +00006654
6655 /* If this is a write we don't need to check anymore */
6656 if (rw & WRITE)
6657 continue;
6658
6659 /*
6660 * Check to make sure we don't have duplicate iov_base's in this
6661 * iovec, if so return EINVAL, otherwise we'll get csum errors
6662 * when reading back.
6663 */
6664 for (i = seg + 1; i < nr_segs; i++) {
6665 if (iov[seg].iov_base == iov[i].iov_base)
6666 goto out;
6667 }
Chris Mason5a5f79b2010-05-26 21:33:37 -04006668 }
6669 retval = 0;
6670out:
6671 return retval;
6672}
Josef Bacikeb838e72012-07-31 16:28:48 -04006673
Chris Mason16432982008-04-10 10:23:21 -04006674static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
6675 const struct iovec *iov, loff_t offset,
6676 unsigned long nr_segs)
6677{
Josef Bacik4b46fce2010-05-23 11:00:55 -04006678 struct file *file = iocb->ki_filp;
6679 struct inode *inode = file->f_mapping->host;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006680
Chris Mason5a5f79b2010-05-26 21:33:37 -04006681 if (check_direct_IO(BTRFS_I(inode)->root, rw, iocb, iov,
Josef Bacikeb838e72012-07-31 16:28:48 -04006682 offset, nr_segs))
Chris Mason5a5f79b2010-05-26 21:33:37 -04006683 return 0;
Chris Mason5a5f79b2010-05-26 21:33:37 -04006684
Josef Bacikeb838e72012-07-31 16:28:48 -04006685 return __blockdev_direct_IO(rw, iocb, inode,
Chris Mason5a5f79b2010-05-26 21:33:37 -04006686 BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev,
6687 iov, offset, nr_segs, btrfs_get_blocks_direct, NULL,
6688 btrfs_submit_direct, 0);
Chris Mason16432982008-04-10 10:23:21 -04006689}
6690
Tsutomu Itoh05dadc02012-11-29 05:08:26 +00006691#define BTRFS_FIEMAP_FLAGS (FIEMAP_FLAG_SYNC)
6692
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006693static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
6694 __u64 start, __u64 len)
6695{
Tsutomu Itoh05dadc02012-11-29 05:08:26 +00006696 int ret;
6697
6698 ret = fiemap_check_flags(fieinfo, BTRFS_FIEMAP_FLAGS);
6699 if (ret)
6700 return ret;
6701
Chris Masonec29ed52011-02-23 16:23:20 -05006702 return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent_fiemap);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006703}
6704
Chris Mason9ebefb182007-06-15 13:50:00 -04006705int btrfs_readpage(struct file *file, struct page *page)
6706{
Chris Masond1310b22008-01-24 16:13:08 -05006707 struct extent_io_tree *tree;
6708 tree = &BTRFS_I(page->mapping->host)->io_tree;
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02006709 return extent_read_full_page(tree, page, btrfs_get_extent, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04006710}
Chris Mason1832a6d2007-12-21 16:27:21 -05006711
Chris Mason39279cc2007-06-12 06:35:45 -04006712static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
6713{
Chris Masond1310b22008-01-24 16:13:08 -05006714 struct extent_io_tree *tree;
Chris Masonb888db2b2007-08-27 16:49:44 -04006715
6716
6717 if (current->flags & PF_MEMALLOC) {
6718 redirty_page_for_writepage(wbc, page);
6719 unlock_page(page);
6720 return 0;
6721 }
Chris Masond1310b22008-01-24 16:13:08 -05006722 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04006723 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
6724}
Chris Mason39279cc2007-06-12 06:35:45 -04006725
Chris Masonf4219502008-07-22 11:18:09 -04006726int btrfs_writepages(struct address_space *mapping,
6727 struct writeback_control *wbc)
Chris Masonb293f02e2007-11-01 19:45:34 -04006728{
Chris Masond1310b22008-01-24 16:13:08 -05006729 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05006730
Chris Masond1310b22008-01-24 16:13:08 -05006731 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f02e2007-11-01 19:45:34 -04006732 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
6733}
6734
Chris Mason3ab2fb52007-11-08 10:59:22 -05006735static int
6736btrfs_readpages(struct file *file, struct address_space *mapping,
6737 struct list_head *pages, unsigned nr_pages)
6738{
Chris Masond1310b22008-01-24 16:13:08 -05006739 struct extent_io_tree *tree;
6740 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05006741 return extent_readpages(tree, mapping, pages, nr_pages,
6742 btrfs_get_extent);
6743}
Chris Masone6dcd2d2008-07-17 12:53:50 -04006744static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04006745{
Chris Masond1310b22008-01-24 16:13:08 -05006746 struct extent_io_tree *tree;
6747 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04006748 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006749
Chris Masond1310b22008-01-24 16:13:08 -05006750 tree = &BTRFS_I(page->mapping->host)->io_tree;
6751 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05006752 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04006753 if (ret == 1) {
6754 ClearPagePrivate(page);
6755 set_page_private(page, 0);
6756 page_cache_release(page);
6757 }
6758 return ret;
6759}
Chris Mason39279cc2007-06-12 06:35:45 -04006760
Chris Masone6dcd2d2008-07-17 12:53:50 -04006761static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
6762{
Chris Mason98509cf2008-09-11 15:51:43 -04006763 if (PageWriteback(page) || PageDirty(page))
6764 return 0;
Yan Zhengb335b002009-02-12 10:06:04 -05006765 return __btrfs_releasepage(page, gfp_flags & GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006766}
6767
Chris Masona52d9a82007-08-27 16:49:44 -04006768static void btrfs_invalidatepage(struct page *page, unsigned long offset)
6769{
Josef Bacik5fd02042012-05-02 14:00:54 -04006770 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05006771 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006772 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006773 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006774 u64 page_start = page_offset(page);
6775 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006776
Chris Mason8b62b722009-09-02 16:53:46 -04006777 /*
6778 * we have the page locked, so new writeback can't start,
6779 * and the dirty bit won't be cleared while we are here.
6780 *
6781 * Wait for IO on this page so that we can safely clear
6782 * the PagePrivate2 bit and do ordered accounting
6783 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006784 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04006785
Josef Bacik5fd02042012-05-02 14:00:54 -04006786 tree = &BTRFS_I(inode)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006787 if (offset) {
6788 btrfs_releasepage(page, GFP_NOFS);
6789 return;
6790 }
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006791 lock_extent_bits(tree, page_start, page_end, 0, &cached_state);
Miao Xie4eee4fa2012-12-21 09:17:45 +00006792 ordered = btrfs_lookup_ordered_extent(inode, page_offset(page));
Chris Masone6dcd2d2008-07-17 12:53:50 -04006793 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04006794 /*
6795 * IO on this page will never be started, so we need
6796 * to account for any ordered extents now
6797 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006798 clear_extent_bit(tree, page_start, page_end,
6799 EXTENT_DIRTY | EXTENT_DELALLOC |
Liu Bo9e8a4a82012-09-05 19:10:51 -06006800 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING |
6801 EXTENT_DEFRAG, 1, 0, &cached_state, GFP_NOFS);
Chris Mason8b62b722009-09-02 16:53:46 -04006802 /*
6803 * whoever cleared the private bit is responsible
6804 * for the finish_ordered_io
6805 */
Josef Bacik5fd02042012-05-02 14:00:54 -04006806 if (TestClearPagePrivate2(page) &&
6807 btrfs_dec_test_ordered_pending(inode, &ordered, page_start,
6808 PAGE_CACHE_SIZE, 1)) {
6809 btrfs_finish_ordered_io(ordered);
Chris Mason8b62b722009-09-02 16:53:46 -04006810 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006811 btrfs_put_ordered_extent(ordered);
Josef Bacik2ac55d42010-02-03 19:33:23 +00006812 cached_state = NULL;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006813 lock_extent_bits(tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006814 }
6815 clear_extent_bit(tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04006816 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
Liu Bo9e8a4a82012-09-05 19:10:51 -06006817 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 1, 1,
6818 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006819 __btrfs_releasepage(page, GFP_NOFS);
6820
Chris Mason4a096752008-07-21 10:29:44 -04006821 ClearPageChecked(page);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04006822 if (PagePrivate(page)) {
Chris Mason9ad6b7b2008-04-18 16:11:30 -04006823 ClearPagePrivate(page);
6824 set_page_private(page, 0);
6825 page_cache_release(page);
6826 }
Chris Mason39279cc2007-06-12 06:35:45 -04006827}
6828
Chris Mason9ebefb182007-06-15 13:50:00 -04006829/*
6830 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
6831 * called from a page fault handler when a page is first dirtied. Hence we must
6832 * be careful to check for EOF conditions here. We set the page up correctly
6833 * for a written page which means we get ENOSPC checking when writing into
6834 * holes and correct delalloc and unwritten extent mapping on filesystems that
6835 * support these features.
6836 *
6837 * We are not allowed to take the i_mutex here so we have to play games to
6838 * protect against truncate races as the page could now be beyond EOF. Because
6839 * vmtruncate() writes the inode size before removing pages, once we have the
6840 * page lock we can determine safely if the page is beyond EOF. If it is not
6841 * beyond EOF, then the page is guaranteed safe against truncation until we
6842 * unlock the page.
6843 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07006844int btrfs_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04006845{
Nick Pigginc2ec1752009-03-31 15:23:21 -07006846 struct page *page = vmf->page;
Chris Mason6da6aba2007-12-18 16:15:09 -05006847 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05006848 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006849 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
6850 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006851 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006852 char *kaddr;
6853 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04006854 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05006855 int ret;
Chris Mason9998eb72012-01-25 13:47:40 -05006856 int reserved = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04006857 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006858 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04006859
Jan Karab2b5ef52012-06-12 16:20:45 +02006860 sb_start_pagefault(inode->i_sb);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006861 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Chris Mason9998eb72012-01-25 13:47:40 -05006862 if (!ret) {
Josef Bacike41f9412012-03-26 09:46:47 -04006863 ret = file_update_time(vma->vm_file);
Chris Mason9998eb72012-01-25 13:47:40 -05006864 reserved = 1;
6865 }
Nick Piggin56a76f82009-03-31 15:23:23 -07006866 if (ret) {
6867 if (ret == -ENOMEM)
6868 ret = VM_FAULT_OOM;
6869 else /* -ENOSPC, -EIO, etc */
6870 ret = VM_FAULT_SIGBUS;
Chris Mason9998eb72012-01-25 13:47:40 -05006871 if (reserved)
6872 goto out;
6873 goto out_noreserve;
Nick Piggin56a76f82009-03-31 15:23:23 -07006874 }
Chris Mason1832a6d2007-12-21 16:27:21 -05006875
Nick Piggin56a76f82009-03-31 15:23:23 -07006876 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006877again:
Chris Mason9ebefb182007-06-15 13:50:00 -04006878 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04006879 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006880 page_start = page_offset(page);
6881 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006882
Chris Mason9ebefb182007-06-15 13:50:00 -04006883 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04006884 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04006885 /* page got truncated out from underneath us */
6886 goto out_unlock;
6887 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006888 wait_on_page_writeback(page);
6889
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006890 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006891 set_page_extent_mapped(page);
6892
Chris Masoneb84ae02008-07-17 13:53:27 -04006893 /*
6894 * we can't set the delalloc bits if there are pending ordered
6895 * extents. Drop our locks and wait for them to finish
6896 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006897 ordered = btrfs_lookup_ordered_extent(inode, page_start);
6898 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006899 unlock_extent_cached(io_tree, page_start, page_end,
6900 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006901 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04006902 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006903 btrfs_put_ordered_extent(ordered);
6904 goto again;
6905 }
6906
Josef Bacikfbf19082009-10-01 17:10:23 -04006907 /*
6908 * XXX - page_mkwrite gets called every time the page is dirtied, even
6909 * if it was already dirty, so for space accounting reasons we need to
6910 * clear any delalloc bits for the range we are fixing to save. There
6911 * is probably a better way to do this, but for now keep consistent with
6912 * prepare_pages in the normal write path.
6913 */
Josef Bacik2ac55d42010-02-03 19:33:23 +00006914 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Liu Bo9e8a4a82012-09-05 19:10:51 -06006915 EXTENT_DIRTY | EXTENT_DELALLOC |
6916 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
Josef Bacik2ac55d42010-02-03 19:33:23 +00006917 0, 0, &cached_state, GFP_NOFS);
Josef Bacikfbf19082009-10-01 17:10:23 -04006918
Josef Bacik2ac55d42010-02-03 19:33:23 +00006919 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
6920 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006921 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006922 unlock_extent_cached(io_tree, page_start, page_end,
6923 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006924 ret = VM_FAULT_SIGBUS;
6925 goto out_unlock;
6926 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006927 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04006928
6929 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04006930 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04006931 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04006932 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04006933 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04006934
Chris Masone6dcd2d2008-07-17 12:53:50 -04006935 if (zero_start != PAGE_CACHE_SIZE) {
6936 kaddr = kmap(page);
6937 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
6938 flush_dcache_page(page);
6939 kunmap(page);
6940 }
Chris Mason247e7432008-07-17 12:53:51 -04006941 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006942 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04006943 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04006944
Chris Mason257c62e2009-10-13 13:21:08 -04006945 BTRFS_I(inode)->last_trans = root->fs_info->generation;
6946 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
Liu Bo46d8bc32012-08-29 01:07:55 -06006947 BTRFS_I(inode)->last_log_commit = BTRFS_I(inode)->root->last_log_commit;
Chris Mason257c62e2009-10-13 13:21:08 -04006948
Josef Bacik2ac55d42010-02-03 19:33:23 +00006949 unlock_extent_cached(io_tree, page_start, page_end, &cached_state, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04006950
6951out_unlock:
Jan Karab2b5ef52012-06-12 16:20:45 +02006952 if (!ret) {
6953 sb_end_pagefault(inode->i_sb);
Chris Mason50a9b212009-09-11 12:33:12 -04006954 return VM_FAULT_LOCKED;
Jan Karab2b5ef52012-06-12 16:20:45 +02006955 }
Chris Mason9ebefb182007-06-15 13:50:00 -04006956 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05006957out:
Josef Bacikec39e182012-01-12 19:10:12 -05006958 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason9998eb72012-01-25 13:47:40 -05006959out_noreserve:
Jan Karab2b5ef52012-06-12 16:20:45 +02006960 sb_end_pagefault(inode->i_sb);
Chris Mason9ebefb182007-06-15 13:50:00 -04006961 return ret;
6962}
6963
Josef Bacika41ad392011-01-31 15:30:16 -05006964static int btrfs_truncate(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04006965{
6966 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikfcb80c22011-05-03 10:40:22 -04006967 struct btrfs_block_rsv *rsv;
Chris Mason39279cc2007-06-12 06:35:45 -04006968 int ret;
Josef Bacik3893e332011-01-31 16:03:11 -05006969 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006970 struct btrfs_trans_handle *trans;
Chris Masondbe674a2008-07-17 12:54:05 -04006971 u64 mask = root->sectorsize - 1;
Josef Bacik07127182011-08-19 10:29:59 -04006972 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04006973
Josef Bacik2aaa6652012-08-29 14:27:18 -04006974 ret = btrfs_truncate_page(inode, inode->i_size, 0, 0);
Josef Bacik5d5e1032009-10-13 16:46:49 -04006975 if (ret)
Josef Bacika41ad392011-01-31 15:30:16 -05006976 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00006977
Chris Mason4a096752008-07-21 10:29:44 -04006978 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
Yan, Zheng80825102009-11-12 09:35:36 +00006979 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006980
Josef Bacikfcb80c22011-05-03 10:40:22 -04006981 /*
6982 * Yes ladies and gentelment, this is indeed ugly. The fact is we have
6983 * 3 things going on here
6984 *
6985 * 1) We need to reserve space for our orphan item and the space to
6986 * delete our orphan item. Lord knows we don't want to have a dangling
6987 * orphan item because we didn't reserve space to remove it.
6988 *
6989 * 2) We need to reserve space to update our inode.
6990 *
6991 * 3) We need to have something to cache all the space that is going to
6992 * be free'd up by the truncate operation, but also have some slack
6993 * space reserved in case it uses space during the truncate (thank you
6994 * very much snapshotting).
6995 *
6996 * And we need these to all be seperate. The fact is we can use alot of
6997 * space doing the truncate, and we have no earthly idea how much space
6998 * we will use, so we need the truncate reservation to be seperate so it
6999 * doesn't end up using space reserved for updating the inode or
7000 * removing the orphan item. We also need to be able to stop the
7001 * transaction and start a new one, which means we need to be able to
7002 * update the inode several times, and we have no idea of knowing how
7003 * many times that will be, so we can't just reserve 1 item for the
7004 * entirety of the opration, so that has to be done seperately as well.
7005 * Then there is the orphan item, which does indeed need to be held on
7006 * to for the whole operation, and we need nobody to touch this reserved
7007 * space except the orphan code.
7008 *
7009 * So that leaves us with
7010 *
7011 * 1) root->orphan_block_rsv - for the orphan deletion.
7012 * 2) rsv - for the truncate reservation, which we will steal from the
7013 * transaction reservation.
7014 * 3) fs_info->trans_block_rsv - this will have 1 items worth left for
7015 * updating the inode.
7016 */
Miao Xie66d8f3d2012-09-06 04:02:28 -06007017 rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP);
Josef Bacikfcb80c22011-05-03 10:40:22 -04007018 if (!rsv)
7019 return -ENOMEM;
Josef Bacik4a338542011-08-29 11:01:31 -04007020 rsv->size = min_size;
Josef Bacikca7e70f2012-08-27 17:48:15 -04007021 rsv->failfast = 1;
Josef Bacikf0cd8462011-03-04 14:37:08 -05007022
Josef Bacik907cbce2011-08-08 13:46:15 -04007023 /*
Josef Bacik07127182011-08-19 10:29:59 -04007024 * 1 for the truncate slack space
Josef Bacik907cbce2011-08-08 13:46:15 -04007025 * 1 for updating the inode.
7026 */
Josef Bacikf3fe8202013-01-07 17:03:21 -05007027 trans = btrfs_start_transaction(root, 2);
Josef Bacikfcb80c22011-05-03 10:40:22 -04007028 if (IS_ERR(trans)) {
7029 err = PTR_ERR(trans);
7030 goto out;
7031 }
Josef Bacikf0cd8462011-03-04 14:37:08 -05007032
Josef Bacik907cbce2011-08-08 13:46:15 -04007033 /* Migrate the slack space for the truncate to our reserve */
7034 ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv, rsv,
7035 min_size);
Josef Bacikfcb80c22011-05-03 10:40:22 -04007036 BUG_ON(ret);
Josef Bacikf0cd8462011-03-04 14:37:08 -05007037
Chris Mason5a3f23d2009-03-31 13:27:11 -04007038 /*
7039 * setattr is responsible for setting the ordered_data_close flag,
7040 * but that is only tested during the last file release. That
7041 * could happen well after the next commit, leaving a great big
7042 * window where new writes may get lost if someone chooses to write
7043 * to this file after truncating to zero
7044 *
7045 * The inode doesn't have any dirty data here, and so if we commit
7046 * this is a noop. If someone immediately starts writing to the inode
7047 * it is very likely we'll catch some of their writes in this
7048 * transaction, and the commit will find this file on the ordered
7049 * data list with good things to send down.
7050 *
7051 * This is a best effort solution, there is still a window where
7052 * using truncate to replace the contents of the file will
7053 * end up with a zero length file after a crash.
7054 */
Josef Bacik72ac3c02012-05-23 14:13:11 -04007055 if (inode->i_size == 0 && test_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
7056 &BTRFS_I(inode)->runtime_flags))
Chris Mason5a3f23d2009-03-31 13:27:11 -04007057 btrfs_add_ordered_operation(trans, root, inode);
7058
Josef Bacik5dc562c2012-08-17 13:14:17 -04007059 /*
7060 * So if we truncate and then write and fsync we normally would just
7061 * write the extents that changed, which is a problem if we need to
7062 * first truncate that entire inode. So set this flag so we write out
7063 * all of the extents in the inode to the sync log so we're completely
7064 * safe.
7065 */
7066 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
Josef Bacikca7e70f2012-08-27 17:48:15 -04007067 trans->block_rsv = rsv;
Josef Bacik5dc562c2012-08-17 13:14:17 -04007068
Yan, Zheng80825102009-11-12 09:35:36 +00007069 while (1) {
7070 ret = btrfs_truncate_inode_items(trans, root, inode,
7071 inode->i_size,
7072 BTRFS_EXTENT_DATA_KEY);
Josef Bacikca7e70f2012-08-27 17:48:15 -04007073 if (ret != -ENOSPC) {
Josef Bacik3893e332011-01-31 16:03:11 -05007074 err = ret;
Yan, Zheng80825102009-11-12 09:35:36 +00007075 break;
Josef Bacik3893e332011-01-31 16:03:11 -05007076 }
Chris Mason39279cc2007-06-12 06:35:45 -04007077
Josef Bacikfcb80c22011-05-03 10:40:22 -04007078 trans->block_rsv = &root->fs_info->trans_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00007079 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05007080 if (ret) {
7081 err = ret;
7082 break;
7083 }
Josef Bacikca7e70f2012-08-27 17:48:15 -04007084
Yan, Zheng80825102009-11-12 09:35:36 +00007085 btrfs_end_transaction(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00007086 btrfs_btree_balance_dirty(root);
Josef Bacikca7e70f2012-08-27 17:48:15 -04007087
7088 trans = btrfs_start_transaction(root, 2);
7089 if (IS_ERR(trans)) {
7090 ret = err = PTR_ERR(trans);
7091 trans = NULL;
7092 break;
7093 }
7094
7095 ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv,
7096 rsv, min_size);
7097 BUG_ON(ret); /* shouldn't happen */
7098 trans->block_rsv = rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00007099 }
7100
7101 if (ret == 0 && inode->i_nlink > 0) {
Josef Bacikfcb80c22011-05-03 10:40:22 -04007102 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00007103 ret = btrfs_orphan_del(trans, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05007104 if (ret)
7105 err = ret;
Yan, Zheng80825102009-11-12 09:35:36 +00007106 }
7107
Chris Mason917c16b2011-11-08 14:49:59 -05007108 if (trans) {
7109 trans->block_rsv = &root->fs_info->trans_block_rsv;
7110 ret = btrfs_update_inode(trans, root, inode);
7111 if (ret && !err)
7112 err = ret;
Josef Bacik7b128762008-07-24 12:17:14 -04007113
Josef Bacik7ad85bb2012-01-12 19:10:12 -05007114 ret = btrfs_end_transaction(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00007115 btrfs_btree_balance_dirty(root);
Chris Mason917c16b2011-11-08 14:49:59 -05007116 }
Josef Bacikfcb80c22011-05-03 10:40:22 -04007117
7118out:
7119 btrfs_free_block_rsv(root, rsv);
7120
Josef Bacik3893e332011-01-31 16:03:11 -05007121 if (ret && !err)
7122 err = ret;
Josef Bacika41ad392011-01-31 15:30:16 -05007123
Josef Bacik3893e332011-01-31 16:03:11 -05007124 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04007125}
7126
Sven Wegener3b963622008-06-09 21:57:42 -04007127/*
Chris Masond352ac62008-09-29 15:18:18 -04007128 * create a new subvolume directory/inode (helper for the ioctl).
7129 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05007130int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04007131 struct btrfs_root *new_root, u64 new_dirid)
Chris Mason39279cc2007-06-12 06:35:45 -04007132{
Chris Mason39279cc2007-06-12 06:35:45 -04007133 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04007134 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04007135 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007136
Florian Albrechtskirchinger12fc9d02012-02-10 22:15:54 +01007137 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2,
7138 new_dirid, new_dirid,
7139 S_IFDIR | (~current_umask() & S_IRWXUGO),
7140 &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04007141 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04007142 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007143 inode->i_op = &btrfs_dir_inode_operations;
7144 inode->i_fop = &btrfs_dir_file_operations;
7145
Miklos Szeredibfe86842011-10-28 14:13:29 +02007146 set_nlink(inode, 1);
Chris Masondbe674a2008-07-17 12:54:05 -04007147 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04007148
Yan, Zheng76dda932009-09-21 16:00:26 -04007149 err = btrfs_update_inode(trans, new_root, inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04007150
Yan, Zheng76dda932009-09-21 16:00:26 -04007151 iput(inode);
Mark Fashehce598972011-07-26 11:32:23 -07007152 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04007153}
7154
Chris Mason39279cc2007-06-12 06:35:45 -04007155struct inode *btrfs_alloc_inode(struct super_block *sb)
7156{
7157 struct btrfs_inode *ei;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007158 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04007159
7160 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
7161 if (!ei)
7162 return NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007163
7164 ei->root = NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007165 ei->generation = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04007166 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04007167 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04007168 ei->logged_trans = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007169 ei->delalloc_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007170 ei->disk_i_size = 0;
7171 ei->flags = 0;
Josef Bacik7709cde2011-08-04 10:25:02 -04007172 ei->csum_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007173 ei->index_cnt = (u64)-1;
7174 ei->last_unlink_trans = 0;
Liu Bo46d8bc32012-08-29 01:07:55 -06007175 ei->last_log_commit = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007176
Josef Bacik9e0baf62011-07-15 15:16:44 +00007177 spin_lock_init(&ei->lock);
7178 ei->outstanding_extents = 0;
7179 ei->reserved_extents = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007180
Josef Bacik72ac3c02012-05-23 14:13:11 -04007181 ei->runtime_flags = 0;
Li Zefan261507a02010-12-17 14:21:50 +08007182 ei->force_compress = BTRFS_COMPRESS_NONE;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007183
Miao Xie16cdcec2011-04-22 18:12:22 +08007184 ei->delayed_node = NULL;
7185
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007186 inode = &ei->vfs_inode;
David Sterbaa8067e02011-04-21 00:34:43 +02007187 extent_map_tree_init(&ei->extent_tree);
David Sterbaf993c882011-04-20 23:35:57 +02007188 extent_io_tree_init(&ei->io_tree, &inode->i_data);
7189 extent_io_tree_init(&ei->io_failure_tree, &inode->i_data);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04007190 ei->io_tree.track_uptodate = 1;
7191 ei->io_failure_tree.track_uptodate = 1;
Josef Bacikb812ce22012-11-16 13:56:32 -05007192 atomic_set(&ei->sync_writers, 0);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007193 mutex_init(&ei->log_mutex);
Josef Bacikf2486792012-01-13 12:09:22 -05007194 mutex_init(&ei->delalloc_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007195 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007196 INIT_LIST_HEAD(&ei->delalloc_inodes);
Chris Mason5a3f23d2009-03-31 13:27:11 -04007197 INIT_LIST_HEAD(&ei->ordered_operations);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007198 RB_CLEAR_NODE(&ei->rb_node);
7199
7200 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04007201}
7202
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11007203static void btrfs_i_callback(struct rcu_head *head)
7204{
7205 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11007206 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
7207}
7208
Chris Mason39279cc2007-06-12 06:35:45 -04007209void btrfs_destroy_inode(struct inode *inode)
7210{
Chris Masone6dcd2d2008-07-17 12:53:50 -04007211 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04007212 struct btrfs_root *root = BTRFS_I(inode)->root;
7213
Al Virob3d9b7a2012-06-09 13:51:19 -04007214 WARN_ON(!hlist_empty(&inode->i_dentry));
Chris Mason39279cc2007-06-12 06:35:45 -04007215 WARN_ON(inode->i_data.nrpages);
Josef Bacik9e0baf62011-07-15 15:16:44 +00007216 WARN_ON(BTRFS_I(inode)->outstanding_extents);
7217 WARN_ON(BTRFS_I(inode)->reserved_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04007218 WARN_ON(BTRFS_I(inode)->delalloc_bytes);
7219 WARN_ON(BTRFS_I(inode)->csum_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -04007220
Chris Mason5a3f23d2009-03-31 13:27:11 -04007221 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05007222 * This can happen where we create an inode, but somebody else also
7223 * created the same inode and we need to destroy the one we already
7224 * created.
7225 */
7226 if (!root)
7227 goto free;
7228
7229 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04007230 * Make sure we're properly removed from the ordered operation
7231 * lists.
7232 */
7233 smp_mb();
7234 if (!list_empty(&BTRFS_I(inode)->ordered_operations)) {
7235 spin_lock(&root->fs_info->ordered_extent_lock);
7236 list_del_init(&BTRFS_I(inode)->ordered_operations);
7237 spin_unlock(&root->fs_info->ordered_extent_lock);
7238 }
7239
Josef Bacik8a35d952012-05-23 14:26:42 -04007240 if (test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
7241 &BTRFS_I(inode)->runtime_flags)) {
Li Zefan33345d012011-04-20 10:31:50 +08007242 printk(KERN_INFO "BTRFS: inode %llu still on the orphan list\n",
7243 (unsigned long long)btrfs_ino(inode));
Josef Bacik8a35d952012-05-23 14:26:42 -04007244 atomic_dec(&root->orphan_inodes);
Josef Bacik7b128762008-07-24 12:17:14 -04007245 }
Josef Bacik7b128762008-07-24 12:17:14 -04007246
Chris Masond3977122009-01-05 21:25:51 -05007247 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04007248 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
7249 if (!ordered)
7250 break;
7251 else {
Chris Masond3977122009-01-05 21:25:51 -05007252 printk(KERN_ERR "btrfs found ordered "
7253 "extent %llu %llu on inode cleanup\n",
7254 (unsigned long long)ordered->file_offset,
7255 (unsigned long long)ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007256 btrfs_remove_ordered_extent(inode, ordered);
7257 btrfs_put_ordered_extent(ordered);
7258 btrfs_put_ordered_extent(ordered);
7259 }
7260 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007261 inode_tree_del(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007262 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
Josef Bacika6dbd422009-11-11 15:53:34 -05007263free:
Miao Xie16cdcec2011-04-22 18:12:22 +08007264 btrfs_remove_delayed_node(inode);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11007265 call_rcu(&inode->i_rcu, btrfs_i_callback);
Chris Mason39279cc2007-06-12 06:35:45 -04007266}
7267
Al Viro45321ac2010-06-07 13:43:19 -04007268int btrfs_drop_inode(struct inode *inode)
Yan, Zheng76dda932009-09-21 16:00:26 -04007269{
7270 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro45321ac2010-06-07 13:43:19 -04007271
Josef Bacik0af3d002010-06-21 14:48:16 -04007272 if (btrfs_root_refs(&root->root_item) == 0 &&
Liu Bo83eea1f2012-07-10 05:28:39 -06007273 !btrfs_is_free_space_inode(inode))
Al Viro45321ac2010-06-07 13:43:19 -04007274 return 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04007275 else
Al Viro45321ac2010-06-07 13:43:19 -04007276 return generic_drop_inode(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04007277}
7278
Sven Wegener0ee0fda2008-07-30 16:54:26 -04007279static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04007280{
7281 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
7282
7283 inode_init_once(&ei->vfs_inode);
7284}
7285
7286void btrfs_destroy_cachep(void)
7287{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +10007288 /*
7289 * Make sure all delayed rcu free inodes are flushed before we
7290 * destroy cache.
7291 */
7292 rcu_barrier();
Chris Mason39279cc2007-06-12 06:35:45 -04007293 if (btrfs_inode_cachep)
7294 kmem_cache_destroy(btrfs_inode_cachep);
7295 if (btrfs_trans_handle_cachep)
7296 kmem_cache_destroy(btrfs_trans_handle_cachep);
7297 if (btrfs_transaction_cachep)
7298 kmem_cache_destroy(btrfs_transaction_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04007299 if (btrfs_path_cachep)
7300 kmem_cache_destroy(btrfs_path_cachep);
Josef Bacikdc89e982011-01-28 17:05:48 -05007301 if (btrfs_free_space_cachep)
7302 kmem_cache_destroy(btrfs_free_space_cachep);
Miao Xie8ccf6f192012-10-25 09:28:04 +00007303 if (btrfs_delalloc_work_cachep)
7304 kmem_cache_destroy(btrfs_delalloc_work_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04007305}
7306
7307int btrfs_init_cachep(void)
7308{
David Sterba837e1972012-09-07 03:00:48 -06007309 btrfs_inode_cachep = kmem_cache_create("btrfs_inode",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007310 sizeof(struct btrfs_inode), 0,
7311 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04007312 if (!btrfs_inode_cachep)
7313 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007314
David Sterba837e1972012-09-07 03:00:48 -06007315 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007316 sizeof(struct btrfs_trans_handle), 0,
7317 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04007318 if (!btrfs_trans_handle_cachep)
7319 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007320
David Sterba837e1972012-09-07 03:00:48 -06007321 btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007322 sizeof(struct btrfs_transaction), 0,
7323 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04007324 if (!btrfs_transaction_cachep)
7325 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007326
David Sterba837e1972012-09-07 03:00:48 -06007327 btrfs_path_cachep = kmem_cache_create("btrfs_path",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007328 sizeof(struct btrfs_path), 0,
7329 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04007330 if (!btrfs_path_cachep)
7331 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007332
David Sterba837e1972012-09-07 03:00:48 -06007333 btrfs_free_space_cachep = kmem_cache_create("btrfs_free_space",
Josef Bacikdc89e982011-01-28 17:05:48 -05007334 sizeof(struct btrfs_free_space), 0,
7335 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
7336 if (!btrfs_free_space_cachep)
7337 goto fail;
7338
Miao Xie8ccf6f192012-10-25 09:28:04 +00007339 btrfs_delalloc_work_cachep = kmem_cache_create("btrfs_delalloc_work",
7340 sizeof(struct btrfs_delalloc_work), 0,
7341 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD,
7342 NULL);
7343 if (!btrfs_delalloc_work_cachep)
7344 goto fail;
7345
Chris Mason39279cc2007-06-12 06:35:45 -04007346 return 0;
7347fail:
7348 btrfs_destroy_cachep();
7349 return -ENOMEM;
7350}
7351
7352static int btrfs_getattr(struct vfsmount *mnt,
7353 struct dentry *dentry, struct kstat *stat)
7354{
Miao Xiedf0af1a2013-01-29 10:11:59 +00007355 u64 delalloc_bytes;
Chris Mason39279cc2007-06-12 06:35:45 -04007356 struct inode *inode = dentry->d_inode;
David Sterbafadc0d82011-11-20 07:33:38 -05007357 u32 blocksize = inode->i_sb->s_blocksize;
7358
Chris Mason39279cc2007-06-12 06:35:45 -04007359 generic_fillattr(inode, stat);
Al Viro0ee5dc62011-07-07 15:44:25 -04007360 stat->dev = BTRFS_I(inode)->root->anon_dev;
Chris Masond6667462008-01-03 14:51:00 -05007361 stat->blksize = PAGE_CACHE_SIZE;
Miao Xiedf0af1a2013-01-29 10:11:59 +00007362
7363 spin_lock(&BTRFS_I(inode)->lock);
7364 delalloc_bytes = BTRFS_I(inode)->delalloc_bytes;
7365 spin_unlock(&BTRFS_I(inode)->lock);
David Sterbafadc0d82011-11-20 07:33:38 -05007366 stat->blocks = (ALIGN(inode_get_bytes(inode), blocksize) +
Miao Xiedf0af1a2013-01-29 10:11:59 +00007367 ALIGN(delalloc_bytes, blocksize)) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04007368 return 0;
7369}
7370
Liu Bo75e7cb72011-03-22 10:12:20 +00007371/*
7372 * If a file is moved, it will inherit the cow and compression flags of the new
7373 * directory.
7374 */
7375static void fixup_inode_flags(struct inode *dir, struct inode *inode)
7376{
7377 struct btrfs_inode *b_dir = BTRFS_I(dir);
7378 struct btrfs_inode *b_inode = BTRFS_I(inode);
7379
7380 if (b_dir->flags & BTRFS_INODE_NODATACOW)
7381 b_inode->flags |= BTRFS_INODE_NODATACOW;
7382 else
7383 b_inode->flags &= ~BTRFS_INODE_NODATACOW;
7384
Liu Bobc178232012-06-14 02:23:18 -06007385 if (b_dir->flags & BTRFS_INODE_COMPRESS) {
Liu Bo75e7cb72011-03-22 10:12:20 +00007386 b_inode->flags |= BTRFS_INODE_COMPRESS;
Liu Bobc178232012-06-14 02:23:18 -06007387 b_inode->flags &= ~BTRFS_INODE_NOCOMPRESS;
7388 } else {
7389 b_inode->flags &= ~(BTRFS_INODE_COMPRESS |
7390 BTRFS_INODE_NOCOMPRESS);
7391 }
Liu Bo75e7cb72011-03-22 10:12:20 +00007392}
7393
Chris Masond3977122009-01-05 21:25:51 -05007394static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
7395 struct inode *new_dir, struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04007396{
7397 struct btrfs_trans_handle *trans;
7398 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007399 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04007400 struct inode *new_inode = new_dentry->d_inode;
7401 struct inode *old_inode = old_dentry->d_inode;
7402 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04007403 u64 index = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007404 u64 root_objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04007405 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08007406 u64 old_ino = btrfs_ino(old_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007407
Li Zefan33345d012011-04-20 10:31:50 +08007408 if (btrfs_ino(new_dir) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhengf679a842009-09-24 09:17:31 -04007409 return -EPERM;
7410
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007411 /* we only allow rename subvolume link between subvolumes */
Li Zefan33345d012011-04-20 10:31:50 +08007412 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05007413 return -EXDEV;
7414
Li Zefan33345d012011-04-20 10:31:50 +08007415 if (old_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
7416 (new_inode && btrfs_ino(new_inode) == BTRFS_FIRST_FREE_OBJECTID))
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007417 return -ENOTEMPTY;
7418
Chris Mason39279cc2007-06-12 06:35:45 -04007419 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007420 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04007421 return -ENOTEMPTY;
Chris Mason9c520572012-12-17 14:26:57 -05007422
7423
7424 /* check for collisions, even if the name isn't there */
7425 ret = btrfs_check_dir_item_collision(root, new_dir->i_ino,
7426 new_dentry->d_name.name,
7427 new_dentry->d_name.len);
7428
7429 if (ret) {
7430 if (ret == -EEXIST) {
7431 /* we shouldn't get
7432 * eexist without a new_inode */
7433 if (!new_inode) {
7434 WARN_ON(1);
7435 return ret;
7436 }
7437 } else {
7438 /* maybe -EOVERFLOW */
7439 return ret;
7440 }
7441 }
7442 ret = 0;
7443
Chris Mason5a3f23d2009-03-31 13:27:11 -04007444 /*
7445 * we're using rename to replace one file with another.
7446 * and the replacement file is large. Start IO on it now so
7447 * we don't add too much work to the end of the transaction
7448 */
Bartlomiej Zolnierkiewicz4baf8c92009-08-07 13:47:08 -04007449 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size &&
Chris Mason5a3f23d2009-03-31 13:27:11 -04007450 old_inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
7451 filemap_flush(old_inode->i_mapping);
7452
Yan, Zheng76dda932009-09-21 16:00:26 -04007453 /* close the racy window with snapshot create/destroy ioctl */
Li Zefan33345d012011-04-20 10:31:50 +08007454 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04007455 down_read(&root->fs_info->subvol_sem);
Yan, Zhenga22285a2010-05-16 10:48:46 -04007456 /*
7457 * We want to reserve the absolute worst case amount of items. So if
7458 * both inodes are subvols and we need to unlink them then that would
7459 * require 4 item modifications, but if they are both normal inodes it
7460 * would require 5 item modifications, so we'll assume their normal
7461 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
7462 * should cover the worst case number of items we'll modify.
7463 */
7464 trans = btrfs_start_transaction(root, 20);
Johann Lombardib44c59a2011-03-31 13:23:47 +00007465 if (IS_ERR(trans)) {
7466 ret = PTR_ERR(trans);
7467 goto out_notrans;
7468 }
Chris Mason5f39d392007-10-15 16:14:19 -04007469
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007470 if (dest != root)
7471 btrfs_record_root_in_trans(trans, dest);
7472
Yan, Zhenga5719522009-09-24 09:17:31 -04007473 ret = btrfs_set_inode_index(new_dir, &index);
7474 if (ret)
7475 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04007476
Li Zefan33345d012011-04-20 10:31:50 +08007477 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007478 /* force full log commit if subvolume involved. */
7479 root->fs_info->last_trans_log_full_commit = trans->transid;
7480 } else {
Yan, Zhenga5719522009-09-24 09:17:31 -04007481 ret = btrfs_insert_inode_ref(trans, dest,
7482 new_dentry->d_name.name,
7483 new_dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08007484 old_ino,
7485 btrfs_ino(new_dir), index);
Yan, Zhenga5719522009-09-24 09:17:31 -04007486 if (ret)
7487 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007488 /*
7489 * this is an ugly little race, but the rename is required
7490 * to make sure that if we crash, the inode is either at the
7491 * old name or the new one. pinning the log transaction lets
7492 * us make sure we don't allow a log commit to come in after
7493 * we unlink the name but before we add the new name back in.
7494 */
7495 btrfs_pin_log_trans(root);
7496 }
Chris Mason12fcfd22009-03-24 10:24:20 -04007497 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04007498 * make sure the inode gets flushed if it is replacing
7499 * something.
7500 */
Li Zefan33345d012011-04-20 10:31:50 +08007501 if (new_inode && new_inode->i_size && S_ISREG(old_inode->i_mode))
Chris Mason5a3f23d2009-03-31 13:27:11 -04007502 btrfs_add_ordered_operation(trans, root, old_inode);
Chris Mason5a3f23d2009-03-31 13:27:11 -04007503
Josef Bacik0c4d2d92012-04-05 15:03:02 -04007504 inode_inc_iversion(old_dir);
7505 inode_inc_iversion(new_dir);
7506 inode_inc_iversion(old_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007507 old_dir->i_ctime = old_dir->i_mtime = ctime;
7508 new_dir->i_ctime = new_dir->i_mtime = ctime;
7509 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04007510
Chris Mason12fcfd22009-03-24 10:24:20 -04007511 if (old_dentry->d_parent != new_dentry->d_parent)
7512 btrfs_record_unlink_dir(trans, old_dir, old_inode, 1);
7513
Li Zefan33345d012011-04-20 10:31:50 +08007514 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007515 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
7516 ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid,
7517 old_dentry->d_name.name,
7518 old_dentry->d_name.len);
7519 } else {
Al Viro92986792011-03-04 17:14:37 +00007520 ret = __btrfs_unlink_inode(trans, root, old_dir,
7521 old_dentry->d_inode,
7522 old_dentry->d_name.name,
7523 old_dentry->d_name.len);
7524 if (!ret)
7525 ret = btrfs_update_inode(trans, root, old_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007526 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007527 if (ret) {
7528 btrfs_abort_transaction(trans, root, ret);
7529 goto out_fail;
7530 }
Chris Mason39279cc2007-06-12 06:35:45 -04007531
7532 if (new_inode) {
Josef Bacik0c4d2d92012-04-05 15:03:02 -04007533 inode_inc_iversion(new_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007534 new_inode->i_ctime = CURRENT_TIME;
Li Zefan33345d012011-04-20 10:31:50 +08007535 if (unlikely(btrfs_ino(new_inode) ==
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007536 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
7537 root_objectid = BTRFS_I(new_inode)->location.objectid;
7538 ret = btrfs_unlink_subvol(trans, dest, new_dir,
7539 root_objectid,
7540 new_dentry->d_name.name,
7541 new_dentry->d_name.len);
7542 BUG_ON(new_inode->i_nlink == 0);
7543 } else {
7544 ret = btrfs_unlink_inode(trans, dest, new_dir,
7545 new_dentry->d_inode,
7546 new_dentry->d_name.name,
7547 new_dentry->d_name.len);
7548 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007549 if (!ret && new_inode->i_nlink == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04007550 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007551 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04007552 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007553 if (ret) {
7554 btrfs_abort_transaction(trans, root, ret);
7555 goto out_fail;
7556 }
Chris Mason39279cc2007-06-12 06:35:45 -04007557 }
Josef Bacikaec74772008-07-24 12:12:38 -04007558
Liu Bo75e7cb72011-03-22 10:12:20 +00007559 fixup_inode_flags(new_dir, old_inode);
7560
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007561 ret = btrfs_add_link(trans, new_dir, old_inode,
7562 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04007563 new_dentry->d_name.len, 0, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007564 if (ret) {
7565 btrfs_abort_transaction(trans, root, ret);
7566 goto out_fail;
7567 }
Chris Mason39279cc2007-06-12 06:35:45 -04007568
Li Zefan33345d012011-04-20 10:31:50 +08007569 if (old_ino != BTRFS_FIRST_FREE_OBJECTID) {
Al Viro10d9f302011-07-16 23:09:10 -04007570 struct dentry *parent = new_dentry->d_parent;
Josef Bacik6a912212010-11-20 09:48:00 +00007571 btrfs_log_new_name(trans, old_inode, old_dir, parent);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007572 btrfs_end_log_trans(root);
7573 }
Chris Mason39279cc2007-06-12 06:35:45 -04007574out_fail:
Josef Bacik7ad85bb2012-01-12 19:10:12 -05007575 btrfs_end_transaction(trans, root);
Johann Lombardib44c59a2011-03-31 13:23:47 +00007576out_notrans:
Li Zefan33345d012011-04-20 10:31:50 +08007577 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04007578 up_read(&root->fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04007579
Chris Mason39279cc2007-06-12 06:35:45 -04007580 return ret;
7581}
7582
Miao Xie8ccf6f192012-10-25 09:28:04 +00007583static void btrfs_run_delalloc_work(struct btrfs_work *work)
7584{
7585 struct btrfs_delalloc_work *delalloc_work;
7586
7587 delalloc_work = container_of(work, struct btrfs_delalloc_work,
7588 work);
7589 if (delalloc_work->wait)
7590 btrfs_wait_ordered_range(delalloc_work->inode, 0, (u64)-1);
7591 else
7592 filemap_flush(delalloc_work->inode->i_mapping);
7593
7594 if (delalloc_work->delay_iput)
7595 btrfs_add_delayed_iput(delalloc_work->inode);
7596 else
7597 iput(delalloc_work->inode);
7598 complete(&delalloc_work->completion);
7599}
7600
7601struct btrfs_delalloc_work *btrfs_alloc_delalloc_work(struct inode *inode,
7602 int wait, int delay_iput)
7603{
7604 struct btrfs_delalloc_work *work;
7605
7606 work = kmem_cache_zalloc(btrfs_delalloc_work_cachep, GFP_NOFS);
7607 if (!work)
7608 return NULL;
7609
7610 init_completion(&work->completion);
7611 INIT_LIST_HEAD(&work->list);
7612 work->inode = inode;
7613 work->wait = wait;
7614 work->delay_iput = delay_iput;
7615 work->work.func = btrfs_run_delalloc_work;
7616
7617 return work;
7618}
7619
7620void btrfs_wait_and_free_delalloc_work(struct btrfs_delalloc_work *work)
7621{
7622 wait_for_completion(&work->completion);
7623 kmem_cache_free(btrfs_delalloc_work_cachep, work);
7624}
7625
Chris Masond352ac62008-09-29 15:18:18 -04007626/*
7627 * some fairly slow code that needs optimization. This walks the list
7628 * of all the inodes with pending delalloc and forces them to disk.
7629 */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00007630int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput)
Chris Masonea8c2812008-08-04 23:17:27 -04007631{
Chris Masonea8c2812008-08-04 23:17:27 -04007632 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007633 struct inode *inode;
Miao Xie8ccf6f192012-10-25 09:28:04 +00007634 struct btrfs_delalloc_work *work, *next;
7635 struct list_head works;
Miao Xie1eafa6c2013-01-22 10:49:00 +00007636 struct list_head splice;
Miao Xie8ccf6f192012-10-25 09:28:04 +00007637 int ret = 0;
Chris Masonea8c2812008-08-04 23:17:27 -04007638
Yan Zhengc146afa2008-11-12 14:34:12 -05007639 if (root->fs_info->sb->s_flags & MS_RDONLY)
7640 return -EROFS;
7641
Miao Xie8ccf6f192012-10-25 09:28:04 +00007642 INIT_LIST_HEAD(&works);
Miao Xie1eafa6c2013-01-22 10:49:00 +00007643 INIT_LIST_HEAD(&splice);
Miao Xie63607cc2013-01-22 10:50:35 +00007644
Chris Mason75eff682008-12-15 15:54:40 -05007645 spin_lock(&root->fs_info->delalloc_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +00007646 list_splice_init(&root->fs_info->delalloc_inodes, &splice);
7647 while (!list_empty(&splice)) {
7648 binode = list_entry(splice.next, struct btrfs_inode,
Chris Masonea8c2812008-08-04 23:17:27 -04007649 delalloc_inodes);
Miao Xie1eafa6c2013-01-22 10:49:00 +00007650
7651 list_del_init(&binode->delalloc_inodes);
7652
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007653 inode = igrab(&binode->vfs_inode);
Miao Xiedf0af1a2013-01-29 10:11:59 +00007654 if (!inode) {
7655 clear_bit(BTRFS_INODE_IN_DELALLOC_LIST,
7656 &binode->runtime_flags);
Miao Xie1eafa6c2013-01-22 10:49:00 +00007657 continue;
Miao Xiedf0af1a2013-01-29 10:11:59 +00007658 }
Miao Xie1eafa6c2013-01-22 10:49:00 +00007659
7660 list_add_tail(&binode->delalloc_inodes,
7661 &root->fs_info->delalloc_inodes);
Chris Mason75eff682008-12-15 15:54:40 -05007662 spin_unlock(&root->fs_info->delalloc_lock);
Miao Xie1eafa6c2013-01-22 10:49:00 +00007663
7664 work = btrfs_alloc_delalloc_work(inode, 0, delay_iput);
7665 if (unlikely(!work)) {
7666 ret = -ENOMEM;
7667 goto out;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007668 }
Miao Xie1eafa6c2013-01-22 10:49:00 +00007669 list_add_tail(&work->list, &works);
7670 btrfs_queue_worker(&root->fs_info->flush_workers,
7671 &work->work);
7672
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007673 cond_resched();
Chris Mason75eff682008-12-15 15:54:40 -05007674 spin_lock(&root->fs_info->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04007675 }
Chris Mason75eff682008-12-15 15:54:40 -05007676 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -04007677
Miao Xie1eafa6c2013-01-22 10:49:00 +00007678 list_for_each_entry_safe(work, next, &works, list) {
7679 list_del_init(&work->list);
7680 btrfs_wait_and_free_delalloc_work(work);
7681 }
7682
Chris Mason8c8bee12008-09-29 11:19:10 -04007683 /* the filemap_flush will queue IO into the worker threads, but
7684 * we have to make sure the IO is actually started and that
7685 * ordered extents get created before we return
7686 */
7687 atomic_inc(&root->fs_info->async_submit_draining);
Chris Masond3977122009-01-05 21:25:51 -05007688 while (atomic_read(&root->fs_info->nr_async_submits) ||
Chris Mason771ed682008-11-06 22:02:51 -05007689 atomic_read(&root->fs_info->async_delalloc_pages)) {
Chris Mason8c8bee12008-09-29 11:19:10 -04007690 wait_event(root->fs_info->async_submit_wait,
Chris Mason771ed682008-11-06 22:02:51 -05007691 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
7692 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee12008-09-29 11:19:10 -04007693 }
7694 atomic_dec(&root->fs_info->async_submit_draining);
Miao Xie1eafa6c2013-01-22 10:49:00 +00007695 return 0;
Miao Xie8ccf6f192012-10-25 09:28:04 +00007696out:
7697 list_for_each_entry_safe(work, next, &works, list) {
7698 list_del_init(&work->list);
7699 btrfs_wait_and_free_delalloc_work(work);
7700 }
Miao Xie1eafa6c2013-01-22 10:49:00 +00007701
7702 if (!list_empty_careful(&splice)) {
7703 spin_lock(&root->fs_info->delalloc_lock);
7704 list_splice_tail(&splice, &root->fs_info->delalloc_inodes);
7705 spin_unlock(&root->fs_info->delalloc_lock);
7706 }
Miao Xie8ccf6f192012-10-25 09:28:04 +00007707 return ret;
Chris Masonea8c2812008-08-04 23:17:27 -04007708}
7709
Chris Mason39279cc2007-06-12 06:35:45 -04007710static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
7711 const char *symname)
7712{
7713 struct btrfs_trans_handle *trans;
7714 struct btrfs_root *root = BTRFS_I(dir)->root;
7715 struct btrfs_path *path;
7716 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05007717 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04007718 int err;
7719 int drop_inode = 0;
7720 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04007721 u64 index = 0 ;
Chris Mason39279cc2007-06-12 06:35:45 -04007722 int name_len;
7723 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04007724 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04007725 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04007726 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04007727
7728 name_len = strlen(symname) + 1;
7729 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
7730 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05007731
Josef Bacik9ed74f22009-09-11 16:12:44 -04007732 /*
7733 * 2 items for inode item and ref
7734 * 2 items for dir items
7735 * 1 item for xattr if selinux is on
7736 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04007737 trans = btrfs_start_transaction(root, 5);
7738 if (IS_ERR(trans))
7739 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05007740
Li Zefan581bb052011-04-20 10:06:11 +08007741 err = btrfs_find_free_ino(root, &objectid);
7742 if (err)
7743 goto out_unlock;
7744
Josef Bacikaec74772008-07-24 12:12:38 -04007745 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08007746 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04007747 S_IFLNK|S_IRWXUGO, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04007748 if (IS_ERR(inode)) {
7749 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007750 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04007751 }
Chris Mason39279cc2007-06-12 06:35:45 -04007752
Eric Paris2a7dba32011-02-01 11:05:39 -05007753 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04007754 if (err) {
7755 drop_inode = 1;
7756 goto out_unlock;
7757 }
7758
Casey Schauflerad19db72011-12-15 10:09:07 -05007759 /*
7760 * If the active LSM wants to access the inode during
7761 * d_instantiate it needs these. Smack checks to see
7762 * if the filesystem supports xattrs by looking at the
7763 * ops vector.
7764 */
7765 inode->i_fop = &btrfs_file_operations;
7766 inode->i_op = &btrfs_file_inode_operations;
7767
Josef Bacika1b075d2010-11-19 20:36:11 +00007768 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04007769 if (err)
7770 drop_inode = 1;
7771 else {
7772 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04007773 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05007774 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04007775 }
Chris Mason39279cc2007-06-12 06:35:45 -04007776 if (drop_inode)
7777 goto out_unlock;
7778
7779 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07007780 if (!path) {
7781 err = -ENOMEM;
7782 drop_inode = 1;
7783 goto out_unlock;
7784 }
Li Zefan33345d012011-04-20 10:31:50 +08007785 key.objectid = btrfs_ino(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007786 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007787 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
7788 datasize = btrfs_file_extent_calc_inline_size(name_len);
7789 err = btrfs_insert_empty_item(trans, root, path, &key,
7790 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04007791 if (err) {
7792 drop_inode = 1;
Julia Lawallb0839162011-05-14 07:10:51 +00007793 btrfs_free_path(path);
Chris Mason54aa1f42007-06-22 14:16:25 -04007794 goto out_unlock;
7795 }
Chris Mason5f39d392007-10-15 16:14:19 -04007796 leaf = path->nodes[0];
7797 ei = btrfs_item_ptr(leaf, path->slots[0],
7798 struct btrfs_file_extent_item);
7799 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
7800 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04007801 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -04007802 btrfs_set_file_extent_encryption(leaf, ei, 0);
7803 btrfs_set_file_extent_compression(leaf, ei, 0);
7804 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
7805 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
7806
Chris Mason39279cc2007-06-12 06:35:45 -04007807 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04007808 write_extent_buffer(leaf, symname, ptr, name_len);
7809 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04007810 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04007811
Chris Mason39279cc2007-06-12 06:35:45 -04007812 inode->i_op = &btrfs_symlink_inode_operations;
7813 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04007814 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Yan Zhengd899e052008-10-30 14:25:28 -04007815 inode_set_bytes(inode, name_len);
Chris Masondbe674a2008-07-17 12:54:05 -04007816 btrfs_i_size_write(inode, name_len - 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04007817 err = btrfs_update_inode(trans, root, inode);
7818 if (err)
7819 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04007820
7821out_unlock:
Al Viro08c422c2011-12-23 07:58:13 -05007822 if (!err)
7823 d_instantiate(dentry, inode);
Josef Bacik7ad85bb2012-01-12 19:10:12 -05007824 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04007825 if (drop_inode) {
7826 inode_dec_link_count(inode);
7827 iput(inode);
7828 }
Liu Bob53d3f52012-11-14 14:34:34 +00007829 btrfs_btree_balance_dirty(root);
Chris Mason39279cc2007-06-12 06:35:45 -04007830 return err;
7831}
Chris Mason16432982008-04-10 10:23:21 -04007832
Josef Bacik0af3d002010-06-21 14:48:16 -04007833static int __btrfs_prealloc_file_range(struct inode *inode, int mode,
7834 u64 start, u64 num_bytes, u64 min_size,
7835 loff_t actual_len, u64 *alloc_hint,
7836 struct btrfs_trans_handle *trans)
Yan Zhengd899e052008-10-30 14:25:28 -04007837{
Josef Bacik5dc562c2012-08-17 13:14:17 -04007838 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
7839 struct extent_map *em;
Yan Zhengd899e052008-10-30 14:25:28 -04007840 struct btrfs_root *root = BTRFS_I(inode)->root;
7841 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -04007842 u64 cur_offset = start;
Josef Bacik55a61d12010-11-22 18:50:32 +00007843 u64 i_size;
Yan Zhengd899e052008-10-30 14:25:28 -04007844 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04007845 bool own_trans = true;
Yan Zhengd899e052008-10-30 14:25:28 -04007846
Josef Bacik0af3d002010-06-21 14:48:16 -04007847 if (trans)
7848 own_trans = false;
Yan Zhengd899e052008-10-30 14:25:28 -04007849 while (num_bytes > 0) {
Josef Bacik0af3d002010-06-21 14:48:16 -04007850 if (own_trans) {
7851 trans = btrfs_start_transaction(root, 3);
7852 if (IS_ERR(trans)) {
7853 ret = PTR_ERR(trans);
7854 break;
7855 }
Yan Zhengd899e052008-10-30 14:25:28 -04007856 }
Yan, Zheng5a303d52009-11-12 09:34:52 +00007857
Yan, Zhengefa56462010-05-16 10:49:59 -04007858 ret = btrfs_reserve_extent(trans, root, num_bytes, min_size,
Josef Bacik81c9ad22012-01-18 10:56:06 -05007859 0, *alloc_hint, &ins, 1);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007860 if (ret) {
Josef Bacik0af3d002010-06-21 14:48:16 -04007861 if (own_trans)
7862 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04007863 break;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007864 }
7865
Yan Zhengd899e052008-10-30 14:25:28 -04007866 ret = insert_reserved_file_extent(trans, inode,
7867 cur_offset, ins.objectid,
7868 ins.offset, ins.offset,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00007869 ins.offset, 0, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04007870 BTRFS_FILE_EXTENT_PREALLOC);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007871 if (ret) {
7872 btrfs_abort_transaction(trans, root, ret);
7873 if (own_trans)
7874 btrfs_end_transaction(trans, root);
7875 break;
7876 }
Chris Masona1ed8352009-09-11 12:27:37 -04007877 btrfs_drop_extent_cache(inode, cur_offset,
7878 cur_offset + ins.offset -1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007879
Josef Bacik5dc562c2012-08-17 13:14:17 -04007880 em = alloc_extent_map();
7881 if (!em) {
7882 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
7883 &BTRFS_I(inode)->runtime_flags);
7884 goto next;
7885 }
7886
7887 em->start = cur_offset;
7888 em->orig_start = cur_offset;
7889 em->len = ins.offset;
7890 em->block_start = ins.objectid;
7891 em->block_len = ins.offset;
Josef Bacikb4939682012-12-03 10:31:19 -05007892 em->orig_block_len = ins.offset;
Josef Bacik5dc562c2012-08-17 13:14:17 -04007893 em->bdev = root->fs_info->fs_devices->latest_bdev;
7894 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
7895 em->generation = trans->transid;
7896
7897 while (1) {
7898 write_lock(&em_tree->lock);
7899 ret = add_extent_mapping(em_tree, em);
7900 if (!ret)
7901 list_move(&em->list,
7902 &em_tree->modified_extents);
7903 write_unlock(&em_tree->lock);
7904 if (ret != -EEXIST)
7905 break;
7906 btrfs_drop_extent_cache(inode, cur_offset,
7907 cur_offset + ins.offset - 1,
7908 0);
7909 }
7910 free_extent_map(em);
7911next:
Yan Zhengd899e052008-10-30 14:25:28 -04007912 num_bytes -= ins.offset;
7913 cur_offset += ins.offset;
Yan, Zhengefa56462010-05-16 10:49:59 -04007914 *alloc_hint = ins.objectid + ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007915
Josef Bacik0c4d2d92012-04-05 15:03:02 -04007916 inode_inc_iversion(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04007917 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +02007918 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -04007919 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
Yan, Zhengefa56462010-05-16 10:49:59 -04007920 (actual_len > inode->i_size) &&
7921 (cur_offset > inode->i_size)) {
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00007922 if (cur_offset > actual_len)
Josef Bacik55a61d12010-11-22 18:50:32 +00007923 i_size = actual_len;
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00007924 else
Josef Bacik55a61d12010-11-22 18:50:32 +00007925 i_size = cur_offset;
7926 i_size_write(inode, i_size);
7927 btrfs_ordered_update_i_size(inode, i_size, NULL);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007928 }
7929
Yan Zhengd899e052008-10-30 14:25:28 -04007930 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007931
7932 if (ret) {
7933 btrfs_abort_transaction(trans, root, ret);
7934 if (own_trans)
7935 btrfs_end_transaction(trans, root);
7936 break;
7937 }
Yan Zhengd899e052008-10-30 14:25:28 -04007938
Josef Bacik0af3d002010-06-21 14:48:16 -04007939 if (own_trans)
7940 btrfs_end_transaction(trans, root);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007941 }
Yan Zhengd899e052008-10-30 14:25:28 -04007942 return ret;
7943}
7944
Josef Bacik0af3d002010-06-21 14:48:16 -04007945int btrfs_prealloc_file_range(struct inode *inode, int mode,
7946 u64 start, u64 num_bytes, u64 min_size,
7947 loff_t actual_len, u64 *alloc_hint)
7948{
7949 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
7950 min_size, actual_len, alloc_hint,
7951 NULL);
7952}
7953
7954int btrfs_prealloc_file_range_trans(struct inode *inode,
7955 struct btrfs_trans_handle *trans, int mode,
7956 u64 start, u64 num_bytes, u64 min_size,
7957 loff_t actual_len, u64 *alloc_hint)
7958{
7959 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
7960 min_size, actual_len, alloc_hint, trans);
7961}
7962
Chris Masone6dcd2d2008-07-17 12:53:50 -04007963static int btrfs_set_page_dirty(struct page *page)
7964{
Chris Masone6dcd2d2008-07-17 12:53:50 -04007965 return __set_page_dirty_nobuffers(page);
7966}
7967
Al Viro10556cb2011-06-20 19:28:19 -04007968static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -05007969{
Li Zefanb83cc962010-12-20 16:04:08 +08007970 struct btrfs_root *root = BTRFS_I(inode)->root;
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +00007971 umode_t mode = inode->i_mode;
Li Zefanb83cc962010-12-20 16:04:08 +08007972
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +00007973 if (mask & MAY_WRITE &&
7974 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) {
7975 if (btrfs_root_readonly(root))
7976 return -EROFS;
7977 if (BTRFS_I(inode)->flags & BTRFS_INODE_READONLY)
7978 return -EACCES;
7979 }
Al Viro2830ba72011-06-20 19:16:29 -04007980 return generic_permission(inode, mask);
Yanfdebe2b2008-01-14 13:26:08 -05007981}
Chris Mason39279cc2007-06-12 06:35:45 -04007982
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007983static const struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -05007984 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -04007985 .lookup = btrfs_lookup,
7986 .create = btrfs_create,
7987 .unlink = btrfs_unlink,
7988 .link = btrfs_link,
7989 .mkdir = btrfs_mkdir,
7990 .rmdir = btrfs_rmdir,
7991 .rename = btrfs_rename,
7992 .symlink = btrfs_symlink,
7993 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04007994 .mknod = btrfs_mknod,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007995 .setxattr = btrfs_setxattr,
7996 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05007997 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007998 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05007999 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02008000 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04008001};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07008002static const struct inode_operations btrfs_dir_ro_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04008003 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05008004 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02008005 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04008006};
Yan, Zheng76dda932009-09-21 16:00:26 -04008007
Alexey Dobriyan828c0952009-10-01 15:43:56 -07008008static const struct file_operations btrfs_dir_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04008009 .llseek = generic_file_llseek,
8010 .read = generic_read_dir,
David Woodhousecbdf5a22008-08-06 19:42:33 +01008011 .readdir = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04008012 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04008013#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04008014 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04008015#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04008016 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -04008017 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -04008018};
8019
Chris Masond1310b22008-01-24 16:13:08 -05008020static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04008021 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05008022 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04008023 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04008024 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04008025 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04008026 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05008027 .set_bit_hook = btrfs_set_bit_hook,
8028 .clear_bit_hook = btrfs_clear_bit_hook,
Josef Bacik9ed74f22009-09-11 16:12:44 -04008029 .merge_extent_hook = btrfs_merge_extent_hook,
8030 .split_extent_hook = btrfs_split_extent_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04008031};
8032
Chris Mason35054392009-01-21 13:11:13 -05008033/*
8034 * btrfs doesn't support the bmap operation because swapfiles
8035 * use bmap to make a mapping of extents in the file. They assume
8036 * these extents won't change over the life of the file and they
8037 * use the bmap result to do IO directly to the drive.
8038 *
8039 * the btrfs bmap call would return logical addresses that aren't
8040 * suitable for IO and they also will change frequently as COW
8041 * operations happen. So, swapfile + btrfs == corruption.
8042 *
8043 * For now we're avoiding this by dropping bmap.
8044 */
Alexey Dobriyan7f094102009-09-21 17:01:10 -07008045static const struct address_space_operations btrfs_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04008046 .readpage = btrfs_readpage,
8047 .writepage = btrfs_writepage,
Chris Masonb293f02e2007-11-01 19:45:34 -04008048 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05008049 .readpages = btrfs_readpages,
Chris Mason16432982008-04-10 10:23:21 -04008050 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04008051 .invalidatepage = btrfs_invalidatepage,
8052 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04008053 .set_page_dirty = btrfs_set_page_dirty,
Andi Kleen465fdd92009-09-16 11:50:18 +02008054 .error_remove_page = generic_error_remove_page,
Chris Mason39279cc2007-06-12 06:35:45 -04008055};
8056
Alexey Dobriyan7f094102009-09-21 17:01:10 -07008057static const struct address_space_operations btrfs_symlink_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04008058 .readpage = btrfs_readpage,
8059 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04008060 .invalidatepage = btrfs_invalidatepage,
8061 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04008062};
8063
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07008064static const struct inode_operations btrfs_file_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04008065 .getattr = btrfs_getattr,
8066 .setattr = btrfs_setattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04008067 .setxattr = btrfs_setxattr,
8068 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05008069 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04008070 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05008071 .permission = btrfs_permission,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05008072 .fiemap = btrfs_fiemap,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02008073 .get_acl = btrfs_get_acl,
Josef Bacike41f9412012-03-26 09:46:47 -04008074 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -04008075};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07008076static const struct inode_operations btrfs_special_inode_operations = {
Josef Bacik618e21d2007-07-11 10:18:17 -04008077 .getattr = btrfs_getattr,
8078 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05008079 .permission = btrfs_permission,
Christoph Hellwig95819c02008-08-28 06:21:17 -04008080 .setxattr = btrfs_setxattr,
8081 .getxattr = btrfs_getxattr,
Josef Bacik33268ea2008-07-24 12:16:36 -04008082 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04008083 .removexattr = btrfs_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02008084 .get_acl = btrfs_get_acl,
Josef Bacike41f9412012-03-26 09:46:47 -04008085 .update_time = btrfs_update_time,
Josef Bacik618e21d2007-07-11 10:18:17 -04008086};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07008087static const struct inode_operations btrfs_symlink_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04008088 .readlink = generic_readlink,
8089 .follow_link = page_follow_link_light,
8090 .put_link = page_put_link,
Li Zefanf2095612010-11-19 02:05:24 +00008091 .getattr = btrfs_getattr,
Josef Bacik22c44fe2011-11-30 10:45:38 -05008092 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05008093 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -05008094 .setxattr = btrfs_setxattr,
8095 .getxattr = btrfs_getxattr,
8096 .listxattr = btrfs_listxattr,
8097 .removexattr = btrfs_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02008098 .get_acl = btrfs_get_acl,
Josef Bacike41f9412012-03-26 09:46:47 -04008099 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -04008100};
Yan, Zheng76dda932009-09-21 16:00:26 -04008101
Alexey Dobriyan82d339d2009-10-09 09:54:36 -04008102const struct dentry_operations btrfs_dentry_operations = {
Yan, Zheng76dda932009-09-21 16:00:26 -04008103 .d_delete = btrfs_dentry_delete,
Josef Bacikb4aff1f2011-06-28 16:18:59 -04008104 .d_release = btrfs_dentry_release,
Yan, Zheng76dda932009-09-21 16:00:26 -04008105};