blob: d41e467b4aa2d527226d82bb2ec3c7d8b2445931 [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Chris Mason8f18cf12008-04-25 16:53:30 -040019#include <linux/kernel.h>
Chris Mason065631f2008-02-20 12:07:25 -050020#include <linux/bio.h>
Chris Mason39279cc2007-06-12 06:35:45 -040021#include <linux/buffer_head.h>
Sage Weilf2eb0a22008-05-02 14:43:14 -040022#include <linux/file.h>
Chris Mason39279cc2007-06-12 06:35:45 -040023#include <linux/fs.h>
24#include <linux/pagemap.h>
25#include <linux/highmem.h>
26#include <linux/time.h>
27#include <linux/init.h>
28#include <linux/string.h>
Chris Mason39279cc2007-06-12 06:35:45 -040029#include <linux/backing-dev.h>
30#include <linux/mpage.h>
31#include <linux/swap.h>
32#include <linux/writeback.h>
33#include <linux/statfs.h>
34#include <linux/compat.h>
Chris Mason9ebefb182007-06-15 13:50:00 -040035#include <linux/bit_spinlock.h>
Josef Bacik5103e942007-11-16 11:45:54 -050036#include <linux/xattr.h>
Josef Bacik33268ea2008-07-24 12:16:36 -040037#include <linux/posix_acl.h>
Yan Zhengd899e052008-10-30 14:25:28 -040038#include <linux/falloc.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090039#include <linux/slab.h>
David Sterba7a36dde2011-05-06 15:33:15 +020040#include <linux/ratelimit.h>
Josef Bacik22c44fe2011-11-30 10:45:38 -050041#include <linux/mount.h>
Chris Mason4b4e25f2008-11-20 10:22:27 -050042#include "compat.h"
Chris Mason39279cc2007-06-12 06:35:45 -040043#include "ctree.h"
44#include "disk-io.h"
45#include "transaction.h"
46#include "btrfs_inode.h"
47#include "ioctl.h"
48#include "print-tree.h"
Chris Masone6dcd2d2008-07-17 12:53:50 -040049#include "ordered-data.h"
Christoph Hellwig95819c02008-08-28 06:21:17 -040050#include "xattr.h"
Chris Masone02119d2008-09-05 16:13:11 -040051#include "tree-log.h"
Jan Schmidt4a54c8c2011-07-22 15:41:52 +020052#include "volumes.h"
Chris Masonc8b97812008-10-29 14:49:59 -040053#include "compression.h"
Chris Masonb4ce94d2009-02-04 09:25:08 -050054#include "locking.h"
Josef Bacikdc89e982011-01-28 17:05:48 -050055#include "free-space-cache.h"
Li Zefan581bb052011-04-20 10:06:11 +080056#include "inode-map.h"
Chris Mason39279cc2007-06-12 06:35:45 -040057
58struct btrfs_iget_args {
59 u64 ino;
60 struct btrfs_root *root;
61};
62
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070063static const struct inode_operations btrfs_dir_inode_operations;
64static const struct inode_operations btrfs_symlink_inode_operations;
65static const struct inode_operations btrfs_dir_ro_inode_operations;
66static const struct inode_operations btrfs_special_inode_operations;
67static const struct inode_operations btrfs_file_inode_operations;
Alexey Dobriyan7f094102009-09-21 17:01:10 -070068static const struct address_space_operations btrfs_aops;
69static const struct address_space_operations btrfs_symlink_aops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -070070static const struct file_operations btrfs_dir_file_operations;
Chris Masond1310b22008-01-24 16:13:08 -050071static struct extent_io_ops btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -040072
73static struct kmem_cache *btrfs_inode_cachep;
74struct kmem_cache *btrfs_trans_handle_cachep;
75struct kmem_cache *btrfs_transaction_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040076struct kmem_cache *btrfs_path_cachep;
Josef Bacikdc89e982011-01-28 17:05:48 -050077struct kmem_cache *btrfs_free_space_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040078
79#define S_SHIFT 12
80static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
81 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
82 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
83 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
84 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
85 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
86 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
87 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
88};
89
Josef Bacika41ad392011-01-31 15:30:16 -050090static int btrfs_setsize(struct inode *inode, loff_t newsize);
91static int btrfs_truncate(struct inode *inode);
Josef Bacik5fd02042012-05-02 14:00:54 -040092static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent);
Chris Mason771ed682008-11-06 22:02:51 -050093static noinline int cow_file_range(struct inode *inode,
94 struct page *locked_page,
95 u64 start, u64 end, int *page_started,
96 unsigned long *nr_written, int unlock);
Chris Mason21151332011-11-10 20:39:08 -050097static noinline int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans,
98 struct btrfs_root *root, struct inode *inode);
Josef Bacik7b128762008-07-24 12:17:14 -040099
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000100static int btrfs_init_inode_security(struct btrfs_trans_handle *trans,
Eric Paris2a7dba32011-02-01 11:05:39 -0500101 struct inode *inode, struct inode *dir,
102 const struct qstr *qstr)
Jim Owens0279b4c2009-02-04 09:29:13 -0500103{
104 int err;
105
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000106 err = btrfs_init_acl(trans, inode, dir);
Jim Owens0279b4c2009-02-04 09:29:13 -0500107 if (!err)
Eric Paris2a7dba32011-02-01 11:05:39 -0500108 err = btrfs_xattr_security_init(trans, inode, dir, qstr);
Jim Owens0279b4c2009-02-04 09:29:13 -0500109 return err;
110}
111
Chris Masond352ac62008-09-29 15:18:18 -0400112/*
Chris Masonc8b97812008-10-29 14:49:59 -0400113 * this does all the hard work for inserting an inline extent into
114 * the btree. The caller should have done a btrfs_drop_extents so that
115 * no overlapping inline items exist in the btree
116 */
Chris Masond3977122009-01-05 21:25:51 -0500117static noinline int insert_inline_extent(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400118 struct btrfs_root *root, struct inode *inode,
119 u64 start, size_t size, size_t compressed_size,
Li Zefanfe3f5662011-03-28 08:30:38 +0000120 int compress_type,
Chris Masonc8b97812008-10-29 14:49:59 -0400121 struct page **compressed_pages)
122{
123 struct btrfs_key key;
124 struct btrfs_path *path;
125 struct extent_buffer *leaf;
126 struct page *page = NULL;
127 char *kaddr;
128 unsigned long ptr;
129 struct btrfs_file_extent_item *ei;
130 int err = 0;
131 int ret;
132 size_t cur_size = size;
133 size_t datasize;
134 unsigned long offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400135
Li Zefanfe3f5662011-03-28 08:30:38 +0000136 if (compressed_size && compressed_pages)
Chris Masonc8b97812008-10-29 14:49:59 -0400137 cur_size = compressed_size;
Chris Masonc8b97812008-10-29 14:49:59 -0400138
Chris Masond3977122009-01-05 21:25:51 -0500139 path = btrfs_alloc_path();
140 if (!path)
Chris Masonc8b97812008-10-29 14:49:59 -0400141 return -ENOMEM;
142
Chris Masonb9473432009-03-13 11:00:37 -0400143 path->leave_spinning = 1;
Chris Masonc8b97812008-10-29 14:49:59 -0400144
Li Zefan33345d012011-04-20 10:31:50 +0800145 key.objectid = btrfs_ino(inode);
Chris Masonc8b97812008-10-29 14:49:59 -0400146 key.offset = start;
147 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
Chris Masonc8b97812008-10-29 14:49:59 -0400148 datasize = btrfs_file_extent_calc_inline_size(cur_size);
149
150 inode_add_bytes(inode, size);
151 ret = btrfs_insert_empty_item(trans, root, path, &key,
152 datasize);
Chris Masonc8b97812008-10-29 14:49:59 -0400153 if (ret) {
154 err = ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400155 goto fail;
156 }
157 leaf = path->nodes[0];
158 ei = btrfs_item_ptr(leaf, path->slots[0],
159 struct btrfs_file_extent_item);
160 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
161 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
162 btrfs_set_file_extent_encryption(leaf, ei, 0);
163 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
164 btrfs_set_file_extent_ram_bytes(leaf, ei, size);
165 ptr = btrfs_file_extent_inline_start(ei);
166
Li Zefan261507a02010-12-17 14:21:50 +0800167 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -0400168 struct page *cpage;
169 int i = 0;
Chris Masond3977122009-01-05 21:25:51 -0500170 while (compressed_size > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -0400171 cpage = compressed_pages[i];
Chris Mason5b050f02008-11-11 09:34:41 -0500172 cur_size = min_t(unsigned long, compressed_size,
Chris Masonc8b97812008-10-29 14:49:59 -0400173 PAGE_CACHE_SIZE);
174
Cong Wang7ac687d2011-11-25 23:14:28 +0800175 kaddr = kmap_atomic(cpage);
Chris Masonc8b97812008-10-29 14:49:59 -0400176 write_extent_buffer(leaf, kaddr, ptr, cur_size);
Cong Wang7ac687d2011-11-25 23:14:28 +0800177 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400178
179 i++;
180 ptr += cur_size;
181 compressed_size -= cur_size;
182 }
183 btrfs_set_file_extent_compression(leaf, ei,
Li Zefan261507a02010-12-17 14:21:50 +0800184 compress_type);
Chris Masonc8b97812008-10-29 14:49:59 -0400185 } else {
186 page = find_get_page(inode->i_mapping,
187 start >> PAGE_CACHE_SHIFT);
188 btrfs_set_file_extent_compression(leaf, ei, 0);
Cong Wang7ac687d2011-11-25 23:14:28 +0800189 kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -0400190 offset = start & (PAGE_CACHE_SIZE - 1);
191 write_extent_buffer(leaf, kaddr + offset, ptr, size);
Cong Wang7ac687d2011-11-25 23:14:28 +0800192 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400193 page_cache_release(page);
194 }
195 btrfs_mark_buffer_dirty(leaf);
196 btrfs_free_path(path);
197
Yan, Zhengc2167752009-11-12 09:34:21 +0000198 /*
199 * we're an inline extent, so nobody can
200 * extend the file past i_size without locking
201 * a page we already have locked.
202 *
203 * We must do any isize and inode updates
204 * before we unlock the pages. Otherwise we
205 * could end up racing with unlink.
206 */
Chris Masonc8b97812008-10-29 14:49:59 -0400207 BTRFS_I(inode)->disk_i_size = inode->i_size;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100208 ret = btrfs_update_inode(trans, root, inode);
Yan, Zhengc2167752009-11-12 09:34:21 +0000209
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100210 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400211fail:
212 btrfs_free_path(path);
213 return err;
214}
215
216
217/*
218 * conditionally insert an inline extent into the file. This
219 * does the checks required to make sure the data is small enough
220 * to fit as an inline extent.
221 */
Chris Mason7f366cf2009-03-12 20:12:45 -0400222static noinline int cow_file_range_inline(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400223 struct btrfs_root *root,
224 struct inode *inode, u64 start, u64 end,
Li Zefanfe3f5662011-03-28 08:30:38 +0000225 size_t compressed_size, int compress_type,
Chris Masonc8b97812008-10-29 14:49:59 -0400226 struct page **compressed_pages)
227{
228 u64 isize = i_size_read(inode);
229 u64 actual_end = min(end + 1, isize);
230 u64 inline_len = actual_end - start;
231 u64 aligned_end = (end + root->sectorsize - 1) &
232 ~((u64)root->sectorsize - 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400233 u64 data_len = inline_len;
234 int ret;
235
236 if (compressed_size)
237 data_len = compressed_size;
238
239 if (start > 0 ||
Chris Mason70b99e62008-10-31 12:46:39 -0400240 actual_end >= PAGE_CACHE_SIZE ||
Chris Masonc8b97812008-10-29 14:49:59 -0400241 data_len >= BTRFS_MAX_INLINE_DATA_SIZE(root) ||
242 (!compressed_size &&
243 (actual_end & (root->sectorsize - 1)) == 0) ||
244 end + 1 < isize ||
245 data_len > root->fs_info->max_inline) {
246 return 1;
247 }
248
Josef Bacik26714852012-08-29 12:24:27 -0400249 ret = btrfs_drop_extents(trans, root, inode, start, aligned_end, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100250 if (ret)
251 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400252
253 if (isize > actual_end)
254 inline_len = min_t(u64, isize, actual_end);
255 ret = insert_inline_extent(trans, root, inode, start,
256 inline_len, compressed_size,
Li Zefanfe3f5662011-03-28 08:30:38 +0000257 compress_type, compressed_pages);
Josef Bacik2adcac12012-05-23 16:10:14 -0400258 if (ret && ret != -ENOSPC) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100259 btrfs_abort_transaction(trans, root, ret);
260 return ret;
Josef Bacik2adcac12012-05-23 16:10:14 -0400261 } else if (ret == -ENOSPC) {
262 return 1;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100263 }
Josef Bacik2adcac12012-05-23 16:10:14 -0400264
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400265 btrfs_delalloc_release_metadata(inode, end + 1 - start);
Chris Masona1ed8352009-09-11 12:27:37 -0400266 btrfs_drop_extent_cache(inode, start, aligned_end - 1, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400267 return 0;
268}
269
Chris Mason771ed682008-11-06 22:02:51 -0500270struct async_extent {
271 u64 start;
272 u64 ram_size;
273 u64 compressed_size;
274 struct page **pages;
275 unsigned long nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800276 int compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500277 struct list_head list;
278};
279
280struct async_cow {
281 struct inode *inode;
282 struct btrfs_root *root;
283 struct page *locked_page;
284 u64 start;
285 u64 end;
286 struct list_head extents;
287 struct btrfs_work work;
288};
289
290static noinline int add_async_extent(struct async_cow *cow,
291 u64 start, u64 ram_size,
292 u64 compressed_size,
293 struct page **pages,
Li Zefan261507a02010-12-17 14:21:50 +0800294 unsigned long nr_pages,
295 int compress_type)
Chris Mason771ed682008-11-06 22:02:51 -0500296{
297 struct async_extent *async_extent;
298
299 async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100300 BUG_ON(!async_extent); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -0500301 async_extent->start = start;
302 async_extent->ram_size = ram_size;
303 async_extent->compressed_size = compressed_size;
304 async_extent->pages = pages;
305 async_extent->nr_pages = nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800306 async_extent->compress_type = compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500307 list_add_tail(&async_extent->list, &cow->extents);
308 return 0;
309}
310
Chris Masonc8b97812008-10-29 14:49:59 -0400311/*
Chris Mason771ed682008-11-06 22:02:51 -0500312 * we create compressed extents in two phases. The first
313 * phase compresses a range of pages that have already been
314 * locked (both pages and state bits are locked).
Chris Masonc8b97812008-10-29 14:49:59 -0400315 *
Chris Mason771ed682008-11-06 22:02:51 -0500316 * This is done inside an ordered work queue, and the compression
317 * is spread across many cpus. The actual IO submission is step
318 * two, and the ordered work queue takes care of making sure that
319 * happens in the same order things were put onto the queue by
320 * writepages and friends.
Chris Masonc8b97812008-10-29 14:49:59 -0400321 *
Chris Mason771ed682008-11-06 22:02:51 -0500322 * If this code finds it can't get good compression, it puts an
323 * entry onto the work queue to write the uncompressed bytes. This
324 * makes sure that both compressed inodes and uncompressed inodes
Artem Bityutskiyb2570312012-07-25 18:12:06 +0300325 * are written in the same order that the flusher thread sent them
326 * down.
Chris Masond352ac62008-09-29 15:18:18 -0400327 */
Chris Mason771ed682008-11-06 22:02:51 -0500328static noinline int compress_file_range(struct inode *inode,
329 struct page *locked_page,
330 u64 start, u64 end,
331 struct async_cow *async_cow,
332 int *num_added)
Chris Masonb888db22007-08-27 16:49:44 -0400333{
334 struct btrfs_root *root = BTRFS_I(inode)->root;
335 struct btrfs_trans_handle *trans;
Chris Masondb945352007-10-15 16:15:53 -0400336 u64 num_bytes;
Chris Masondb945352007-10-15 16:15:53 -0400337 u64 blocksize = root->sectorsize;
Chris Masonc8b97812008-10-29 14:49:59 -0400338 u64 actual_end;
Chris Mason42dc7ba2008-12-15 11:44:56 -0500339 u64 isize = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400340 int ret = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400341 struct page **pages = NULL;
342 unsigned long nr_pages;
343 unsigned long nr_pages_ret = 0;
344 unsigned long total_compressed = 0;
345 unsigned long total_in = 0;
346 unsigned long max_compressed = 128 * 1024;
Chris Mason771ed682008-11-06 22:02:51 -0500347 unsigned long max_uncompressed = 128 * 1024;
Chris Masonc8b97812008-10-29 14:49:59 -0400348 int i;
349 int will_compress;
Li Zefan261507a02010-12-17 14:21:50 +0800350 int compress_type = root->fs_info->compress_type;
Chris Masonb888db22007-08-27 16:49:44 -0400351
Liu Bo4cb13e52012-03-29 09:57:45 -0400352 /* if this is a small write inside eof, kick off a defrag */
353 if ((end - start + 1) < 16 * 1024 &&
354 (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size))
Chris Mason4cb53002011-05-24 15:35:30 -0400355 btrfs_add_inode_defrag(NULL, inode);
356
Chris Mason42dc7ba2008-12-15 11:44:56 -0500357 actual_end = min_t(u64, isize, end + 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400358again:
359 will_compress = 0;
360 nr_pages = (end >> PAGE_CACHE_SHIFT) - (start >> PAGE_CACHE_SHIFT) + 1;
361 nr_pages = min(nr_pages, (128 * 1024UL) / PAGE_CACHE_SIZE);
362
Chris Masonf03d9302009-02-04 09:31:06 -0500363 /*
364 * we don't want to send crud past the end of i_size through
365 * compression, that's just a waste of CPU time. So, if the
366 * end of the file is before the start of our current
367 * requested range of bytes, we bail out to the uncompressed
368 * cleanup code that can deal with all of this.
369 *
370 * It isn't really the fastest way to fix things, but this is a
371 * very uncommon corner.
372 */
373 if (actual_end <= start)
374 goto cleanup_and_bail_uncompressed;
375
Chris Masonc8b97812008-10-29 14:49:59 -0400376 total_compressed = actual_end - start;
377
378 /* we want to make sure that amount of ram required to uncompress
379 * an extent is reasonable, so we limit the total size in ram
Chris Mason771ed682008-11-06 22:02:51 -0500380 * of a compressed extent to 128k. This is a crucial number
381 * because it also controls how easily we can spread reads across
382 * cpus for decompression.
383 *
384 * We also want to make sure the amount of IO required to do
385 * a random read is reasonably small, so we limit the size of
386 * a compressed extent to 128k.
Chris Masonc8b97812008-10-29 14:49:59 -0400387 */
388 total_compressed = min(total_compressed, max_uncompressed);
Chris Masondb945352007-10-15 16:15:53 -0400389 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
Chris Masonbe20aa92007-12-17 20:14:01 -0500390 num_bytes = max(blocksize, num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -0400391 total_in = 0;
392 ret = 0;
Chris Masondb945352007-10-15 16:15:53 -0400393
Chris Mason771ed682008-11-06 22:02:51 -0500394 /*
395 * we do compression for mount -o compress and when the
396 * inode has not been flagged as nocompress. This flag can
397 * change at any time if we discover bad compression ratios.
Chris Masonc8b97812008-10-29 14:49:59 -0400398 */
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200399 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS) &&
Chris Mason1e701a32010-03-11 09:42:04 -0500400 (btrfs_test_opt(root, COMPRESS) ||
Liu Bo75e7cb72011-03-22 10:12:20 +0000401 (BTRFS_I(inode)->force_compress) ||
402 (BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS))) {
Chris Masonc8b97812008-10-29 14:49:59 -0400403 WARN_ON(pages);
Chris Masoncfbc2462008-10-30 13:22:14 -0400404 pages = kzalloc(sizeof(struct page *) * nr_pages, GFP_NOFS);
Li Zefan560f7d72011-09-08 10:22:01 +0800405 if (!pages) {
406 /* just bail out to the uncompressed code */
407 goto cont;
408 }
Chris Mason179e29e2007-11-01 11:28:41 -0400409
Li Zefan261507a02010-12-17 14:21:50 +0800410 if (BTRFS_I(inode)->force_compress)
411 compress_type = BTRFS_I(inode)->force_compress;
412
413 ret = btrfs_compress_pages(compress_type,
414 inode->i_mapping, start,
415 total_compressed, pages,
416 nr_pages, &nr_pages_ret,
417 &total_in,
418 &total_compressed,
419 max_compressed);
Chris Masonc8b97812008-10-29 14:49:59 -0400420
421 if (!ret) {
422 unsigned long offset = total_compressed &
423 (PAGE_CACHE_SIZE - 1);
424 struct page *page = pages[nr_pages_ret - 1];
425 char *kaddr;
426
427 /* zero the tail end of the last page, we might be
428 * sending it down to disk
429 */
430 if (offset) {
Cong Wang7ac687d2011-11-25 23:14:28 +0800431 kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -0400432 memset(kaddr + offset, 0,
433 PAGE_CACHE_SIZE - offset);
Cong Wang7ac687d2011-11-25 23:14:28 +0800434 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400435 }
436 will_compress = 1;
437 }
438 }
Li Zefan560f7d72011-09-08 10:22:01 +0800439cont:
Chris Masonc8b97812008-10-29 14:49:59 -0400440 if (start == 0) {
Josef Bacik7a7eaa42011-04-13 12:54:33 -0400441 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100442 if (IS_ERR(trans)) {
443 ret = PTR_ERR(trans);
444 trans = NULL;
445 goto cleanup_and_out;
446 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400447 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason771ed682008-11-06 22:02:51 -0500448
Chris Masonc8b97812008-10-29 14:49:59 -0400449 /* lets try to make an inline extent */
Chris Mason771ed682008-11-06 22:02:51 -0500450 if (ret || total_in < (actual_end - start)) {
Chris Masonc8b97812008-10-29 14:49:59 -0400451 /* we didn't compress the entire range, try
Chris Mason771ed682008-11-06 22:02:51 -0500452 * to make an uncompressed inline extent.
Chris Masonc8b97812008-10-29 14:49:59 -0400453 */
454 ret = cow_file_range_inline(trans, root, inode,
Li Zefanfe3f5662011-03-28 08:30:38 +0000455 start, end, 0, 0, NULL);
Chris Masonc8b97812008-10-29 14:49:59 -0400456 } else {
Chris Mason771ed682008-11-06 22:02:51 -0500457 /* try making a compressed inline extent */
Chris Masonc8b97812008-10-29 14:49:59 -0400458 ret = cow_file_range_inline(trans, root, inode,
459 start, end,
Li Zefanfe3f5662011-03-28 08:30:38 +0000460 total_compressed,
461 compress_type, pages);
Chris Masonc8b97812008-10-29 14:49:59 -0400462 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100463 if (ret <= 0) {
Chris Mason771ed682008-11-06 22:02:51 -0500464 /*
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100465 * inline extent creation worked or returned error,
466 * we don't need to create any more async work items.
467 * Unlock and free up our temp pages.
Chris Mason771ed682008-11-06 22:02:51 -0500468 */
Chris Masonc8b97812008-10-29 14:49:59 -0400469 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400470 &BTRFS_I(inode)->io_tree,
471 start, end, NULL,
472 EXTENT_CLEAR_UNLOCK_PAGE | EXTENT_CLEAR_DIRTY |
Chris Masona3429ab2009-10-08 12:30:20 -0400473 EXTENT_CLEAR_DELALLOC |
Chris Masona791e352009-10-08 11:27:10 -0400474 EXTENT_SET_WRITEBACK | EXTENT_END_WRITEBACK);
Yan, Zhengc2167752009-11-12 09:34:21 +0000475
476 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400477 goto free_pages_out;
478 }
Yan, Zhengc2167752009-11-12 09:34:21 +0000479 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400480 }
481
482 if (will_compress) {
483 /*
484 * we aren't doing an inline extent round the compressed size
485 * up to a block size boundary so the allocator does sane
486 * things
487 */
488 total_compressed = (total_compressed + blocksize - 1) &
489 ~(blocksize - 1);
490
491 /*
492 * one last check to make sure the compression is really a
493 * win, compare the page count read with the blocks on disk
494 */
495 total_in = (total_in + PAGE_CACHE_SIZE - 1) &
496 ~(PAGE_CACHE_SIZE - 1);
497 if (total_compressed >= total_in) {
498 will_compress = 0;
499 } else {
Chris Masonc8b97812008-10-29 14:49:59 -0400500 num_bytes = total_in;
501 }
502 }
503 if (!will_compress && pages) {
504 /*
505 * the compression code ran but failed to make things smaller,
506 * free any pages it allocated and our page pointer array
507 */
508 for (i = 0; i < nr_pages_ret; i++) {
Chris Mason70b99e62008-10-31 12:46:39 -0400509 WARN_ON(pages[i]->mapping);
Chris Masonc8b97812008-10-29 14:49:59 -0400510 page_cache_release(pages[i]);
511 }
512 kfree(pages);
513 pages = NULL;
514 total_compressed = 0;
515 nr_pages_ret = 0;
516
517 /* flag the file so we don't compress in the future */
Chris Mason1e701a32010-03-11 09:42:04 -0500518 if (!btrfs_test_opt(root, FORCE_COMPRESS) &&
519 !(BTRFS_I(inode)->force_compress)) {
Chris Masona555f812010-01-28 16:18:15 -0500520 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
Chris Mason1e701a32010-03-11 09:42:04 -0500521 }
Chris Masonc8b97812008-10-29 14:49:59 -0400522 }
Chris Mason771ed682008-11-06 22:02:51 -0500523 if (will_compress) {
524 *num_added += 1;
525
526 /* the async work queues will take care of doing actual
527 * allocation on disk for these compressed pages,
528 * and will submit them to the elevator.
529 */
530 add_async_extent(async_cow, start, num_bytes,
Li Zefan261507a02010-12-17 14:21:50 +0800531 total_compressed, pages, nr_pages_ret,
532 compress_type);
Chris Mason771ed682008-11-06 22:02:51 -0500533
Yan, Zheng24ae6362010-12-06 07:02:36 +0000534 if (start + num_bytes < end) {
Chris Mason771ed682008-11-06 22:02:51 -0500535 start += num_bytes;
536 pages = NULL;
537 cond_resched();
538 goto again;
539 }
540 } else {
Chris Masonf03d9302009-02-04 09:31:06 -0500541cleanup_and_bail_uncompressed:
Chris Mason771ed682008-11-06 22:02:51 -0500542 /*
543 * No compression, but we still need to write the pages in
544 * the file we've been given so far. redirty the locked
545 * page if it corresponds to our extent and set things up
546 * for the async work queue to run cow_file_range to do
547 * the normal delalloc dance
548 */
549 if (page_offset(locked_page) >= start &&
550 page_offset(locked_page) <= end) {
551 __set_page_dirty_nobuffers(locked_page);
552 /* unlocked later on in the async handlers */
553 }
Li Zefan261507a02010-12-17 14:21:50 +0800554 add_async_extent(async_cow, start, end - start + 1,
555 0, NULL, 0, BTRFS_COMPRESS_NONE);
Chris Mason771ed682008-11-06 22:02:51 -0500556 *num_added += 1;
557 }
558
559out:
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100560 return ret;
Chris Mason771ed682008-11-06 22:02:51 -0500561
562free_pages_out:
563 for (i = 0; i < nr_pages_ret; i++) {
564 WARN_ON(pages[i]->mapping);
565 page_cache_release(pages[i]);
566 }
Chris Masond3977122009-01-05 21:25:51 -0500567 kfree(pages);
Chris Mason771ed682008-11-06 22:02:51 -0500568
569 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100570
571cleanup_and_out:
572 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
573 start, end, NULL,
574 EXTENT_CLEAR_UNLOCK_PAGE |
575 EXTENT_CLEAR_DIRTY |
576 EXTENT_CLEAR_DELALLOC |
577 EXTENT_SET_WRITEBACK |
578 EXTENT_END_WRITEBACK);
579 if (!trans || IS_ERR(trans))
580 btrfs_error(root->fs_info, ret, "Failed to join transaction");
581 else
582 btrfs_abort_transaction(trans, root, ret);
583 goto free_pages_out;
Chris Mason771ed682008-11-06 22:02:51 -0500584}
585
586/*
587 * phase two of compressed writeback. This is the ordered portion
588 * of the code, which only gets called in the order the work was
589 * queued. We walk all the async extents created by compress_file_range
590 * and send them down to the disk.
591 */
592static noinline int submit_compressed_extents(struct inode *inode,
593 struct async_cow *async_cow)
594{
595 struct async_extent *async_extent;
596 u64 alloc_hint = 0;
597 struct btrfs_trans_handle *trans;
598 struct btrfs_key ins;
599 struct extent_map *em;
600 struct btrfs_root *root = BTRFS_I(inode)->root;
601 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
602 struct extent_io_tree *io_tree;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500603 int ret = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500604
605 if (list_empty(&async_cow->extents))
606 return 0;
607
Chris Mason771ed682008-11-06 22:02:51 -0500608
Chris Masond3977122009-01-05 21:25:51 -0500609 while (!list_empty(&async_cow->extents)) {
Chris Mason771ed682008-11-06 22:02:51 -0500610 async_extent = list_entry(async_cow->extents.next,
611 struct async_extent, list);
612 list_del(&async_extent->list);
613
614 io_tree = &BTRFS_I(inode)->io_tree;
615
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500616retry:
Chris Mason771ed682008-11-06 22:02:51 -0500617 /* did the compression code fall back to uncompressed IO? */
618 if (!async_extent->pages) {
619 int page_started = 0;
620 unsigned long nr_written = 0;
621
622 lock_extent(io_tree, async_extent->start,
Josef Bacik2ac55d42010-02-03 19:33:23 +0000623 async_extent->start +
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100624 async_extent->ram_size - 1);
Chris Mason771ed682008-11-06 22:02:51 -0500625
626 /* allocate blocks */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500627 ret = cow_file_range(inode, async_cow->locked_page,
628 async_extent->start,
629 async_extent->start +
630 async_extent->ram_size - 1,
631 &page_started, &nr_written, 0);
Chris Mason771ed682008-11-06 22:02:51 -0500632
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100633 /* JDM XXX */
634
Chris Mason771ed682008-11-06 22:02:51 -0500635 /*
636 * if page_started, cow_file_range inserted an
637 * inline extent and took care of all the unlocking
638 * and IO for us. Otherwise, we need to submit
639 * all those pages down to the drive.
640 */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500641 if (!page_started && !ret)
Chris Mason771ed682008-11-06 22:02:51 -0500642 extent_write_locked_range(io_tree,
643 inode, async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500644 async_extent->start +
Chris Mason771ed682008-11-06 22:02:51 -0500645 async_extent->ram_size - 1,
646 btrfs_get_extent,
647 WB_SYNC_ALL);
648 kfree(async_extent);
649 cond_resched();
650 continue;
651 }
652
653 lock_extent(io_tree, async_extent->start,
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100654 async_extent->start + async_extent->ram_size - 1);
Chris Mason771ed682008-11-06 22:02:51 -0500655
Josef Bacik7a7eaa42011-04-13 12:54:33 -0400656 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100657 if (IS_ERR(trans)) {
658 ret = PTR_ERR(trans);
659 } else {
660 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
661 ret = btrfs_reserve_extent(trans, root,
Chris Mason771ed682008-11-06 22:02:51 -0500662 async_extent->compressed_size,
663 async_extent->compressed_size,
Josef Bacik81c9ad22012-01-18 10:56:06 -0500664 0, alloc_hint, &ins, 1);
Miao Xie962197b2012-09-11 23:27:35 -0600665 if (ret && ret != -ENOSPC)
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100666 btrfs_abort_transaction(trans, root, ret);
667 btrfs_end_transaction(trans, root);
668 }
Yan, Zhengc2167752009-11-12 09:34:21 +0000669
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500670 if (ret) {
671 int i;
672 for (i = 0; i < async_extent->nr_pages; i++) {
673 WARN_ON(async_extent->pages[i]->mapping);
674 page_cache_release(async_extent->pages[i]);
675 }
676 kfree(async_extent->pages);
677 async_extent->nr_pages = 0;
678 async_extent->pages = NULL;
679 unlock_extent(io_tree, async_extent->start,
680 async_extent->start +
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100681 async_extent->ram_size - 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100682 if (ret == -ENOSPC)
683 goto retry;
684 goto out_free; /* JDM: Requeue? */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500685 }
686
Yan, Zhengc2167752009-11-12 09:34:21 +0000687 /*
688 * here we're doing allocation and writeback of the
689 * compressed pages
690 */
691 btrfs_drop_extent_cache(inode, async_extent->start,
692 async_extent->start +
693 async_extent->ram_size - 1, 0);
694
David Sterba172ddd62011-04-21 00:48:27 +0200695 em = alloc_extent_map();
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100696 BUG_ON(!em); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -0500697 em->start = async_extent->start;
698 em->len = async_extent->ram_size;
Chris Mason445a6942008-11-10 11:53:33 -0500699 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500700
701 em->block_start = ins.objectid;
702 em->block_len = ins.offset;
703 em->bdev = root->fs_info->fs_devices->latest_bdev;
Li Zefan261507a02010-12-17 14:21:50 +0800704 em->compress_type = async_extent->compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500705 set_bit(EXTENT_FLAG_PINNED, &em->flags);
706 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
707
Chris Masond3977122009-01-05 21:25:51 -0500708 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400709 write_lock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500710 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400711 write_unlock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500712 if (ret != -EEXIST) {
713 free_extent_map(em);
714 break;
715 }
716 btrfs_drop_extent_cache(inode, async_extent->start,
717 async_extent->start +
718 async_extent->ram_size - 1, 0);
719 }
720
Li Zefan261507a02010-12-17 14:21:50 +0800721 ret = btrfs_add_ordered_extent_compress(inode,
722 async_extent->start,
723 ins.objectid,
724 async_extent->ram_size,
725 ins.offset,
726 BTRFS_ORDERED_COMPRESSED,
727 async_extent->compress_type);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100728 BUG_ON(ret); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -0500729
Chris Mason771ed682008-11-06 22:02:51 -0500730 /*
731 * clear dirty, set writeback and unlock the pages.
732 */
733 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400734 &BTRFS_I(inode)->io_tree,
735 async_extent->start,
736 async_extent->start +
737 async_extent->ram_size - 1,
738 NULL, EXTENT_CLEAR_UNLOCK_PAGE |
739 EXTENT_CLEAR_UNLOCK |
Chris Masona3429ab2009-10-08 12:30:20 -0400740 EXTENT_CLEAR_DELALLOC |
Chris Masona791e352009-10-08 11:27:10 -0400741 EXTENT_CLEAR_DIRTY | EXTENT_SET_WRITEBACK);
Chris Mason771ed682008-11-06 22:02:51 -0500742
743 ret = btrfs_submit_compressed_write(inode,
Chris Masond3977122009-01-05 21:25:51 -0500744 async_extent->start,
745 async_extent->ram_size,
746 ins.objectid,
747 ins.offset, async_extent->pages,
748 async_extent->nr_pages);
Chris Mason771ed682008-11-06 22:02:51 -0500749
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100750 BUG_ON(ret); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -0500751 alloc_hint = ins.objectid + ins.offset;
752 kfree(async_extent);
753 cond_resched();
754 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100755 ret = 0;
756out:
757 return ret;
758out_free:
759 kfree(async_extent);
760 goto out;
Chris Mason771ed682008-11-06 22:02:51 -0500761}
762
Josef Bacik4b46fce2010-05-23 11:00:55 -0400763static u64 get_extent_allocation_hint(struct inode *inode, u64 start,
764 u64 num_bytes)
765{
766 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
767 struct extent_map *em;
768 u64 alloc_hint = 0;
769
770 read_lock(&em_tree->lock);
771 em = search_extent_mapping(em_tree, start, num_bytes);
772 if (em) {
773 /*
774 * if block start isn't an actual block number then find the
775 * first block in this inode and use that as a hint. If that
776 * block is also bogus then just don't worry about it.
777 */
778 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
779 free_extent_map(em);
780 em = search_extent_mapping(em_tree, 0, 0);
781 if (em && em->block_start < EXTENT_MAP_LAST_BYTE)
782 alloc_hint = em->block_start;
783 if (em)
784 free_extent_map(em);
785 } else {
786 alloc_hint = em->block_start;
787 free_extent_map(em);
788 }
789 }
790 read_unlock(&em_tree->lock);
791
792 return alloc_hint;
793}
794
Chris Mason771ed682008-11-06 22:02:51 -0500795/*
796 * when extent_io.c finds a delayed allocation range in the file,
797 * the call backs end up in this code. The basic idea is to
798 * allocate extents on disk for the range, and create ordered data structs
799 * in ram to track those extents.
800 *
801 * locked_page is the page that writepage had locked already. We use
802 * it to make sure we don't do extra locks or unlocks.
803 *
804 * *page_started is set to one if we unlock locked_page and do everything
805 * required to start IO on it. It may be clean and already done with
806 * IO when we return.
807 */
808static noinline int cow_file_range(struct inode *inode,
809 struct page *locked_page,
810 u64 start, u64 end, int *page_started,
811 unsigned long *nr_written,
812 int unlock)
813{
814 struct btrfs_root *root = BTRFS_I(inode)->root;
815 struct btrfs_trans_handle *trans;
816 u64 alloc_hint = 0;
817 u64 num_bytes;
818 unsigned long ram_size;
819 u64 disk_num_bytes;
820 u64 cur_alloc_size;
821 u64 blocksize = root->sectorsize;
Chris Mason771ed682008-11-06 22:02:51 -0500822 struct btrfs_key ins;
823 struct extent_map *em;
824 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
825 int ret = 0;
826
Liu Bo83eea1f2012-07-10 05:28:39 -0600827 BUG_ON(btrfs_is_free_space_inode(inode));
Josef Bacik7a7eaa42011-04-13 12:54:33 -0400828 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100829 if (IS_ERR(trans)) {
830 extent_clear_unlock_delalloc(inode,
831 &BTRFS_I(inode)->io_tree,
Josef Bacikbeb42dd2012-05-30 15:35:17 -0400832 start, end, locked_page,
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100833 EXTENT_CLEAR_UNLOCK_PAGE |
834 EXTENT_CLEAR_UNLOCK |
835 EXTENT_CLEAR_DELALLOC |
836 EXTENT_CLEAR_DIRTY |
837 EXTENT_SET_WRITEBACK |
838 EXTENT_END_WRITEBACK);
839 return PTR_ERR(trans);
840 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400841 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason771ed682008-11-06 22:02:51 -0500842
Chris Mason771ed682008-11-06 22:02:51 -0500843 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
844 num_bytes = max(blocksize, num_bytes);
845 disk_num_bytes = num_bytes;
846 ret = 0;
847
Chris Mason4cb53002011-05-24 15:35:30 -0400848 /* if this is a small write inside eof, kick off defrag */
Liu Bo4cb13e52012-03-29 09:57:45 -0400849 if (num_bytes < 64 * 1024 &&
850 (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size))
Chris Mason4cb53002011-05-24 15:35:30 -0400851 btrfs_add_inode_defrag(trans, inode);
852
Chris Mason771ed682008-11-06 22:02:51 -0500853 if (start == 0) {
854 /* lets try to make an inline extent */
855 ret = cow_file_range_inline(trans, root, inode,
Li Zefanfe3f5662011-03-28 08:30:38 +0000856 start, end, 0, 0, NULL);
Chris Mason771ed682008-11-06 22:02:51 -0500857 if (ret == 0) {
858 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400859 &BTRFS_I(inode)->io_tree,
860 start, end, NULL,
861 EXTENT_CLEAR_UNLOCK_PAGE |
862 EXTENT_CLEAR_UNLOCK |
863 EXTENT_CLEAR_DELALLOC |
864 EXTENT_CLEAR_DIRTY |
865 EXTENT_SET_WRITEBACK |
866 EXTENT_END_WRITEBACK);
Yan, Zhengc2167752009-11-12 09:34:21 +0000867
Chris Mason771ed682008-11-06 22:02:51 -0500868 *nr_written = *nr_written +
869 (end - start + PAGE_CACHE_SIZE) / PAGE_CACHE_SIZE;
870 *page_started = 1;
Chris Mason771ed682008-11-06 22:02:51 -0500871 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100872 } else if (ret < 0) {
873 btrfs_abort_transaction(trans, root, ret);
874 goto out_unlock;
Chris Mason771ed682008-11-06 22:02:51 -0500875 }
876 }
Chris Masonc8b97812008-10-29 14:49:59 -0400877
878 BUG_ON(disk_num_bytes >
David Sterba6c417612011-04-13 15:41:04 +0200879 btrfs_super_total_bytes(root->fs_info->super_copy));
Chris Masonc8b97812008-10-29 14:49:59 -0400880
Josef Bacik4b46fce2010-05-23 11:00:55 -0400881 alloc_hint = get_extent_allocation_hint(inode, start, num_bytes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400882 btrfs_drop_extent_cache(inode, start, start + num_bytes - 1, 0);
Chris Mason3b951512008-04-17 11:29:12 -0400883
Chris Masond3977122009-01-05 21:25:51 -0500884 while (disk_num_bytes > 0) {
Chris Masona791e352009-10-08 11:27:10 -0400885 unsigned long op;
886
Josef Bacik287a0ab2010-03-19 18:07:23 +0000887 cur_alloc_size = disk_num_bytes;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400888 ret = btrfs_reserve_extent(trans, root, cur_alloc_size,
Chris Mason771ed682008-11-06 22:02:51 -0500889 root->sectorsize, 0, alloc_hint,
Josef Bacik81c9ad22012-01-18 10:56:06 -0500890 &ins, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100891 if (ret < 0) {
892 btrfs_abort_transaction(trans, root, ret);
893 goto out_unlock;
894 }
Chris Masond3977122009-01-05 21:25:51 -0500895
David Sterba172ddd62011-04-21 00:48:27 +0200896 em = alloc_extent_map();
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100897 BUG_ON(!em); /* -ENOMEM */
Chris Masone6dcd2d2008-07-17 12:53:50 -0400898 em->start = start;
Chris Mason445a6942008-11-10 11:53:33 -0500899 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500900 ram_size = ins.offset;
901 em->len = ins.offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400902
Chris Masone6dcd2d2008-07-17 12:53:50 -0400903 em->block_start = ins.objectid;
Chris Masonc8b97812008-10-29 14:49:59 -0400904 em->block_len = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400905 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -0400906 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -0400907
Chris Masond3977122009-01-05 21:25:51 -0500908 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400909 write_lock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400910 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400911 write_unlock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400912 if (ret != -EEXIST) {
913 free_extent_map(em);
914 break;
915 }
916 btrfs_drop_extent_cache(inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -0400917 start + ram_size - 1, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400918 }
919
Chris Mason98d20f62008-04-14 09:46:10 -0400920 cur_alloc_size = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400921 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
Chris Mason771ed682008-11-06 22:02:51 -0500922 ram_size, cur_alloc_size, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100923 BUG_ON(ret); /* -ENOMEM */
Chris Masonc8b97812008-10-29 14:49:59 -0400924
Yan Zheng17d217f2008-12-12 10:03:38 -0500925 if (root->root_key.objectid ==
926 BTRFS_DATA_RELOC_TREE_OBJECTID) {
927 ret = btrfs_reloc_clone_csums(inode, start,
928 cur_alloc_size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100929 if (ret) {
930 btrfs_abort_transaction(trans, root, ret);
931 goto out_unlock;
932 }
Yan Zheng17d217f2008-12-12 10:03:38 -0500933 }
934
Chris Masond3977122009-01-05 21:25:51 -0500935 if (disk_num_bytes < cur_alloc_size)
Chris Mason3b951512008-04-17 11:29:12 -0400936 break;
Chris Masond3977122009-01-05 21:25:51 -0500937
Chris Masonc8b97812008-10-29 14:49:59 -0400938 /* we're not doing compressed IO, don't unlock the first
939 * page (which the caller expects to stay locked), don't
940 * clear any dirty bits and don't set any writeback bits
Chris Mason8b62b722009-09-02 16:53:46 -0400941 *
942 * Do set the Private2 bit so we know this page was properly
943 * setup for writepage
Chris Masonc8b97812008-10-29 14:49:59 -0400944 */
Chris Masona791e352009-10-08 11:27:10 -0400945 op = unlock ? EXTENT_CLEAR_UNLOCK_PAGE : 0;
946 op |= EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
947 EXTENT_SET_PRIVATE2;
948
Chris Masonc8b97812008-10-29 14:49:59 -0400949 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
950 start, start + ram_size - 1,
Chris Masona791e352009-10-08 11:27:10 -0400951 locked_page, op);
Chris Masonc8b97812008-10-29 14:49:59 -0400952 disk_num_bytes -= cur_alloc_size;
Chris Masonc59f8952007-12-17 20:14:04 -0500953 num_bytes -= cur_alloc_size;
954 alloc_hint = ins.objectid + ins.offset;
955 start += cur_alloc_size;
Chris Masonb888db22007-08-27 16:49:44 -0400956 }
Chris Mason771ed682008-11-06 22:02:51 -0500957 ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100958out:
Chris Masonb888db22007-08-27 16:49:44 -0400959 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400960
Chris Masonbe20aa92007-12-17 20:14:01 -0500961 return ret;
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
Chris Mason771ed682008-11-06 22:02:51 -0500976/*
977 * work queue call back to started compression on a file and pages
978 */
979static noinline void async_cow_start(struct btrfs_work *work)
980{
981 struct async_cow *async_cow;
982 int num_added = 0;
983 async_cow = container_of(work, struct async_cow, work);
984
985 compress_file_range(async_cow->inode, async_cow->locked_page,
986 async_cow->start, async_cow->end, async_cow,
987 &num_added);
Josef Bacik8180ef82012-06-08 15:16:12 -0400988 if (num_added == 0) {
Josef Bacikcb77fcd2012-06-15 12:19:48 -0600989 btrfs_add_delayed_iput(async_cow->inode);
Chris Mason771ed682008-11-06 22:02:51 -0500990 async_cow->inode = NULL;
Josef Bacik8180ef82012-06-08 15:16:12 -0400991 }
Chris Mason771ed682008-11-06 22:02:51 -0500992}
993
994/*
995 * work queue call back to submit previously compressed pages
996 */
997static noinline void async_cow_submit(struct btrfs_work *work)
998{
999 struct async_cow *async_cow;
1000 struct btrfs_root *root;
1001 unsigned long nr_pages;
1002
1003 async_cow = container_of(work, struct async_cow, work);
1004
1005 root = async_cow->root;
1006 nr_pages = (async_cow->end - async_cow->start + PAGE_CACHE_SIZE) >>
1007 PAGE_CACHE_SHIFT;
1008
Josef Bacik66657b32012-08-01 15:36:24 -04001009 if (atomic_sub_return(nr_pages, &root->fs_info->async_delalloc_pages) <
Liu Bo287082b2012-06-28 04:02:24 -06001010 5 * 1024 * 1024 &&
Chris Mason771ed682008-11-06 22:02:51 -05001011 waitqueue_active(&root->fs_info->async_submit_wait))
1012 wake_up(&root->fs_info->async_submit_wait);
1013
Chris Masond3977122009-01-05 21:25:51 -05001014 if (async_cow->inode)
Chris Mason771ed682008-11-06 22:02:51 -05001015 submit_compressed_extents(async_cow->inode, async_cow);
Chris Mason771ed682008-11-06 22:02:51 -05001016}
Chris Masonc8b97812008-10-29 14:49:59 -04001017
Chris Mason771ed682008-11-06 22:02:51 -05001018static noinline void async_cow_free(struct btrfs_work *work)
1019{
1020 struct async_cow *async_cow;
1021 async_cow = container_of(work, struct async_cow, work);
Josef Bacik8180ef82012-06-08 15:16:12 -04001022 if (async_cow->inode)
Josef Bacikcb77fcd2012-06-15 12:19:48 -06001023 btrfs_add_delayed_iput(async_cow->inode);
Chris Mason771ed682008-11-06 22:02:51 -05001024 kfree(async_cow);
1025}
1026
1027static int cow_file_range_async(struct inode *inode, struct page *locked_page,
1028 u64 start, u64 end, int *page_started,
1029 unsigned long *nr_written)
1030{
1031 struct async_cow *async_cow;
1032 struct btrfs_root *root = BTRFS_I(inode)->root;
1033 unsigned long nr_pages;
1034 u64 cur_end;
Liu Bo287082b2012-06-28 04:02:24 -06001035 int limit = 10 * 1024 * 1024;
Chris Mason771ed682008-11-06 22:02:51 -05001036
Chris Masona3429ab2009-10-08 12:30:20 -04001037 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED,
1038 1, 0, NULL, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -05001039 while (start < end) {
Chris Mason771ed682008-11-06 22:02:51 -05001040 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001041 BUG_ON(!async_cow); /* -ENOMEM */
Josef Bacik8180ef82012-06-08 15:16:12 -04001042 async_cow->inode = igrab(inode);
Chris Mason771ed682008-11-06 22:02:51 -05001043 async_cow->root = root;
1044 async_cow->locked_page = locked_page;
1045 async_cow->start = start;
1046
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001047 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS)
Chris Mason771ed682008-11-06 22:02:51 -05001048 cur_end = end;
1049 else
1050 cur_end = min(end, start + 512 * 1024 - 1);
1051
1052 async_cow->end = cur_end;
1053 INIT_LIST_HEAD(&async_cow->extents);
1054
1055 async_cow->work.func = async_cow_start;
1056 async_cow->work.ordered_func = async_cow_submit;
1057 async_cow->work.ordered_free = async_cow_free;
1058 async_cow->work.flags = 0;
1059
Chris Mason771ed682008-11-06 22:02:51 -05001060 nr_pages = (cur_end - start + PAGE_CACHE_SIZE) >>
1061 PAGE_CACHE_SHIFT;
1062 atomic_add(nr_pages, &root->fs_info->async_delalloc_pages);
1063
1064 btrfs_queue_worker(&root->fs_info->delalloc_workers,
1065 &async_cow->work);
1066
1067 if (atomic_read(&root->fs_info->async_delalloc_pages) > limit) {
1068 wait_event(root->fs_info->async_submit_wait,
1069 (atomic_read(&root->fs_info->async_delalloc_pages) <
1070 limit));
1071 }
1072
Chris Masond3977122009-01-05 21:25:51 -05001073 while (atomic_read(&root->fs_info->async_submit_draining) &&
Chris Mason771ed682008-11-06 22:02:51 -05001074 atomic_read(&root->fs_info->async_delalloc_pages)) {
1075 wait_event(root->fs_info->async_submit_wait,
1076 (atomic_read(&root->fs_info->async_delalloc_pages) ==
1077 0));
1078 }
1079
1080 *nr_written += nr_pages;
1081 start = cur_end + 1;
1082 }
1083 *page_started = 1;
1084 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001085}
1086
Chris Masond3977122009-01-05 21:25:51 -05001087static noinline int csum_exist_in_range(struct btrfs_root *root,
Yan Zheng17d217f2008-12-12 10:03:38 -05001088 u64 bytenr, u64 num_bytes)
1089{
1090 int ret;
1091 struct btrfs_ordered_sum *sums;
1092 LIST_HEAD(list);
1093
Yan Zheng07d400a2009-01-06 11:42:00 -05001094 ret = btrfs_lookup_csums_range(root->fs_info->csum_root, bytenr,
Arne Jansena2de7332011-03-08 14:14:00 +01001095 bytenr + num_bytes - 1, &list, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -05001096 if (ret == 0 && list_empty(&list))
1097 return 0;
1098
1099 while (!list_empty(&list)) {
1100 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
1101 list_del(&sums->list);
1102 kfree(sums);
1103 }
1104 return 1;
1105}
1106
Chris Masond352ac62008-09-29 15:18:18 -04001107/*
1108 * when nowcow writeback call back. This checks for snapshots or COW copies
1109 * of the extents that exist in the file, and COWs the file as required.
1110 *
1111 * If no cow copies or snapshots exist, we write directly to the existing
1112 * blocks on disk
1113 */
Chris Mason7f366cf2009-03-12 20:12:45 -04001114static noinline int run_delalloc_nocow(struct inode *inode,
1115 struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001116 u64 start, u64 end, int *page_started, int force,
1117 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001118{
Chris Masonbe20aa92007-12-17 20:14:01 -05001119 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001120 struct btrfs_trans_handle *trans;
Chris Masonbe20aa92007-12-17 20:14:01 -05001121 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -05001122 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -04001123 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -05001124 struct btrfs_key found_key;
Yan Zheng80ff3852008-10-30 14:20:02 -04001125 u64 cow_start;
1126 u64 cur_offset;
1127 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001128 u64 extent_offset;
Yan Zheng80ff3852008-10-30 14:20:02 -04001129 u64 disk_bytenr;
1130 u64 num_bytes;
1131 int extent_type;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001132 int ret, err;
Yan Zhengd899e052008-10-30 14:25:28 -04001133 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -04001134 int nocow;
1135 int check_prev = 1;
Li Zefan82d59022011-04-20 10:33:24 +08001136 bool nolock;
Li Zefan33345d012011-04-20 10:31:50 +08001137 u64 ino = btrfs_ino(inode);
Chris Masonbe20aa92007-12-17 20:14:01 -05001138
1139 path = btrfs_alloc_path();
Josef Bacik17ca04a2012-05-31 15:58:55 -04001140 if (!path) {
1141 extent_clear_unlock_delalloc(inode,
1142 &BTRFS_I(inode)->io_tree,
1143 start, end, locked_page,
1144 EXTENT_CLEAR_UNLOCK_PAGE |
1145 EXTENT_CLEAR_UNLOCK |
1146 EXTENT_CLEAR_DELALLOC |
1147 EXTENT_CLEAR_DIRTY |
1148 EXTENT_SET_WRITEBACK |
1149 EXTENT_END_WRITEBACK);
Mark Fashehd8926bb2011-07-13 10:38:47 -07001150 return -ENOMEM;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001151 }
Li Zefan82d59022011-04-20 10:33:24 +08001152
Liu Bo83eea1f2012-07-10 05:28:39 -06001153 nolock = btrfs_is_free_space_inode(inode);
Li Zefan82d59022011-04-20 10:33:24 +08001154
1155 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001156 trans = btrfs_join_transaction_nolock(root);
Li Zefan82d59022011-04-20 10:33:24 +08001157 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001158 trans = btrfs_join_transaction(root);
Chris Masonff5714c2011-05-28 07:00:39 -04001159
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001160 if (IS_ERR(trans)) {
Josef Bacik17ca04a2012-05-31 15:58:55 -04001161 extent_clear_unlock_delalloc(inode,
1162 &BTRFS_I(inode)->io_tree,
1163 start, end, locked_page,
1164 EXTENT_CLEAR_UNLOCK_PAGE |
1165 EXTENT_CLEAR_UNLOCK |
1166 EXTENT_CLEAR_DELALLOC |
1167 EXTENT_CLEAR_DIRTY |
1168 EXTENT_SET_WRITEBACK |
1169 EXTENT_END_WRITEBACK);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001170 btrfs_free_path(path);
1171 return PTR_ERR(trans);
1172 }
1173
Josef Bacik74b21072011-04-13 12:02:53 -04001174 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Masonbe20aa92007-12-17 20:14:01 -05001175
Yan Zheng80ff3852008-10-30 14:20:02 -04001176 cow_start = (u64)-1;
1177 cur_offset = start;
1178 while (1) {
Li Zefan33345d012011-04-20 10:31:50 +08001179 ret = btrfs_lookup_file_extent(trans, root, path, ino,
Yan Zheng80ff3852008-10-30 14:20:02 -04001180 cur_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001181 if (ret < 0) {
1182 btrfs_abort_transaction(trans, root, ret);
1183 goto error;
1184 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001185 if (ret > 0 && path->slots[0] > 0 && check_prev) {
1186 leaf = path->nodes[0];
1187 btrfs_item_key_to_cpu(leaf, &found_key,
1188 path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +08001189 if (found_key.objectid == ino &&
Yan Zheng80ff3852008-10-30 14:20:02 -04001190 found_key.type == BTRFS_EXTENT_DATA_KEY)
1191 path->slots[0]--;
1192 }
1193 check_prev = 0;
1194next_slot:
1195 leaf = path->nodes[0];
1196 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1197 ret = btrfs_next_leaf(root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001198 if (ret < 0) {
1199 btrfs_abort_transaction(trans, root, ret);
1200 goto error;
1201 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001202 if (ret > 0)
1203 break;
1204 leaf = path->nodes[0];
1205 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001206
Yan Zheng80ff3852008-10-30 14:20:02 -04001207 nocow = 0;
1208 disk_bytenr = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -05001209 num_bytes = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001210 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05001211
Li Zefan33345d012011-04-20 10:31:50 +08001212 if (found_key.objectid > ino ||
Yan Zheng80ff3852008-10-30 14:20:02 -04001213 found_key.type > BTRFS_EXTENT_DATA_KEY ||
1214 found_key.offset > end)
1215 break;
Chris Masonbe20aa92007-12-17 20:14:01 -05001216
Yan Zheng80ff3852008-10-30 14:20:02 -04001217 if (found_key.offset > cur_offset) {
1218 extent_end = found_key.offset;
Chris Masone9061e22009-10-09 09:57:45 -04001219 extent_type = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001220 goto out_check;
1221 }
Chris Masonc31f8832008-01-08 15:46:31 -05001222
Yan Zheng80ff3852008-10-30 14:20:02 -04001223 fi = btrfs_item_ptr(leaf, path->slots[0],
1224 struct btrfs_file_extent_item);
1225 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -05001226
Yan Zhengd899e052008-10-30 14:25:28 -04001227 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1228 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001229 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001230 extent_offset = btrfs_file_extent_offset(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001231 extent_end = found_key.offset +
1232 btrfs_file_extent_num_bytes(leaf, fi);
1233 if (extent_end <= start) {
1234 path->slots[0]++;
1235 goto next_slot;
1236 }
Yan Zheng17d217f2008-12-12 10:03:38 -05001237 if (disk_bytenr == 0)
1238 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001239 if (btrfs_file_extent_compression(leaf, fi) ||
1240 btrfs_file_extent_encryption(leaf, fi) ||
1241 btrfs_file_extent_other_encoding(leaf, fi))
1242 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001243 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1244 goto out_check;
Yan Zhengd2fb3432008-12-11 16:30:39 -05001245 if (btrfs_extent_readonly(root, disk_bytenr))
Yan Zheng80ff3852008-10-30 14:20:02 -04001246 goto out_check;
Li Zefan33345d012011-04-20 10:31:50 +08001247 if (btrfs_cross_ref_exist(trans, root, ino,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001248 found_key.offset -
1249 extent_offset, disk_bytenr))
Yan Zheng17d217f2008-12-12 10:03:38 -05001250 goto out_check;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001251 disk_bytenr += extent_offset;
Yan Zheng17d217f2008-12-12 10:03:38 -05001252 disk_bytenr += cur_offset - found_key.offset;
1253 num_bytes = min(end + 1, extent_end) - cur_offset;
1254 /*
1255 * force cow if csum exists in the range.
1256 * this ensure that csum for a given extent are
1257 * either valid or do not exist.
1258 */
1259 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
1260 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001261 nocow = 1;
1262 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1263 extent_end = found_key.offset +
1264 btrfs_file_extent_inline_len(leaf, fi);
1265 extent_end = ALIGN(extent_end, root->sectorsize);
1266 } else {
1267 BUG_ON(1);
1268 }
1269out_check:
1270 if (extent_end <= start) {
1271 path->slots[0]++;
1272 goto next_slot;
1273 }
1274 if (!nocow) {
1275 if (cow_start == (u64)-1)
1276 cow_start = cur_offset;
1277 cur_offset = extent_end;
1278 if (cur_offset > end)
1279 break;
1280 path->slots[0]++;
1281 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001282 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001283
David Sterbab3b4aa72011-04-21 01:20:15 +02001284 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001285 if (cow_start != (u64)-1) {
1286 ret = cow_file_range(inode, locked_page, cow_start,
Chris Mason771ed682008-11-06 22:02:51 -05001287 found_key.offset - 1, page_started,
1288 nr_written, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001289 if (ret) {
1290 btrfs_abort_transaction(trans, root, ret);
1291 goto error;
1292 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001293 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001294 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001295
Yan Zhengd899e052008-10-30 14:25:28 -04001296 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1297 struct extent_map *em;
1298 struct extent_map_tree *em_tree;
1299 em_tree = &BTRFS_I(inode)->extent_tree;
David Sterba172ddd62011-04-21 00:48:27 +02001300 em = alloc_extent_map();
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001301 BUG_ON(!em); /* -ENOMEM */
Yan Zhengd899e052008-10-30 14:25:28 -04001302 em->start = cur_offset;
Chris Mason445a6942008-11-10 11:53:33 -05001303 em->orig_start = em->start;
Yan Zhengd899e052008-10-30 14:25:28 -04001304 em->len = num_bytes;
1305 em->block_len = num_bytes;
1306 em->block_start = disk_bytenr;
1307 em->bdev = root->fs_info->fs_devices->latest_bdev;
1308 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Liu Bo4e2f84e2012-08-27 10:52:20 -06001309 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Yan Zhengd899e052008-10-30 14:25:28 -04001310 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04001311 write_lock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001312 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04001313 write_unlock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001314 if (ret != -EEXIST) {
1315 free_extent_map(em);
1316 break;
1317 }
1318 btrfs_drop_extent_cache(inode, em->start,
1319 em->start + em->len - 1, 0);
1320 }
1321 type = BTRFS_ORDERED_PREALLOC;
1322 } else {
1323 type = BTRFS_ORDERED_NOCOW;
1324 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001325
1326 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001327 num_bytes, num_bytes, type);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001328 BUG_ON(ret); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -05001329
Yan, Zhengefa56462010-05-16 10:49:59 -04001330 if (root->root_key.objectid ==
1331 BTRFS_DATA_RELOC_TREE_OBJECTID) {
1332 ret = btrfs_reloc_clone_csums(inode, cur_offset,
1333 num_bytes);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001334 if (ret) {
1335 btrfs_abort_transaction(trans, root, ret);
1336 goto error;
1337 }
Yan, Zhengefa56462010-05-16 10:49:59 -04001338 }
1339
Yan Zhengd899e052008-10-30 14:25:28 -04001340 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
Chris Masona791e352009-10-08 11:27:10 -04001341 cur_offset, cur_offset + num_bytes - 1,
1342 locked_page, EXTENT_CLEAR_UNLOCK_PAGE |
1343 EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
1344 EXTENT_SET_PRIVATE2);
Yan Zheng80ff3852008-10-30 14:20:02 -04001345 cur_offset = extent_end;
1346 if (cur_offset > end)
1347 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001348 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001349 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001350
Josef Bacik17ca04a2012-05-31 15:58:55 -04001351 if (cur_offset <= end && cow_start == (u64)-1) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001352 cow_start = cur_offset;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001353 cur_offset = end;
1354 }
1355
Yan Zheng80ff3852008-10-30 14:20:02 -04001356 if (cow_start != (u64)-1) {
1357 ret = cow_file_range(inode, locked_page, cow_start, end,
Chris Mason771ed682008-11-06 22:02:51 -05001358 page_started, nr_written, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001359 if (ret) {
1360 btrfs_abort_transaction(trans, root, ret);
1361 goto error;
1362 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001363 }
1364
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001365error:
Josef Bacik0cb59c92010-07-02 12:14:14 -04001366 if (nolock) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001367 err = btrfs_end_transaction_nolock(trans, root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001368 } else {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001369 err = btrfs_end_transaction(trans, root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001370 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001371 if (!ret)
1372 ret = err;
1373
Josef Bacik17ca04a2012-05-31 15:58:55 -04001374 if (ret && cur_offset < end)
1375 extent_clear_unlock_delalloc(inode,
1376 &BTRFS_I(inode)->io_tree,
1377 cur_offset, end, locked_page,
1378 EXTENT_CLEAR_UNLOCK_PAGE |
1379 EXTENT_CLEAR_UNLOCK |
1380 EXTENT_CLEAR_DELALLOC |
1381 EXTENT_CLEAR_DIRTY |
1382 EXTENT_SET_WRITEBACK |
1383 EXTENT_END_WRITEBACK);
1384
Yan Zheng7ea394f2008-08-05 13:05:02 -04001385 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001386 return ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05001387}
1388
Chris Masond352ac62008-09-29 15:18:18 -04001389/*
1390 * extent_io.c call back to do delayed allocation processing
1391 */
Chris Masonc8b97812008-10-29 14:49:59 -04001392static int run_delalloc_range(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001393 u64 start, u64 end, int *page_started,
1394 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001395{
Chris Masonbe20aa92007-12-17 20:14:01 -05001396 int ret;
Chris Mason7f366cf2009-03-12 20:12:45 -04001397 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masona2135012008-06-25 16:01:30 -04001398
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001399 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) {
Chris Masonc8b97812008-10-29 14:49:59 -04001400 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001401 page_started, 1, nr_written);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001402 } else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC) {
Yan Zhengd899e052008-10-30 14:25:28 -04001403 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001404 page_started, 0, nr_written);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001405 } else if (!btrfs_test_opt(root, COMPRESS) &&
1406 !(BTRFS_I(inode)->force_compress) &&
1407 !(BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS)) {
Chris Mason7f366cf2009-03-12 20:12:45 -04001408 ret = cow_file_range(inode, locked_page, start, end,
1409 page_started, nr_written, 1);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001410 } else {
1411 set_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1412 &BTRFS_I(inode)->runtime_flags);
Chris Mason771ed682008-11-06 22:02:51 -05001413 ret = cow_file_range_async(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001414 page_started, nr_written);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001415 }
Chris Masonb888db22007-08-27 16:49:44 -04001416 return ret;
1417}
1418
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001419static void btrfs_split_extent_hook(struct inode *inode,
1420 struct extent_state *orig, u64 split)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001421{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001422 /* not delalloc, ignore it */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001423 if (!(orig->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001424 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001425
Josef Bacik9e0baf62011-07-15 15:16:44 +00001426 spin_lock(&BTRFS_I(inode)->lock);
1427 BTRFS_I(inode)->outstanding_extents++;
1428 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001429}
1430
1431/*
1432 * extent_io.c merge_extent_hook, used to track merged delayed allocation
1433 * extents so we can keep track of new extents that are just merged onto old
1434 * extents, such as when we are doing sequential writes, so we can properly
1435 * account for the metadata space we'll need.
1436 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001437static void btrfs_merge_extent_hook(struct inode *inode,
1438 struct extent_state *new,
1439 struct extent_state *other)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001440{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001441 /* not delalloc, ignore it */
1442 if (!(other->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001443 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001444
Josef Bacik9e0baf62011-07-15 15:16:44 +00001445 spin_lock(&BTRFS_I(inode)->lock);
1446 BTRFS_I(inode)->outstanding_extents--;
1447 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001448}
1449
Chris Masond352ac62008-09-29 15:18:18 -04001450/*
1451 * extent_io.c set_bit_hook, used to track delayed allocation
1452 * bytes in this file, and to maintain the list of inodes that
1453 * have pending delalloc work to be done.
1454 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001455static void btrfs_set_bit_hook(struct inode *inode,
1456 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001457{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001458
Chris Mason75eff682008-12-15 15:54:40 -05001459 /*
1460 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001461 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001462 * bit, which is only set or cleared with irqs on
1463 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001464 if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001465 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001466 u64 len = state->end + 1 - state->start;
Liu Bo83eea1f2012-07-10 05:28:39 -06001467 bool do_list = !btrfs_is_free_space_inode(inode);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001468
Josef Bacik9e0baf62011-07-15 15:16:44 +00001469 if (*bits & EXTENT_FIRST_DELALLOC) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001470 *bits &= ~EXTENT_FIRST_DELALLOC;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001471 } else {
1472 spin_lock(&BTRFS_I(inode)->lock);
1473 BTRFS_I(inode)->outstanding_extents++;
1474 spin_unlock(&BTRFS_I(inode)->lock);
1475 }
Josef Bacik287a0ab2010-03-19 18:07:23 +00001476
Chris Mason75eff682008-12-15 15:54:40 -05001477 spin_lock(&root->fs_info->delalloc_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001478 BTRFS_I(inode)->delalloc_bytes += len;
1479 root->fs_info->delalloc_bytes += len;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001480 if (do_list && list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
Chris Masonea8c2812008-08-04 23:17:27 -04001481 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1482 &root->fs_info->delalloc_inodes);
1483 }
Chris Mason75eff682008-12-15 15:54:40 -05001484 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001485 }
Chris Mason291d6732008-01-29 15:55:23 -05001486}
1487
Chris Masond352ac62008-09-29 15:18:18 -04001488/*
1489 * extent_io.c clear_bit_hook, see set_bit_hook for why
1490 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001491static void btrfs_clear_bit_hook(struct inode *inode,
1492 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001493{
Chris Mason75eff682008-12-15 15:54:40 -05001494 /*
1495 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001496 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001497 * bit, which is only set or cleared with irqs on
1498 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001499 if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001500 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001501 u64 len = state->end + 1 - state->start;
Liu Bo83eea1f2012-07-10 05:28:39 -06001502 bool do_list = !btrfs_is_free_space_inode(inode);
Chris Masonbcbfce82008-04-22 13:26:47 -04001503
Josef Bacik9e0baf62011-07-15 15:16:44 +00001504 if (*bits & EXTENT_FIRST_DELALLOC) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001505 *bits &= ~EXTENT_FIRST_DELALLOC;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001506 } else if (!(*bits & EXTENT_DO_ACCOUNTING)) {
1507 spin_lock(&BTRFS_I(inode)->lock);
1508 BTRFS_I(inode)->outstanding_extents--;
1509 spin_unlock(&BTRFS_I(inode)->lock);
1510 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001511
1512 if (*bits & EXTENT_DO_ACCOUNTING)
1513 btrfs_delalloc_release_metadata(inode, len);
1514
Josef Bacik0cb59c92010-07-02 12:14:14 -04001515 if (root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID
1516 && do_list)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001517 btrfs_free_reserved_data_space(inode, len);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001518
Chris Mason75eff682008-12-15 15:54:40 -05001519 spin_lock(&root->fs_info->delalloc_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001520 root->fs_info->delalloc_bytes -= len;
1521 BTRFS_I(inode)->delalloc_bytes -= len;
1522
Josef Bacik0cb59c92010-07-02 12:14:14 -04001523 if (do_list && BTRFS_I(inode)->delalloc_bytes == 0 &&
Chris Masonea8c2812008-08-04 23:17:27 -04001524 !list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1525 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
1526 }
Chris Mason75eff682008-12-15 15:54:40 -05001527 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001528 }
Chris Mason291d6732008-01-29 15:55:23 -05001529}
1530
Chris Masond352ac62008-09-29 15:18:18 -04001531/*
1532 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1533 * we don't create bios that span stripes or chunks
1534 */
Chris Mason239b14b2008-03-24 15:02:07 -04001535int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001536 size_t size, struct bio *bio,
1537 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001538{
1539 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
1540 struct btrfs_mapping_tree *map_tree;
Chris Masona62b9402008-10-03 16:31:08 -04001541 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001542 u64 length = 0;
1543 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001544 int ret;
1545
Chris Mason771ed682008-11-06 22:02:51 -05001546 if (bio_flags & EXTENT_BIO_COMPRESSED)
1547 return 0;
1548
Chris Masonf2d8d742008-04-21 10:03:05 -04001549 length = bio->bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001550 map_tree = &root->fs_info->mapping_tree;
1551 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04001552 ret = btrfs_map_block(map_tree, READ, logical,
Chris Masonf1885912008-04-09 16:28:12 -04001553 &map_length, NULL, 0);
Jeff Mahoney3444a972011-10-03 23:23:13 -04001554 /* Will always return 0 or 1 with map_multi == NULL */
1555 BUG_ON(ret < 0);
Chris Masond3977122009-01-05 21:25:51 -05001556 if (map_length < length + size)
Chris Mason239b14b2008-03-24 15:02:07 -04001557 return 1;
Jeff Mahoney3444a972011-10-03 23:23:13 -04001558 return 0;
Chris Mason239b14b2008-03-24 15:02:07 -04001559}
1560
Chris Masond352ac62008-09-29 15:18:18 -04001561/*
1562 * in order to insert checksums into the metadata in large chunks,
1563 * we wait until bio submission time. All the pages in the bio are
1564 * checksummed and sums are attached onto the ordered extent record.
1565 *
1566 * At IO completion time the cums attached on the ordered extent record
1567 * are inserted into the btree
1568 */
Chris Masond3977122009-01-05 21:25:51 -05001569static int __btrfs_submit_bio_start(struct inode *inode, int rw,
1570 struct bio *bio, int mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001571 unsigned long bio_flags,
1572 u64 bio_offset)
Chris Mason065631f2008-02-20 12:07:25 -05001573{
Chris Mason065631f2008-02-20 12:07:25 -05001574 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason065631f2008-02-20 12:07:25 -05001575 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001576
Chris Masond20f7042008-12-08 16:58:54 -05001577 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001578 BUG_ON(ret); /* -ENOMEM */
Chris Mason4a69a412008-11-06 22:03:00 -05001579 return 0;
1580}
Chris Masone0156402008-04-16 11:15:20 -04001581
Chris Mason4a69a412008-11-06 22:03:00 -05001582/*
1583 * in order to insert checksums into the metadata in large chunks,
1584 * we wait until bio submission time. All the pages in the bio are
1585 * checksummed and sums are attached onto the ordered extent record.
1586 *
1587 * At IO completion time the cums attached on the ordered extent record
1588 * are inserted into the btree
1589 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001590static int __btrfs_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001591 int mirror_num, unsigned long bio_flags,
1592 u64 bio_offset)
Chris Mason4a69a412008-11-06 22:03:00 -05001593{
1594 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason8b712842008-06-11 16:50:36 -04001595 return btrfs_map_bio(root, rw, bio, mirror_num, 1);
Chris Mason44b8bd72008-04-16 11:14:51 -04001596}
1597
Chris Masond352ac62008-09-29 15:18:18 -04001598/*
Chris Masoncad321a2008-12-17 14:51:42 -05001599 * extent_io.c submission hook. This does the right thing for csum calculation
1600 * on write, or reading the csums from the tree before a read
Chris Masond352ac62008-09-29 15:18:18 -04001601 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001602static int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001603 int mirror_num, unsigned long bio_flags,
1604 u64 bio_offset)
Chris Mason44b8bd72008-04-16 11:14:51 -04001605{
1606 struct btrfs_root *root = BTRFS_I(inode)->root;
1607 int ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001608 int skip_sum;
Jeff Mahoney04173412011-10-03 23:23:12 -04001609 int metadata = 0;
Chris Mason44b8bd72008-04-16 11:14:51 -04001610
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001611 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masoncad321a2008-12-17 14:51:42 -05001612
Liu Bo83eea1f2012-07-10 05:28:39 -06001613 if (btrfs_is_free_space_inode(inode))
Jeff Mahoney04173412011-10-03 23:23:12 -04001614 metadata = 2;
1615
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001616 if (!(rw & REQ_WRITE)) {
Josef Bacik5fd02042012-05-02 14:00:54 -04001617 ret = btrfs_bio_wq_end_io(root->fs_info, bio, metadata);
1618 if (ret)
1619 return ret;
1620
Chris Masond20f7042008-12-08 16:58:54 -05001621 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Chris Masonc8b97812008-10-29 14:49:59 -04001622 return btrfs_submit_compressed_read(inode, bio,
1623 mirror_num, bio_flags);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001624 } else if (!skip_sum) {
1625 ret = btrfs_lookup_bio_sums(root, inode, bio, NULL);
1626 if (ret)
1627 return ret;
1628 }
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001629 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001630 } else if (!skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001631 /* csum items have already been cloned */
1632 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1633 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001634 /* we're doing a write, do the async checksumming */
1635 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
Chris Mason44b8bd72008-04-16 11:14:51 -04001636 inode, rw, bio, mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001637 bio_flags, bio_offset,
1638 __btrfs_submit_bio_start,
Chris Mason4a69a412008-11-06 22:03:00 -05001639 __btrfs_submit_bio_done);
Chris Mason19b9bdb2008-10-30 14:23:13 -04001640 }
1641
Chris Mason0b86a832008-03-24 15:01:56 -04001642mapit:
Chris Mason8b712842008-06-11 16:50:36 -04001643 return btrfs_map_bio(root, rw, bio, mirror_num, 0);
Chris Mason065631f2008-02-20 12:07:25 -05001644}
Chris Mason6885f302008-02-20 16:11:05 -05001645
Chris Masond352ac62008-09-29 15:18:18 -04001646/*
1647 * given a list of ordered sums record them in the inode. This happens
1648 * at IO completion time based on sums calculated at bio submission time.
1649 */
Chris Masonba1da2f2008-07-17 12:54:15 -04001650static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -04001651 struct inode *inode, u64 file_offset,
1652 struct list_head *list)
1653{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001654 struct btrfs_ordered_sum *sum;
1655
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001656 list_for_each_entry(sum, list, list) {
Chris Masond20f7042008-12-08 16:58:54 -05001657 btrfs_csum_file_blocks(trans,
1658 BTRFS_I(inode)->root->fs_info->csum_root, sum);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001659 }
1660 return 0;
1661}
1662
Josef Bacik2ac55d42010-02-03 19:33:23 +00001663int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end,
1664 struct extent_state **cached_state)
Chris Masonea8c2812008-08-04 23:17:27 -04001665{
Chris Masond3977122009-01-05 21:25:51 -05001666 if ((end & (PAGE_CACHE_SIZE - 1)) == 0)
Chris Mason771ed682008-11-06 22:02:51 -05001667 WARN_ON(1);
Chris Masonea8c2812008-08-04 23:17:27 -04001668 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001669 cached_state, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04001670}
1671
Chris Masond352ac62008-09-29 15:18:18 -04001672/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04001673struct btrfs_writepage_fixup {
1674 struct page *page;
1675 struct btrfs_work work;
1676};
1677
Christoph Hellwigb2950862008-12-02 09:54:17 -05001678static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04001679{
1680 struct btrfs_writepage_fixup *fixup;
1681 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001682 struct extent_state *cached_state = NULL;
Chris Mason247e7432008-07-17 12:53:51 -04001683 struct page *page;
1684 struct inode *inode;
1685 u64 page_start;
1686 u64 page_end;
Jeff Mahoney87826df2012-02-15 16:23:57 +01001687 int ret;
Chris Mason247e7432008-07-17 12:53:51 -04001688
1689 fixup = container_of(work, struct btrfs_writepage_fixup, work);
1690 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04001691again:
Chris Mason247e7432008-07-17 12:53:51 -04001692 lock_page(page);
1693 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
1694 ClearPageChecked(page);
1695 goto out_page;
1696 }
1697
1698 inode = page->mapping->host;
1699 page_start = page_offset(page);
1700 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
1701
Josef Bacik2ac55d42010-02-03 19:33:23 +00001702 lock_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001703 &cached_state);
Chris Mason4a096752008-07-21 10:29:44 -04001704
1705 /* already ordered? We're done */
Chris Mason8b62b722009-09-02 16:53:46 -04001706 if (PagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001707 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04001708
1709 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1710 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00001711 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start,
1712 page_end, &cached_state, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001713 unlock_page(page);
1714 btrfs_start_ordered_extent(inode, ordered, 1);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001715 btrfs_put_ordered_extent(ordered);
Chris Mason4a096752008-07-21 10:29:44 -04001716 goto again;
1717 }
Chris Mason247e7432008-07-17 12:53:51 -04001718
Jeff Mahoney87826df2012-02-15 16:23:57 +01001719 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
1720 if (ret) {
1721 mapping_set_error(page->mapping, ret);
1722 end_extent_writepage(page, ret, page_start, page_end);
1723 ClearPageChecked(page);
1724 goto out;
1725 }
1726
Josef Bacik2ac55d42010-02-03 19:33:23 +00001727 btrfs_set_extent_delalloc(inode, page_start, page_end, &cached_state);
Chris Mason247e7432008-07-17 12:53:51 -04001728 ClearPageChecked(page);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001729 set_page_dirty(page);
Chris Mason247e7432008-07-17 12:53:51 -04001730out:
Josef Bacik2ac55d42010-02-03 19:33:23 +00001731 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, page_end,
1732 &cached_state, GFP_NOFS);
Chris Mason247e7432008-07-17 12:53:51 -04001733out_page:
1734 unlock_page(page);
1735 page_cache_release(page);
Miao Xieb897abe2011-01-26 16:19:22 +08001736 kfree(fixup);
Chris Mason247e7432008-07-17 12:53:51 -04001737}
1738
1739/*
1740 * There are a few paths in the higher layers of the kernel that directly
1741 * set the page dirty bit without asking the filesystem if it is a
1742 * good idea. This causes problems because we want to make sure COW
1743 * properly happens and the data=ordered rules are followed.
1744 *
Chris Masonc8b97812008-10-29 14:49:59 -04001745 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04001746 * hasn't been properly setup for IO. We kick off an async process
1747 * to fix it up. The async helper will wait for ordered extents, set
1748 * the delalloc bit and make it safe to write the page.
1749 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001750static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04001751{
1752 struct inode *inode = page->mapping->host;
1753 struct btrfs_writepage_fixup *fixup;
1754 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason247e7432008-07-17 12:53:51 -04001755
Chris Mason8b62b722009-09-02 16:53:46 -04001756 /* this page is properly in the ordered list */
1757 if (TestClearPagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001758 return 0;
1759
1760 if (PageChecked(page))
1761 return -EAGAIN;
1762
1763 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
1764 if (!fixup)
1765 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04001766
Chris Mason247e7432008-07-17 12:53:51 -04001767 SetPageChecked(page);
1768 page_cache_get(page);
1769 fixup->work.func = btrfs_writepage_fixup_worker;
1770 fixup->page = page;
1771 btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001772 return -EBUSY;
Chris Mason247e7432008-07-17 12:53:51 -04001773}
1774
Yan Zhengd899e052008-10-30 14:25:28 -04001775static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
1776 struct inode *inode, u64 file_pos,
1777 u64 disk_bytenr, u64 disk_num_bytes,
1778 u64 num_bytes, u64 ram_bytes,
1779 u8 compression, u8 encryption,
1780 u16 other_encoding, int extent_type)
1781{
1782 struct btrfs_root *root = BTRFS_I(inode)->root;
1783 struct btrfs_file_extent_item *fi;
1784 struct btrfs_path *path;
1785 struct extent_buffer *leaf;
1786 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -04001787 int ret;
1788
1789 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07001790 if (!path)
1791 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -04001792
Chris Masonb9473432009-03-13 11:00:37 -04001793 path->leave_spinning = 1;
Chris Masona1ed8352009-09-11 12:27:37 -04001794
1795 /*
1796 * we may be replacing one extent in the tree with another.
1797 * The new extent is pinned in the extent map, and we don't want
1798 * to drop it from the cache until it is completely in the btree.
1799 *
1800 * So, tell btrfs_drop_extents to leave this extent in the cache.
1801 * the caller is expected to unpin it and allow it to be merged
1802 * with the others.
1803 */
Josef Bacik5dc562c2012-08-17 13:14:17 -04001804 ret = btrfs_drop_extents(trans, root, inode, file_pos,
Josef Bacik26714852012-08-29 12:24:27 -04001805 file_pos + num_bytes, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001806 if (ret)
1807 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04001808
Li Zefan33345d012011-04-20 10:31:50 +08001809 ins.objectid = btrfs_ino(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04001810 ins.offset = file_pos;
1811 ins.type = BTRFS_EXTENT_DATA_KEY;
1812 ret = btrfs_insert_empty_item(trans, root, path, &ins, sizeof(*fi));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001813 if (ret)
1814 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04001815 leaf = path->nodes[0];
1816 fi = btrfs_item_ptr(leaf, path->slots[0],
1817 struct btrfs_file_extent_item);
1818 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
1819 btrfs_set_file_extent_type(leaf, fi, extent_type);
1820 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
1821 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
1822 btrfs_set_file_extent_offset(leaf, fi, 0);
1823 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
1824 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
1825 btrfs_set_file_extent_compression(leaf, fi, compression);
1826 btrfs_set_file_extent_encryption(leaf, fi, encryption);
1827 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
Chris Masonb9473432009-03-13 11:00:37 -04001828
1829 btrfs_unlock_up_safe(path, 1);
1830 btrfs_set_lock_blocking(leaf);
1831
Yan Zhengd899e052008-10-30 14:25:28 -04001832 btrfs_mark_buffer_dirty(leaf);
1833
1834 inode_add_bytes(inode, num_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -04001835
1836 ins.objectid = disk_bytenr;
1837 ins.offset = disk_num_bytes;
1838 ins.type = BTRFS_EXTENT_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001839 ret = btrfs_alloc_reserved_file_extent(trans, root,
1840 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08001841 btrfs_ino(inode), file_pos, &ins);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001842out:
Yan Zhengd899e052008-10-30 14:25:28 -04001843 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04001844
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001845 return ret;
Yan Zhengd899e052008-10-30 14:25:28 -04001846}
1847
Chris Mason5d13a982009-03-13 11:41:46 -04001848/*
1849 * helper function for btrfs_finish_ordered_io, this
1850 * just reads in some of the csum leaves to prime them into ram
1851 * before we start the transaction. It limits the amount of btree
1852 * reads required while inside the transaction.
1853 */
Chris Masond352ac62008-09-29 15:18:18 -04001854/* as ordered data IO finishes, this gets called so we can finish
1855 * an ordered extent if the range of bytes in the file it covers are
1856 * fully written.
1857 */
Josef Bacik5fd02042012-05-02 14:00:54 -04001858static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001859{
Josef Bacik5fd02042012-05-02 14:00:54 -04001860 struct inode *inode = ordered_extent->inode;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001861 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001862 struct btrfs_trans_handle *trans = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001863 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001864 struct extent_state *cached_state = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08001865 int compress_type = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001866 int ret;
Li Zefan82d59022011-04-20 10:33:24 +08001867 bool nolock;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001868
Liu Bo83eea1f2012-07-10 05:28:39 -06001869 nolock = btrfs_is_free_space_inode(inode);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001870
Josef Bacik5fd02042012-05-02 14:00:54 -04001871 if (test_bit(BTRFS_ORDERED_IOERR, &ordered_extent->flags)) {
1872 ret = -EIO;
1873 goto out;
1874 }
1875
Yan, Zhengc2167752009-11-12 09:34:21 +00001876 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001877 BUG_ON(!list_empty(&ordered_extent->list)); /* Logic error */
Yan, Zhengc2167752009-11-12 09:34:21 +00001878 ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent);
1879 if (!ret) {
Josef Bacik0cb59c92010-07-02 12:14:14 -04001880 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001881 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001882 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001883 trans = btrfs_join_transaction(root);
Liu Bod280e5b2012-08-21 21:13:25 -06001884 if (IS_ERR(trans)) {
1885 ret = PTR_ERR(trans);
1886 trans = NULL;
1887 goto out;
1888 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001889 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason21151332011-11-10 20:39:08 -05001890 ret = btrfs_update_inode_fallback(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001891 if (ret) /* -ENOMEM or corruption */
1892 btrfs_abort_transaction(trans, root, ret);
Yan, Zhengc2167752009-11-12 09:34:21 +00001893 }
1894 goto out;
1895 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001896
Josef Bacik2ac55d42010-02-03 19:33:23 +00001897 lock_extent_bits(io_tree, ordered_extent->file_offset,
1898 ordered_extent->file_offset + ordered_extent->len - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001899 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001900
Josef Bacik0cb59c92010-07-02 12:14:14 -04001901 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001902 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001903 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001904 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001905 if (IS_ERR(trans)) {
1906 ret = PTR_ERR(trans);
1907 trans = NULL;
1908 goto out_unlock;
1909 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001910 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Yan, Zhengc2167752009-11-12 09:34:21 +00001911
Chris Masonc8b97812008-10-29 14:49:59 -04001912 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Li Zefan261507a02010-12-17 14:21:50 +08001913 compress_type = ordered_extent->compress_type;
Yan Zhengd899e052008-10-30 14:25:28 -04001914 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Li Zefan261507a02010-12-17 14:21:50 +08001915 BUG_ON(compress_type);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001916 ret = btrfs_mark_extent_written(trans, inode,
Yan Zhengd899e052008-10-30 14:25:28 -04001917 ordered_extent->file_offset,
1918 ordered_extent->file_offset +
1919 ordered_extent->len);
Yan Zhengd899e052008-10-30 14:25:28 -04001920 } else {
Josef Bacik0af3d002010-06-21 14:48:16 -04001921 BUG_ON(root == root->fs_info->tree_root);
Yan Zhengd899e052008-10-30 14:25:28 -04001922 ret = insert_reserved_file_extent(trans, inode,
1923 ordered_extent->file_offset,
1924 ordered_extent->start,
1925 ordered_extent->disk_len,
1926 ordered_extent->len,
1927 ordered_extent->len,
Li Zefan261507a02010-12-17 14:21:50 +08001928 compress_type, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04001929 BTRFS_FILE_EXTENT_REG);
Yan Zhengd899e052008-10-30 14:25:28 -04001930 }
Josef Bacik5dc562c2012-08-17 13:14:17 -04001931 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
1932 ordered_extent->file_offset, ordered_extent->len,
1933 trans->transid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001934 if (ret < 0) {
1935 btrfs_abort_transaction(trans, root, ret);
Josef Bacik5fd02042012-05-02 14:00:54 -04001936 goto out_unlock;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001937 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00001938
Chris Masone6dcd2d2008-07-17 12:53:50 -04001939 add_pending_csums(trans, inode, ordered_extent->file_offset,
1940 &ordered_extent->list);
1941
Josef Bacik1ef30be2011-04-05 19:25:36 -04001942 ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent);
Miao Xiea39f7522011-09-11 10:52:25 -04001943 if (!ret || !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Chris Mason21151332011-11-10 20:39:08 -05001944 ret = btrfs_update_inode_fallback(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001945 if (ret) { /* -ENOMEM or corruption */
1946 btrfs_abort_transaction(trans, root, ret);
Josef Bacik5fd02042012-05-02 14:00:54 -04001947 goto out_unlock;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001948 }
Josef Bacik7c735312012-08-13 15:43:26 -04001949 } else {
1950 btrfs_set_inode_last_trans(trans, inode);
Josef Bacik1ef30be2011-04-05 19:25:36 -04001951 }
1952 ret = 0;
Josef Bacik5fd02042012-05-02 14:00:54 -04001953out_unlock:
1954 unlock_extent_cached(io_tree, ordered_extent->file_offset,
1955 ordered_extent->file_offset +
1956 ordered_extent->len - 1, &cached_state, GFP_NOFS);
Yan, Zhengc2167752009-11-12 09:34:21 +00001957out:
Josef Bacik5b0e95b2011-10-06 08:58:24 -04001958 if (root != root->fs_info->tree_root)
Josef Bacik0cb59c92010-07-02 12:14:14 -04001959 btrfs_delalloc_release_metadata(inode, ordered_extent->len);
Josef Bacik5b0e95b2011-10-06 08:58:24 -04001960 if (trans) {
1961 if (nolock)
Josef Bacik0cb59c92010-07-02 12:14:14 -04001962 btrfs_end_transaction_nolock(trans, root);
Josef Bacik5b0e95b2011-10-06 08:58:24 -04001963 else
Josef Bacik0cb59c92010-07-02 12:14:14 -04001964 btrfs_end_transaction(trans, root);
1965 }
1966
Josef Bacik5fd02042012-05-02 14:00:54 -04001967 if (ret)
1968 clear_extent_uptodate(io_tree, ordered_extent->file_offset,
1969 ordered_extent->file_offset +
1970 ordered_extent->len - 1, NULL, GFP_NOFS);
1971
1972 /*
1973 * This needs to be dont to make sure anybody waiting knows we are done
1974 * upating everything for this ordered extent.
1975 */
1976 btrfs_remove_ordered_extent(inode, ordered_extent);
1977
Chris Masone6dcd2d2008-07-17 12:53:50 -04001978 /* once for us */
1979 btrfs_put_ordered_extent(ordered_extent);
1980 /* once for the tree */
1981 btrfs_put_ordered_extent(ordered_extent);
1982
Josef Bacik5fd02042012-05-02 14:00:54 -04001983 return ret;
1984}
1985
1986static void finish_ordered_fn(struct btrfs_work *work)
1987{
1988 struct btrfs_ordered_extent *ordered_extent;
1989 ordered_extent = container_of(work, struct btrfs_ordered_extent, work);
1990 btrfs_finish_ordered_io(ordered_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001991}
1992
Christoph Hellwigb2950862008-12-02 09:54:17 -05001993static int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04001994 struct extent_state *state, int uptodate)
1995{
Josef Bacik5fd02042012-05-02 14:00:54 -04001996 struct inode *inode = page->mapping->host;
1997 struct btrfs_root *root = BTRFS_I(inode)->root;
1998 struct btrfs_ordered_extent *ordered_extent = NULL;
1999 struct btrfs_workers *workers;
2000
liubo1abe9b82011-03-24 11:18:59 +00002001 trace_btrfs_writepage_end_io_hook(page, start, end, uptodate);
2002
Chris Mason8b62b722009-09-02 16:53:46 -04002003 ClearPagePrivate2(page);
Josef Bacik5fd02042012-05-02 14:00:54 -04002004 if (!btrfs_dec_test_ordered_pending(inode, &ordered_extent, start,
2005 end - start + 1, uptodate))
2006 return 0;
2007
2008 ordered_extent->work.func = finish_ordered_fn;
2009 ordered_extent->work.flags = 0;
2010
Liu Bo83eea1f2012-07-10 05:28:39 -06002011 if (btrfs_is_free_space_inode(inode))
Josef Bacik5fd02042012-05-02 14:00:54 -04002012 workers = &root->fs_info->endio_freespace_worker;
2013 else
2014 workers = &root->fs_info->endio_write_workers;
2015 btrfs_queue_worker(workers, &ordered_extent->work);
2016
2017 return 0;
Chris Mason211f90e2008-07-18 11:56:15 -04002018}
2019
Chris Masond352ac62008-09-29 15:18:18 -04002020/*
Chris Masond352ac62008-09-29 15:18:18 -04002021 * when reads are done, we need to check csums to verify the data is correct
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002022 * if there's a match, we allow the bio to finish. If not, the code in
2023 * extent_io.c will try to find good copies for us.
Chris Masond352ac62008-09-29 15:18:18 -04002024 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05002025static int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002026 struct extent_state *state, int mirror)
Chris Mason07157aa2007-08-30 08:50:51 -04002027{
Chris Mason35ebb932007-10-30 16:56:53 -04002028 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -04002029 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05002030 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -04002031 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -05002032 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -04002033 int ret;
Chris Masonff79f812007-10-15 16:22:25 -04002034 struct btrfs_root *root = BTRFS_I(inode)->root;
2035 u32 csum = ~(u32)0;
Chris Masond1310b22008-01-24 16:13:08 -05002036
Chris Masond20f7042008-12-08 16:58:54 -05002037 if (PageChecked(page)) {
2038 ClearPageChecked(page);
2039 goto good;
2040 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002041
2042 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Jan Schmidt08d2f342011-05-04 16:18:50 +02002043 goto good;
Chris Masond20f7042008-12-08 16:58:54 -05002044
Yan Zheng17d217f2008-12-12 10:03:38 -05002045 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04002046 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
Yan Zheng17d217f2008-12-12 10:03:38 -05002047 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM,
2048 GFP_NOFS);
2049 return 0;
2050 }
2051
Yanc2e639f2008-02-04 08:57:25 -05002052 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -05002053 private = state->private;
2054 ret = 0;
2055 } else {
2056 ret = get_state_private(io_tree, start, &private);
2057 }
Cong Wang7ac687d2011-11-25 23:14:28 +08002058 kaddr = kmap_atomic(page);
Chris Masond3977122009-01-05 21:25:51 -05002059 if (ret)
Chris Mason07157aa2007-08-30 08:50:51 -04002060 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05002061
Chris Masonff79f812007-10-15 16:22:25 -04002062 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
2063 btrfs_csum_final(csum, (char *)&csum);
Chris Masond3977122009-01-05 21:25:51 -05002064 if (csum != private)
Chris Mason07157aa2007-08-30 08:50:51 -04002065 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05002066
Cong Wang7ac687d2011-11-25 23:14:28 +08002067 kunmap_atomic(kaddr);
Chris Masond20f7042008-12-08 16:58:54 -05002068good:
Chris Mason07157aa2007-08-30 08:50:51 -04002069 return 0;
2070
2071zeroit:
Chris Mason945d8962011-05-22 12:33:42 -04002072 printk_ratelimited(KERN_INFO "btrfs csum failed ino %llu off %llu csum %u "
Li Zefan33345d012011-04-20 10:31:50 +08002073 "private %llu\n",
2074 (unsigned long long)btrfs_ino(page->mapping->host),
Chris Mason193f2842009-04-27 07:29:05 -04002075 (unsigned long long)start, csum,
2076 (unsigned long long)private);
Chris Masondb945352007-10-15 16:15:53 -04002077 memset(kaddr + offset, 1, end - start + 1);
2078 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002079 kunmap_atomic(kaddr);
Chris Mason3b951512008-04-17 11:29:12 -04002080 if (private == 0)
2081 return 0;
Chris Mason7e383262008-04-09 16:28:12 -04002082 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -04002083}
Chris Masonb888db22007-08-27 16:49:44 -04002084
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002085struct delayed_iput {
2086 struct list_head list;
2087 struct inode *inode;
2088};
2089
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002090/* JDM: If this is fs-wide, why can't we add a pointer to
2091 * btrfs_inode instead and avoid the allocation? */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002092void btrfs_add_delayed_iput(struct inode *inode)
2093{
2094 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2095 struct delayed_iput *delayed;
2096
2097 if (atomic_add_unless(&inode->i_count, -1, 1))
2098 return;
2099
2100 delayed = kmalloc(sizeof(*delayed), GFP_NOFS | __GFP_NOFAIL);
2101 delayed->inode = inode;
2102
2103 spin_lock(&fs_info->delayed_iput_lock);
2104 list_add_tail(&delayed->list, &fs_info->delayed_iputs);
2105 spin_unlock(&fs_info->delayed_iput_lock);
2106}
2107
2108void btrfs_run_delayed_iputs(struct btrfs_root *root)
2109{
2110 LIST_HEAD(list);
2111 struct btrfs_fs_info *fs_info = root->fs_info;
2112 struct delayed_iput *delayed;
2113 int empty;
2114
2115 spin_lock(&fs_info->delayed_iput_lock);
2116 empty = list_empty(&fs_info->delayed_iputs);
2117 spin_unlock(&fs_info->delayed_iput_lock);
2118 if (empty)
2119 return;
2120
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002121 spin_lock(&fs_info->delayed_iput_lock);
2122 list_splice_init(&fs_info->delayed_iputs, &list);
2123 spin_unlock(&fs_info->delayed_iput_lock);
2124
2125 while (!list_empty(&list)) {
2126 delayed = list_entry(list.next, struct delayed_iput, list);
2127 list_del(&delayed->list);
2128 iput(delayed->inode);
2129 kfree(delayed);
2130 }
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002131}
2132
Yan, Zhengd68fc572010-05-16 10:49:58 -04002133enum btrfs_orphan_cleanup_state {
2134 ORPHAN_CLEANUP_STARTED = 1,
2135 ORPHAN_CLEANUP_DONE = 2,
2136};
2137
2138/*
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08002139 * This is called in transaction commit time. If there are no orphan
Yan, Zhengd68fc572010-05-16 10:49:58 -04002140 * files in the subvolume, it removes orphan item and frees block_rsv
2141 * structure.
2142 */
2143void btrfs_orphan_commit_root(struct btrfs_trans_handle *trans,
2144 struct btrfs_root *root)
2145{
Josef Bacik90290e12011-12-02 15:44:12 -05002146 struct btrfs_block_rsv *block_rsv;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002147 int ret;
2148
Josef Bacik8a35d952012-05-23 14:26:42 -04002149 if (atomic_read(&root->orphan_inodes) ||
Yan, Zhengd68fc572010-05-16 10:49:58 -04002150 root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE)
2151 return;
2152
Josef Bacik90290e12011-12-02 15:44:12 -05002153 spin_lock(&root->orphan_lock);
Josef Bacik8a35d952012-05-23 14:26:42 -04002154 if (atomic_read(&root->orphan_inodes)) {
Josef Bacik90290e12011-12-02 15:44:12 -05002155 spin_unlock(&root->orphan_lock);
2156 return;
2157 }
2158
2159 if (root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE) {
2160 spin_unlock(&root->orphan_lock);
2161 return;
2162 }
2163
2164 block_rsv = root->orphan_block_rsv;
2165 root->orphan_block_rsv = NULL;
2166 spin_unlock(&root->orphan_lock);
2167
Yan, Zhengd68fc572010-05-16 10:49:58 -04002168 if (root->orphan_item_inserted &&
2169 btrfs_root_refs(&root->root_item) > 0) {
2170 ret = btrfs_del_orphan_item(trans, root->fs_info->tree_root,
2171 root->root_key.objectid);
2172 BUG_ON(ret);
2173 root->orphan_item_inserted = 0;
2174 }
2175
Josef Bacik90290e12011-12-02 15:44:12 -05002176 if (block_rsv) {
2177 WARN_ON(block_rsv->size > 0);
2178 btrfs_free_block_rsv(root, block_rsv);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002179 }
2180}
2181
2182/*
Josef Bacik7b128762008-07-24 12:17:14 -04002183 * This creates an orphan entry for the given inode in case something goes
2184 * wrong in the middle of an unlink/truncate.
Yan, Zhengd68fc572010-05-16 10:49:58 -04002185 *
2186 * NOTE: caller of this function should reserve 5 units of metadata for
2187 * this function.
Josef Bacik7b128762008-07-24 12:17:14 -04002188 */
2189int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
2190{
2191 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002192 struct btrfs_block_rsv *block_rsv = NULL;
2193 int reserve = 0;
2194 int insert = 0;
2195 int ret;
Josef Bacik7b128762008-07-24 12:17:14 -04002196
Yan, Zhengd68fc572010-05-16 10:49:58 -04002197 if (!root->orphan_block_rsv) {
Miao Xie66d8f3d2012-09-06 04:02:28 -06002198 block_rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP);
Tsutomu Itohb5324022011-07-19 07:27:20 +00002199 if (!block_rsv)
2200 return -ENOMEM;
Josef Bacik7b128762008-07-24 12:17:14 -04002201 }
2202
Yan, Zhengd68fc572010-05-16 10:49:58 -04002203 spin_lock(&root->orphan_lock);
2204 if (!root->orphan_block_rsv) {
2205 root->orphan_block_rsv = block_rsv;
2206 } else if (block_rsv) {
2207 btrfs_free_block_rsv(root, block_rsv);
2208 block_rsv = NULL;
2209 }
Josef Bacik7b128762008-07-24 12:17:14 -04002210
Josef Bacik8a35d952012-05-23 14:26:42 -04002211 if (!test_and_set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2212 &BTRFS_I(inode)->runtime_flags)) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04002213#if 0
2214 /*
2215 * For proper ENOSPC handling, we should do orphan
2216 * cleanup when mounting. But this introduces backward
2217 * compatibility issue.
2218 */
2219 if (!xchg(&root->orphan_item_inserted, 1))
2220 insert = 2;
2221 else
2222 insert = 1;
2223#endif
2224 insert = 1;
Miao Xie321f0e72012-08-28 22:13:02 -06002225 atomic_inc(&root->orphan_inodes);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002226 }
Josef Bacik7b128762008-07-24 12:17:14 -04002227
Josef Bacik72ac3c02012-05-23 14:13:11 -04002228 if (!test_and_set_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
2229 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04002230 reserve = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002231 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002232
Yan, Zhengd68fc572010-05-16 10:49:58 -04002233 /* grab metadata reservation from transaction handle */
2234 if (reserve) {
2235 ret = btrfs_orphan_reserve_metadata(trans, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002236 BUG_ON(ret); /* -ENOSPC in reservation; Logic error? JDM */
Yan, Zhengd68fc572010-05-16 10:49:58 -04002237 }
2238
2239 /* insert an orphan item to track this unlinked/truncated file */
2240 if (insert >= 1) {
Li Zefan33345d012011-04-20 10:31:50 +08002241 ret = btrfs_insert_orphan_item(trans, root, btrfs_ino(inode));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002242 if (ret && ret != -EEXIST) {
Josef Bacik8a35d952012-05-23 14:26:42 -04002243 clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2244 &BTRFS_I(inode)->runtime_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002245 btrfs_abort_transaction(trans, root, ret);
2246 return ret;
2247 }
2248 ret = 0;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002249 }
2250
2251 /* insert an orphan item to track subvolume contains orphan files */
2252 if (insert >= 2) {
2253 ret = btrfs_insert_orphan_item(trans, root->fs_info->tree_root,
2254 root->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002255 if (ret && ret != -EEXIST) {
2256 btrfs_abort_transaction(trans, root, ret);
2257 return ret;
2258 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002259 }
2260 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002261}
2262
2263/*
2264 * We have done the truncate/delete so we can go ahead and remove the orphan
2265 * item for this particular inode.
2266 */
2267int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode)
2268{
2269 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002270 int delete_item = 0;
2271 int release_rsv = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002272 int ret = 0;
2273
Yan, Zhengd68fc572010-05-16 10:49:58 -04002274 spin_lock(&root->orphan_lock);
Josef Bacik8a35d952012-05-23 14:26:42 -04002275 if (test_and_clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2276 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04002277 delete_item = 1;
Josef Bacik7b128762008-07-24 12:17:14 -04002278
Josef Bacik72ac3c02012-05-23 14:13:11 -04002279 if (test_and_clear_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
2280 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04002281 release_rsv = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002282 spin_unlock(&root->orphan_lock);
2283
2284 if (trans && delete_item) {
Li Zefan33345d012011-04-20 10:31:50 +08002285 ret = btrfs_del_orphan_item(trans, root, btrfs_ino(inode));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002286 BUG_ON(ret); /* -ENOMEM or corruption (JDM: Recheck) */
Josef Bacik7b128762008-07-24 12:17:14 -04002287 }
2288
Josef Bacik8a35d952012-05-23 14:26:42 -04002289 if (release_rsv) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04002290 btrfs_orphan_release_metadata(inode);
Josef Bacik8a35d952012-05-23 14:26:42 -04002291 atomic_dec(&root->orphan_inodes);
2292 }
Josef Bacik7b128762008-07-24 12:17:14 -04002293
Yan, Zhengd68fc572010-05-16 10:49:58 -04002294 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002295}
2296
2297/*
2298 * this cleans up any orphans that may be left on the list from the last use
2299 * of this root.
2300 */
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002301int btrfs_orphan_cleanup(struct btrfs_root *root)
Josef Bacik7b128762008-07-24 12:17:14 -04002302{
2303 struct btrfs_path *path;
2304 struct extent_buffer *leaf;
Josef Bacik7b128762008-07-24 12:17:14 -04002305 struct btrfs_key key, found_key;
2306 struct btrfs_trans_handle *trans;
2307 struct inode *inode;
Josef Bacik8f6d7f42011-09-26 15:55:20 -04002308 u64 last_objectid = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002309 int ret = 0, nr_unlink = 0, nr_truncate = 0;
2310
Yan, Zhengd68fc572010-05-16 10:49:58 -04002311 if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002312 return 0;
Yan, Zhengc71bf092009-11-12 09:34:40 +00002313
2314 path = btrfs_alloc_path();
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002315 if (!path) {
2316 ret = -ENOMEM;
2317 goto out;
2318 }
Josef Bacik7b128762008-07-24 12:17:14 -04002319 path->reada = -1;
2320
2321 key.objectid = BTRFS_ORPHAN_OBJECTID;
2322 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
2323 key.offset = (u64)-1;
2324
Josef Bacik7b128762008-07-24 12:17:14 -04002325 while (1) {
2326 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002327 if (ret < 0)
2328 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04002329
2330 /*
2331 * if ret == 0 means we found what we were searching for, which
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002332 * is weird, but possible, so only screw with path if we didn't
Josef Bacik7b128762008-07-24 12:17:14 -04002333 * find the key and see if we have stuff that matches
2334 */
2335 if (ret > 0) {
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002336 ret = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002337 if (path->slots[0] == 0)
2338 break;
2339 path->slots[0]--;
2340 }
2341
2342 /* pull out the item */
2343 leaf = path->nodes[0];
Josef Bacik7b128762008-07-24 12:17:14 -04002344 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2345
2346 /* make sure the item matches what we want */
2347 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
2348 break;
2349 if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY)
2350 break;
2351
2352 /* release the path since we're done with it */
David Sterbab3b4aa72011-04-21 01:20:15 +02002353 btrfs_release_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04002354
2355 /*
2356 * this is where we are basically btrfs_lookup, without the
2357 * crossing root thing. we store the inode number in the
2358 * offset of the orphan item.
2359 */
Josef Bacik8f6d7f42011-09-26 15:55:20 -04002360
2361 if (found_key.offset == last_objectid) {
2362 printk(KERN_ERR "btrfs: Error removing orphan entry, "
2363 "stopping orphan cleanup\n");
2364 ret = -EINVAL;
2365 goto out;
2366 }
2367
2368 last_objectid = found_key.offset;
2369
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002370 found_key.objectid = found_key.offset;
2371 found_key.type = BTRFS_INODE_ITEM_KEY;
2372 found_key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +00002373 inode = btrfs_iget(root->fs_info->sb, &found_key, root, NULL);
Josef Bacika8c9e572011-09-21 16:55:59 -04002374 ret = PTR_RET(inode);
2375 if (ret && ret != -ESTALE)
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002376 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04002377
Arne Jansenf8e9e0b2011-12-14 20:12:02 -05002378 if (ret == -ESTALE && root == root->fs_info->tree_root) {
2379 struct btrfs_root *dead_root;
2380 struct btrfs_fs_info *fs_info = root->fs_info;
2381 int is_dead_root = 0;
2382
2383 /*
2384 * this is an orphan in the tree root. Currently these
2385 * could come from 2 sources:
2386 * a) a snapshot deletion in progress
2387 * b) a free space cache inode
2388 * We need to distinguish those two, as the snapshot
2389 * orphan must not get deleted.
2390 * find_dead_roots already ran before us, so if this
2391 * is a snapshot deletion, we should find the root
2392 * in the dead_roots list
2393 */
2394 spin_lock(&fs_info->trans_lock);
2395 list_for_each_entry(dead_root, &fs_info->dead_roots,
2396 root_list) {
2397 if (dead_root->root_key.objectid ==
2398 found_key.objectid) {
2399 is_dead_root = 1;
2400 break;
2401 }
2402 }
2403 spin_unlock(&fs_info->trans_lock);
2404 if (is_dead_root) {
2405 /* prevent this orphan from being found again */
2406 key.offset = found_key.objectid - 1;
2407 continue;
2408 }
2409 }
Josef Bacika8c9e572011-09-21 16:55:59 -04002410 /*
2411 * Inode is already gone but the orphan item is still there,
2412 * kill the orphan item.
2413 */
2414 if (ret == -ESTALE) {
2415 trans = btrfs_start_transaction(root, 1);
2416 if (IS_ERR(trans)) {
2417 ret = PTR_ERR(trans);
2418 goto out;
2419 }
Josef Bacik8a35d952012-05-23 14:26:42 -04002420 printk(KERN_ERR "auto deleting %Lu\n",
2421 found_key.objectid);
Josef Bacika8c9e572011-09-21 16:55:59 -04002422 ret = btrfs_del_orphan_item(trans, root,
2423 found_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002424 BUG_ON(ret); /* -ENOMEM or corruption (JDM: Recheck) */
Josef Bacika8c9e572011-09-21 16:55:59 -04002425 btrfs_end_transaction(trans, root);
2426 continue;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002427 }
Josef Bacik7b128762008-07-24 12:17:14 -04002428
Josef Bacik7b128762008-07-24 12:17:14 -04002429 /*
2430 * add this inode to the orphan list so btrfs_orphan_del does
2431 * the proper thing when we hit it
2432 */
Josef Bacik8a35d952012-05-23 14:26:42 -04002433 set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2434 &BTRFS_I(inode)->runtime_flags);
Josef Bacik7b128762008-07-24 12:17:14 -04002435
Josef Bacik7b128762008-07-24 12:17:14 -04002436 /* if we have links, this was a truncate, lets do that */
2437 if (inode->i_nlink) {
Josef Bacika41ad392011-01-31 15:30:16 -05002438 if (!S_ISREG(inode->i_mode)) {
2439 WARN_ON(1);
2440 iput(inode);
2441 continue;
2442 }
Josef Bacik7b128762008-07-24 12:17:14 -04002443 nr_truncate++;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002444 ret = btrfs_truncate(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04002445 } else {
2446 nr_unlink++;
2447 }
2448
2449 /* this will do delete_inode and everything for us */
2450 iput(inode);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002451 if (ret)
2452 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04002453 }
Miao Xie3254c872011-11-10 20:45:05 -05002454 /* release the path since we're done with it */
2455 btrfs_release_path(path);
2456
Yan, Zhengd68fc572010-05-16 10:49:58 -04002457 root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE;
2458
2459 if (root->orphan_block_rsv)
2460 btrfs_block_rsv_release(root, root->orphan_block_rsv,
2461 (u64)-1);
2462
2463 if (root->orphan_block_rsv || root->orphan_item_inserted) {
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002464 trans = btrfs_join_transaction(root);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002465 if (!IS_ERR(trans))
2466 btrfs_end_transaction(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002467 }
Josef Bacik7b128762008-07-24 12:17:14 -04002468
2469 if (nr_unlink)
2470 printk(KERN_INFO "btrfs: unlinked %d orphans\n", nr_unlink);
2471 if (nr_truncate)
2472 printk(KERN_INFO "btrfs: truncated %d orphans\n", nr_truncate);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002473
2474out:
2475 if (ret)
2476 printk(KERN_CRIT "btrfs: could not do orphan cleanup %d\n", ret);
2477 btrfs_free_path(path);
2478 return ret;
Josef Bacik7b128762008-07-24 12:17:14 -04002479}
2480
Chris Masond352ac62008-09-29 15:18:18 -04002481/*
Chris Mason46a53cc2009-04-27 11:47:50 -04002482 * very simple check to peek ahead in the leaf looking for xattrs. If we
2483 * don't find any xattrs, we know there can't be any acls.
2484 *
2485 * slot is the slot the inode is in, objectid is the objectid of the inode
2486 */
2487static noinline int acls_after_inode_item(struct extent_buffer *leaf,
2488 int slot, u64 objectid)
2489{
2490 u32 nritems = btrfs_header_nritems(leaf);
2491 struct btrfs_key found_key;
2492 int scanned = 0;
2493
2494 slot++;
2495 while (slot < nritems) {
2496 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2497
2498 /* we found a different objectid, there must not be acls */
2499 if (found_key.objectid != objectid)
2500 return 0;
2501
2502 /* we found an xattr, assume we've got an acl */
2503 if (found_key.type == BTRFS_XATTR_ITEM_KEY)
2504 return 1;
2505
2506 /*
2507 * we found a key greater than an xattr key, there can't
2508 * be any acls later on
2509 */
2510 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
2511 return 0;
2512
2513 slot++;
2514 scanned++;
2515
2516 /*
2517 * it goes inode, inode backrefs, xattrs, extents,
2518 * so if there are a ton of hard links to an inode there can
2519 * be a lot of backrefs. Don't waste time searching too hard,
2520 * this is just an optimization
2521 */
2522 if (scanned >= 8)
2523 break;
2524 }
2525 /* we hit the end of the leaf before we found an xattr or
2526 * something larger than an xattr. We have to assume the inode
2527 * has acls
2528 */
2529 return 1;
2530}
2531
2532/*
Chris Masond352ac62008-09-29 15:18:18 -04002533 * read an inode from the btree into the in-memory inode
2534 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002535static void btrfs_read_locked_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002536{
2537 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002538 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002539 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -04002540 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -04002541 struct btrfs_root *root = BTRFS_I(inode)->root;
2542 struct btrfs_key location;
Chris Mason46a53cc2009-04-27 11:47:50 -04002543 int maybe_acls;
Josef Bacik618e21d2007-07-11 10:18:17 -04002544 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04002545 int ret;
Miao Xie2f7e33d2011-06-23 07:27:13 +00002546 bool filled = false;
2547
2548 ret = btrfs_fill_inode(inode, &rdev);
2549 if (!ret)
2550 filled = true;
Chris Mason39279cc2007-06-12 06:35:45 -04002551
2552 path = btrfs_alloc_path();
Mark Fasheh1748f842011-07-12 11:25:31 -07002553 if (!path)
2554 goto make_bad;
2555
Josef Bacikd90c7322011-05-17 09:50:54 -04002556 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002557 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05002558
Chris Mason39279cc2007-06-12 06:35:45 -04002559 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002560 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04002561 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -04002562
Chris Mason5f39d392007-10-15 16:14:19 -04002563 leaf = path->nodes[0];
Miao Xie2f7e33d2011-06-23 07:27:13 +00002564
2565 if (filled)
2566 goto cache_acl;
2567
Chris Mason5f39d392007-10-15 16:14:19 -04002568 inode_item = btrfs_item_ptr(leaf, path->slots[0],
2569 struct btrfs_inode_item);
Chris Mason5f39d392007-10-15 16:14:19 -04002570 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
Miklos Szeredibfe86842011-10-28 14:13:29 +02002571 set_nlink(inode, btrfs_inode_nlink(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002572 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
2573 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
Chris Masondbe674a2008-07-17 12:54:05 -04002574 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002575
2576 tspec = btrfs_inode_atime(inode_item);
2577 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2578 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2579
2580 tspec = btrfs_inode_mtime(inode_item);
2581 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2582 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2583
2584 tspec = btrfs_inode_ctime(inode_item);
2585 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2586 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2587
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002588 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04002589 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Josef Bacik5dc562c2012-08-17 13:14:17 -04002590 BTRFS_I(inode)->last_trans = btrfs_inode_transid(leaf, inode_item);
2591
2592 /*
2593 * If we were modified in the current generation and evicted from memory
2594 * and then re-read we need to do a full sync since we don't have any
2595 * idea about which extents were modified before we were evicted from
2596 * cache.
2597 */
2598 if (BTRFS_I(inode)->last_trans == root->fs_info->generation)
2599 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
2600 &BTRFS_I(inode)->runtime_flags);
2601
Josef Bacik0c4d2d92012-04-05 15:03:02 -04002602 inode->i_version = btrfs_inode_sequence(leaf, inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04002603 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04002604 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002605 rdev = btrfs_inode_rdev(leaf, inode_item);
2606
Josef Bacikaec74772008-07-24 12:12:38 -04002607 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05002608 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Miao Xie2f7e33d2011-06-23 07:27:13 +00002609cache_acl:
Chris Mason46a53cc2009-04-27 11:47:50 -04002610 /*
2611 * try to precache a NULL acl entry for files that don't have
2612 * any xattrs or acls
2613 */
Li Zefan33345d012011-04-20 10:31:50 +08002614 maybe_acls = acls_after_inode_item(leaf, path->slots[0],
2615 btrfs_ino(inode));
Al Viro72c04902009-06-24 16:58:48 -04002616 if (!maybe_acls)
2617 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04002618
Chris Mason39279cc2007-06-12 06:35:45 -04002619 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002620
Chris Mason39279cc2007-06-12 06:35:45 -04002621 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04002622 case S_IFREG:
2623 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04002624 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05002625 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04002626 inode->i_fop = &btrfs_file_operations;
2627 inode->i_op = &btrfs_file_inode_operations;
2628 break;
2629 case S_IFDIR:
2630 inode->i_fop = &btrfs_dir_file_operations;
2631 if (root == root->fs_info->tree_root)
2632 inode->i_op = &btrfs_dir_ro_inode_operations;
2633 else
2634 inode->i_op = &btrfs_dir_inode_operations;
2635 break;
2636 case S_IFLNK:
2637 inode->i_op = &btrfs_symlink_inode_operations;
2638 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04002639 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04002640 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04002641 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05002642 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04002643 init_special_inode(inode, inode->i_mode, rdev);
2644 break;
Chris Mason39279cc2007-06-12 06:35:45 -04002645 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002646
2647 btrfs_update_iflags(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002648 return;
2649
2650make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04002651 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002652 make_bad_inode(inode);
2653}
2654
Chris Masond352ac62008-09-29 15:18:18 -04002655/*
2656 * given a leaf and an inode, copy the inode fields into the leaf
2657 */
Chris Masone02119d2008-09-05 16:13:11 -04002658static void fill_inode_item(struct btrfs_trans_handle *trans,
2659 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04002660 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04002661 struct inode *inode)
2662{
Chris Mason5f39d392007-10-15 16:14:19 -04002663 btrfs_set_inode_uid(leaf, item, inode->i_uid);
2664 btrfs_set_inode_gid(leaf, item, inode->i_gid);
Chris Masondbe674a2008-07-17 12:54:05 -04002665 btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size);
Chris Mason5f39d392007-10-15 16:14:19 -04002666 btrfs_set_inode_mode(leaf, item, inode->i_mode);
2667 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
2668
2669 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
2670 inode->i_atime.tv_sec);
2671 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
2672 inode->i_atime.tv_nsec);
2673
2674 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
2675 inode->i_mtime.tv_sec);
2676 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
2677 inode->i_mtime.tv_nsec);
2678
2679 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
2680 inode->i_ctime.tv_sec);
2681 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
2682 inode->i_ctime.tv_nsec);
2683
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002684 btrfs_set_inode_nbytes(leaf, item, inode_get_bytes(inode));
Chris Masone02119d2008-09-05 16:13:11 -04002685 btrfs_set_inode_generation(leaf, item, BTRFS_I(inode)->generation);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04002686 btrfs_set_inode_sequence(leaf, item, inode->i_version);
Chris Masone02119d2008-09-05 16:13:11 -04002687 btrfs_set_inode_transid(leaf, item, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002688 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -05002689 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Josef Bacikd82a6f12011-05-11 15:26:06 -04002690 btrfs_set_inode_block_group(leaf, item, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002691}
2692
Chris Masond352ac62008-09-29 15:18:18 -04002693/*
2694 * copy everything in the in-memory inode into the btree.
2695 */
Chris Mason21151332011-11-10 20:39:08 -05002696static noinline int btrfs_update_inode_item(struct btrfs_trans_handle *trans,
Chris Masond3977122009-01-05 21:25:51 -05002697 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002698{
2699 struct btrfs_inode_item *inode_item;
2700 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002701 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002702 int ret;
2703
2704 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08002705 if (!path)
2706 return -ENOMEM;
2707
Chris Masonb9473432009-03-13 11:00:37 -04002708 path->leave_spinning = 1;
Miao Xie16cdcec2011-04-22 18:12:22 +08002709 ret = btrfs_lookup_inode(trans, root, path, &BTRFS_I(inode)->location,
2710 1);
Chris Mason39279cc2007-06-12 06:35:45 -04002711 if (ret) {
2712 if (ret > 0)
2713 ret = -ENOENT;
2714 goto failed;
2715 }
2716
Chris Masonb4ce94d2009-02-04 09:25:08 -05002717 btrfs_unlock_up_safe(path, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002718 leaf = path->nodes[0];
2719 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Miao Xie16cdcec2011-04-22 18:12:22 +08002720 struct btrfs_inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -04002721
Chris Masone02119d2008-09-05 16:13:11 -04002722 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002723 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002724 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002725 ret = 0;
2726failed:
Chris Mason39279cc2007-06-12 06:35:45 -04002727 btrfs_free_path(path);
2728 return ret;
2729}
2730
Chris Masond352ac62008-09-29 15:18:18 -04002731/*
Chris Mason21151332011-11-10 20:39:08 -05002732 * copy everything in the in-memory inode into the btree.
2733 */
2734noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
2735 struct btrfs_root *root, struct inode *inode)
2736{
2737 int ret;
2738
2739 /*
2740 * If the inode is a free space inode, we can deadlock during commit
2741 * if we put it into the delayed code.
2742 *
2743 * The data relocation inode should also be directly updated
2744 * without delay
2745 */
Liu Bo83eea1f2012-07-10 05:28:39 -06002746 if (!btrfs_is_free_space_inode(inode)
Chris Mason21151332011-11-10 20:39:08 -05002747 && root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID) {
Alexander Block8ea05e32012-07-25 17:35:53 +02002748 btrfs_update_root_times(trans, root);
2749
Chris Mason21151332011-11-10 20:39:08 -05002750 ret = btrfs_delayed_update_inode(trans, root, inode);
2751 if (!ret)
2752 btrfs_set_inode_last_trans(trans, inode);
2753 return ret;
2754 }
2755
2756 return btrfs_update_inode_item(trans, root, inode);
2757}
2758
2759static noinline int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans,
2760 struct btrfs_root *root, struct inode *inode)
2761{
2762 int ret;
2763
2764 ret = btrfs_update_inode(trans, root, inode);
2765 if (ret == -ENOSPC)
2766 return btrfs_update_inode_item(trans, root, inode);
2767 return ret;
2768}
2769
2770/*
Chris Masond352ac62008-09-29 15:18:18 -04002771 * unlink helper that gets used here in inode.c and in the tree logging
2772 * recovery code. It remove a link in a directory with a given name, and
2773 * also drops the back refs in the inode to the directory
2774 */
Al Viro92986792011-03-04 17:14:37 +00002775static int __btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2776 struct btrfs_root *root,
2777 struct inode *dir, struct inode *inode,
2778 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04002779{
2780 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04002781 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002782 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002783 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04002784 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04002785 u64 index;
Li Zefan33345d012011-04-20 10:31:50 +08002786 u64 ino = btrfs_ino(inode);
2787 u64 dir_ino = btrfs_ino(dir);
Chris Mason39279cc2007-06-12 06:35:45 -04002788
2789 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002790 if (!path) {
2791 ret = -ENOMEM;
Tsutomu Itoh554233a2011-02-03 03:16:25 +00002792 goto out;
Chris Mason54aa1f42007-06-22 14:16:25 -04002793 }
2794
Chris Masonb9473432009-03-13 11:00:37 -04002795 path->leave_spinning = 1;
Li Zefan33345d012011-04-20 10:31:50 +08002796 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Chris Mason39279cc2007-06-12 06:35:45 -04002797 name, name_len, -1);
2798 if (IS_ERR(di)) {
2799 ret = PTR_ERR(di);
2800 goto err;
2801 }
2802 if (!di) {
2803 ret = -ENOENT;
2804 goto err;
2805 }
Chris Mason5f39d392007-10-15 16:14:19 -04002806 leaf = path->nodes[0];
2807 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04002808 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04002809 if (ret)
2810 goto err;
David Sterbab3b4aa72011-04-21 01:20:15 +02002811 btrfs_release_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002812
Li Zefan33345d012011-04-20 10:31:50 +08002813 ret = btrfs_del_inode_ref(trans, root, name, name_len, ino,
2814 dir_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04002815 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05002816 printk(KERN_INFO "btrfs failed to delete reference to %.*s, "
Li Zefan33345d012011-04-20 10:31:50 +08002817 "inode %llu parent %llu\n", name_len, name,
2818 (unsigned long long)ino, (unsigned long long)dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002819 btrfs_abort_transaction(trans, root, ret);
Josef Bacikaec74772008-07-24 12:12:38 -04002820 goto err;
2821 }
2822
Miao Xie16cdcec2011-04-22 18:12:22 +08002823 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002824 if (ret) {
2825 btrfs_abort_transaction(trans, root, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04002826 goto err;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002827 }
Chris Mason39279cc2007-06-12 06:35:45 -04002828
Chris Masone02119d2008-09-05 16:13:11 -04002829 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
Li Zefan33345d012011-04-20 10:31:50 +08002830 inode, dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002831 if (ret != 0 && ret != -ENOENT) {
2832 btrfs_abort_transaction(trans, root, ret);
2833 goto err;
2834 }
Chris Masone02119d2008-09-05 16:13:11 -04002835
2836 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
2837 dir, index);
Chris Mason6418c962010-10-30 07:34:24 -04002838 if (ret == -ENOENT)
2839 ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002840err:
2841 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002842 if (ret)
2843 goto out;
2844
2845 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04002846 inode_inc_iversion(inode);
2847 inode_inc_iversion(dir);
Chris Masone02119d2008-09-05 16:13:11 -04002848 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
Tsutomu Itohb9959292012-06-25 21:25:22 -06002849 ret = btrfs_update_inode(trans, root, dir);
Chris Masone02119d2008-09-05 16:13:11 -04002850out:
Chris Mason39279cc2007-06-12 06:35:45 -04002851 return ret;
2852}
2853
Al Viro92986792011-03-04 17:14:37 +00002854int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2855 struct btrfs_root *root,
2856 struct inode *dir, struct inode *inode,
2857 const char *name, int name_len)
2858{
2859 int ret;
2860 ret = __btrfs_unlink_inode(trans, root, dir, inode, name, name_len);
2861 if (!ret) {
2862 btrfs_drop_nlink(inode);
2863 ret = btrfs_update_inode(trans, root, inode);
2864 }
2865 return ret;
2866}
2867
2868
Yan, Zhenga22285a2010-05-16 10:48:46 -04002869/* helper to check if there is any shared block in the path */
2870static int check_path_shared(struct btrfs_root *root,
2871 struct btrfs_path *path)
2872{
2873 struct extent_buffer *eb;
2874 int level;
Dan Carpenter0e4dcbef2010-06-01 08:23:11 +00002875 u64 refs = 1;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002876
2877 for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
Josef Bacikdedefd72011-01-24 21:43:18 +00002878 int ret;
2879
Yan, Zhenga22285a2010-05-16 10:48:46 -04002880 if (!path->nodes[level])
2881 break;
2882 eb = path->nodes[level];
2883 if (!btrfs_block_can_be_shared(root, eb))
2884 continue;
2885 ret = btrfs_lookup_extent_info(NULL, root, eb->start, eb->len,
2886 &refs, NULL);
2887 if (refs > 1)
2888 return 1;
2889 }
Josef Bacikdedefd72011-01-24 21:43:18 +00002890 return 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002891}
2892
2893/*
2894 * helper to start transaction for unlink and rmdir.
2895 *
2896 * unlink and rmdir are special in btrfs, they do not always free space.
2897 * so in enospc case, we should make sure they will free space before
2898 * allowing them to use the global metadata reservation.
2899 */
2900static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir,
2901 struct dentry *dentry)
2902{
2903 struct btrfs_trans_handle *trans;
2904 struct btrfs_root *root = BTRFS_I(dir)->root;
2905 struct btrfs_path *path;
2906 struct btrfs_inode_ref *ref;
2907 struct btrfs_dir_item *di;
2908 struct inode *inode = dentry->d_inode;
2909 u64 index;
2910 int check_link = 1;
2911 int err = -ENOSPC;
2912 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08002913 u64 ino = btrfs_ino(inode);
2914 u64 dir_ino = btrfs_ino(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002915
Josef Bacike70bea52011-10-11 14:18:24 -04002916 /*
2917 * 1 for the possible orphan item
2918 * 1 for the dir item
2919 * 1 for the dir index
2920 * 1 for the inode ref
2921 * 1 for the inode ref in the tree log
2922 * 2 for the dir entries in the log
2923 * 1 for the inode
2924 */
2925 trans = btrfs_start_transaction(root, 8);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002926 if (!IS_ERR(trans) || PTR_ERR(trans) != -ENOSPC)
2927 return trans;
2928
Li Zefan33345d012011-04-20 10:31:50 +08002929 if (ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhenga22285a2010-05-16 10:48:46 -04002930 return ERR_PTR(-ENOSPC);
2931
2932 /* check if there is someone else holds reference */
2933 if (S_ISDIR(inode->i_mode) && atomic_read(&inode->i_count) > 1)
2934 return ERR_PTR(-ENOSPC);
2935
2936 if (atomic_read(&inode->i_count) > 2)
2937 return ERR_PTR(-ENOSPC);
2938
2939 if (xchg(&root->fs_info->enospc_unlink, 1))
2940 return ERR_PTR(-ENOSPC);
2941
2942 path = btrfs_alloc_path();
2943 if (!path) {
2944 root->fs_info->enospc_unlink = 0;
2945 return ERR_PTR(-ENOMEM);
2946 }
2947
Josef Bacik3880a1b2011-10-14 14:46:51 -04002948 /* 1 for the orphan item */
2949 trans = btrfs_start_transaction(root, 1);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002950 if (IS_ERR(trans)) {
2951 btrfs_free_path(path);
2952 root->fs_info->enospc_unlink = 0;
2953 return trans;
2954 }
2955
2956 path->skip_locking = 1;
2957 path->search_commit_root = 1;
2958
2959 ret = btrfs_lookup_inode(trans, root, path,
2960 &BTRFS_I(dir)->location, 0);
2961 if (ret < 0) {
2962 err = ret;
2963 goto out;
2964 }
2965 if (ret == 0) {
2966 if (check_path_shared(root, path))
2967 goto out;
2968 } else {
2969 check_link = 0;
2970 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002971 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002972
2973 ret = btrfs_lookup_inode(trans, root, path,
2974 &BTRFS_I(inode)->location, 0);
2975 if (ret < 0) {
2976 err = ret;
2977 goto out;
2978 }
2979 if (ret == 0) {
2980 if (check_path_shared(root, path))
2981 goto out;
2982 } else {
2983 check_link = 0;
2984 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002985 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002986
2987 if (ret == 0 && S_ISREG(inode->i_mode)) {
2988 ret = btrfs_lookup_file_extent(trans, root, path,
Li Zefan33345d012011-04-20 10:31:50 +08002989 ino, (u64)-1, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002990 if (ret < 0) {
2991 err = ret;
2992 goto out;
2993 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002994 BUG_ON(ret == 0); /* Corruption */
Yan, Zhenga22285a2010-05-16 10:48:46 -04002995 if (check_path_shared(root, path))
2996 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +02002997 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002998 }
2999
3000 if (!check_link) {
3001 err = 0;
3002 goto out;
3003 }
3004
Li Zefan33345d012011-04-20 10:31:50 +08003005 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zhenga22285a2010-05-16 10:48:46 -04003006 dentry->d_name.name, dentry->d_name.len, 0);
3007 if (IS_ERR(di)) {
3008 err = PTR_ERR(di);
3009 goto out;
3010 }
3011 if (di) {
3012 if (check_path_shared(root, path))
3013 goto out;
3014 } else {
3015 err = 0;
3016 goto out;
3017 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003018 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003019
3020 ref = btrfs_lookup_inode_ref(trans, root, path,
3021 dentry->d_name.name, dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08003022 ino, dir_ino, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003023 if (IS_ERR(ref)) {
3024 err = PTR_ERR(ref);
3025 goto out;
3026 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003027 BUG_ON(!ref); /* Logic error */
Yan, Zhenga22285a2010-05-16 10:48:46 -04003028 if (check_path_shared(root, path))
3029 goto out;
3030 index = btrfs_inode_ref_index(path->nodes[0], ref);
David Sterbab3b4aa72011-04-21 01:20:15 +02003031 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003032
Miao Xie16cdcec2011-04-22 18:12:22 +08003033 /*
3034 * This is a commit root search, if we can lookup inode item and other
3035 * relative items in the commit root, it means the transaction of
3036 * dir/file creation has been committed, and the dir index item that we
3037 * delay to insert has also been inserted into the commit root. So
3038 * we needn't worry about the delayed insertion of the dir index item
3039 * here.
3040 */
Li Zefan33345d012011-04-20 10:31:50 +08003041 di = btrfs_lookup_dir_index_item(trans, root, path, dir_ino, index,
Yan, Zhenga22285a2010-05-16 10:48:46 -04003042 dentry->d_name.name, dentry->d_name.len, 0);
3043 if (IS_ERR(di)) {
3044 err = PTR_ERR(di);
3045 goto out;
3046 }
3047 BUG_ON(ret == -ENOENT);
3048 if (check_path_shared(root, path))
3049 goto out;
3050
3051 err = 0;
3052out:
3053 btrfs_free_path(path);
Josef Bacik3880a1b2011-10-14 14:46:51 -04003054 /* Migrate the orphan reservation over */
3055 if (!err)
3056 err = btrfs_block_rsv_migrate(trans->block_rsv,
3057 &root->fs_info->global_block_rsv,
Josef Bacik5a77d762011-11-01 14:32:23 -04003058 trans->bytes_reserved);
Josef Bacik3880a1b2011-10-14 14:46:51 -04003059
Yan, Zhenga22285a2010-05-16 10:48:46 -04003060 if (err) {
3061 btrfs_end_transaction(trans, root);
3062 root->fs_info->enospc_unlink = 0;
3063 return ERR_PTR(err);
3064 }
3065
3066 trans->block_rsv = &root->fs_info->global_block_rsv;
3067 return trans;
3068}
3069
3070static void __unlink_end_trans(struct btrfs_trans_handle *trans,
3071 struct btrfs_root *root)
3072{
Miao Xie66d8f3d2012-09-06 04:02:28 -06003073 if (trans->block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL) {
Josef Bacik5a77d762011-11-01 14:32:23 -04003074 btrfs_block_rsv_release(root, trans->block_rsv,
3075 trans->bytes_reserved);
3076 trans->block_rsv = &root->fs_info->trans_block_rsv;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003077 BUG_ON(!root->fs_info->enospc_unlink);
3078 root->fs_info->enospc_unlink = 0;
3079 }
Josef Bacik7ad85bb2012-01-12 19:10:12 -05003080 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003081}
3082
Chris Mason39279cc2007-06-12 06:35:45 -04003083static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
3084{
Yan, Zhenga22285a2010-05-16 10:48:46 -04003085 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003086 struct btrfs_trans_handle *trans;
Josef Bacik7b128762008-07-24 12:17:14 -04003087 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04003088 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05003089 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003090
Yan, Zhenga22285a2010-05-16 10:48:46 -04003091 trans = __unlink_start_trans(dir, dentry);
3092 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003093 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04003094
Chris Mason12fcfd22009-03-24 10:24:20 -04003095 btrfs_record_unlink_dir(trans, dir, dentry->d_inode, 0);
3096
Chris Masone02119d2008-09-05 16:13:11 -04003097 ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
3098 dentry->d_name.name, dentry->d_name.len);
Tsutomu Itohb5324022011-07-19 07:27:20 +00003099 if (ret)
3100 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003101
Yan, Zhenga22285a2010-05-16 10:48:46 -04003102 if (inode->i_nlink == 0) {
Josef Bacik7b128762008-07-24 12:17:14 -04003103 ret = btrfs_orphan_add(trans, inode);
Tsutomu Itohb5324022011-07-19 07:27:20 +00003104 if (ret)
3105 goto out;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003106 }
Josef Bacik7b128762008-07-24 12:17:14 -04003107
Tsutomu Itohb5324022011-07-19 07:27:20 +00003108out:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003109 nr = trans->blocks_used;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003110 __unlink_end_trans(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003111 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003112 return ret;
3113}
3114
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003115int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
3116 struct btrfs_root *root,
3117 struct inode *dir, u64 objectid,
3118 const char *name, int name_len)
3119{
3120 struct btrfs_path *path;
3121 struct extent_buffer *leaf;
3122 struct btrfs_dir_item *di;
3123 struct btrfs_key key;
3124 u64 index;
3125 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08003126 u64 dir_ino = btrfs_ino(dir);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003127
3128 path = btrfs_alloc_path();
3129 if (!path)
3130 return -ENOMEM;
3131
Li Zefan33345d012011-04-20 10:31:50 +08003132 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003133 name, name_len, -1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003134 if (IS_ERR_OR_NULL(di)) {
3135 if (!di)
3136 ret = -ENOENT;
3137 else
3138 ret = PTR_ERR(di);
3139 goto out;
3140 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003141
3142 leaf = path->nodes[0];
3143 btrfs_dir_item_key_to_cpu(leaf, di, &key);
3144 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
3145 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003146 if (ret) {
3147 btrfs_abort_transaction(trans, root, ret);
3148 goto out;
3149 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003150 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003151
3152 ret = btrfs_del_root_ref(trans, root->fs_info->tree_root,
3153 objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08003154 dir_ino, &index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003155 if (ret < 0) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003156 if (ret != -ENOENT) {
3157 btrfs_abort_transaction(trans, root, ret);
3158 goto out;
3159 }
Li Zefan33345d012011-04-20 10:31:50 +08003160 di = btrfs_search_dir_index_item(root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003161 name, name_len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003162 if (IS_ERR_OR_NULL(di)) {
3163 if (!di)
3164 ret = -ENOENT;
3165 else
3166 ret = PTR_ERR(di);
3167 btrfs_abort_transaction(trans, root, ret);
3168 goto out;
3169 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003170
3171 leaf = path->nodes[0];
3172 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02003173 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003174 index = key.offset;
3175 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003176 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003177
Miao Xie16cdcec2011-04-22 18:12:22 +08003178 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003179 if (ret) {
3180 btrfs_abort_transaction(trans, root, ret);
3181 goto out;
3182 }
Miao Xie16cdcec2011-04-22 18:12:22 +08003183
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003184 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04003185 inode_inc_iversion(dir);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003186 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
Josef Bacik5a24e842012-08-08 10:12:59 -06003187 ret = btrfs_update_inode_fallback(trans, root, dir);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003188 if (ret)
3189 btrfs_abort_transaction(trans, root, ret);
3190out:
Josef Bacik71d7aed2011-06-14 14:24:32 -04003191 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003192 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003193}
3194
Chris Mason39279cc2007-06-12 06:35:45 -04003195static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
3196{
3197 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05003198 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003199 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003200 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -05003201 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003202
Chris Mason3394e162008-11-17 20:42:26 -05003203 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE ||
Li Zefan33345d012011-04-20 10:31:50 +08003204 btrfs_ino(inode) == BTRFS_FIRST_FREE_OBJECTID)
Yan134d4512007-10-25 15:49:25 -04003205 return -ENOTEMPTY;
3206
Yan, Zhenga22285a2010-05-16 10:48:46 -04003207 trans = __unlink_start_trans(dir, dentry);
3208 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003209 return PTR_ERR(trans);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003210
Li Zefan33345d012011-04-20 10:31:50 +08003211 if (unlikely(btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003212 err = btrfs_unlink_subvol(trans, root, dir,
3213 BTRFS_I(inode)->location.objectid,
3214 dentry->d_name.name,
3215 dentry->d_name.len);
3216 goto out;
3217 }
3218
Josef Bacik7b128762008-07-24 12:17:14 -04003219 err = btrfs_orphan_add(trans, inode);
3220 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003221 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003222
Chris Mason39279cc2007-06-12 06:35:45 -04003223 /* now the directory is empty */
Chris Masone02119d2008-09-05 16:13:11 -04003224 err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
3225 dentry->d_name.name, dentry->d_name.len);
Chris Masond3977122009-01-05 21:25:51 -05003226 if (!err)
Chris Masondbe674a2008-07-17 12:54:05 -04003227 btrfs_i_size_write(inode, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003228out:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003229 nr = trans->blocks_used;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003230 __unlink_end_trans(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003231 btrfs_btree_balance_dirty(root, nr);
Chris Mason39544012007-12-12 14:38:19 -05003232
Chris Mason39279cc2007-06-12 06:35:45 -04003233 return err;
3234}
3235
Chris Mason323ac952008-10-01 19:05:46 -04003236/*
Chris Mason39279cc2007-06-12 06:35:45 -04003237 * this can truncate away extent items, csum items and directory items.
3238 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04003239 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04003240 *
3241 * csum items that cross the new i_size are truncated to the new size
3242 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04003243 *
3244 * min_type is the minimum key type to truncate down to. If set to 0, this
3245 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04003246 */
Yan, Zheng80825102009-11-12 09:35:36 +00003247int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
3248 struct btrfs_root *root,
3249 struct inode *inode,
3250 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003251{
Chris Mason39279cc2007-06-12 06:35:45 -04003252 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003253 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003254 struct btrfs_file_extent_item *fi;
Yan, Zheng80825102009-11-12 09:35:36 +00003255 struct btrfs_key key;
3256 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04003257 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04003258 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003259 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003260 u64 item_end = 0;
Yan, Zheng80825102009-11-12 09:35:36 +00003261 u64 mask = root->sectorsize - 1;
3262 u32 found_type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -04003263 int found_extent;
3264 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05003265 int pending_del_nr = 0;
3266 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04003267 int extent_type = -1;
Yan, Zheng80825102009-11-12 09:35:36 +00003268 int ret;
3269 int err = 0;
Li Zefan33345d012011-04-20 10:31:50 +08003270 u64 ino = btrfs_ino(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003271
3272 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04003273
Mark Fasheh0eb0e192011-07-12 16:44:10 -07003274 path = btrfs_alloc_path();
3275 if (!path)
3276 return -ENOMEM;
3277 path->reada = -1;
3278
Josef Bacik5dc562c2012-08-17 13:14:17 -04003279 /*
3280 * We want to drop from the next block forward in case this new size is
3281 * not block aligned since we will be keeping the last block of the
3282 * extent just the way it is.
3283 */
Josef Bacik0af3d002010-06-21 14:48:16 -04003284 if (root->ref_cows || root == root->fs_info->tree_root)
Josef Bacik5dc562c2012-08-17 13:14:17 -04003285 btrfs_drop_extent_cache(inode, (new_size + mask) & (~mask), (u64)-1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003286
Miao Xie16cdcec2011-04-22 18:12:22 +08003287 /*
3288 * This function is also used to drop the items in the log tree before
3289 * we relog the inode, so if root != BTRFS_I(inode)->root, it means
3290 * it is used to drop the loged items. So we shouldn't kill the delayed
3291 * items.
3292 */
3293 if (min_type == 0 && root == BTRFS_I(inode)->root)
3294 btrfs_kill_delayed_inode_items(inode);
3295
Li Zefan33345d012011-04-20 10:31:50 +08003296 key.objectid = ino;
Chris Mason39279cc2007-06-12 06:35:45 -04003297 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04003298 key.type = (u8)-1;
3299
Chris Mason85e21ba2008-01-29 15:11:36 -05003300search_again:
Chris Masonb9473432009-03-13 11:00:37 -04003301 path->leave_spinning = 1;
Chris Mason85e21ba2008-01-29 15:11:36 -05003302 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Yan, Zheng80825102009-11-12 09:35:36 +00003303 if (ret < 0) {
3304 err = ret;
3305 goto out;
3306 }
Chris Masond3977122009-01-05 21:25:51 -05003307
Chris Mason85e21ba2008-01-29 15:11:36 -05003308 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003309 /* there are no items in the tree for us to truncate, we're
3310 * done
3311 */
Yan, Zheng80825102009-11-12 09:35:36 +00003312 if (path->slots[0] == 0)
3313 goto out;
Chris Mason85e21ba2008-01-29 15:11:36 -05003314 path->slots[0]--;
3315 }
3316
Chris Masond3977122009-01-05 21:25:51 -05003317 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04003318 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04003319 leaf = path->nodes[0];
3320 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3321 found_type = btrfs_key_type(&found_key);
Chris Mason39279cc2007-06-12 06:35:45 -04003322
Li Zefan33345d012011-04-20 10:31:50 +08003323 if (found_key.objectid != ino)
Chris Mason39279cc2007-06-12 06:35:45 -04003324 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003325
Chris Mason85e21ba2008-01-29 15:11:36 -05003326 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003327 break;
3328
Chris Mason5f39d392007-10-15 16:14:19 -04003329 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04003330 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04003331 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04003332 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04003333 extent_type = btrfs_file_extent_type(leaf, fi);
3334 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04003335 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04003336 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04003337 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04003338 item_end += btrfs_file_extent_inline_len(leaf,
Chris Masonc8b97812008-10-29 14:49:59 -04003339 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003340 }
Yan008630c2007-11-07 13:31:09 -05003341 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04003342 }
Yan, Zheng80825102009-11-12 09:35:36 +00003343 if (found_type > min_type) {
Chris Mason39279cc2007-06-12 06:35:45 -04003344 del_item = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00003345 } else {
3346 if (item_end < new_size)
3347 break;
3348 if (found_key.offset >= new_size)
3349 del_item = 1;
3350 else
3351 del_item = 0;
3352 }
Chris Mason39279cc2007-06-12 06:35:45 -04003353 found_extent = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003354 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04003355 if (found_type != BTRFS_EXTENT_DATA_KEY)
3356 goto delete;
3357
3358 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04003359 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04003360 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Miao Xief70a9a6b2012-01-12 19:10:12 -05003361 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -04003362 u64 orig_num_bytes =
3363 btrfs_file_extent_num_bytes(leaf, fi);
Chris Masone02119d2008-09-05 16:13:11 -04003364 extent_num_bytes = new_size -
Chris Mason5f39d392007-10-15 16:14:19 -04003365 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -05003366 extent_num_bytes = extent_num_bytes &
3367 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04003368 btrfs_set_file_extent_num_bytes(leaf, fi,
3369 extent_num_bytes);
3370 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05003371 extent_num_bytes);
Chris Masone02119d2008-09-05 16:13:11 -04003372 if (root->ref_cows && extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003373 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04003374 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003375 } else {
Chris Masondb945352007-10-15 16:15:53 -04003376 extent_num_bytes =
3377 btrfs_file_extent_disk_num_bytes(leaf,
3378 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003379 extent_offset = found_key.offset -
3380 btrfs_file_extent_offset(leaf, fi);
3381
Chris Mason39279cc2007-06-12 06:35:45 -04003382 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05003383 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003384 if (extent_start != 0) {
3385 found_extent = 1;
Chris Masone02119d2008-09-05 16:13:11 -04003386 if (root->ref_cows)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003387 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04003388 }
3389 }
Chris Mason90692182008-02-08 13:49:28 -05003390 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003391 /*
3392 * we can't truncate inline items that have had
3393 * special encodings
3394 */
3395 if (!del_item &&
3396 btrfs_file_extent_compression(leaf, fi) == 0 &&
3397 btrfs_file_extent_encryption(leaf, fi) == 0 &&
3398 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003399 u32 size = new_size - found_key.offset;
3400
3401 if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003402 inode_sub_bytes(inode, item_end + 1 -
3403 new_size);
Chris Masone02119d2008-09-05 16:13:11 -04003404 }
3405 size =
3406 btrfs_file_extent_calc_inline_size(size);
Jeff Mahoney143bede2012-03-01 14:56:26 +01003407 btrfs_truncate_item(trans, root, path,
3408 size, 1);
Chris Masone02119d2008-09-05 16:13:11 -04003409 } else if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003410 inode_sub_bytes(inode, item_end + 1 -
3411 found_key.offset);
Chris Mason90692182008-02-08 13:49:28 -05003412 }
Chris Mason39279cc2007-06-12 06:35:45 -04003413 }
Chris Mason179e29e2007-11-01 11:28:41 -04003414delete:
Chris Mason39279cc2007-06-12 06:35:45 -04003415 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05003416 if (!pending_del_nr) {
3417 /* no pending yet, add ourselves */
3418 pending_del_slot = path->slots[0];
3419 pending_del_nr = 1;
3420 } else if (pending_del_nr &&
3421 path->slots[0] + 1 == pending_del_slot) {
3422 /* hop on the pending chunk */
3423 pending_del_nr++;
3424 pending_del_slot = path->slots[0];
3425 } else {
Chris Masond3977122009-01-05 21:25:51 -05003426 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05003427 }
Chris Mason39279cc2007-06-12 06:35:45 -04003428 } else {
3429 break;
3430 }
Josef Bacik0af3d002010-06-21 14:48:16 -04003431 if (found_extent && (root->ref_cows ||
3432 root == root->fs_info->tree_root)) {
Chris Masonb9473432009-03-13 11:00:37 -04003433 btrfs_set_path_blocking(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003434 ret = btrfs_free_extent(trans, root, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003435 extent_num_bytes, 0,
3436 btrfs_header_owner(leaf),
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003437 ino, extent_offset, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04003438 BUG_ON(ret);
3439 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003440
Yan, Zheng80825102009-11-12 09:35:36 +00003441 if (found_type == BTRFS_INODE_ITEM_KEY)
3442 break;
3443
3444 if (path->slots[0] == 0 ||
3445 path->slots[0] != pending_del_slot) {
Yan, Zheng80825102009-11-12 09:35:36 +00003446 if (pending_del_nr) {
3447 ret = btrfs_del_items(trans, root, path,
3448 pending_del_slot,
3449 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003450 if (ret) {
3451 btrfs_abort_transaction(trans,
3452 root, ret);
3453 goto error;
3454 }
Yan, Zheng80825102009-11-12 09:35:36 +00003455 pending_del_nr = 0;
3456 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003457 btrfs_release_path(path);
Chris Mason85e21ba2008-01-29 15:11:36 -05003458 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00003459 } else {
3460 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05003461 }
Chris Mason39279cc2007-06-12 06:35:45 -04003462 }
Yan, Zheng80825102009-11-12 09:35:36 +00003463out:
Chris Mason85e21ba2008-01-29 15:11:36 -05003464 if (pending_del_nr) {
3465 ret = btrfs_del_items(trans, root, path, pending_del_slot,
3466 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003467 if (ret)
3468 btrfs_abort_transaction(trans, root, ret);
Chris Mason85e21ba2008-01-29 15:11:36 -05003469 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003470error:
Chris Mason39279cc2007-06-12 06:35:45 -04003471 btrfs_free_path(path);
Yan, Zheng80825102009-11-12 09:35:36 +00003472 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003473}
3474
Chris Masona52d9a82007-08-27 16:49:44 -04003475/*
Josef Bacik2aaa6652012-08-29 14:27:18 -04003476 * btrfs_truncate_page - read, zero a chunk and write a page
3477 * @inode - inode that we're zeroing
3478 * @from - the offset to start zeroing
3479 * @len - the length to zero, 0 to zero the entire range respective to the
3480 * offset
3481 * @front - zero up to the offset instead of from the offset on
3482 *
3483 * This will find the page for the "from" offset and cow the page and zero the
3484 * part we want to zero. This is used with truncate and hole punching.
Chris Masona52d9a82007-08-27 16:49:44 -04003485 */
Josef Bacik2aaa6652012-08-29 14:27:18 -04003486int btrfs_truncate_page(struct inode *inode, loff_t from, loff_t len,
3487 int front)
Chris Masona52d9a82007-08-27 16:49:44 -04003488{
Josef Bacik2aaa6652012-08-29 14:27:18 -04003489 struct address_space *mapping = inode->i_mapping;
Chris Masondb945352007-10-15 16:15:53 -04003490 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003491 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
3492 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003493 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003494 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04003495 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04003496 pgoff_t index = from >> PAGE_CACHE_SHIFT;
3497 unsigned offset = from & (PAGE_CACHE_SIZE-1);
3498 struct page *page;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04003499 gfp_t mask = btrfs_alloc_write_mask(mapping);
Chris Masona52d9a82007-08-27 16:49:44 -04003500 int ret = 0;
3501 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003502 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04003503
Josef Bacik2aaa6652012-08-29 14:27:18 -04003504 if ((offset & (blocksize - 1)) == 0 &&
3505 (!len || ((len & (blocksize - 1)) == 0)))
Chris Masona52d9a82007-08-27 16:49:44 -04003506 goto out;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003507 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003508 if (ret)
3509 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003510
3511 ret = -ENOMEM;
Chris Mason211c17f2008-05-15 09:13:45 -04003512again:
Josef Bacik3b16a4e2011-09-21 15:05:58 -04003513 page = find_or_create_page(mapping, index, mask);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003514 if (!page) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003515 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Masona52d9a82007-08-27 16:49:44 -04003516 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04003517 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003518
3519 page_start = page_offset(page);
3520 page_end = page_start + PAGE_CACHE_SIZE - 1;
3521
Chris Masona52d9a82007-08-27 16:49:44 -04003522 if (!PageUptodate(page)) {
3523 ret = btrfs_readpage(NULL, page);
3524 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04003525 if (page->mapping != mapping) {
3526 unlock_page(page);
3527 page_cache_release(page);
3528 goto again;
3529 }
Chris Masona52d9a82007-08-27 16:49:44 -04003530 if (!PageUptodate(page)) {
3531 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04003532 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04003533 }
3534 }
Chris Mason211c17f2008-05-15 09:13:45 -04003535 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003536
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003537 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003538 set_page_extent_mapped(page);
3539
3540 ordered = btrfs_lookup_ordered_extent(inode, page_start);
3541 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003542 unlock_extent_cached(io_tree, page_start, page_end,
3543 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003544 unlock_page(page);
3545 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04003546 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003547 btrfs_put_ordered_extent(ordered);
3548 goto again;
3549 }
3550
Josef Bacik2ac55d42010-02-03 19:33:23 +00003551 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Liu Bo9e8a4a82012-09-05 19:10:51 -06003552 EXTENT_DIRTY | EXTENT_DELALLOC |
3553 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003554 0, 0, &cached_state, GFP_NOFS);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003555
Josef Bacik2ac55d42010-02-03 19:33:23 +00003556 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
3557 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003558 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003559 unlock_extent_cached(io_tree, page_start, page_end,
3560 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003561 goto out_unlock;
3562 }
3563
Chris Masone6dcd2d2008-07-17 12:53:50 -04003564 ret = 0;
3565 if (offset != PAGE_CACHE_SIZE) {
Josef Bacik2aaa6652012-08-29 14:27:18 -04003566 if (!len)
3567 len = PAGE_CACHE_SIZE - offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003568 kaddr = kmap(page);
Josef Bacik2aaa6652012-08-29 14:27:18 -04003569 if (front)
3570 memset(kaddr, 0, offset);
3571 else
3572 memset(kaddr + offset, 0, len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003573 flush_dcache_page(page);
3574 kunmap(page);
3575 }
Chris Mason247e7432008-07-17 12:53:51 -04003576 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003577 set_page_dirty(page);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003578 unlock_extent_cached(io_tree, page_start, page_end, &cached_state,
3579 GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04003580
Chris Mason89642222008-07-24 09:41:53 -04003581out_unlock:
Josef Bacik5d5e1032009-10-13 16:46:49 -04003582 if (ret)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003583 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason39279cc2007-06-12 06:35:45 -04003584 unlock_page(page);
3585 page_cache_release(page);
3586out:
3587 return ret;
3588}
3589
Josef Bacik695a0d02011-03-04 15:46:53 -05003590/*
3591 * This function puts in dummy file extents for the area we're creating a hole
3592 * for. So if we are truncating this file to a larger size we need to insert
3593 * these file extents so that btrfs_get_extent will return a EXTENT_MAP_HOLE for
3594 * the range between oldsize and size
3595 */
Josef Bacika41ad392011-01-31 15:30:16 -05003596int btrfs_cont_expand(struct inode *inode, loff_t oldsize, loff_t size)
Yan Zheng9036c102008-10-30 14:19:41 -04003597{
3598 struct btrfs_trans_handle *trans;
3599 struct btrfs_root *root = BTRFS_I(inode)->root;
3600 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003601 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003602 struct extent_state *cached_state = NULL;
Josef Bacik5dc562c2012-08-17 13:14:17 -04003603 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Yan Zheng9036c102008-10-30 14:19:41 -04003604 u64 mask = root->sectorsize - 1;
Josef Bacika41ad392011-01-31 15:30:16 -05003605 u64 hole_start = (oldsize + mask) & ~mask;
Yan Zheng9036c102008-10-30 14:19:41 -04003606 u64 block_end = (size + mask) & ~mask;
3607 u64 last_byte;
3608 u64 cur_offset;
3609 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003610 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003611
3612 if (size <= hole_start)
3613 return 0;
3614
Yan Zheng9036c102008-10-30 14:19:41 -04003615 while (1) {
3616 struct btrfs_ordered_extent *ordered;
3617 btrfs_wait_ordered_range(inode, hole_start,
3618 block_end - hole_start);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003619 lock_extent_bits(io_tree, hole_start, block_end - 1, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003620 &cached_state);
Yan Zheng9036c102008-10-30 14:19:41 -04003621 ordered = btrfs_lookup_ordered_extent(inode, hole_start);
3622 if (!ordered)
3623 break;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003624 unlock_extent_cached(io_tree, hole_start, block_end - 1,
3625 &cached_state, GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003626 btrfs_put_ordered_extent(ordered);
3627 }
3628
Yan Zheng9036c102008-10-30 14:19:41 -04003629 cur_offset = hole_start;
3630 while (1) {
3631 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
3632 block_end - cur_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003633 if (IS_ERR(em)) {
3634 err = PTR_ERR(em);
3635 break;
3636 }
Yan Zheng9036c102008-10-30 14:19:41 -04003637 last_byte = min(extent_map_end(em), block_end);
3638 last_byte = (last_byte + mask) & ~mask;
Yan, Zheng80825102009-11-12 09:35:36 +00003639 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Josef Bacik5dc562c2012-08-17 13:14:17 -04003640 struct extent_map *hole_em;
Yan Zheng9036c102008-10-30 14:19:41 -04003641 hole_size = last_byte - cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00003642
Miao Xie36423202011-12-14 20:12:02 -05003643 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003644 if (IS_ERR(trans)) {
3645 err = PTR_ERR(trans);
Chris Mason771ed682008-11-06 22:02:51 -05003646 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003647 }
Yan, Zheng80825102009-11-12 09:35:36 +00003648
Josef Bacik5dc562c2012-08-17 13:14:17 -04003649 err = btrfs_drop_extents(trans, root, inode,
3650 cur_offset,
Josef Bacik26714852012-08-29 12:24:27 -04003651 cur_offset + hole_size, 1);
Miao Xie5b397372011-09-11 10:52:24 -04003652 if (err) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003653 btrfs_abort_transaction(trans, root, err);
Miao Xie5b397372011-09-11 10:52:24 -04003654 btrfs_end_transaction(trans, root);
Josef Bacik3893e332011-01-31 16:03:11 -05003655 break;
Miao Xie5b397372011-09-11 10:52:24 -04003656 }
Josef Bacik9ed74f22009-09-11 16:12:44 -04003657
Yan Zheng9036c102008-10-30 14:19:41 -04003658 err = btrfs_insert_file_extent(trans, root,
Li Zefan33345d012011-04-20 10:31:50 +08003659 btrfs_ino(inode), cur_offset, 0,
Yan Zheng9036c102008-10-30 14:19:41 -04003660 0, hole_size, 0, hole_size,
3661 0, 0, 0);
Miao Xie5b397372011-09-11 10:52:24 -04003662 if (err) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003663 btrfs_abort_transaction(trans, root, err);
Miao Xie5b397372011-09-11 10:52:24 -04003664 btrfs_end_transaction(trans, root);
Josef Bacik3893e332011-01-31 16:03:11 -05003665 break;
Miao Xie5b397372011-09-11 10:52:24 -04003666 }
Yan, Zheng80825102009-11-12 09:35:36 +00003667
Josef Bacik5dc562c2012-08-17 13:14:17 -04003668 btrfs_drop_extent_cache(inode, cur_offset,
3669 cur_offset + hole_size - 1, 0);
3670 hole_em = alloc_extent_map();
3671 if (!hole_em) {
3672 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3673 &BTRFS_I(inode)->runtime_flags);
3674 goto next;
3675 }
3676 hole_em->start = cur_offset;
3677 hole_em->len = hole_size;
3678 hole_em->orig_start = cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00003679
Josef Bacik5dc562c2012-08-17 13:14:17 -04003680 hole_em->block_start = EXTENT_MAP_HOLE;
3681 hole_em->block_len = 0;
3682 hole_em->bdev = root->fs_info->fs_devices->latest_bdev;
3683 hole_em->compress_type = BTRFS_COMPRESS_NONE;
3684 hole_em->generation = trans->transid;
3685
3686 while (1) {
3687 write_lock(&em_tree->lock);
3688 err = add_extent_mapping(em_tree, hole_em);
3689 if (!err)
3690 list_move(&hole_em->list,
3691 &em_tree->modified_extents);
3692 write_unlock(&em_tree->lock);
3693 if (err != -EEXIST)
3694 break;
3695 btrfs_drop_extent_cache(inode, cur_offset,
3696 cur_offset +
3697 hole_size - 1, 0);
3698 }
3699 free_extent_map(hole_em);
3700next:
Miao Xie36423202011-12-14 20:12:02 -05003701 btrfs_update_inode(trans, root, inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003702 btrfs_end_transaction(trans, root);
Yan Zheng9036c102008-10-30 14:19:41 -04003703 }
3704 free_extent_map(em);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003705 em = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04003706 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00003707 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04003708 break;
3709 }
3710
Yan, Zhenga22285a2010-05-16 10:48:46 -04003711 free_extent_map(em);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003712 unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state,
3713 GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003714 return err;
3715}
3716
Josef Bacika41ad392011-01-31 15:30:16 -05003717static int btrfs_setsize(struct inode *inode, loff_t newsize)
Yan, Zheng80825102009-11-12 09:35:36 +00003718{
Miao Xief4a2f4c2011-12-14 20:12:01 -05003719 struct btrfs_root *root = BTRFS_I(inode)->root;
3720 struct btrfs_trans_handle *trans;
Josef Bacika41ad392011-01-31 15:30:16 -05003721 loff_t oldsize = i_size_read(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003722 int ret;
3723
Josef Bacika41ad392011-01-31 15:30:16 -05003724 if (newsize == oldsize)
Yan, Zheng80825102009-11-12 09:35:36 +00003725 return 0;
3726
Josef Bacika41ad392011-01-31 15:30:16 -05003727 if (newsize > oldsize) {
Josef Bacika41ad392011-01-31 15:30:16 -05003728 truncate_pagecache(inode, oldsize, newsize);
3729 ret = btrfs_cont_expand(inode, oldsize, newsize);
Miao Xief4a2f4c2011-12-14 20:12:01 -05003730 if (ret)
Yan, Zheng80825102009-11-12 09:35:36 +00003731 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00003732
Miao Xief4a2f4c2011-12-14 20:12:01 -05003733 trans = btrfs_start_transaction(root, 1);
3734 if (IS_ERR(trans))
3735 return PTR_ERR(trans);
3736
3737 i_size_write(inode, newsize);
3738 btrfs_ordered_update_i_size(inode, i_size_read(inode), NULL);
3739 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik7ad85bb2012-01-12 19:10:12 -05003740 btrfs_end_transaction(trans, root);
Josef Bacika41ad392011-01-31 15:30:16 -05003741 } else {
Yan, Zheng80825102009-11-12 09:35:36 +00003742
Josef Bacika41ad392011-01-31 15:30:16 -05003743 /*
3744 * We're truncating a file that used to have good data down to
3745 * zero. Make sure it gets into the ordered flush list so that
3746 * any new writes get down to disk quickly.
3747 */
3748 if (newsize == 0)
Josef Bacik72ac3c02012-05-23 14:13:11 -04003749 set_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
3750 &BTRFS_I(inode)->runtime_flags);
Yan, Zheng80825102009-11-12 09:35:36 +00003751
Josef Bacika41ad392011-01-31 15:30:16 -05003752 /* we don't support swapfiles, so vmtruncate shouldn't fail */
3753 truncate_setsize(inode, newsize);
3754 ret = btrfs_truncate(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003755 }
3756
Josef Bacika41ad392011-01-31 15:30:16 -05003757 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00003758}
3759
Chris Mason39279cc2007-06-12 06:35:45 -04003760static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
3761{
3762 struct inode *inode = dentry->d_inode;
Li Zefanb83cc962010-12-20 16:04:08 +08003763 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003764 int err;
3765
Li Zefanb83cc962010-12-20 16:04:08 +08003766 if (btrfs_root_readonly(root))
3767 return -EROFS;
3768
Chris Mason39279cc2007-06-12 06:35:45 -04003769 err = inode_change_ok(inode, attr);
3770 if (err)
3771 return err;
3772
Chris Mason5a3f23d2009-03-31 13:27:11 -04003773 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Josef Bacika41ad392011-01-31 15:30:16 -05003774 err = btrfs_setsize(inode, attr->ia_size);
Yan, Zheng80825102009-11-12 09:35:36 +00003775 if (err)
3776 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003777 }
Yan Zheng9036c102008-10-30 14:19:41 -04003778
Christoph Hellwig10257742010-06-04 11:30:02 +02003779 if (attr->ia_valid) {
3780 setattr_copy(inode, attr);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04003781 inode_inc_iversion(inode);
Josef Bacik22c44fe2011-11-30 10:45:38 -05003782 err = btrfs_dirty_inode(inode);
Josef Bacik33268ea2008-07-24 12:16:36 -04003783
Josef Bacik22c44fe2011-11-30 10:45:38 -05003784 if (!err && attr->ia_valid & ATTR_MODE)
Christoph Hellwig10257742010-06-04 11:30:02 +02003785 err = btrfs_acl_chmod(inode);
3786 }
3787
Chris Mason39279cc2007-06-12 06:35:45 -04003788 return err;
3789}
Chris Mason61295eb2008-01-14 16:24:38 -05003790
Al Virobd555972010-06-07 11:35:40 -04003791void btrfs_evict_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003792{
3793 struct btrfs_trans_handle *trans;
3794 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik726c35f2011-09-26 15:46:06 -04003795 struct btrfs_block_rsv *rsv, *global_rsv;
Josef Bacik07127182011-08-19 10:29:59 -04003796 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003797 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04003798 int ret;
3799
liubo1abe9b82011-03-24 11:18:59 +00003800 trace_btrfs_inode_evict(inode);
3801
Chris Mason39279cc2007-06-12 06:35:45 -04003802 truncate_inode_pages(&inode->i_data, 0);
Josef Bacik0af3d002010-06-21 14:48:16 -04003803 if (inode->i_nlink && (btrfs_root_refs(&root->root_item) != 0 ||
Liu Bo83eea1f2012-07-10 05:28:39 -06003804 btrfs_is_free_space_inode(inode)))
Al Virobd555972010-06-07 11:35:40 -04003805 goto no_delete;
3806
Chris Mason39279cc2007-06-12 06:35:45 -04003807 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04003808 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003809 goto no_delete;
3810 }
Al Virobd555972010-06-07 11:35:40 -04003811 /* do we really want it for ->i_nlink > 0 and zero btrfs_root_refs? */
Chris Mason4a096752008-07-21 10:29:44 -04003812 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04003813
Yan, Zhengc71bf092009-11-12 09:34:40 +00003814 if (root->fs_info->log_root_recovering) {
Liu Bo6bf02312012-06-25 21:59:09 -06003815 BUG_ON(test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
Josef Bacik8a35d952012-05-23 14:26:42 -04003816 &BTRFS_I(inode)->runtime_flags));
Yan, Zhengc71bf092009-11-12 09:34:40 +00003817 goto no_delete;
3818 }
3819
Yan, Zheng76dda932009-09-21 16:00:26 -04003820 if (inode->i_nlink > 0) {
3821 BUG_ON(btrfs_root_refs(&root->root_item) != 0);
3822 goto no_delete;
3823 }
3824
Miao Xie66d8f3d2012-09-06 04:02:28 -06003825 rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP);
Josef Bacik4289a662011-08-05 13:22:24 -04003826 if (!rsv) {
3827 btrfs_orphan_del(NULL, inode);
3828 goto no_delete;
3829 }
Josef Bacik4a338542011-08-29 11:01:31 -04003830 rsv->size = min_size;
Josef Bacikca7e70f2012-08-27 17:48:15 -04003831 rsv->failfast = 1;
Josef Bacik726c35f2011-09-26 15:46:06 -04003832 global_rsv = &root->fs_info->global_block_rsv;
Josef Bacik4289a662011-08-05 13:22:24 -04003833
Chris Masondbe674a2008-07-17 12:54:05 -04003834 btrfs_i_size_write(inode, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003835
Josef Bacik4289a662011-08-05 13:22:24 -04003836 /*
Miao Xie8407aa42012-09-07 01:43:32 -06003837 * This is a bit simpler than btrfs_truncate since we've already
3838 * reserved our space for our orphan item in the unlink, so we just
3839 * need to reserve some slack space in case we add bytes and update
3840 * inode item when doing the truncate.
Josef Bacik4289a662011-08-05 13:22:24 -04003841 */
Yan, Zheng80825102009-11-12 09:35:36 +00003842 while (1) {
Miao Xieaa38a712011-11-18 17:43:00 +08003843 ret = btrfs_block_rsv_refill_noflush(root, rsv, min_size);
Yan, Zheng80825102009-11-12 09:35:36 +00003844
Josef Bacik726c35f2011-09-26 15:46:06 -04003845 /*
3846 * Try and steal from the global reserve since we will
3847 * likely not use this space anyway, we want to try as
3848 * hard as possible to get this to work.
3849 */
3850 if (ret)
3851 ret = btrfs_block_rsv_migrate(global_rsv, rsv, min_size);
3852
Yan, Zhengd68fc572010-05-16 10:49:58 -04003853 if (ret) {
Josef Bacik4289a662011-08-05 13:22:24 -04003854 printk(KERN_WARNING "Could not get space for a "
Josef Bacik482e6dc2011-08-19 10:31:56 -04003855 "delete, will truncate on mount %d\n", ret);
Josef Bacik4289a662011-08-05 13:22:24 -04003856 btrfs_orphan_del(NULL, inode);
3857 btrfs_free_block_rsv(root, rsv);
3858 goto no_delete;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003859 }
3860
Miao Xie8407aa42012-09-07 01:43:32 -06003861 trans = btrfs_start_transaction_noflush(root, 1);
Josef Bacik4289a662011-08-05 13:22:24 -04003862 if (IS_ERR(trans)) {
3863 btrfs_orphan_del(NULL, inode);
3864 btrfs_free_block_rsv(root, rsv);
3865 goto no_delete;
3866 }
3867
3868 trans->block_rsv = rsv;
3869
Yan, Zhengd68fc572010-05-16 10:49:58 -04003870 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
Josef Bacikca7e70f2012-08-27 17:48:15 -04003871 if (ret != -ENOSPC)
Yan, Zheng80825102009-11-12 09:35:36 +00003872 break;
3873
Miao Xie8407aa42012-09-07 01:43:32 -06003874 trans->block_rsv = &root->fs_info->trans_block_rsv;
3875 ret = btrfs_update_inode(trans, root, inode);
3876 BUG_ON(ret);
3877
Yan, Zheng80825102009-11-12 09:35:36 +00003878 nr = trans->blocks_used;
3879 btrfs_end_transaction(trans, root);
3880 trans = NULL;
3881 btrfs_btree_balance_dirty(root, nr);
Josef Bacik7b128762008-07-24 12:17:14 -04003882 }
3883
Josef Bacik4289a662011-08-05 13:22:24 -04003884 btrfs_free_block_rsv(root, rsv);
3885
Yan, Zheng80825102009-11-12 09:35:36 +00003886 if (ret == 0) {
Josef Bacik4289a662011-08-05 13:22:24 -04003887 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00003888 ret = btrfs_orphan_del(trans, inode);
3889 BUG_ON(ret);
3890 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003891
Josef Bacik4289a662011-08-05 13:22:24 -04003892 trans->block_rsv = &root->fs_info->trans_block_rsv;
Li Zefan581bb052011-04-20 10:06:11 +08003893 if (!(root == root->fs_info->tree_root ||
3894 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID))
Li Zefan33345d012011-04-20 10:31:50 +08003895 btrfs_return_ino(root, btrfs_ino(inode));
Li Zefan581bb052011-04-20 10:06:11 +08003896
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003897 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04003898 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003899 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003900no_delete:
Jan Karadbd57682012-05-03 14:48:02 +02003901 clear_inode(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003902 return;
Chris Mason39279cc2007-06-12 06:35:45 -04003903}
3904
3905/*
3906 * this returns the key found in the dir entry in the location pointer.
3907 * If no dir entries were found, location->objectid is 0.
3908 */
3909static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
3910 struct btrfs_key *location)
3911{
3912 const char *name = dentry->d_name.name;
3913 int namelen = dentry->d_name.len;
3914 struct btrfs_dir_item *di;
3915 struct btrfs_path *path;
3916 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04003917 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003918
3919 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07003920 if (!path)
3921 return -ENOMEM;
Chris Mason39544012007-12-12 14:38:19 -05003922
Li Zefan33345d012011-04-20 10:31:50 +08003923 di = btrfs_lookup_dir_item(NULL, root, path, btrfs_ino(dir), name,
Chris Mason39279cc2007-06-12 06:35:45 -04003924 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04003925 if (IS_ERR(di))
3926 ret = PTR_ERR(di);
Chris Masond3977122009-01-05 21:25:51 -05003927
David Sterbac7040052011-04-19 18:00:01 +02003928 if (IS_ERR_OR_NULL(di))
Chris Mason39544012007-12-12 14:38:19 -05003929 goto out_err;
Chris Masond3977122009-01-05 21:25:51 -05003930
Chris Mason5f39d392007-10-15 16:14:19 -04003931 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04003932out:
Chris Mason39279cc2007-06-12 06:35:45 -04003933 btrfs_free_path(path);
3934 return ret;
Chris Mason39544012007-12-12 14:38:19 -05003935out_err:
3936 location->objectid = 0;
3937 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04003938}
3939
3940/*
3941 * when we hit a tree root in a directory, the btrfs part of the inode
3942 * needs to be changed to reflect the root directory of the tree root. This
3943 * is kind of like crossing a mount point.
3944 */
3945static int fixup_tree_root_location(struct btrfs_root *root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003946 struct inode *dir,
3947 struct dentry *dentry,
3948 struct btrfs_key *location,
3949 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04003950{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003951 struct btrfs_path *path;
3952 struct btrfs_root *new_root;
3953 struct btrfs_root_ref *ref;
3954 struct extent_buffer *leaf;
3955 int ret;
3956 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003957
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003958 path = btrfs_alloc_path();
3959 if (!path) {
3960 err = -ENOMEM;
3961 goto out;
3962 }
Chris Mason39279cc2007-06-12 06:35:45 -04003963
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003964 err = -ENOENT;
3965 ret = btrfs_find_root_ref(root->fs_info->tree_root, path,
3966 BTRFS_I(dir)->root->root_key.objectid,
3967 location->objectid);
3968 if (ret) {
3969 if (ret < 0)
3970 err = ret;
3971 goto out;
3972 }
Chris Mason39279cc2007-06-12 06:35:45 -04003973
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003974 leaf = path->nodes[0];
3975 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
Li Zefan33345d012011-04-20 10:31:50 +08003976 if (btrfs_root_ref_dirid(leaf, ref) != btrfs_ino(dir) ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003977 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
3978 goto out;
3979
3980 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
3981 (unsigned long)(ref + 1),
3982 dentry->d_name.len);
3983 if (ret)
3984 goto out;
3985
David Sterbab3b4aa72011-04-21 01:20:15 +02003986 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003987
3988 new_root = btrfs_read_fs_root_no_name(root->fs_info, location);
3989 if (IS_ERR(new_root)) {
3990 err = PTR_ERR(new_root);
3991 goto out;
3992 }
3993
3994 if (btrfs_root_refs(&new_root->root_item) == 0) {
3995 err = -ENOENT;
3996 goto out;
3997 }
3998
3999 *sub_root = new_root;
4000 location->objectid = btrfs_root_dirid(&new_root->root_item);
4001 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04004002 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004003 err = 0;
4004out:
4005 btrfs_free_path(path);
4006 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04004007}
4008
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004009static void inode_tree_add(struct inode *inode)
4010{
4011 struct btrfs_root *root = BTRFS_I(inode)->root;
4012 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004013 struct rb_node **p;
4014 struct rb_node *parent;
Li Zefan33345d012011-04-20 10:31:50 +08004015 u64 ino = btrfs_ino(inode);
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004016again:
4017 p = &root->inode_tree.rb_node;
4018 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004019
Al Viro1d3382cb2010-10-23 15:19:20 -04004020 if (inode_unhashed(inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04004021 return;
4022
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004023 spin_lock(&root->inode_lock);
4024 while (*p) {
4025 parent = *p;
4026 entry = rb_entry(parent, struct btrfs_inode, rb_node);
4027
Li Zefan33345d012011-04-20 10:31:50 +08004028 if (ino < btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004029 p = &parent->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08004030 else if (ino > btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004031 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004032 else {
4033 WARN_ON(!(entry->vfs_inode.i_state &
Al Viroa4ffdde2010-06-02 17:38:30 -04004034 (I_WILL_FREE | I_FREEING)));
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004035 rb_erase(parent, &root->inode_tree);
4036 RB_CLEAR_NODE(parent);
4037 spin_unlock(&root->inode_lock);
4038 goto again;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004039 }
4040 }
4041 rb_link_node(&BTRFS_I(inode)->rb_node, parent, p);
4042 rb_insert_color(&BTRFS_I(inode)->rb_node, &root->inode_tree);
4043 spin_unlock(&root->inode_lock);
4044}
4045
4046static void inode_tree_del(struct inode *inode)
4047{
4048 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04004049 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004050
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004051 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004052 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004053 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004054 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04004055 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004056 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004057 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04004058
Josef Bacik0af3d002010-06-21 14:48:16 -04004059 /*
4060 * Free space cache has inodes in the tree root, but the tree root has a
4061 * root_refs of 0, so this could end up dropping the tree root as a
4062 * snapshot, so we need the extra !root->fs_info->tree_root check to
4063 * make sure we don't drop it.
4064 */
4065 if (empty && btrfs_root_refs(&root->root_item) == 0 &&
4066 root != root->fs_info->tree_root) {
Yan, Zheng76dda932009-09-21 16:00:26 -04004067 synchronize_srcu(&root->fs_info->subvol_srcu);
4068 spin_lock(&root->inode_lock);
4069 empty = RB_EMPTY_ROOT(&root->inode_tree);
4070 spin_unlock(&root->inode_lock);
4071 if (empty)
4072 btrfs_add_dead_root(root);
4073 }
4074}
4075
Jeff Mahoney143bede2012-03-01 14:56:26 +01004076void btrfs_invalidate_inodes(struct btrfs_root *root)
Yan, Zheng76dda932009-09-21 16:00:26 -04004077{
4078 struct rb_node *node;
4079 struct rb_node *prev;
4080 struct btrfs_inode *entry;
4081 struct inode *inode;
4082 u64 objectid = 0;
4083
4084 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
4085
4086 spin_lock(&root->inode_lock);
4087again:
4088 node = root->inode_tree.rb_node;
4089 prev = NULL;
4090 while (node) {
4091 prev = node;
4092 entry = rb_entry(node, struct btrfs_inode, rb_node);
4093
Li Zefan33345d012011-04-20 10:31:50 +08004094 if (objectid < btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04004095 node = node->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08004096 else if (objectid > btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04004097 node = node->rb_right;
4098 else
4099 break;
4100 }
4101 if (!node) {
4102 while (prev) {
4103 entry = rb_entry(prev, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08004104 if (objectid <= btrfs_ino(&entry->vfs_inode)) {
Yan, Zheng76dda932009-09-21 16:00:26 -04004105 node = prev;
4106 break;
4107 }
4108 prev = rb_next(prev);
4109 }
4110 }
4111 while (node) {
4112 entry = rb_entry(node, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08004113 objectid = btrfs_ino(&entry->vfs_inode) + 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04004114 inode = igrab(&entry->vfs_inode);
4115 if (inode) {
4116 spin_unlock(&root->inode_lock);
4117 if (atomic_read(&inode->i_count) > 1)
4118 d_prune_aliases(inode);
4119 /*
Al Viro45321ac2010-06-07 13:43:19 -04004120 * btrfs_drop_inode will have it removed from
Yan, Zheng76dda932009-09-21 16:00:26 -04004121 * the inode cache when its usage count
4122 * hits zero.
4123 */
4124 iput(inode);
4125 cond_resched();
4126 spin_lock(&root->inode_lock);
4127 goto again;
4128 }
4129
4130 if (cond_resched_lock(&root->inode_lock))
4131 goto again;
4132
4133 node = rb_next(node);
4134 }
4135 spin_unlock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004136}
4137
Chris Masone02119d2008-09-05 16:13:11 -04004138static int btrfs_init_locked_inode(struct inode *inode, void *p)
4139{
4140 struct btrfs_iget_args *args = p;
4141 inode->i_ino = args->ino;
Chris Masone02119d2008-09-05 16:13:11 -04004142 BTRFS_I(inode)->root = args->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004143 return 0;
4144}
4145
4146static int btrfs_find_actor(struct inode *inode, void *opaque)
4147{
4148 struct btrfs_iget_args *args = opaque;
Li Zefan33345d012011-04-20 10:31:50 +08004149 return args->ino == btrfs_ino(inode) &&
Chris Masond3977122009-01-05 21:25:51 -05004150 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004151}
4152
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004153static struct inode *btrfs_iget_locked(struct super_block *s,
4154 u64 objectid,
4155 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04004156{
4157 struct inode *inode;
4158 struct btrfs_iget_args args;
4159 args.ino = objectid;
4160 args.root = root;
4161
4162 inode = iget5_locked(s, objectid, btrfs_find_actor,
4163 btrfs_init_locked_inode,
4164 (void *)&args);
4165 return inode;
4166}
4167
Balaji Rao1a54ef82008-07-21 02:01:04 +05304168/* Get an inode object given its location and corresponding root.
4169 * Returns in *is_new if the inode was read from disk
4170 */
4171struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
Josef Bacik73f73412009-12-04 17:38:27 +00004172 struct btrfs_root *root, int *new)
Balaji Rao1a54ef82008-07-21 02:01:04 +05304173{
4174 struct inode *inode;
4175
4176 inode = btrfs_iget_locked(s, location->objectid, root);
4177 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004178 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05304179
4180 if (inode->i_state & I_NEW) {
4181 BTRFS_I(inode)->root = root;
4182 memcpy(&BTRFS_I(inode)->location, location, sizeof(*location));
4183 btrfs_read_locked_inode(inode);
Mark Fasheh1748f842011-07-12 11:25:31 -07004184 if (!is_bad_inode(inode)) {
4185 inode_tree_add(inode);
4186 unlock_new_inode(inode);
4187 if (new)
4188 *new = 1;
4189 } else {
Sergei Trofimoviche0b6d652011-09-11 10:52:24 -04004190 unlock_new_inode(inode);
4191 iput(inode);
4192 inode = ERR_PTR(-ESTALE);
Mark Fasheh1748f842011-07-12 11:25:31 -07004193 }
4194 }
4195
Balaji Rao1a54ef82008-07-21 02:01:04 +05304196 return inode;
4197}
4198
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004199static struct inode *new_simple_dir(struct super_block *s,
4200 struct btrfs_key *key,
4201 struct btrfs_root *root)
4202{
4203 struct inode *inode = new_inode(s);
4204
4205 if (!inode)
4206 return ERR_PTR(-ENOMEM);
4207
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004208 BTRFS_I(inode)->root = root;
4209 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
Josef Bacik72ac3c02012-05-23 14:13:11 -04004210 set_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004211
4212 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
Li Zefan848cce02012-02-21 17:04:28 +08004213 inode->i_op = &btrfs_dir_ro_inode_operations;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004214 inode->i_fop = &simple_dir_operations;
4215 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
4216 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
4217
4218 return inode;
4219}
4220
Chris Mason3de45862008-11-17 21:02:50 -05004221struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04004222{
Chris Masond3977122009-01-05 21:25:51 -05004223 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004224 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004225 struct btrfs_root *sub_root = root;
4226 struct btrfs_key location;
Yan, Zheng76dda932009-09-21 16:00:26 -04004227 int index;
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004228 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004229
4230 if (dentry->d_name.len > BTRFS_NAME_LEN)
4231 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04004232
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004233 if (unlikely(d_need_lookup(dentry))) {
4234 memcpy(&location, dentry->d_fsdata, sizeof(struct btrfs_key));
4235 kfree(dentry->d_fsdata);
4236 dentry->d_fsdata = NULL;
Josef Bacika66e7cc2011-09-18 10:34:03 -04004237 /* This thing is hashed, drop it for now */
4238 d_drop(dentry);
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004239 } else {
4240 ret = btrfs_inode_by_name(dir, dentry, &location);
4241 }
Chris Mason5f39d392007-10-15 16:14:19 -04004242
Chris Mason39279cc2007-06-12 06:35:45 -04004243 if (ret < 0)
4244 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04004245
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004246 if (location.objectid == 0)
4247 return NULL;
4248
4249 if (location.type == BTRFS_INODE_ITEM_KEY) {
Josef Bacik73f73412009-12-04 17:38:27 +00004250 inode = btrfs_iget(dir->i_sb, &location, root, NULL);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004251 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004252 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004253
4254 BUG_ON(location.type != BTRFS_ROOT_ITEM_KEY);
4255
Yan, Zheng76dda932009-09-21 16:00:26 -04004256 index = srcu_read_lock(&root->fs_info->subvol_srcu);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004257 ret = fixup_tree_root_location(root, dir, dentry,
4258 &location, &sub_root);
4259 if (ret < 0) {
4260 if (ret != -ENOENT)
4261 inode = ERR_PTR(ret);
4262 else
4263 inode = new_simple_dir(dir->i_sb, &location, sub_root);
4264 } else {
Josef Bacik73f73412009-12-04 17:38:27 +00004265 inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004266 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004267 srcu_read_unlock(&root->fs_info->subvol_srcu, index);
4268
Julia Lawall34d19ba2011-01-24 19:55:19 +00004269 if (!IS_ERR(inode) && root != sub_root) {
Yan, Zhengc71bf092009-11-12 09:34:40 +00004270 down_read(&root->fs_info->cleanup_work_sem);
4271 if (!(inode->i_sb->s_flags & MS_RDONLY))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05004272 ret = btrfs_orphan_cleanup(sub_root);
Yan, Zhengc71bf092009-11-12 09:34:40 +00004273 up_read(&root->fs_info->cleanup_work_sem);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05004274 if (ret)
4275 inode = ERR_PTR(ret);
Yan, Zhengc71bf092009-11-12 09:34:40 +00004276 }
4277
Chris Mason3de45862008-11-17 21:02:50 -05004278 return inode;
4279}
4280
Nick Pigginfe15ce42011-01-07 17:49:23 +11004281static int btrfs_dentry_delete(const struct dentry *dentry)
Yan, Zheng76dda932009-09-21 16:00:26 -04004282{
4283 struct btrfs_root *root;
Li Zefan848cce02012-02-21 17:04:28 +08004284 struct inode *inode = dentry->d_inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04004285
Li Zefan848cce02012-02-21 17:04:28 +08004286 if (!inode && !IS_ROOT(dentry))
4287 inode = dentry->d_parent->d_inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04004288
Li Zefan848cce02012-02-21 17:04:28 +08004289 if (inode) {
4290 root = BTRFS_I(inode)->root;
Yan, Zhengefefb142009-10-09 09:25:16 -04004291 if (btrfs_root_refs(&root->root_item) == 0)
4292 return 1;
Li Zefan848cce02012-02-21 17:04:28 +08004293
4294 if (btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
4295 return 1;
Yan, Zhengefefb142009-10-09 09:25:16 -04004296 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004297 return 0;
4298}
4299
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004300static void btrfs_dentry_release(struct dentry *dentry)
4301{
4302 if (dentry->d_fsdata)
4303 kfree(dentry->d_fsdata);
4304}
4305
Chris Mason3de45862008-11-17 21:02:50 -05004306static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -04004307 unsigned int flags)
Chris Mason3de45862008-11-17 21:02:50 -05004308{
Josef Bacika66e7cc2011-09-18 10:34:03 -04004309 struct dentry *ret;
4310
4311 ret = d_splice_alias(btrfs_lookup_dentry(dir, dentry), dentry);
4312 if (unlikely(d_need_lookup(dentry))) {
4313 spin_lock(&dentry->d_lock);
4314 dentry->d_flags &= ~DCACHE_NEED_LOOKUP;
4315 spin_unlock(&dentry->d_lock);
4316 }
4317 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004318}
4319
Miao Xie16cdcec2011-04-22 18:12:22 +08004320unsigned char btrfs_filetype_table[] = {
Chris Mason39279cc2007-06-12 06:35:45 -04004321 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
4322};
4323
David Woodhousecbdf5a22008-08-06 19:42:33 +01004324static int btrfs_real_readdir(struct file *filp, void *dirent,
4325 filldir_t filldir)
Chris Mason39279cc2007-06-12 06:35:45 -04004326{
Chris Mason6da6aba2007-12-18 16:15:09 -05004327 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004328 struct btrfs_root *root = BTRFS_I(inode)->root;
4329 struct btrfs_item *item;
4330 struct btrfs_dir_item *di;
4331 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04004332 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04004333 struct btrfs_path *path;
Miao Xie16cdcec2011-04-22 18:12:22 +08004334 struct list_head ins_list;
4335 struct list_head del_list;
Chris Mason39279cc2007-06-12 06:35:45 -04004336 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04004337 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04004338 int slot;
Chris Mason39279cc2007-06-12 06:35:45 -04004339 unsigned char d_type;
4340 int over = 0;
4341 u32 di_cur;
4342 u32 di_total;
4343 u32 di_len;
4344 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004345 char tmp_name[32];
4346 char *name_ptr;
4347 int name_len;
Miao Xie16cdcec2011-04-22 18:12:22 +08004348 int is_curr = 0; /* filp->f_pos points to the current index? */
Chris Mason39279cc2007-06-12 06:35:45 -04004349
4350 /* FIXME, use a real flag for deciding about the key type */
4351 if (root->fs_info->tree_root == root)
4352 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004353
Chris Mason39544012007-12-12 14:38:19 -05004354 /* special case for "." */
4355 if (filp->f_pos == 0) {
Hidetoshi Seto3765fef2011-09-18 10:20:46 -04004356 over = filldir(dirent, ".", 1,
4357 filp->f_pos, btrfs_ino(inode), DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05004358 if (over)
4359 return 0;
4360 filp->f_pos = 1;
4361 }
Chris Mason39544012007-12-12 14:38:19 -05004362 /* special case for .., just use the back ref */
4363 if (filp->f_pos == 1) {
David Woodhouse5ecc7e52008-08-17 15:14:48 +01004364 u64 pino = parent_ino(filp->f_path.dentry);
Chris Mason39544012007-12-12 14:38:19 -05004365 over = filldir(dirent, "..", 2,
Hidetoshi Seto3765fef2011-09-18 10:20:46 -04004366 filp->f_pos, pino, DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05004367 if (over)
David Woodhouse49593bf2008-08-17 17:08:36 +01004368 return 0;
Chris Mason39544012007-12-12 14:38:19 -05004369 filp->f_pos = 2;
4370 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004371 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08004372 if (!path)
4373 return -ENOMEM;
Chris Masonff5714c2011-05-28 07:00:39 -04004374
Josef Bacik026fd312011-05-13 10:32:11 -04004375 path->reada = 1;
David Woodhouse49593bf2008-08-17 17:08:36 +01004376
Miao Xie16cdcec2011-04-22 18:12:22 +08004377 if (key_type == BTRFS_DIR_INDEX_KEY) {
4378 INIT_LIST_HEAD(&ins_list);
4379 INIT_LIST_HEAD(&del_list);
4380 btrfs_get_delayed_items(inode, &ins_list, &del_list);
4381 }
4382
Chris Mason39279cc2007-06-12 06:35:45 -04004383 btrfs_set_key_type(&key, key_type);
4384 key.offset = filp->f_pos;
Li Zefan33345d012011-04-20 10:31:50 +08004385 key.objectid = btrfs_ino(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004386
Chris Mason39279cc2007-06-12 06:35:45 -04004387 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4388 if (ret < 0)
4389 goto err;
David Woodhouse49593bf2008-08-17 17:08:36 +01004390
4391 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04004392 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -04004393 slot = path->slots[0];
Li Zefanb9e03af2011-03-23 10:43:58 +08004394 if (slot >= btrfs_header_nritems(leaf)) {
4395 ret = btrfs_next_leaf(root, path);
4396 if (ret < 0)
4397 goto err;
4398 else if (ret > 0)
4399 break;
4400 continue;
Chris Mason39279cc2007-06-12 06:35:45 -04004401 }
Chris Mason3de45862008-11-17 21:02:50 -05004402
Chris Mason5f39d392007-10-15 16:14:19 -04004403 item = btrfs_item_nr(leaf, slot);
4404 btrfs_item_key_to_cpu(leaf, &found_key, slot);
4405
4406 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04004407 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004408 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004409 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004410 if (found_key.offset < filp->f_pos)
Li Zefanb9e03af2011-03-23 10:43:58 +08004411 goto next;
Miao Xie16cdcec2011-04-22 18:12:22 +08004412 if (key_type == BTRFS_DIR_INDEX_KEY &&
4413 btrfs_should_delete_dir_index(&del_list,
4414 found_key.offset))
4415 goto next;
Chris Mason5f39d392007-10-15 16:14:19 -04004416
4417 filp->f_pos = found_key.offset;
Miao Xie16cdcec2011-04-22 18:12:22 +08004418 is_curr = 1;
David Woodhouse49593bf2008-08-17 17:08:36 +01004419
Chris Mason39279cc2007-06-12 06:35:45 -04004420 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
4421 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04004422 di_total = btrfs_item_size(leaf, item);
David Woodhouse49593bf2008-08-17 17:08:36 +01004423
4424 while (di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04004425 struct btrfs_key location;
4426
Josef Bacik22a94d42011-03-16 16:47:17 -04004427 if (verify_dir_item(root, leaf, di))
4428 break;
4429
Chris Mason5f39d392007-10-15 16:14:19 -04004430 name_len = btrfs_dir_name_len(leaf, di);
David Woodhouse49593bf2008-08-17 17:08:36 +01004431 if (name_len <= sizeof(tmp_name)) {
Chris Mason5f39d392007-10-15 16:14:19 -04004432 name_ptr = tmp_name;
4433 } else {
4434 name_ptr = kmalloc(name_len, GFP_NOFS);
David Woodhouse49593bf2008-08-17 17:08:36 +01004435 if (!name_ptr) {
4436 ret = -ENOMEM;
4437 goto err;
4438 }
Chris Mason5f39d392007-10-15 16:14:19 -04004439 }
4440 read_extent_buffer(leaf, name_ptr,
4441 (unsigned long)(di + 1), name_len);
4442
4443 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
4444 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason3de45862008-11-17 21:02:50 -05004445
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004446
Chris Mason3de45862008-11-17 21:02:50 -05004447 /* is this a reference to our own snapshot? If so
Arne Jansen8c9c2bf2012-02-25 09:09:30 +01004448 * skip it.
4449 *
4450 * In contrast to old kernels, we insert the snapshot's
4451 * dir item and dir index after it has been created, so
4452 * we won't find a reference to our own snapshot. We
4453 * still keep the following code for backward
4454 * compatibility.
Chris Mason3de45862008-11-17 21:02:50 -05004455 */
4456 if (location.type == BTRFS_ROOT_ITEM_KEY &&
4457 location.objectid == root->root_key.objectid) {
4458 over = 0;
4459 goto skip;
4460 }
Chris Mason5f39d392007-10-15 16:14:19 -04004461 over = filldir(dirent, name_ptr, name_len,
David Woodhouse49593bf2008-08-17 17:08:36 +01004462 found_key.offset, location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04004463 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04004464
Chris Mason3de45862008-11-17 21:02:50 -05004465skip:
Chris Mason5f39d392007-10-15 16:14:19 -04004466 if (name_ptr != tmp_name)
4467 kfree(name_ptr);
4468
Chris Mason39279cc2007-06-12 06:35:45 -04004469 if (over)
4470 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05004471 di_len = btrfs_dir_name_len(leaf, di) +
David Woodhouse49593bf2008-08-17 17:08:36 +01004472 btrfs_dir_data_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04004473 di_cur += di_len;
4474 di = (struct btrfs_dir_item *)((char *)di + di_len);
4475 }
Li Zefanb9e03af2011-03-23 10:43:58 +08004476next:
4477 path->slots[0]++;
Chris Mason39279cc2007-06-12 06:35:45 -04004478 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004479
Miao Xie16cdcec2011-04-22 18:12:22 +08004480 if (key_type == BTRFS_DIR_INDEX_KEY) {
4481 if (is_curr)
4482 filp->f_pos++;
4483 ret = btrfs_readdir_delayed_dir_index(filp, dirent, filldir,
4484 &ins_list);
4485 if (ret)
4486 goto nopos;
4487 }
4488
David Woodhouse49593bf2008-08-17 17:08:36 +01004489 /* Reached end of directory/root. Bump pos past the last item. */
Yan Zheng5e591a02008-02-19 11:41:02 -05004490 if (key_type == BTRFS_DIR_INDEX_KEY)
Jan Engelhardt406266a2009-12-09 22:00:38 +00004491 /*
4492 * 32-bit glibc will use getdents64, but then strtol -
4493 * so the last number we can serve is this.
4494 */
4495 filp->f_pos = 0x7fffffff;
Yan Zheng5e591a02008-02-19 11:41:02 -05004496 else
4497 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04004498nopos:
4499 ret = 0;
4500err:
Miao Xie16cdcec2011-04-22 18:12:22 +08004501 if (key_type == BTRFS_DIR_INDEX_KEY)
4502 btrfs_put_delayed_items(&ins_list, &del_list);
Chris Mason39279cc2007-06-12 06:35:45 -04004503 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004504 return ret;
4505}
4506
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004507int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc)
Chris Mason39279cc2007-06-12 06:35:45 -04004508{
4509 struct btrfs_root *root = BTRFS_I(inode)->root;
4510 struct btrfs_trans_handle *trans;
4511 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04004512 bool nolock = false;
Chris Mason39279cc2007-06-12 06:35:45 -04004513
Josef Bacik72ac3c02012-05-23 14:13:11 -04004514 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Chris Mason4ca8b412008-08-05 13:30:48 -04004515 return 0;
4516
Liu Bo83eea1f2012-07-10 05:28:39 -06004517 if (btrfs_fs_closing(root->fs_info) && btrfs_is_free_space_inode(inode))
Li Zefan82d59022011-04-20 10:33:24 +08004518 nolock = true;
Josef Bacik0af3d002010-06-21 14:48:16 -04004519
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004520 if (wbc->sync_mode == WB_SYNC_ALL) {
Josef Bacik0af3d002010-06-21 14:48:16 -04004521 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004522 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0af3d002010-06-21 14:48:16 -04004523 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004524 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00004525 if (IS_ERR(trans))
4526 return PTR_ERR(trans);
Josef Bacik0af3d002010-06-21 14:48:16 -04004527 if (nolock)
4528 ret = btrfs_end_transaction_nolock(trans, root);
4529 else
4530 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004531 }
4532 return ret;
4533}
4534
4535/*
Chris Mason54aa1f42007-06-22 14:16:25 -04004536 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04004537 * inode changes. But, it is most likely to find the inode in cache.
4538 * FIXME, needs more benchmarking...there are no reasons other than performance
4539 * to keep or drop this code.
4540 */
Josef Bacik22c44fe2011-11-30 10:45:38 -05004541int btrfs_dirty_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04004542{
4543 struct btrfs_root *root = BTRFS_I(inode)->root;
4544 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004545 int ret;
4546
Josef Bacik72ac3c02012-05-23 14:13:11 -04004547 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Josef Bacik22c44fe2011-11-30 10:45:38 -05004548 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004549
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004550 trans = btrfs_join_transaction(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004551 if (IS_ERR(trans))
4552 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004553
4554 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04004555 if (ret && ret == -ENOSPC) {
4556 /* whoops, lets try again with the full transaction */
4557 btrfs_end_transaction(trans, root);
4558 trans = btrfs_start_transaction(root, 1);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004559 if (IS_ERR(trans))
4560 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004561
Chris Mason94b60442010-05-26 11:02:00 -04004562 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04004563 }
Chris Mason39279cc2007-06-12 06:35:45 -04004564 btrfs_end_transaction(trans, root);
Miao Xie16cdcec2011-04-22 18:12:22 +08004565 if (BTRFS_I(inode)->delayed_node)
4566 btrfs_balance_delayed_items(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004567
4568 return ret;
4569}
4570
4571/*
4572 * This is a copy of file_update_time. We need this so we can return error on
4573 * ENOSPC for updating the inode in the case of file write and mmap writes.
4574 */
Josef Bacike41f9412012-03-26 09:46:47 -04004575static int btrfs_update_time(struct inode *inode, struct timespec *now,
4576 int flags)
Josef Bacik22c44fe2011-11-30 10:45:38 -05004577{
Alexander Block2bc5565282012-06-15 09:49:33 +02004578 struct btrfs_root *root = BTRFS_I(inode)->root;
4579
4580 if (btrfs_root_readonly(root))
4581 return -EROFS;
4582
Josef Bacike41f9412012-03-26 09:46:47 -04004583 if (flags & S_VERSION)
Josef Bacik22c44fe2011-11-30 10:45:38 -05004584 inode_inc_iversion(inode);
Josef Bacike41f9412012-03-26 09:46:47 -04004585 if (flags & S_CTIME)
4586 inode->i_ctime = *now;
4587 if (flags & S_MTIME)
4588 inode->i_mtime = *now;
4589 if (flags & S_ATIME)
4590 inode->i_atime = *now;
4591 return btrfs_dirty_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004592}
4593
Chris Masond352ac62008-09-29 15:18:18 -04004594/*
4595 * find the highest existing sequence number in a directory
4596 * and then set the in-memory index_cnt variable to reflect
4597 * free sequence numbers
4598 */
Josef Bacikaec74772008-07-24 12:12:38 -04004599static int btrfs_set_inode_index_count(struct inode *inode)
4600{
4601 struct btrfs_root *root = BTRFS_I(inode)->root;
4602 struct btrfs_key key, found_key;
4603 struct btrfs_path *path;
4604 struct extent_buffer *leaf;
4605 int ret;
4606
Li Zefan33345d012011-04-20 10:31:50 +08004607 key.objectid = btrfs_ino(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004608 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
4609 key.offset = (u64)-1;
4610
4611 path = btrfs_alloc_path();
4612 if (!path)
4613 return -ENOMEM;
4614
4615 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4616 if (ret < 0)
4617 goto out;
4618 /* FIXME: we should be able to handle this */
4619 if (ret == 0)
4620 goto out;
4621 ret = 0;
4622
4623 /*
4624 * MAGIC NUMBER EXPLANATION:
4625 * since we search a directory based on f_pos we have to start at 2
4626 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
4627 * else has to start at 2
4628 */
4629 if (path->slots[0] == 0) {
4630 BTRFS_I(inode)->index_cnt = 2;
4631 goto out;
4632 }
4633
4634 path->slots[0]--;
4635
4636 leaf = path->nodes[0];
4637 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4638
Li Zefan33345d012011-04-20 10:31:50 +08004639 if (found_key.objectid != btrfs_ino(inode) ||
Josef Bacikaec74772008-07-24 12:12:38 -04004640 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
4641 BTRFS_I(inode)->index_cnt = 2;
4642 goto out;
4643 }
4644
4645 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
4646out:
4647 btrfs_free_path(path);
4648 return ret;
4649}
4650
Chris Masond352ac62008-09-29 15:18:18 -04004651/*
4652 * helper to find a free sequence number in a given directory. This current
4653 * code is very simple, later versions will do smarter things in the btree
4654 */
Chris Mason3de45862008-11-17 21:02:50 -05004655int btrfs_set_inode_index(struct inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04004656{
4657 int ret = 0;
4658
4659 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
Miao Xie16cdcec2011-04-22 18:12:22 +08004660 ret = btrfs_inode_delayed_dir_index_count(dir);
4661 if (ret) {
4662 ret = btrfs_set_inode_index_count(dir);
4663 if (ret)
4664 return ret;
4665 }
Josef Bacikaec74772008-07-24 12:12:38 -04004666 }
4667
Chris Mason00e4e6b2008-08-05 11:18:09 -04004668 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04004669 BTRFS_I(dir)->index_cnt++;
4670
4671 return ret;
4672}
4673
Chris Mason39279cc2007-06-12 06:35:45 -04004674static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
4675 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04004676 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05004677 const char *name, int name_len,
Al Viro175a4eb2011-07-26 03:30:54 -04004678 u64 ref_objectid, u64 objectid,
4679 umode_t mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04004680{
4681 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004682 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04004683 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04004684 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05004685 struct btrfs_inode_ref *ref;
4686 struct btrfs_key key[2];
4687 u32 sizes[2];
4688 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04004689 int ret;
4690 int owner;
4691
Chris Mason5f39d392007-10-15 16:14:19 -04004692 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07004693 if (!path)
4694 return ERR_PTR(-ENOMEM);
Chris Mason5f39d392007-10-15 16:14:19 -04004695
Chris Mason39279cc2007-06-12 06:35:45 -04004696 inode = new_inode(root->fs_info->sb);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004697 if (!inode) {
4698 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004699 return ERR_PTR(-ENOMEM);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004700 }
Chris Mason39279cc2007-06-12 06:35:45 -04004701
Li Zefan581bb052011-04-20 10:06:11 +08004702 /*
4703 * we have to initialize this early, so we can reclaim the inode
4704 * number if we fail afterwards in this function.
4705 */
4706 inode->i_ino = objectid;
4707
Josef Bacikaec74772008-07-24 12:12:38 -04004708 if (dir) {
liubo1abe9b82011-03-24 11:18:59 +00004709 trace_btrfs_inode_request(dir);
4710
Chris Mason3de45862008-11-17 21:02:50 -05004711 ret = btrfs_set_inode_index(dir, index);
Shen Feng09771432009-04-02 16:46:06 -04004712 if (ret) {
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004713 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004714 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004715 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04004716 }
Josef Bacikaec74772008-07-24 12:12:38 -04004717 }
4718 /*
4719 * index_cnt is ignored for everything but a dir,
4720 * btrfs_get_inode_index_count has an explanation for the magic
4721 * number
4722 */
4723 BTRFS_I(inode)->index_cnt = 2;
Chris Mason39279cc2007-06-12 06:35:45 -04004724 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04004725 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik76195852010-11-19 02:18:02 +00004726 inode->i_generation = BTRFS_I(inode)->generation;
Chris Masonb888db22007-08-27 16:49:44 -04004727
Josef Bacik5dc562c2012-08-17 13:14:17 -04004728 /*
4729 * We could have gotten an inode number from somebody who was fsynced
4730 * and then removed in this same transaction, so let's just set full
4731 * sync since it will be a full sync anyway and this will blow away the
4732 * old info in the log.
4733 */
4734 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
4735
Al Viro569254b2011-07-24 17:08:40 -04004736 if (S_ISDIR(mode))
Chris Mason39279cc2007-06-12 06:35:45 -04004737 owner = 0;
4738 else
4739 owner = 1;
Chris Mason9c583092008-01-29 15:15:18 -05004740
4741 key[0].objectid = objectid;
4742 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
4743 key[0].offset = 0;
4744
4745 key[1].objectid = objectid;
4746 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
4747 key[1].offset = ref_objectid;
4748
4749 sizes[0] = sizeof(struct btrfs_inode_item);
4750 sizes[1] = name_len + sizeof(*ref);
4751
Chris Masonb9473432009-03-13 11:00:37 -04004752 path->leave_spinning = 1;
Chris Mason9c583092008-01-29 15:15:18 -05004753 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
4754 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04004755 goto fail;
4756
Dmitry Monakhovecc11fab2010-03-04 17:31:47 +03004757 inode_init_owner(inode, dir, mode);
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004758 inode_set_bytes(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004759 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04004760 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
4761 struct btrfs_inode_item);
Li Zefan293f7e02012-07-10 00:58:58 -06004762 memset_extent_buffer(path->nodes[0], 0, (unsigned long)inode_item,
4763 sizeof(*inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04004764 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05004765
4766 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
4767 struct btrfs_inode_ref);
4768 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004769 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
Chris Mason9c583092008-01-29 15:15:18 -05004770 ptr = (unsigned long)(ref + 1);
4771 write_extent_buffer(path->nodes[0], name, ptr, name_len);
4772
Chris Mason5f39d392007-10-15 16:14:19 -04004773 btrfs_mark_buffer_dirty(path->nodes[0]);
4774 btrfs_free_path(path);
4775
Chris Mason39279cc2007-06-12 06:35:45 -04004776 location = &BTRFS_I(inode)->location;
4777 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04004778 location->offset = 0;
4779 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
4780
Christoph Hellwig6cbff002009-04-17 10:37:41 +02004781 btrfs_inherit_iflags(inode, dir);
4782
Al Viro569254b2011-07-24 17:08:40 -04004783 if (S_ISREG(mode)) {
Chris Mason94272162009-07-02 12:26:06 -04004784 if (btrfs_test_opt(root, NODATASUM))
4785 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
Liu Bo75e7cb72011-03-22 10:12:20 +00004786 if (btrfs_test_opt(root, NODATACOW) ||
4787 (BTRFS_I(dir)->flags & BTRFS_INODE_NODATACOW))
Chris Mason94272162009-07-02 12:26:06 -04004788 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
4789 }
4790
Chris Mason39279cc2007-06-12 06:35:45 -04004791 insert_inode_hash(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004792 inode_tree_add(inode);
liubo1abe9b82011-03-24 11:18:59 +00004793
4794 trace_btrfs_inode_new(inode);
Chris Mason1973f0f2011-06-24 13:13:29 -04004795 btrfs_set_inode_last_trans(trans, inode);
liubo1abe9b82011-03-24 11:18:59 +00004796
Alexander Block8ea05e32012-07-25 17:35:53 +02004797 btrfs_update_root_times(trans, root);
4798
Chris Mason39279cc2007-06-12 06:35:45 -04004799 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004800fail:
Josef Bacikaec74772008-07-24 12:12:38 -04004801 if (dir)
4802 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04004803 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004804 iput(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004805 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004806}
4807
4808static inline u8 btrfs_inode_type(struct inode *inode)
4809{
4810 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
4811}
4812
Chris Masond352ac62008-09-29 15:18:18 -04004813/*
4814 * utility function to add 'inode' into 'parent_inode' with
4815 * a give name and a given sequence number.
4816 * if 'add_backref' is true, also insert a backref from the
4817 * inode to the parent directory.
4818 */
Chris Masone02119d2008-09-05 16:13:11 -04004819int btrfs_add_link(struct btrfs_trans_handle *trans,
4820 struct inode *parent_inode, struct inode *inode,
4821 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004822{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004823 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004824 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04004825 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Li Zefan33345d012011-04-20 10:31:50 +08004826 u64 ino = btrfs_ino(inode);
4827 u64 parent_ino = btrfs_ino(parent_inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004828
Li Zefan33345d012011-04-20 10:31:50 +08004829 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004830 memcpy(&key, &BTRFS_I(inode)->root->root_key, sizeof(key));
4831 } else {
Li Zefan33345d012011-04-20 10:31:50 +08004832 key.objectid = ino;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004833 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
4834 key.offset = 0;
4835 }
Chris Mason39279cc2007-06-12 06:35:45 -04004836
Li Zefan33345d012011-04-20 10:31:50 +08004837 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004838 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
4839 key.objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08004840 parent_ino, index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004841 } else if (add_backref) {
Li Zefan33345d012011-04-20 10:31:50 +08004842 ret = btrfs_insert_inode_ref(trans, root, name, name_len, ino,
4843 parent_ino, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004844 }
4845
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004846 /* Nothing to clean up yet */
4847 if (ret)
4848 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004849
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004850 ret = btrfs_insert_dir_item(trans, root, name, name_len,
4851 parent_inode, &key,
4852 btrfs_inode_type(inode), index);
4853 if (ret == -EEXIST)
4854 goto fail_dir_item;
4855 else if (ret) {
4856 btrfs_abort_transaction(trans, root, ret);
4857 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004858 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004859
4860 btrfs_i_size_write(parent_inode, parent_inode->i_size +
4861 name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04004862 inode_inc_iversion(parent_inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004863 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
4864 ret = btrfs_update_inode(trans, root, parent_inode);
4865 if (ret)
4866 btrfs_abort_transaction(trans, root, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004867 return ret;
Chris Masonfe66a052012-02-20 08:40:56 -05004868
4869fail_dir_item:
4870 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
4871 u64 local_index;
4872 int err;
4873 err = btrfs_del_root_ref(trans, root->fs_info->tree_root,
4874 key.objectid, root->root_key.objectid,
4875 parent_ino, &local_index, name, name_len);
4876
4877 } else if (add_backref) {
4878 u64 local_index;
4879 int err;
4880
4881 err = btrfs_del_inode_ref(trans, root, name, name_len,
4882 ino, parent_ino, &local_index);
4883 }
4884 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004885}
4886
4887static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Josef Bacika1b075d2010-11-19 20:36:11 +00004888 struct inode *dir, struct dentry *dentry,
4889 struct inode *inode, int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004890{
Josef Bacika1b075d2010-11-19 20:36:11 +00004891 int err = btrfs_add_link(trans, dir, inode,
4892 dentry->d_name.name, dentry->d_name.len,
4893 backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004894 if (err > 0)
4895 err = -EEXIST;
4896 return err;
4897}
4898
Josef Bacik618e21d2007-07-11 10:18:17 -04004899static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -04004900 umode_t mode, dev_t rdev)
Josef Bacik618e21d2007-07-11 10:18:17 -04004901{
4902 struct btrfs_trans_handle *trans;
4903 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004904 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04004905 int err;
4906 int drop_inode = 0;
4907 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05004908 unsigned long nr = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004909 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04004910
4911 if (!new_valid_dev(rdev))
4912 return -EINVAL;
4913
Josef Bacik9ed74f22009-09-11 16:12:44 -04004914 /*
4915 * 2 for inode item and ref
4916 * 2 for dir items
4917 * 1 for xattr if selinux is on
4918 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004919 trans = btrfs_start_transaction(root, 5);
4920 if (IS_ERR(trans))
4921 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05004922
Li Zefan581bb052011-04-20 10:06:11 +08004923 err = btrfs_find_free_ino(root, &objectid);
4924 if (err)
4925 goto out_unlock;
4926
Josef Bacikaec74772008-07-24 12:12:38 -04004927 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08004928 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04004929 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004930 if (IS_ERR(inode)) {
4931 err = PTR_ERR(inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04004932 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004933 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004934
Eric Paris2a7dba32011-02-01 11:05:39 -05004935 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04004936 if (err) {
4937 drop_inode = 1;
4938 goto out_unlock;
4939 }
4940
Casey Schauflerad19db72011-12-15 10:09:07 -05004941 /*
4942 * If the active LSM wants to access the inode during
4943 * d_instantiate it needs these. Smack checks to see
4944 * if the filesystem supports xattrs by looking at the
4945 * ops vector.
4946 */
4947
4948 inode->i_op = &btrfs_special_inode_operations;
Josef Bacika1b075d2010-11-19 20:36:11 +00004949 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Josef Bacik618e21d2007-07-11 10:18:17 -04004950 if (err)
4951 drop_inode = 1;
4952 else {
Josef Bacik618e21d2007-07-11 10:18:17 -04004953 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04004954 btrfs_update_inode(trans, root, inode);
Al Viro08c422c2011-12-23 07:58:13 -05004955 d_instantiate(dentry, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04004956 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004957out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004958 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05004959 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004960 btrfs_btree_balance_dirty(root, nr);
Josef Bacik618e21d2007-07-11 10:18:17 -04004961 if (drop_inode) {
4962 inode_dec_link_count(inode);
4963 iput(inode);
4964 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004965 return err;
4966}
4967
Chris Mason39279cc2007-06-12 06:35:45 -04004968static int btrfs_create(struct inode *dir, struct dentry *dentry,
Al Viroebfc3b42012-06-10 18:05:36 -04004969 umode_t mode, bool excl)
Chris Mason39279cc2007-06-12 06:35:45 -04004970{
4971 struct btrfs_trans_handle *trans;
4972 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004973 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004974 int drop_inode = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004975 int err;
Chris Mason1832a6d2007-12-21 16:27:21 -05004976 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004977 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004978 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004979
Josef Bacik9ed74f22009-09-11 16:12:44 -04004980 /*
4981 * 2 for inode item and ref
4982 * 2 for dir items
4983 * 1 for xattr if selinux is on
4984 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004985 trans = btrfs_start_transaction(root, 5);
4986 if (IS_ERR(trans))
4987 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004988
Li Zefan581bb052011-04-20 10:06:11 +08004989 err = btrfs_find_free_ino(root, &objectid);
4990 if (err)
4991 goto out_unlock;
4992
Josef Bacikaec74772008-07-24 12:12:38 -04004993 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08004994 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04004995 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004996 if (IS_ERR(inode)) {
4997 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004998 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004999 }
Chris Mason39279cc2007-06-12 06:35:45 -04005000
Eric Paris2a7dba32011-02-01 11:05:39 -05005001 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04005002 if (err) {
5003 drop_inode = 1;
5004 goto out_unlock;
5005 }
5006
Casey Schauflerad19db72011-12-15 10:09:07 -05005007 /*
5008 * If the active LSM wants to access the inode during
5009 * d_instantiate it needs these. Smack checks to see
5010 * if the filesystem supports xattrs by looking at the
5011 * ops vector.
5012 */
5013 inode->i_fop = &btrfs_file_operations;
5014 inode->i_op = &btrfs_file_inode_operations;
5015
Josef Bacika1b075d2010-11-19 20:36:11 +00005016 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04005017 if (err)
5018 drop_inode = 1;
5019 else {
5020 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04005021 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05005022 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Al Viro08c422c2011-12-23 07:58:13 -05005023 d_instantiate(dentry, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04005024 }
Chris Mason39279cc2007-06-12 06:35:45 -04005025out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005026 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05005027 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04005028 if (drop_inode) {
5029 inode_dec_link_count(inode);
5030 iput(inode);
5031 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005032 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04005033 return err;
5034}
5035
5036static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
5037 struct dentry *dentry)
5038{
5039 struct btrfs_trans_handle *trans;
5040 struct btrfs_root *root = BTRFS_I(dir)->root;
5041 struct inode *inode = old_dentry->d_inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005042 u64 index;
Chris Mason1832a6d2007-12-21 16:27:21 -05005043 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005044 int err;
5045 int drop_inode = 0;
5046
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00005047 /* do not allow sys_link's with other subvols of the same device */
5048 if (root->objectid != BTRFS_I(inode)->root->objectid)
Mark Fasheh3ab35642011-03-22 17:20:26 +00005049 return -EXDEV;
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00005050
Al Viroc055e992011-03-04 17:15:18 +00005051 if (inode->i_nlink == ~0U)
5052 return -EMLINK;
Josef Bacik9ed74f22009-09-11 16:12:44 -04005053
Chris Mason3de45862008-11-17 21:02:50 -05005054 err = btrfs_set_inode_index(dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04005055 if (err)
5056 goto fail;
5057
Yan, Zhenga22285a2010-05-16 10:48:46 -04005058 /*
Miao Xie7e6b6462011-02-18 09:21:17 +00005059 * 2 items for inode and inode ref
Yan, Zhenga22285a2010-05-16 10:48:46 -04005060 * 2 items for dir items
Miao Xie7e6b6462011-02-18 09:21:17 +00005061 * 1 item for parent inode
Yan, Zhenga22285a2010-05-16 10:48:46 -04005062 */
Miao Xie7e6b6462011-02-18 09:21:17 +00005063 trans = btrfs_start_transaction(root, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005064 if (IS_ERR(trans)) {
5065 err = PTR_ERR(trans);
5066 goto fail;
5067 }
Chris Mason5f39d392007-10-15 16:14:19 -04005068
Miao Xie31534952011-04-13 13:19:21 +08005069 btrfs_inc_nlink(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04005070 inode_inc_iversion(inode);
Miao Xie31534952011-04-13 13:19:21 +08005071 inode->i_ctime = CURRENT_TIME;
Al Viro7de9c6ee2010-10-23 11:11:40 -04005072 ihold(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04005073
Josef Bacika1b075d2010-11-19 20:36:11 +00005074 err = btrfs_add_nondir(trans, dir, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04005075
Yan, Zhenga5719522009-09-24 09:17:31 -04005076 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04005077 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04005078 } else {
Al Viro10d9f302011-07-16 23:09:10 -04005079 struct dentry *parent = dentry->d_parent;
Yan, Zhenga5719522009-09-24 09:17:31 -04005080 err = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005081 if (err)
5082 goto fail;
Al Viro08c422c2011-12-23 07:58:13 -05005083 d_instantiate(dentry, inode);
Josef Bacik6a912212010-11-20 09:48:00 +00005084 btrfs_log_new_name(trans, inode, NULL, parent);
Yan, Zhenga5719522009-09-24 09:17:31 -04005085 }
Chris Mason39279cc2007-06-12 06:35:45 -04005086
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005087 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05005088 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05005089fail:
Chris Mason39279cc2007-06-12 06:35:45 -04005090 if (drop_inode) {
5091 inode_dec_link_count(inode);
5092 iput(inode);
5093 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005094 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04005095 return err;
5096}
5097
Al Viro18bb1db2011-07-26 01:41:39 -04005098static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Chris Mason39279cc2007-06-12 06:35:45 -04005099{
Chris Masonb9d86662008-05-02 16:13:49 -04005100 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04005101 struct btrfs_trans_handle *trans;
5102 struct btrfs_root *root = BTRFS_I(dir)->root;
5103 int err = 0;
5104 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04005105 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005106 u64 index = 0;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005107 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04005108
Josef Bacik9ed74f22009-09-11 16:12:44 -04005109 /*
5110 * 2 items for inode and ref
5111 * 2 items for dir items
5112 * 1 for xattr if selinux is on
5113 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04005114 trans = btrfs_start_transaction(root, 5);
5115 if (IS_ERR(trans))
5116 return PTR_ERR(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04005117
Li Zefan581bb052011-04-20 10:06:11 +08005118 err = btrfs_find_free_ino(root, &objectid);
5119 if (err)
5120 goto out_fail;
5121
Josef Bacikaec74772008-07-24 12:12:38 -04005122 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08005123 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04005124 S_IFDIR | mode, &index);
Chris Mason39279cc2007-06-12 06:35:45 -04005125 if (IS_ERR(inode)) {
5126 err = PTR_ERR(inode);
5127 goto out_fail;
5128 }
Chris Mason5f39d392007-10-15 16:14:19 -04005129
Chris Mason39279cc2007-06-12 06:35:45 -04005130 drop_on_err = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -04005131
Eric Paris2a7dba32011-02-01 11:05:39 -05005132 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04005133 if (err)
5134 goto out_fail;
5135
Chris Mason39279cc2007-06-12 06:35:45 -04005136 inode->i_op = &btrfs_dir_inode_operations;
5137 inode->i_fop = &btrfs_dir_file_operations;
Chris Mason39279cc2007-06-12 06:35:45 -04005138
Chris Masondbe674a2008-07-17 12:54:05 -04005139 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04005140 err = btrfs_update_inode(trans, root, inode);
5141 if (err)
5142 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04005143
Josef Bacika1b075d2010-11-19 20:36:11 +00005144 err = btrfs_add_link(trans, dir, inode, dentry->d_name.name,
5145 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04005146 if (err)
5147 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04005148
Chris Mason39279cc2007-06-12 06:35:45 -04005149 d_instantiate(dentry, inode);
5150 drop_on_err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005151
5152out_fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005153 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05005154 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04005155 if (drop_on_err)
5156 iput(inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005157 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04005158 return err;
5159}
5160
Chris Masond352ac62008-09-29 15:18:18 -04005161/* helper for btfs_get_extent. Given an existing extent in the tree,
5162 * and an extent that you want to insert, deal with overlap and insert
5163 * the new extent into the tree.
5164 */
Chris Mason3b951512008-04-17 11:29:12 -04005165static int merge_extent_mapping(struct extent_map_tree *em_tree,
5166 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005167 struct extent_map *em,
5168 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04005169{
5170 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04005171
Chris Masone6dcd2d2008-07-17 12:53:50 -04005172 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
5173 start_diff = map_start - em->start;
5174 em->start = map_start;
5175 em->len = map_len;
Chris Masonc8b97812008-10-29 14:49:59 -04005176 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
5177 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04005178 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04005179 em->block_len -= start_diff;
5180 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005181 return add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04005182}
5183
Chris Masonc8b97812008-10-29 14:49:59 -04005184static noinline int uncompress_inline(struct btrfs_path *path,
5185 struct inode *inode, struct page *page,
5186 size_t pg_offset, u64 extent_offset,
5187 struct btrfs_file_extent_item *item)
5188{
5189 int ret;
5190 struct extent_buffer *leaf = path->nodes[0];
5191 char *tmp;
5192 size_t max_size;
5193 unsigned long inline_size;
5194 unsigned long ptr;
Li Zefan261507a02010-12-17 14:21:50 +08005195 int compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04005196
5197 WARN_ON(pg_offset != 0);
Li Zefan261507a02010-12-17 14:21:50 +08005198 compress_type = btrfs_file_extent_compression(leaf, item);
Chris Masonc8b97812008-10-29 14:49:59 -04005199 max_size = btrfs_file_extent_ram_bytes(leaf, item);
5200 inline_size = btrfs_file_extent_inline_item_len(leaf,
5201 btrfs_item_nr(leaf, path->slots[0]));
5202 tmp = kmalloc(inline_size, GFP_NOFS);
Tsutomu Itoh8d413712011-04-25 19:43:52 -04005203 if (!tmp)
5204 return -ENOMEM;
Chris Masonc8b97812008-10-29 14:49:59 -04005205 ptr = btrfs_file_extent_inline_start(item);
5206
5207 read_extent_buffer(leaf, tmp, ptr, inline_size);
5208
Chris Mason5b050f02008-11-11 09:34:41 -05005209 max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size);
Li Zefan261507a02010-12-17 14:21:50 +08005210 ret = btrfs_decompress(compress_type, tmp, page,
5211 extent_offset, inline_size, max_size);
Chris Masonc8b97812008-10-29 14:49:59 -04005212 if (ret) {
Cong Wang7ac687d2011-11-25 23:14:28 +08005213 char *kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04005214 unsigned long copy_size = min_t(u64,
5215 PAGE_CACHE_SIZE - pg_offset,
5216 max_size - extent_offset);
5217 memset(kaddr + pg_offset, 0, copy_size);
Cong Wang7ac687d2011-11-25 23:14:28 +08005218 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -04005219 }
5220 kfree(tmp);
5221 return 0;
5222}
5223
Chris Masond352ac62008-09-29 15:18:18 -04005224/*
5225 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05005226 * the ugly parts come from merging extents from the disk with the in-ram
5227 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04005228 * where the in-ram extents might be locked pending data=ordered completion.
5229 *
5230 * This also copies inline extents directly into the page.
5231 */
Chris Masond3977122009-01-05 21:25:51 -05005232
Chris Masona52d9a82007-08-27 16:49:44 -04005233struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05005234 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04005235 int create)
5236{
5237 int ret;
5238 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04005239 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04005240 u64 extent_start = 0;
5241 u64 extent_end = 0;
Li Zefan33345d012011-04-20 10:31:50 +08005242 u64 objectid = btrfs_ino(inode);
Chris Masona52d9a82007-08-27 16:49:44 -04005243 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04005244 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04005245 struct btrfs_root *root = BTRFS_I(inode)->root;
5246 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04005247 struct extent_buffer *leaf;
5248 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04005249 struct extent_map *em = NULL;
5250 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05005251 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04005252 struct btrfs_trans_handle *trans = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08005253 int compress_type;
Chris Masona52d9a82007-08-27 16:49:44 -04005254
Chris Masona52d9a82007-08-27 16:49:44 -04005255again:
Chris Mason890871b2009-09-02 16:24:52 -04005256 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05005257 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04005258 if (em)
5259 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04005260 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05005261
Chris Masona52d9a82007-08-27 16:49:44 -04005262 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04005263 if (em->start > start || em->start + em->len <= start)
5264 free_extent_map(em);
5265 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05005266 free_extent_map(em);
5267 else
5268 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005269 }
David Sterba172ddd62011-04-21 00:48:27 +02005270 em = alloc_extent_map();
Chris Masona52d9a82007-08-27 16:49:44 -04005271 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05005272 err = -ENOMEM;
5273 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005274 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005275 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05005276 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05005277 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05005278 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04005279 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04005280
5281 if (!path) {
5282 path = btrfs_alloc_path();
Josef Bacik026fd312011-05-13 10:32:11 -04005283 if (!path) {
5284 err = -ENOMEM;
5285 goto out;
5286 }
5287 /*
5288 * Chances are we'll be called again, so go ahead and do
5289 * readahead
5290 */
5291 path->reada = 1;
Chris Masonf4219502008-07-22 11:18:09 -04005292 }
5293
Chris Mason179e29e2007-11-01 11:28:41 -04005294 ret = btrfs_lookup_file_extent(trans, root, path,
5295 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04005296 if (ret < 0) {
5297 err = ret;
5298 goto out;
5299 }
5300
5301 if (ret != 0) {
5302 if (path->slots[0] == 0)
5303 goto not_found;
5304 path->slots[0]--;
5305 }
5306
Chris Mason5f39d392007-10-15 16:14:19 -04005307 leaf = path->nodes[0];
5308 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04005309 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04005310 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04005311 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5312 found_type = btrfs_key_type(&found_key);
5313 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04005314 found_type != BTRFS_EXTENT_DATA_KEY) {
5315 goto not_found;
5316 }
5317
Chris Mason5f39d392007-10-15 16:14:19 -04005318 found_type = btrfs_file_extent_type(leaf, item);
5319 extent_start = found_key.offset;
Li Zefan261507a02010-12-17 14:21:50 +08005320 compress_type = btrfs_file_extent_compression(leaf, item);
Yan Zhengd899e052008-10-30 14:25:28 -04005321 if (found_type == BTRFS_FILE_EXTENT_REG ||
5322 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04005323 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04005324 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04005325 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
5326 size_t size;
5327 size = btrfs_file_extent_inline_len(leaf, item);
5328 extent_end = (extent_start + size + root->sectorsize - 1) &
5329 ~((u64)root->sectorsize - 1);
5330 }
5331
5332 if (start >= extent_end) {
5333 path->slots[0]++;
5334 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
5335 ret = btrfs_next_leaf(root, path);
5336 if (ret < 0) {
5337 err = ret;
5338 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005339 }
Yan Zheng9036c102008-10-30 14:19:41 -04005340 if (ret > 0)
5341 goto not_found;
5342 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04005343 }
Yan Zheng9036c102008-10-30 14:19:41 -04005344 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5345 if (found_key.objectid != objectid ||
5346 found_key.type != BTRFS_EXTENT_DATA_KEY)
5347 goto not_found;
5348 if (start + len <= found_key.offset)
5349 goto not_found;
5350 em->start = start;
5351 em->len = found_key.offset - start;
5352 goto not_found_em;
5353 }
5354
Yan Zhengd899e052008-10-30 14:25:28 -04005355 if (found_type == BTRFS_FILE_EXTENT_REG ||
5356 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng9036c102008-10-30 14:19:41 -04005357 em->start = extent_start;
5358 em->len = extent_end - extent_start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005359 em->orig_start = extent_start -
5360 btrfs_file_extent_offset(leaf, item);
Chris Masondb945352007-10-15 16:15:53 -04005361 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
5362 if (bytenr == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04005363 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04005364 goto insert;
5365 }
Li Zefan261507a02010-12-17 14:21:50 +08005366 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04005367 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08005368 em->compress_type = compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04005369 em->block_start = bytenr;
5370 em->block_len = btrfs_file_extent_disk_num_bytes(leaf,
5371 item);
5372 } else {
5373 bytenr += btrfs_file_extent_offset(leaf, item);
5374 em->block_start = bytenr;
5375 em->block_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04005376 if (found_type == BTRFS_FILE_EXTENT_PREALLOC)
5377 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -04005378 }
Chris Masona52d9a82007-08-27 16:49:44 -04005379 goto insert;
5380 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04005381 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04005382 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04005383 size_t size;
5384 size_t extent_offset;
5385 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04005386
Chris Masona52d9a82007-08-27 16:49:44 -04005387 em->block_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04005388 if (!page || create) {
Yan689f9342007-10-29 11:41:07 -04005389 em->start = extent_start;
Yan Zheng9036c102008-10-30 14:19:41 -04005390 em->len = extent_end - extent_start;
Yan689f9342007-10-29 11:41:07 -04005391 goto out;
5392 }
5393
Yan Zheng9036c102008-10-30 14:19:41 -04005394 size = btrfs_file_extent_inline_len(leaf, item);
5395 extent_offset = page_offset(page) + pg_offset - extent_start;
Chris Mason70dec802008-01-29 09:59:12 -05005396 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04005397 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04005398 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05005399 em->len = (copy_size + root->sectorsize - 1) &
5400 ~((u64)root->sectorsize - 1);
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005401 em->orig_start = EXTENT_MAP_INLINE;
Li Zefan261507a02010-12-17 14:21:50 +08005402 if (compress_type) {
Chris Masonc8b97812008-10-29 14:49:59 -04005403 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08005404 em->compress_type = compress_type;
5405 }
Yan689f9342007-10-29 11:41:07 -04005406 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04005407 if (create == 0 && !PageUptodate(page)) {
Li Zefan261507a02010-12-17 14:21:50 +08005408 if (btrfs_file_extent_compression(leaf, item) !=
5409 BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04005410 ret = uncompress_inline(path, inode, page,
5411 pg_offset,
5412 extent_offset, item);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005413 BUG_ON(ret); /* -ENOMEM */
Chris Masonc8b97812008-10-29 14:49:59 -04005414 } else {
5415 map = kmap(page);
5416 read_extent_buffer(leaf, map + pg_offset, ptr,
5417 copy_size);
Chris Mason93c82d52009-09-11 12:36:29 -04005418 if (pg_offset + copy_size < PAGE_CACHE_SIZE) {
5419 memset(map + pg_offset + copy_size, 0,
5420 PAGE_CACHE_SIZE - pg_offset -
5421 copy_size);
5422 }
Chris Masonc8b97812008-10-29 14:49:59 -04005423 kunmap(page);
5424 }
Chris Mason179e29e2007-11-01 11:28:41 -04005425 flush_dcache_page(page);
5426 } else if (create && PageUptodate(page)) {
Jan Schmidt6bf7e082011-12-01 14:35:19 +01005427 BUG();
Chris Mason179e29e2007-11-01 11:28:41 -04005428 if (!trans) {
5429 kunmap(page);
5430 free_extent_map(em);
5431 em = NULL;
Chris Masonff5714c2011-05-28 07:00:39 -04005432
David Sterbab3b4aa72011-04-21 01:20:15 +02005433 btrfs_release_path(path);
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005434 trans = btrfs_join_transaction(root);
Chris Masonff5714c2011-05-28 07:00:39 -04005435
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005436 if (IS_ERR(trans))
5437 return ERR_CAST(trans);
Chris Mason179e29e2007-11-01 11:28:41 -04005438 goto again;
5439 }
Chris Masonc8b97812008-10-29 14:49:59 -04005440 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05005441 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04005442 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04005443 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04005444 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04005445 }
Chris Masond1310b22008-01-24 16:13:08 -05005446 set_extent_uptodate(io_tree, em->start,
Arne Jansen507903b2011-04-06 10:02:20 +00005447 extent_map_end(em) - 1, NULL, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04005448 goto insert;
5449 } else {
Chris Masond3977122009-01-05 21:25:51 -05005450 printk(KERN_ERR "btrfs unknown found_type %d\n", found_type);
Chris Masona52d9a82007-08-27 16:49:44 -04005451 WARN_ON(1);
5452 }
5453not_found:
5454 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05005455 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04005456not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04005457 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04005458 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04005459insert:
David Sterbab3b4aa72011-04-21 01:20:15 +02005460 btrfs_release_path(path);
Chris Masond1310b22008-01-24 16:13:08 -05005461 if (em->start > start || extent_map_end(em) <= start) {
Chris Masond3977122009-01-05 21:25:51 -05005462 printk(KERN_ERR "Btrfs: bad extent! em: [%llu %llu] passed "
5463 "[%llu %llu]\n", (unsigned long long)em->start,
5464 (unsigned long long)em->len,
5465 (unsigned long long)start,
5466 (unsigned long long)len);
Chris Masona52d9a82007-08-27 16:49:44 -04005467 err = -EIO;
5468 goto out;
5469 }
Chris Masond1310b22008-01-24 16:13:08 -05005470
5471 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04005472 write_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005473 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04005474 /* it is possible that someone inserted the extent into the tree
5475 * while we had the lock dropped. It is also possible that
5476 * an overlapping map exists in the tree
5477 */
Chris Masona52d9a82007-08-27 16:49:44 -04005478 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04005479 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005480
5481 ret = 0;
5482
Chris Mason3b951512008-04-17 11:29:12 -04005483 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04005484 if (existing && (existing->start > start ||
5485 existing->start + existing->len <= start)) {
5486 free_extent_map(existing);
5487 existing = NULL;
5488 }
Chris Mason3b951512008-04-17 11:29:12 -04005489 if (!existing) {
5490 existing = lookup_extent_mapping(em_tree, em->start,
5491 em->len);
5492 if (existing) {
5493 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005494 em, start,
5495 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04005496 free_extent_map(existing);
5497 if (err) {
5498 free_extent_map(em);
5499 em = NULL;
5500 }
5501 } else {
5502 err = -EIO;
Chris Mason3b951512008-04-17 11:29:12 -04005503 free_extent_map(em);
5504 em = NULL;
5505 }
5506 } else {
5507 free_extent_map(em);
5508 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005509 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04005510 }
Chris Masona52d9a82007-08-27 16:49:44 -04005511 }
Chris Mason890871b2009-09-02 16:24:52 -04005512 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005513out:
liubo1abe9b82011-03-24 11:18:59 +00005514
5515 trace_btrfs_get_extent(root, em);
5516
Chris Masonf4219502008-07-22 11:18:09 -04005517 if (path)
5518 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04005519 if (trans) {
5520 ret = btrfs_end_transaction(trans, root);
Chris Masond3977122009-01-05 21:25:51 -05005521 if (!err)
Chris Masona52d9a82007-08-27 16:49:44 -04005522 err = ret;
5523 }
Chris Masona52d9a82007-08-27 16:49:44 -04005524 if (err) {
5525 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04005526 return ERR_PTR(err);
5527 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005528 BUG_ON(!em); /* Error is always set */
Chris Masona52d9a82007-08-27 16:49:44 -04005529 return em;
5530}
5531
Chris Masonec29ed52011-02-23 16:23:20 -05005532struct extent_map *btrfs_get_extent_fiemap(struct inode *inode, struct page *page,
5533 size_t pg_offset, u64 start, u64 len,
5534 int create)
5535{
5536 struct extent_map *em;
5537 struct extent_map *hole_em = NULL;
5538 u64 range_start = start;
5539 u64 end;
5540 u64 found;
5541 u64 found_end;
5542 int err = 0;
5543
5544 em = btrfs_get_extent(inode, page, pg_offset, start, len, create);
5545 if (IS_ERR(em))
5546 return em;
5547 if (em) {
5548 /*
5549 * if our em maps to a hole, there might
5550 * actually be delalloc bytes behind it
5551 */
5552 if (em->block_start != EXTENT_MAP_HOLE)
5553 return em;
5554 else
5555 hole_em = em;
5556 }
5557
5558 /* check to see if we've wrapped (len == -1 or similar) */
5559 end = start + len;
5560 if (end < start)
5561 end = (u64)-1;
5562 else
5563 end -= 1;
5564
5565 em = NULL;
5566
5567 /* ok, we didn't find anything, lets look for delalloc */
5568 found = count_range_bits(&BTRFS_I(inode)->io_tree, &range_start,
5569 end, len, EXTENT_DELALLOC, 1);
5570 found_end = range_start + found;
5571 if (found_end < range_start)
5572 found_end = (u64)-1;
5573
5574 /*
5575 * we didn't find anything useful, return
5576 * the original results from get_extent()
5577 */
5578 if (range_start > end || found_end <= start) {
5579 em = hole_em;
5580 hole_em = NULL;
5581 goto out;
5582 }
5583
5584 /* adjust the range_start to make sure it doesn't
5585 * go backwards from the start they passed in
5586 */
5587 range_start = max(start,range_start);
5588 found = found_end - range_start;
5589
5590 if (found > 0) {
5591 u64 hole_start = start;
5592 u64 hole_len = len;
5593
David Sterba172ddd62011-04-21 00:48:27 +02005594 em = alloc_extent_map();
Chris Masonec29ed52011-02-23 16:23:20 -05005595 if (!em) {
5596 err = -ENOMEM;
5597 goto out;
5598 }
5599 /*
5600 * when btrfs_get_extent can't find anything it
5601 * returns one huge hole
5602 *
5603 * make sure what it found really fits our range, and
5604 * adjust to make sure it is based on the start from
5605 * the caller
5606 */
5607 if (hole_em) {
5608 u64 calc_end = extent_map_end(hole_em);
5609
5610 if (calc_end <= start || (hole_em->start > end)) {
5611 free_extent_map(hole_em);
5612 hole_em = NULL;
5613 } else {
5614 hole_start = max(hole_em->start, start);
5615 hole_len = calc_end - hole_start;
5616 }
5617 }
5618 em->bdev = NULL;
5619 if (hole_em && range_start > hole_start) {
5620 /* our hole starts before our delalloc, so we
5621 * have to return just the parts of the hole
5622 * that go until the delalloc starts
5623 */
5624 em->len = min(hole_len,
5625 range_start - hole_start);
5626 em->start = hole_start;
5627 em->orig_start = hole_start;
5628 /*
5629 * don't adjust block start at all,
5630 * it is fixed at EXTENT_MAP_HOLE
5631 */
5632 em->block_start = hole_em->block_start;
5633 em->block_len = hole_len;
5634 } else {
5635 em->start = range_start;
5636 em->len = found;
5637 em->orig_start = range_start;
5638 em->block_start = EXTENT_MAP_DELALLOC;
5639 em->block_len = found;
5640 }
5641 } else if (hole_em) {
5642 return hole_em;
5643 }
5644out:
5645
5646 free_extent_map(hole_em);
5647 if (err) {
5648 free_extent_map(em);
5649 return ERR_PTR(err);
5650 }
5651 return em;
5652}
5653
Josef Bacik4b46fce2010-05-23 11:00:55 -04005654static struct extent_map *btrfs_new_extent_direct(struct inode *inode,
Josef Bacik16d299a2011-04-06 14:53:07 -04005655 struct extent_map *em,
Josef Bacik4b46fce2010-05-23 11:00:55 -04005656 u64 start, u64 len)
5657{
5658 struct btrfs_root *root = BTRFS_I(inode)->root;
5659 struct btrfs_trans_handle *trans;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005660 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
5661 struct btrfs_key ins;
5662 u64 alloc_hint;
5663 int ret;
Josef Bacik16d299a2011-04-06 14:53:07 -04005664 bool insert = false;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005665
Josef Bacik16d299a2011-04-06 14:53:07 -04005666 /*
5667 * Ok if the extent map we looked up is a hole and is for the exact
5668 * range we want, there is no reason to allocate a new one, however if
5669 * it is not right then we need to free this one and drop the cache for
5670 * our range.
5671 */
5672 if (em->block_start != EXTENT_MAP_HOLE || em->start != start ||
5673 em->len != len) {
5674 free_extent_map(em);
5675 em = NULL;
5676 insert = true;
5677 btrfs_drop_extent_cache(inode, start, start + len - 1, 0);
5678 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005679
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005680 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005681 if (IS_ERR(trans))
5682 return ERR_CAST(trans);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005683
Chris Mason4cb53002011-05-24 15:35:30 -04005684 if (start <= BTRFS_I(inode)->disk_i_size && len < 64 * 1024)
5685 btrfs_add_inode_defrag(trans, inode);
5686
Josef Bacik4b46fce2010-05-23 11:00:55 -04005687 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
5688
5689 alloc_hint = get_extent_allocation_hint(inode, start, len);
5690 ret = btrfs_reserve_extent(trans, root, len, root->sectorsize, 0,
Josef Bacik81c9ad22012-01-18 10:56:06 -05005691 alloc_hint, &ins, 1);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005692 if (ret) {
5693 em = ERR_PTR(ret);
5694 goto out;
5695 }
5696
Josef Bacik4b46fce2010-05-23 11:00:55 -04005697 if (!em) {
David Sterba172ddd62011-04-21 00:48:27 +02005698 em = alloc_extent_map();
Josef Bacik16d299a2011-04-06 14:53:07 -04005699 if (!em) {
5700 em = ERR_PTR(-ENOMEM);
5701 goto out;
5702 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005703 }
5704
5705 em->start = start;
5706 em->orig_start = em->start;
5707 em->len = ins.offset;
5708
5709 em->block_start = ins.objectid;
5710 em->block_len = ins.offset;
5711 em->bdev = root->fs_info->fs_devices->latest_bdev;
Josef Bacik16d299a2011-04-06 14:53:07 -04005712
5713 /*
5714 * We need to do this because if we're using the original em we searched
5715 * for, we could have EXTENT_FLAG_VACANCY set, and we don't want that.
5716 */
5717 em->flags = 0;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005718 set_bit(EXTENT_FLAG_PINNED, &em->flags);
5719
Josef Bacik16d299a2011-04-06 14:53:07 -04005720 while (insert) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04005721 write_lock(&em_tree->lock);
5722 ret = add_extent_mapping(em_tree, em);
5723 write_unlock(&em_tree->lock);
5724 if (ret != -EEXIST)
5725 break;
5726 btrfs_drop_extent_cache(inode, start, start + em->len - 1, 0);
5727 }
5728
5729 ret = btrfs_add_ordered_extent_dio(inode, start, ins.objectid,
5730 ins.offset, ins.offset, 0);
5731 if (ret) {
5732 btrfs_free_reserved_extent(root, ins.objectid, ins.offset);
5733 em = ERR_PTR(ret);
5734 }
5735out:
5736 btrfs_end_transaction(trans, root);
5737 return em;
5738}
5739
Chris Mason46bfbb52010-05-26 11:04:10 -04005740/*
5741 * returns 1 when the nocow is safe, < 1 on error, 0 if the
5742 * block must be cow'd
5743 */
5744static noinline int can_nocow_odirect(struct btrfs_trans_handle *trans,
5745 struct inode *inode, u64 offset, u64 len)
5746{
5747 struct btrfs_path *path;
5748 int ret;
5749 struct extent_buffer *leaf;
5750 struct btrfs_root *root = BTRFS_I(inode)->root;
5751 struct btrfs_file_extent_item *fi;
5752 struct btrfs_key key;
5753 u64 disk_bytenr;
5754 u64 backref_offset;
5755 u64 extent_end;
5756 u64 num_bytes;
5757 int slot;
5758 int found_type;
5759
5760 path = btrfs_alloc_path();
5761 if (!path)
5762 return -ENOMEM;
5763
Li Zefan33345d012011-04-20 10:31:50 +08005764 ret = btrfs_lookup_file_extent(trans, root, path, btrfs_ino(inode),
Chris Mason46bfbb52010-05-26 11:04:10 -04005765 offset, 0);
5766 if (ret < 0)
5767 goto out;
5768
5769 slot = path->slots[0];
5770 if (ret == 1) {
5771 if (slot == 0) {
5772 /* can't find the item, must cow */
5773 ret = 0;
5774 goto out;
5775 }
5776 slot--;
5777 }
5778 ret = 0;
5779 leaf = path->nodes[0];
5780 btrfs_item_key_to_cpu(leaf, &key, slot);
Li Zefan33345d012011-04-20 10:31:50 +08005781 if (key.objectid != btrfs_ino(inode) ||
Chris Mason46bfbb52010-05-26 11:04:10 -04005782 key.type != BTRFS_EXTENT_DATA_KEY) {
5783 /* not our file or wrong item type, must cow */
5784 goto out;
5785 }
5786
5787 if (key.offset > offset) {
5788 /* Wrong offset, must cow */
5789 goto out;
5790 }
5791
5792 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
5793 found_type = btrfs_file_extent_type(leaf, fi);
5794 if (found_type != BTRFS_FILE_EXTENT_REG &&
5795 found_type != BTRFS_FILE_EXTENT_PREALLOC) {
5796 /* not a regular extent, must cow */
5797 goto out;
5798 }
5799 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
5800 backref_offset = btrfs_file_extent_offset(leaf, fi);
5801
5802 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
5803 if (extent_end < offset + len) {
5804 /* extent doesn't include our full range, must cow */
5805 goto out;
5806 }
5807
5808 if (btrfs_extent_readonly(root, disk_bytenr))
5809 goto out;
5810
5811 /*
5812 * look for other files referencing this extent, if we
5813 * find any we must cow
5814 */
Li Zefan33345d012011-04-20 10:31:50 +08005815 if (btrfs_cross_ref_exist(trans, root, btrfs_ino(inode),
Chris Mason46bfbb52010-05-26 11:04:10 -04005816 key.offset - backref_offset, disk_bytenr))
5817 goto out;
5818
5819 /*
5820 * adjust disk_bytenr and num_bytes to cover just the bytes
5821 * in this extent we are about to write. If there
5822 * are any csums in that range we have to cow in order
5823 * to keep the csums correct
5824 */
5825 disk_bytenr += backref_offset;
5826 disk_bytenr += offset - key.offset;
5827 num_bytes = min(offset + len, extent_end) - offset;
5828 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
5829 goto out;
5830 /*
5831 * all of the above have passed, it is safe to overwrite this extent
5832 * without cow
5833 */
5834 ret = 1;
5835out:
5836 btrfs_free_path(path);
5837 return ret;
5838}
5839
Josef Bacikeb838e72012-07-31 16:28:48 -04005840static int lock_extent_direct(struct inode *inode, u64 lockstart, u64 lockend,
5841 struct extent_state **cached_state, int writing)
5842{
5843 struct btrfs_ordered_extent *ordered;
5844 int ret = 0;
5845
5846 while (1) {
5847 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
5848 0, cached_state);
5849 /*
5850 * We're concerned with the entire range that we're going to be
5851 * doing DIO to, so we need to make sure theres no ordered
5852 * extents in this range.
5853 */
5854 ordered = btrfs_lookup_ordered_range(inode, lockstart,
5855 lockend - lockstart + 1);
5856
5857 /*
5858 * We need to make sure there are no buffered pages in this
5859 * range either, we could have raced between the invalidate in
5860 * generic_file_direct_write and locking the extent. The
5861 * invalidate needs to happen so that reads after a write do not
5862 * get stale data.
5863 */
5864 if (!ordered && (!writing ||
5865 !test_range_bit(&BTRFS_I(inode)->io_tree,
5866 lockstart, lockend, EXTENT_UPTODATE, 0,
5867 *cached_state)))
5868 break;
5869
5870 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
5871 cached_state, GFP_NOFS);
5872
5873 if (ordered) {
5874 btrfs_start_ordered_extent(inode, ordered, 1);
5875 btrfs_put_ordered_extent(ordered);
5876 } else {
5877 /* Screw you mmap */
5878 ret = filemap_write_and_wait_range(inode->i_mapping,
5879 lockstart,
5880 lockend);
5881 if (ret)
5882 break;
5883
5884 /*
5885 * If we found a page that couldn't be invalidated just
5886 * fall back to buffered.
5887 */
5888 ret = invalidate_inode_pages2_range(inode->i_mapping,
5889 lockstart >> PAGE_CACHE_SHIFT,
5890 lockend >> PAGE_CACHE_SHIFT);
5891 if (ret)
5892 break;
5893 }
5894
5895 cond_resched();
5896 }
5897
5898 return ret;
5899}
5900
Josef Bacik69ffb542012-09-11 15:40:07 -04005901static struct extent_map *create_pinned_em(struct inode *inode, u64 start,
5902 u64 len, u64 orig_start,
5903 u64 block_start, u64 block_len,
5904 int type)
5905{
5906 struct extent_map_tree *em_tree;
5907 struct extent_map *em;
5908 struct btrfs_root *root = BTRFS_I(inode)->root;
5909 int ret;
5910
5911 em_tree = &BTRFS_I(inode)->extent_tree;
5912 em = alloc_extent_map();
5913 if (!em)
5914 return ERR_PTR(-ENOMEM);
5915
5916 em->start = start;
5917 em->orig_start = orig_start;
5918 em->len = len;
5919 em->block_len = block_len;
5920 em->block_start = block_start;
5921 em->bdev = root->fs_info->fs_devices->latest_bdev;
5922 set_bit(EXTENT_FLAG_PINNED, &em->flags);
5923 if (type == BTRFS_ORDERED_PREALLOC)
5924 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
5925
5926 do {
5927 btrfs_drop_extent_cache(inode, em->start,
5928 em->start + em->len - 1, 0);
5929 write_lock(&em_tree->lock);
5930 ret = add_extent_mapping(em_tree, em);
5931 write_unlock(&em_tree->lock);
5932 } while (ret == -EEXIST);
5933
5934 if (ret) {
5935 free_extent_map(em);
5936 return ERR_PTR(ret);
5937 }
5938
5939 return em;
5940}
5941
5942
Josef Bacik4b46fce2010-05-23 11:00:55 -04005943static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock,
5944 struct buffer_head *bh_result, int create)
5945{
5946 struct extent_map *em;
5947 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikeb838e72012-07-31 16:28:48 -04005948 struct extent_state *cached_state = NULL;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005949 u64 start = iblock << inode->i_blkbits;
Josef Bacikeb838e72012-07-31 16:28:48 -04005950 u64 lockstart, lockend;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005951 u64 len = bh_result->b_size;
Chris Mason46bfbb52010-05-26 11:04:10 -04005952 struct btrfs_trans_handle *trans;
Josef Bacikeb838e72012-07-31 16:28:48 -04005953 int unlock_bits = EXTENT_LOCKED;
5954 int ret;
5955
Josef Bacikeb838e72012-07-31 16:28:48 -04005956 if (create) {
5957 ret = btrfs_delalloc_reserve_space(inode, len);
5958 if (ret)
5959 return ret;
5960 unlock_bits |= EXTENT_DELALLOC | EXTENT_DIRTY;
Josef Bacikc3298612012-08-03 16:49:19 -04005961 } else {
5962 len = min_t(u64, len, root->sectorsize);
Josef Bacikeb838e72012-07-31 16:28:48 -04005963 }
5964
Josef Bacikc3298612012-08-03 16:49:19 -04005965 lockstart = start;
5966 lockend = start + len - 1;
5967
Josef Bacikeb838e72012-07-31 16:28:48 -04005968 /*
5969 * If this errors out it's because we couldn't invalidate pagecache for
5970 * this range and we need to fallback to buffered.
5971 */
5972 if (lock_extent_direct(inode, lockstart, lockend, &cached_state, create))
5973 return -ENOTBLK;
5974
5975 if (create) {
5976 ret = set_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
5977 lockend, EXTENT_DELALLOC, NULL,
5978 &cached_state, GFP_NOFS);
5979 if (ret)
5980 goto unlock_err;
5981 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005982
5983 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
Josef Bacikeb838e72012-07-31 16:28:48 -04005984 if (IS_ERR(em)) {
5985 ret = PTR_ERR(em);
5986 goto unlock_err;
5987 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005988
5989 /*
5990 * Ok for INLINE and COMPRESSED extents we need to fallback on buffered
5991 * io. INLINE is special, and we could probably kludge it in here, but
5992 * it's still buffered so for safety lets just fall back to the generic
5993 * buffered path.
5994 *
5995 * For COMPRESSED we _have_ to read the entire extent in so we can
5996 * decompress it, so there will be buffering required no matter what we
5997 * do, so go ahead and fallback to buffered.
5998 *
5999 * We return -ENOTBLK because thats what makes DIO go ahead and go back
6000 * to buffered IO. Don't blame me, this is the price we pay for using
6001 * the generic code.
6002 */
6003 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) ||
6004 em->block_start == EXTENT_MAP_INLINE) {
6005 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04006006 ret = -ENOTBLK;
6007 goto unlock_err;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006008 }
6009
6010 /* Just a good old fashioned hole, return */
6011 if (!create && (em->block_start == EXTENT_MAP_HOLE ||
6012 test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
6013 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04006014 ret = 0;
6015 goto unlock_err;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006016 }
6017
6018 /*
6019 * We don't allocate a new extent in the following cases
6020 *
6021 * 1) The inode is marked as NODATACOW. In this case we'll just use the
6022 * existing extent.
6023 * 2) The extent is marked as PREALLOC. We're good to go here and can
6024 * just use the extent.
6025 *
6026 */
Chris Mason46bfbb52010-05-26 11:04:10 -04006027 if (!create) {
Josef Bacikeb838e72012-07-31 16:28:48 -04006028 len = min(len, em->len - (start - em->start));
6029 lockstart = start + len;
6030 goto unlock;
Chris Mason46bfbb52010-05-26 11:04:10 -04006031 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04006032
6033 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
6034 ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
6035 em->block_start != EXTENT_MAP_HOLE)) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04006036 int type;
6037 int ret;
Chris Mason46bfbb52010-05-26 11:04:10 -04006038 u64 block_start;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006039
6040 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
6041 type = BTRFS_ORDERED_PREALLOC;
6042 else
6043 type = BTRFS_ORDERED_NOCOW;
Chris Mason46bfbb52010-05-26 11:04:10 -04006044 len = min(len, em->len - (start - em->start));
Josef Bacik4b46fce2010-05-23 11:00:55 -04006045 block_start = em->block_start + (start - em->start);
Chris Mason46bfbb52010-05-26 11:04:10 -04006046
6047 /*
6048 * we're not going to log anything, but we do need
6049 * to make sure the current transaction stays open
6050 * while we look for nocow cross refs
6051 */
Josef Bacik7a7eaa42011-04-13 12:54:33 -04006052 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00006053 if (IS_ERR(trans))
Chris Mason46bfbb52010-05-26 11:04:10 -04006054 goto must_cow;
6055
6056 if (can_nocow_odirect(trans, inode, start, len) == 1) {
Josef Bacik69ffb542012-09-11 15:40:07 -04006057 u64 orig_start = em->start;
6058
6059 if (type == BTRFS_ORDERED_PREALLOC) {
6060 free_extent_map(em);
6061 em = create_pinned_em(inode, start, len,
6062 orig_start,
6063 block_start, len, type);
6064 if (IS_ERR(em)) {
6065 btrfs_end_transaction(trans, root);
6066 goto unlock_err;
6067 }
6068 }
6069
Chris Mason46bfbb52010-05-26 11:04:10 -04006070 ret = btrfs_add_ordered_extent_dio(inode, start,
6071 block_start, len, len, type);
6072 btrfs_end_transaction(trans, root);
6073 if (ret) {
6074 free_extent_map(em);
Josef Bacikeb838e72012-07-31 16:28:48 -04006075 goto unlock_err;
Chris Mason46bfbb52010-05-26 11:04:10 -04006076 }
6077 goto unlock;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006078 }
Chris Mason46bfbb52010-05-26 11:04:10 -04006079 btrfs_end_transaction(trans, root);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006080 }
Chris Mason46bfbb52010-05-26 11:04:10 -04006081must_cow:
6082 /*
6083 * this will cow the extent, reset the len in case we changed
6084 * it above
6085 */
6086 len = bh_result->b_size;
Josef Bacik16d299a2011-04-06 14:53:07 -04006087 em = btrfs_new_extent_direct(inode, em, start, len);
Josef Bacikeb838e72012-07-31 16:28:48 -04006088 if (IS_ERR(em)) {
6089 ret = PTR_ERR(em);
6090 goto unlock_err;
6091 }
Chris Mason46bfbb52010-05-26 11:04:10 -04006092 len = min(len, em->len - (start - em->start));
6093unlock:
Josef Bacik4b46fce2010-05-23 11:00:55 -04006094 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
6095 inode->i_blkbits;
Chris Mason46bfbb52010-05-26 11:04:10 -04006096 bh_result->b_size = len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006097 bh_result->b_bdev = em->bdev;
6098 set_buffer_mapped(bh_result);
Josef Bacikc3473e82012-06-19 10:59:00 -04006099 if (create) {
6100 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
6101 set_buffer_new(bh_result);
6102
6103 /*
6104 * Need to update the i_size under the extent lock so buffered
6105 * readers will get the updated i_size when we unlock.
6106 */
6107 if (start + len > i_size_read(inode))
6108 i_size_write(inode, start + len);
6109 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04006110
Josef Bacikeb838e72012-07-31 16:28:48 -04006111 /*
6112 * In the case of write we need to clear and unlock the entire range,
6113 * in the case of read we need to unlock only the end area that we
6114 * aren't using if there is any left over space.
6115 */
Liu Bo24c03fa2012-08-22 20:10:38 -06006116 if (lockstart < lockend) {
6117 if (create && len < lockend - lockstart) {
6118 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
Liu Bo9e8a4a82012-09-05 19:10:51 -06006119 lockstart + len - 1,
6120 unlock_bits | EXTENT_DEFRAG, 1, 0,
Liu Bo24c03fa2012-08-22 20:10:38 -06006121 &cached_state, GFP_NOFS);
6122 /*
6123 * Beside unlock, we also need to cleanup reserved space
6124 * for the left range by attaching EXTENT_DO_ACCOUNTING.
6125 */
6126 clear_extent_bit(&BTRFS_I(inode)->io_tree,
6127 lockstart + len, lockend,
Liu Bo9e8a4a82012-09-05 19:10:51 -06006128 unlock_bits | EXTENT_DO_ACCOUNTING |
6129 EXTENT_DEFRAG, 1, 0, NULL, GFP_NOFS);
Liu Bo24c03fa2012-08-22 20:10:38 -06006130 } else {
6131 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
6132 lockend, unlock_bits, 1, 0,
6133 &cached_state, GFP_NOFS);
6134 }
6135 } else {
Josef Bacikeb838e72012-07-31 16:28:48 -04006136 free_extent_state(cached_state);
Liu Bo24c03fa2012-08-22 20:10:38 -06006137 }
Josef Bacikeb838e72012-07-31 16:28:48 -04006138
Josef Bacik4b46fce2010-05-23 11:00:55 -04006139 free_extent_map(em);
6140
6141 return 0;
Josef Bacikeb838e72012-07-31 16:28:48 -04006142
6143unlock_err:
6144 if (create)
6145 unlock_bits |= EXTENT_DO_ACCOUNTING;
6146
6147 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6148 unlock_bits, 1, 0, &cached_state, GFP_NOFS);
6149 return ret;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006150}
6151
6152struct btrfs_dio_private {
6153 struct inode *inode;
6154 u64 logical_offset;
6155 u64 disk_bytenr;
6156 u64 bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006157 void *private;
Miao Xiee65e1532010-11-22 03:04:43 +00006158
6159 /* number of bios pending for this dio */
6160 atomic_t pending_bios;
6161
6162 /* IO errors */
6163 int errors;
6164
6165 struct bio *orig_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006166};
6167
6168static void btrfs_endio_direct_read(struct bio *bio, int err)
6169{
Miao Xiee65e1532010-11-22 03:04:43 +00006170 struct btrfs_dio_private *dip = bio->bi_private;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006171 struct bio_vec *bvec_end = bio->bi_io_vec + bio->bi_vcnt - 1;
6172 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006173 struct inode *inode = dip->inode;
6174 struct btrfs_root *root = BTRFS_I(inode)->root;
6175 u64 start;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006176
6177 start = dip->logical_offset;
6178 do {
6179 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)) {
6180 struct page *page = bvec->bv_page;
6181 char *kaddr;
6182 u32 csum = ~(u32)0;
Josef Bacikc3298612012-08-03 16:49:19 -04006183 u64 private = ~(u32)0;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006184 unsigned long flags;
6185
Josef Bacikc3298612012-08-03 16:49:19 -04006186 if (get_state_private(&BTRFS_I(inode)->io_tree,
6187 start, &private))
6188 goto failed;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006189 local_irq_save(flags);
Cong Wang7ac687d2011-11-25 23:14:28 +08006190 kaddr = kmap_atomic(page);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006191 csum = btrfs_csum_data(root, kaddr + bvec->bv_offset,
6192 csum, bvec->bv_len);
6193 btrfs_csum_final(csum, (char *)&csum);
Cong Wang7ac687d2011-11-25 23:14:28 +08006194 kunmap_atomic(kaddr);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006195 local_irq_restore(flags);
6196
6197 flush_dcache_page(bvec->bv_page);
Josef Bacikc3298612012-08-03 16:49:19 -04006198 if (csum != private) {
6199failed:
Li Zefan33345d012011-04-20 10:31:50 +08006200 printk(KERN_ERR "btrfs csum failed ino %llu off"
Josef Bacik4b46fce2010-05-23 11:00:55 -04006201 " %llu csum %u private %u\n",
Li Zefan33345d012011-04-20 10:31:50 +08006202 (unsigned long long)btrfs_ino(inode),
6203 (unsigned long long)start,
Josef Bacikc3298612012-08-03 16:49:19 -04006204 csum, (unsigned)private);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006205 err = -EIO;
6206 }
6207 }
6208
6209 start += bvec->bv_len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006210 bvec++;
6211 } while (bvec <= bvec_end);
6212
6213 unlock_extent(&BTRFS_I(inode)->io_tree, dip->logical_offset,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006214 dip->logical_offset + dip->bytes - 1);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006215 bio->bi_private = dip->private;
6216
Josef Bacik4b46fce2010-05-23 11:00:55 -04006217 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04006218
6219 /* If we had a csum failure make sure to clear the uptodate flag */
6220 if (err)
6221 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006222 dio_end_io(bio, err);
6223}
6224
6225static void btrfs_endio_direct_write(struct bio *bio, int err)
6226{
6227 struct btrfs_dio_private *dip = bio->bi_private;
6228 struct inode *inode = dip->inode;
6229 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006230 struct btrfs_ordered_extent *ordered = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05006231 u64 ordered_offset = dip->logical_offset;
6232 u64 ordered_bytes = dip->bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006233 int ret;
6234
6235 if (err)
6236 goto out_done;
Chris Mason163cf092010-11-28 19:56:33 -05006237again:
6238 ret = btrfs_dec_test_first_ordered_pending(inode, &ordered,
6239 &ordered_offset,
Josef Bacik5fd02042012-05-02 14:00:54 -04006240 ordered_bytes, !err);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006241 if (!ret)
Chris Mason163cf092010-11-28 19:56:33 -05006242 goto out_test;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006243
Josef Bacik5fd02042012-05-02 14:00:54 -04006244 ordered->work.func = finish_ordered_fn;
6245 ordered->work.flags = 0;
6246 btrfs_queue_worker(&root->fs_info->endio_write_workers,
6247 &ordered->work);
Chris Mason163cf092010-11-28 19:56:33 -05006248out_test:
6249 /*
6250 * our bio might span multiple ordered extents. If we haven't
6251 * completed the accounting for the whole dio, go back and try again
6252 */
6253 if (ordered_offset < dip->logical_offset + dip->bytes) {
6254 ordered_bytes = dip->logical_offset + dip->bytes -
6255 ordered_offset;
Josef Bacik5fd02042012-05-02 14:00:54 -04006256 ordered = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05006257 goto again;
6258 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04006259out_done:
6260 bio->bi_private = dip->private;
6261
Josef Bacik4b46fce2010-05-23 11:00:55 -04006262 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04006263
6264 /* If we had an error make sure to clear the uptodate flag */
6265 if (err)
6266 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006267 dio_end_io(bio, err);
6268}
6269
Chris Masoneaf25d92010-05-25 09:48:28 -04006270static int __btrfs_submit_bio_start_direct_io(struct inode *inode, int rw,
6271 struct bio *bio, int mirror_num,
6272 unsigned long bio_flags, u64 offset)
6273{
6274 int ret;
6275 struct btrfs_root *root = BTRFS_I(inode)->root;
6276 ret = btrfs_csum_one_bio(root, inode, bio, offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006277 BUG_ON(ret); /* -ENOMEM */
Chris Masoneaf25d92010-05-25 09:48:28 -04006278 return 0;
6279}
6280
Miao Xiee65e1532010-11-22 03:04:43 +00006281static void btrfs_end_dio_bio(struct bio *bio, int err)
6282{
6283 struct btrfs_dio_private *dip = bio->bi_private;
6284
6285 if (err) {
Li Zefan33345d012011-04-20 10:31:50 +08006286 printk(KERN_ERR "btrfs direct IO failed ino %llu rw %lu "
Jan Beulich3dd14622010-12-07 14:54:09 +00006287 "sector %#Lx len %u err no %d\n",
Li Zefan33345d012011-04-20 10:31:50 +08006288 (unsigned long long)btrfs_ino(dip->inode), bio->bi_rw,
Jan Beulich3dd14622010-12-07 14:54:09 +00006289 (unsigned long long)bio->bi_sector, bio->bi_size, err);
Miao Xiee65e1532010-11-22 03:04:43 +00006290 dip->errors = 1;
6291
6292 /*
6293 * before atomic variable goto zero, we must make sure
6294 * dip->errors is perceived to be set.
6295 */
6296 smp_mb__before_atomic_dec();
6297 }
6298
6299 /* if there are more bios still pending for this dio, just exit */
6300 if (!atomic_dec_and_test(&dip->pending_bios))
6301 goto out;
6302
6303 if (dip->errors)
6304 bio_io_error(dip->orig_bio);
6305 else {
6306 set_bit(BIO_UPTODATE, &dip->orig_bio->bi_flags);
6307 bio_endio(dip->orig_bio, 0);
6308 }
6309out:
6310 bio_put(bio);
6311}
6312
6313static struct bio *btrfs_dio_bio_alloc(struct block_device *bdev,
6314 u64 first_sector, gfp_t gfp_flags)
6315{
6316 int nr_vecs = bio_get_nr_vecs(bdev);
6317 return btrfs_bio_alloc(bdev, first_sector, nr_vecs, gfp_flags);
6318}
6319
6320static inline int __btrfs_submit_dio_bio(struct bio *bio, struct inode *inode,
6321 int rw, u64 file_offset, int skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04006322 int async_submit)
Miao Xiee65e1532010-11-22 03:04:43 +00006323{
6324 int write = rw & REQ_WRITE;
6325 struct btrfs_root *root = BTRFS_I(inode)->root;
6326 int ret;
6327
6328 bio_get(bio);
Josef Bacik5fd02042012-05-02 14:00:54 -04006329
6330 if (!write) {
6331 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
6332 if (ret)
6333 goto err;
6334 }
Miao Xiee65e1532010-11-22 03:04:43 +00006335
Josef Bacik1ae39932011-04-06 14:41:34 -04006336 if (skip_sum)
6337 goto map;
6338
6339 if (write && async_submit) {
Miao Xiee65e1532010-11-22 03:04:43 +00006340 ret = btrfs_wq_submit_bio(root->fs_info,
6341 inode, rw, bio, 0, 0,
6342 file_offset,
6343 __btrfs_submit_bio_start_direct_io,
6344 __btrfs_submit_bio_done);
6345 goto err;
Josef Bacik1ae39932011-04-06 14:41:34 -04006346 } else if (write) {
6347 /*
6348 * If we aren't doing async submit, calculate the csum of the
6349 * bio now.
6350 */
6351 ret = btrfs_csum_one_bio(root, inode, bio, file_offset, 1);
6352 if (ret)
6353 goto err;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00006354 } else if (!skip_sum) {
Josef Bacikc3298612012-08-03 16:49:19 -04006355 ret = btrfs_lookup_bio_sums_dio(root, inode, bio, file_offset);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00006356 if (ret)
6357 goto err;
6358 }
Miao Xiee65e1532010-11-22 03:04:43 +00006359
Josef Bacik1ae39932011-04-06 14:41:34 -04006360map:
6361 ret = btrfs_map_bio(root, rw, bio, 0, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00006362err:
6363 bio_put(bio);
6364 return ret;
6365}
6366
6367static int btrfs_submit_direct_hook(int rw, struct btrfs_dio_private *dip,
6368 int skip_sum)
6369{
6370 struct inode *inode = dip->inode;
6371 struct btrfs_root *root = BTRFS_I(inode)->root;
6372 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
6373 struct bio *bio;
6374 struct bio *orig_bio = dip->orig_bio;
6375 struct bio_vec *bvec = orig_bio->bi_io_vec;
6376 u64 start_sector = orig_bio->bi_sector;
6377 u64 file_offset = dip->logical_offset;
6378 u64 submit_len = 0;
6379 u64 map_length;
6380 int nr_pages = 0;
Miao Xiee65e1532010-11-22 03:04:43 +00006381 int ret = 0;
Josef Bacik1ae39932011-04-06 14:41:34 -04006382 int async_submit = 0;
Miao Xiee65e1532010-11-22 03:04:43 +00006383
Miao Xiee65e1532010-11-22 03:04:43 +00006384 map_length = orig_bio->bi_size;
6385 ret = btrfs_map_block(map_tree, READ, start_sector << 9,
6386 &map_length, NULL, 0);
6387 if (ret) {
Josef Bacik64728bb2011-04-25 19:43:52 -04006388 bio_put(orig_bio);
Miao Xiee65e1532010-11-22 03:04:43 +00006389 return -EIO;
6390 }
6391
Josef Bacik02f57c72011-04-06 14:25:44 -04006392 if (map_length >= orig_bio->bi_size) {
6393 bio = orig_bio;
6394 goto submit;
6395 }
6396
Josef Bacik1ae39932011-04-06 14:41:34 -04006397 async_submit = 1;
Josef Bacik02f57c72011-04-06 14:25:44 -04006398 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev, start_sector, GFP_NOFS);
6399 if (!bio)
6400 return -ENOMEM;
6401 bio->bi_private = dip;
6402 bio->bi_end_io = btrfs_end_dio_bio;
6403 atomic_inc(&dip->pending_bios);
6404
Miao Xiee65e1532010-11-22 03:04:43 +00006405 while (bvec <= (orig_bio->bi_io_vec + orig_bio->bi_vcnt - 1)) {
6406 if (unlikely(map_length < submit_len + bvec->bv_len ||
6407 bio_add_page(bio, bvec->bv_page, bvec->bv_len,
6408 bvec->bv_offset) < bvec->bv_len)) {
6409 /*
6410 * inc the count before we submit the bio so
6411 * we know the end IO handler won't happen before
6412 * we inc the count. Otherwise, the dip might get freed
6413 * before we're done setting it up
6414 */
6415 atomic_inc(&dip->pending_bios);
6416 ret = __btrfs_submit_dio_bio(bio, inode, rw,
6417 file_offset, skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04006418 async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00006419 if (ret) {
6420 bio_put(bio);
6421 atomic_dec(&dip->pending_bios);
6422 goto out_err;
6423 }
6424
Miao Xiee65e1532010-11-22 03:04:43 +00006425 start_sector += submit_len >> 9;
6426 file_offset += submit_len;
6427
6428 submit_len = 0;
6429 nr_pages = 0;
6430
6431 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev,
6432 start_sector, GFP_NOFS);
6433 if (!bio)
6434 goto out_err;
6435 bio->bi_private = dip;
6436 bio->bi_end_io = btrfs_end_dio_bio;
6437
6438 map_length = orig_bio->bi_size;
6439 ret = btrfs_map_block(map_tree, READ, start_sector << 9,
6440 &map_length, NULL, 0);
6441 if (ret) {
6442 bio_put(bio);
6443 goto out_err;
6444 }
6445 } else {
6446 submit_len += bvec->bv_len;
6447 nr_pages ++;
6448 bvec++;
6449 }
6450 }
6451
Josef Bacik02f57c72011-04-06 14:25:44 -04006452submit:
Miao Xiee65e1532010-11-22 03:04:43 +00006453 ret = __btrfs_submit_dio_bio(bio, inode, rw, file_offset, skip_sum,
Josef Bacikc3298612012-08-03 16:49:19 -04006454 async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00006455 if (!ret)
6456 return 0;
6457
6458 bio_put(bio);
6459out_err:
6460 dip->errors = 1;
6461 /*
6462 * before atomic variable goto zero, we must
6463 * make sure dip->errors is perceived to be set.
6464 */
6465 smp_mb__before_atomic_dec();
6466 if (atomic_dec_and_test(&dip->pending_bios))
6467 bio_io_error(dip->orig_bio);
6468
6469 /* bio_end_io() will handle error, so we needn't return it */
6470 return 0;
6471}
6472
Josef Bacik4b46fce2010-05-23 11:00:55 -04006473static void btrfs_submit_direct(int rw, struct bio *bio, struct inode *inode,
6474 loff_t file_offset)
6475{
6476 struct btrfs_root *root = BTRFS_I(inode)->root;
6477 struct btrfs_dio_private *dip;
6478 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006479 int skip_sum;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02006480 int write = rw & REQ_WRITE;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006481 int ret = 0;
6482
6483 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
6484
6485 dip = kmalloc(sizeof(*dip), GFP_NOFS);
6486 if (!dip) {
6487 ret = -ENOMEM;
6488 goto free_ordered;
6489 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04006490
6491 dip->private = bio->bi_private;
6492 dip->inode = inode;
6493 dip->logical_offset = file_offset;
6494
Josef Bacik4b46fce2010-05-23 11:00:55 -04006495 dip->bytes = 0;
6496 do {
6497 dip->bytes += bvec->bv_len;
6498 bvec++;
6499 } while (bvec <= (bio->bi_io_vec + bio->bi_vcnt - 1));
6500
Chris Mason46bfbb52010-05-26 11:04:10 -04006501 dip->disk_bytenr = (u64)bio->bi_sector << 9;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006502 bio->bi_private = dip;
Miao Xiee65e1532010-11-22 03:04:43 +00006503 dip->errors = 0;
6504 dip->orig_bio = bio;
6505 atomic_set(&dip->pending_bios, 0);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006506
6507 if (write)
6508 bio->bi_end_io = btrfs_endio_direct_write;
6509 else
6510 bio->bi_end_io = btrfs_endio_direct_read;
6511
Miao Xiee65e1532010-11-22 03:04:43 +00006512 ret = btrfs_submit_direct_hook(rw, dip, skip_sum);
6513 if (!ret)
Chris Masoneaf25d92010-05-25 09:48:28 -04006514 return;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006515free_ordered:
6516 /*
6517 * If this is a write, we need to clean up the reserved space and kill
6518 * the ordered extent.
6519 */
6520 if (write) {
6521 struct btrfs_ordered_extent *ordered;
Josef Bacik955256f2010-11-19 09:41:10 -05006522 ordered = btrfs_lookup_ordered_extent(inode, file_offset);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006523 if (!test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags) &&
6524 !test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags))
6525 btrfs_free_reserved_extent(root, ordered->start,
6526 ordered->disk_len);
6527 btrfs_put_ordered_extent(ordered);
6528 btrfs_put_ordered_extent(ordered);
6529 }
6530 bio_endio(bio, ret);
6531}
6532
Chris Mason5a5f79b2010-05-26 21:33:37 -04006533static ssize_t check_direct_IO(struct btrfs_root *root, int rw, struct kiocb *iocb,
6534 const struct iovec *iov, loff_t offset,
6535 unsigned long nr_segs)
6536{
6537 int seg;
Josef Bacika1b75f72011-04-08 15:51:18 +00006538 int i;
Chris Mason5a5f79b2010-05-26 21:33:37 -04006539 size_t size;
6540 unsigned long addr;
6541 unsigned blocksize_mask = root->sectorsize - 1;
6542 ssize_t retval = -EINVAL;
6543 loff_t end = offset;
6544
6545 if (offset & blocksize_mask)
6546 goto out;
6547
6548 /* Check the memory alignment. Blocks cannot straddle pages */
6549 for (seg = 0; seg < nr_segs; seg++) {
6550 addr = (unsigned long)iov[seg].iov_base;
6551 size = iov[seg].iov_len;
6552 end += size;
Josef Bacika1b75f72011-04-08 15:51:18 +00006553 if ((addr & blocksize_mask) || (size & blocksize_mask))
Chris Mason5a5f79b2010-05-26 21:33:37 -04006554 goto out;
Josef Bacika1b75f72011-04-08 15:51:18 +00006555
6556 /* If this is a write we don't need to check anymore */
6557 if (rw & WRITE)
6558 continue;
6559
6560 /*
6561 * Check to make sure we don't have duplicate iov_base's in this
6562 * iovec, if so return EINVAL, otherwise we'll get csum errors
6563 * when reading back.
6564 */
6565 for (i = seg + 1; i < nr_segs; i++) {
6566 if (iov[seg].iov_base == iov[i].iov_base)
6567 goto out;
6568 }
Chris Mason5a5f79b2010-05-26 21:33:37 -04006569 }
6570 retval = 0;
6571out:
6572 return retval;
6573}
Josef Bacikeb838e72012-07-31 16:28:48 -04006574
Chris Mason16432982008-04-10 10:23:21 -04006575static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
6576 const struct iovec *iov, loff_t offset,
6577 unsigned long nr_segs)
6578{
Josef Bacik4b46fce2010-05-23 11:00:55 -04006579 struct file *file = iocb->ki_filp;
6580 struct inode *inode = file->f_mapping->host;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006581
Chris Mason5a5f79b2010-05-26 21:33:37 -04006582 if (check_direct_IO(BTRFS_I(inode)->root, rw, iocb, iov,
Josef Bacikeb838e72012-07-31 16:28:48 -04006583 offset, nr_segs))
Chris Mason5a5f79b2010-05-26 21:33:37 -04006584 return 0;
Chris Mason5a5f79b2010-05-26 21:33:37 -04006585
Josef Bacikeb838e72012-07-31 16:28:48 -04006586 return __blockdev_direct_IO(rw, iocb, inode,
Chris Mason5a5f79b2010-05-26 21:33:37 -04006587 BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev,
6588 iov, offset, nr_segs, btrfs_get_blocks_direct, NULL,
6589 btrfs_submit_direct, 0);
Chris Mason16432982008-04-10 10:23:21 -04006590}
6591
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006592static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
6593 __u64 start, __u64 len)
6594{
Chris Masonec29ed52011-02-23 16:23:20 -05006595 return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent_fiemap);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006596}
6597
Chris Mason9ebefb182007-06-15 13:50:00 -04006598int btrfs_readpage(struct file *file, struct page *page)
6599{
Chris Masond1310b22008-01-24 16:13:08 -05006600 struct extent_io_tree *tree;
6601 tree = &BTRFS_I(page->mapping->host)->io_tree;
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02006602 return extent_read_full_page(tree, page, btrfs_get_extent, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04006603}
Chris Mason1832a6d2007-12-21 16:27:21 -05006604
Chris Mason39279cc2007-06-12 06:35:45 -04006605static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
6606{
Chris Masond1310b22008-01-24 16:13:08 -05006607 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04006608
6609
6610 if (current->flags & PF_MEMALLOC) {
6611 redirty_page_for_writepage(wbc, page);
6612 unlock_page(page);
6613 return 0;
6614 }
Chris Masond1310b22008-01-24 16:13:08 -05006615 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04006616 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
6617}
Chris Mason39279cc2007-06-12 06:35:45 -04006618
Chris Masonf4219502008-07-22 11:18:09 -04006619int btrfs_writepages(struct address_space *mapping,
6620 struct writeback_control *wbc)
Chris Masonb293f022007-11-01 19:45:34 -04006621{
Chris Masond1310b22008-01-24 16:13:08 -05006622 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05006623
Chris Masond1310b22008-01-24 16:13:08 -05006624 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04006625 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
6626}
6627
Chris Mason3ab2fb52007-11-08 10:59:22 -05006628static int
6629btrfs_readpages(struct file *file, struct address_space *mapping,
6630 struct list_head *pages, unsigned nr_pages)
6631{
Chris Masond1310b22008-01-24 16:13:08 -05006632 struct extent_io_tree *tree;
6633 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05006634 return extent_readpages(tree, mapping, pages, nr_pages,
6635 btrfs_get_extent);
6636}
Chris Masone6dcd2d2008-07-17 12:53:50 -04006637static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04006638{
Chris Masond1310b22008-01-24 16:13:08 -05006639 struct extent_io_tree *tree;
6640 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04006641 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006642
Chris Masond1310b22008-01-24 16:13:08 -05006643 tree = &BTRFS_I(page->mapping->host)->io_tree;
6644 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05006645 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04006646 if (ret == 1) {
6647 ClearPagePrivate(page);
6648 set_page_private(page, 0);
6649 page_cache_release(page);
6650 }
6651 return ret;
6652}
Chris Mason39279cc2007-06-12 06:35:45 -04006653
Chris Masone6dcd2d2008-07-17 12:53:50 -04006654static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
6655{
Chris Mason98509cf2008-09-11 15:51:43 -04006656 if (PageWriteback(page) || PageDirty(page))
6657 return 0;
Yan Zhengb335b002009-02-12 10:06:04 -05006658 return __btrfs_releasepage(page, gfp_flags & GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006659}
6660
Chris Masona52d9a82007-08-27 16:49:44 -04006661static void btrfs_invalidatepage(struct page *page, unsigned long offset)
6662{
Josef Bacik5fd02042012-05-02 14:00:54 -04006663 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05006664 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006665 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006666 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006667 u64 page_start = page_offset(page);
6668 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006669
Chris Mason8b62b722009-09-02 16:53:46 -04006670 /*
6671 * we have the page locked, so new writeback can't start,
6672 * and the dirty bit won't be cleared while we are here.
6673 *
6674 * Wait for IO on this page so that we can safely clear
6675 * the PagePrivate2 bit and do ordered accounting
6676 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006677 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04006678
Josef Bacik5fd02042012-05-02 14:00:54 -04006679 tree = &BTRFS_I(inode)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006680 if (offset) {
6681 btrfs_releasepage(page, GFP_NOFS);
6682 return;
6683 }
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006684 lock_extent_bits(tree, page_start, page_end, 0, &cached_state);
Josef Bacik5fd02042012-05-02 14:00:54 -04006685 ordered = btrfs_lookup_ordered_extent(inode,
Chris Masone6dcd2d2008-07-17 12:53:50 -04006686 page_offset(page));
6687 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04006688 /*
6689 * IO on this page will never be started, so we need
6690 * to account for any ordered extents now
6691 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006692 clear_extent_bit(tree, page_start, page_end,
6693 EXTENT_DIRTY | EXTENT_DELALLOC |
Liu Bo9e8a4a82012-09-05 19:10:51 -06006694 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING |
6695 EXTENT_DEFRAG, 1, 0, &cached_state, GFP_NOFS);
Chris Mason8b62b722009-09-02 16:53:46 -04006696 /*
6697 * whoever cleared the private bit is responsible
6698 * for the finish_ordered_io
6699 */
Josef Bacik5fd02042012-05-02 14:00:54 -04006700 if (TestClearPagePrivate2(page) &&
6701 btrfs_dec_test_ordered_pending(inode, &ordered, page_start,
6702 PAGE_CACHE_SIZE, 1)) {
6703 btrfs_finish_ordered_io(ordered);
Chris Mason8b62b722009-09-02 16:53:46 -04006704 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006705 btrfs_put_ordered_extent(ordered);
Josef Bacik2ac55d42010-02-03 19:33:23 +00006706 cached_state = NULL;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006707 lock_extent_bits(tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006708 }
6709 clear_extent_bit(tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04006710 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
Liu Bo9e8a4a82012-09-05 19:10:51 -06006711 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 1, 1,
6712 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006713 __btrfs_releasepage(page, GFP_NOFS);
6714
Chris Mason4a096752008-07-21 10:29:44 -04006715 ClearPageChecked(page);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04006716 if (PagePrivate(page)) {
Chris Mason9ad6b7b2008-04-18 16:11:30 -04006717 ClearPagePrivate(page);
6718 set_page_private(page, 0);
6719 page_cache_release(page);
6720 }
Chris Mason39279cc2007-06-12 06:35:45 -04006721}
6722
Chris Mason9ebefb182007-06-15 13:50:00 -04006723/*
6724 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
6725 * called from a page fault handler when a page is first dirtied. Hence we must
6726 * be careful to check for EOF conditions here. We set the page up correctly
6727 * for a written page which means we get ENOSPC checking when writing into
6728 * holes and correct delalloc and unwritten extent mapping on filesystems that
6729 * support these features.
6730 *
6731 * We are not allowed to take the i_mutex here so we have to play games to
6732 * protect against truncate races as the page could now be beyond EOF. Because
6733 * vmtruncate() writes the inode size before removing pages, once we have the
6734 * page lock we can determine safely if the page is beyond EOF. If it is not
6735 * beyond EOF, then the page is guaranteed safe against truncation until we
6736 * unlock the page.
6737 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07006738int btrfs_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04006739{
Nick Pigginc2ec1752009-03-31 15:23:21 -07006740 struct page *page = vmf->page;
Chris Mason6da6aba2007-12-18 16:15:09 -05006741 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05006742 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006743 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
6744 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006745 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006746 char *kaddr;
6747 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04006748 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05006749 int ret;
Chris Mason9998eb72012-01-25 13:47:40 -05006750 int reserved = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04006751 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006752 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04006753
Jan Karab2b5ef52012-06-12 16:20:45 +02006754 sb_start_pagefault(inode->i_sb);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006755 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Chris Mason9998eb72012-01-25 13:47:40 -05006756 if (!ret) {
Josef Bacike41f9412012-03-26 09:46:47 -04006757 ret = file_update_time(vma->vm_file);
Chris Mason9998eb72012-01-25 13:47:40 -05006758 reserved = 1;
6759 }
Nick Piggin56a76f82009-03-31 15:23:23 -07006760 if (ret) {
6761 if (ret == -ENOMEM)
6762 ret = VM_FAULT_OOM;
6763 else /* -ENOSPC, -EIO, etc */
6764 ret = VM_FAULT_SIGBUS;
Chris Mason9998eb72012-01-25 13:47:40 -05006765 if (reserved)
6766 goto out;
6767 goto out_noreserve;
Nick Piggin56a76f82009-03-31 15:23:23 -07006768 }
Chris Mason1832a6d2007-12-21 16:27:21 -05006769
Nick Piggin56a76f82009-03-31 15:23:23 -07006770 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006771again:
Chris Mason9ebefb182007-06-15 13:50:00 -04006772 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04006773 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006774 page_start = page_offset(page);
6775 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006776
Chris Mason9ebefb182007-06-15 13:50:00 -04006777 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04006778 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04006779 /* page got truncated out from underneath us */
6780 goto out_unlock;
6781 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006782 wait_on_page_writeback(page);
6783
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006784 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006785 set_page_extent_mapped(page);
6786
Chris Masoneb84ae02008-07-17 13:53:27 -04006787 /*
6788 * we can't set the delalloc bits if there are pending ordered
6789 * extents. Drop our locks and wait for them to finish
6790 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006791 ordered = btrfs_lookup_ordered_extent(inode, page_start);
6792 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006793 unlock_extent_cached(io_tree, page_start, page_end,
6794 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006795 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04006796 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006797 btrfs_put_ordered_extent(ordered);
6798 goto again;
6799 }
6800
Josef Bacikfbf19082009-10-01 17:10:23 -04006801 /*
6802 * XXX - page_mkwrite gets called every time the page is dirtied, even
6803 * if it was already dirty, so for space accounting reasons we need to
6804 * clear any delalloc bits for the range we are fixing to save. There
6805 * is probably a better way to do this, but for now keep consistent with
6806 * prepare_pages in the normal write path.
6807 */
Josef Bacik2ac55d42010-02-03 19:33:23 +00006808 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Liu Bo9e8a4a82012-09-05 19:10:51 -06006809 EXTENT_DIRTY | EXTENT_DELALLOC |
6810 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
Josef Bacik2ac55d42010-02-03 19:33:23 +00006811 0, 0, &cached_state, GFP_NOFS);
Josef Bacikfbf19082009-10-01 17:10:23 -04006812
Josef Bacik2ac55d42010-02-03 19:33:23 +00006813 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
6814 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006815 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006816 unlock_extent_cached(io_tree, page_start, page_end,
6817 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006818 ret = VM_FAULT_SIGBUS;
6819 goto out_unlock;
6820 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006821 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04006822
6823 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04006824 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04006825 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04006826 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04006827 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04006828
Chris Masone6dcd2d2008-07-17 12:53:50 -04006829 if (zero_start != PAGE_CACHE_SIZE) {
6830 kaddr = kmap(page);
6831 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
6832 flush_dcache_page(page);
6833 kunmap(page);
6834 }
Chris Mason247e7432008-07-17 12:53:51 -04006835 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006836 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04006837 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04006838
Chris Mason257c62e2009-10-13 13:21:08 -04006839 BTRFS_I(inode)->last_trans = root->fs_info->generation;
6840 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
Liu Bo46d8bc32012-08-29 01:07:55 -06006841 BTRFS_I(inode)->last_log_commit = BTRFS_I(inode)->root->last_log_commit;
Chris Mason257c62e2009-10-13 13:21:08 -04006842
Josef Bacik2ac55d42010-02-03 19:33:23 +00006843 unlock_extent_cached(io_tree, page_start, page_end, &cached_state, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04006844
6845out_unlock:
Jan Karab2b5ef52012-06-12 16:20:45 +02006846 if (!ret) {
6847 sb_end_pagefault(inode->i_sb);
Chris Mason50a9b212009-09-11 12:33:12 -04006848 return VM_FAULT_LOCKED;
Jan Karab2b5ef52012-06-12 16:20:45 +02006849 }
Chris Mason9ebefb182007-06-15 13:50:00 -04006850 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05006851out:
Josef Bacikec39e182012-01-12 19:10:12 -05006852 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason9998eb72012-01-25 13:47:40 -05006853out_noreserve:
Jan Karab2b5ef52012-06-12 16:20:45 +02006854 sb_end_pagefault(inode->i_sb);
Chris Mason9ebefb182007-06-15 13:50:00 -04006855 return ret;
6856}
6857
Josef Bacika41ad392011-01-31 15:30:16 -05006858static int btrfs_truncate(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04006859{
6860 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikfcb80c22011-05-03 10:40:22 -04006861 struct btrfs_block_rsv *rsv;
Chris Mason39279cc2007-06-12 06:35:45 -04006862 int ret;
Josef Bacik3893e332011-01-31 16:03:11 -05006863 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006864 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04006865 unsigned long nr;
Chris Masondbe674a2008-07-17 12:54:05 -04006866 u64 mask = root->sectorsize - 1;
Josef Bacik07127182011-08-19 10:29:59 -04006867 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04006868
Josef Bacik2aaa6652012-08-29 14:27:18 -04006869 ret = btrfs_truncate_page(inode, inode->i_size, 0, 0);
Josef Bacik5d5e1032009-10-13 16:46:49 -04006870 if (ret)
Josef Bacika41ad392011-01-31 15:30:16 -05006871 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00006872
Chris Mason4a096752008-07-21 10:29:44 -04006873 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
Yan, Zheng80825102009-11-12 09:35:36 +00006874 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006875
Josef Bacikfcb80c22011-05-03 10:40:22 -04006876 /*
6877 * Yes ladies and gentelment, this is indeed ugly. The fact is we have
6878 * 3 things going on here
6879 *
6880 * 1) We need to reserve space for our orphan item and the space to
6881 * delete our orphan item. Lord knows we don't want to have a dangling
6882 * orphan item because we didn't reserve space to remove it.
6883 *
6884 * 2) We need to reserve space to update our inode.
6885 *
6886 * 3) We need to have something to cache all the space that is going to
6887 * be free'd up by the truncate operation, but also have some slack
6888 * space reserved in case it uses space during the truncate (thank you
6889 * very much snapshotting).
6890 *
6891 * And we need these to all be seperate. The fact is we can use alot of
6892 * space doing the truncate, and we have no earthly idea how much space
6893 * we will use, so we need the truncate reservation to be seperate so it
6894 * doesn't end up using space reserved for updating the inode or
6895 * removing the orphan item. We also need to be able to stop the
6896 * transaction and start a new one, which means we need to be able to
6897 * update the inode several times, and we have no idea of knowing how
6898 * many times that will be, so we can't just reserve 1 item for the
6899 * entirety of the opration, so that has to be done seperately as well.
6900 * Then there is the orphan item, which does indeed need to be held on
6901 * to for the whole operation, and we need nobody to touch this reserved
6902 * space except the orphan code.
6903 *
6904 * So that leaves us with
6905 *
6906 * 1) root->orphan_block_rsv - for the orphan deletion.
6907 * 2) rsv - for the truncate reservation, which we will steal from the
6908 * transaction reservation.
6909 * 3) fs_info->trans_block_rsv - this will have 1 items worth left for
6910 * updating the inode.
6911 */
Miao Xie66d8f3d2012-09-06 04:02:28 -06006912 rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006913 if (!rsv)
6914 return -ENOMEM;
Josef Bacik4a338542011-08-29 11:01:31 -04006915 rsv->size = min_size;
Josef Bacikca7e70f2012-08-27 17:48:15 -04006916 rsv->failfast = 1;
Josef Bacikf0cd8462011-03-04 14:37:08 -05006917
Josef Bacik907cbce2011-08-08 13:46:15 -04006918 /*
Josef Bacik07127182011-08-19 10:29:59 -04006919 * 1 for the truncate slack space
Josef Bacik907cbce2011-08-08 13:46:15 -04006920 * 1 for the orphan item we're going to add
6921 * 1 for the orphan item deletion
6922 * 1 for updating the inode.
6923 */
Josef Bacikfcb80c22011-05-03 10:40:22 -04006924 trans = btrfs_start_transaction(root, 4);
6925 if (IS_ERR(trans)) {
6926 err = PTR_ERR(trans);
6927 goto out;
6928 }
Josef Bacikf0cd8462011-03-04 14:37:08 -05006929
Josef Bacik907cbce2011-08-08 13:46:15 -04006930 /* Migrate the slack space for the truncate to our reserve */
6931 ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv, rsv,
6932 min_size);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006933 BUG_ON(ret);
Josef Bacikf0cd8462011-03-04 14:37:08 -05006934
6935 ret = btrfs_orphan_add(trans, inode);
6936 if (ret) {
6937 btrfs_end_transaction(trans, root);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006938 goto out;
Josef Bacikf0cd8462011-03-04 14:37:08 -05006939 }
6940
Chris Mason5a3f23d2009-03-31 13:27:11 -04006941 /*
6942 * setattr is responsible for setting the ordered_data_close flag,
6943 * but that is only tested during the last file release. That
6944 * could happen well after the next commit, leaving a great big
6945 * window where new writes may get lost if someone chooses to write
6946 * to this file after truncating to zero
6947 *
6948 * The inode doesn't have any dirty data here, and so if we commit
6949 * this is a noop. If someone immediately starts writing to the inode
6950 * it is very likely we'll catch some of their writes in this
6951 * transaction, and the commit will find this file on the ordered
6952 * data list with good things to send down.
6953 *
6954 * This is a best effort solution, there is still a window where
6955 * using truncate to replace the contents of the file will
6956 * end up with a zero length file after a crash.
6957 */
Josef Bacik72ac3c02012-05-23 14:13:11 -04006958 if (inode->i_size == 0 && test_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
6959 &BTRFS_I(inode)->runtime_flags))
Chris Mason5a3f23d2009-03-31 13:27:11 -04006960 btrfs_add_ordered_operation(trans, root, inode);
6961
Josef Bacik5dc562c2012-08-17 13:14:17 -04006962 /*
6963 * So if we truncate and then write and fsync we normally would just
6964 * write the extents that changed, which is a problem if we need to
6965 * first truncate that entire inode. So set this flag so we write out
6966 * all of the extents in the inode to the sync log so we're completely
6967 * safe.
6968 */
6969 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
Josef Bacikca7e70f2012-08-27 17:48:15 -04006970 trans->block_rsv = rsv;
Josef Bacik5dc562c2012-08-17 13:14:17 -04006971
Yan, Zheng80825102009-11-12 09:35:36 +00006972 while (1) {
6973 ret = btrfs_truncate_inode_items(trans, root, inode,
6974 inode->i_size,
6975 BTRFS_EXTENT_DATA_KEY);
Josef Bacikca7e70f2012-08-27 17:48:15 -04006976 if (ret != -ENOSPC) {
Josef Bacik3893e332011-01-31 16:03:11 -05006977 err = ret;
Yan, Zheng80825102009-11-12 09:35:36 +00006978 break;
Josef Bacik3893e332011-01-31 16:03:11 -05006979 }
Chris Mason39279cc2007-06-12 06:35:45 -04006980
Josef Bacikfcb80c22011-05-03 10:40:22 -04006981 trans->block_rsv = &root->fs_info->trans_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00006982 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05006983 if (ret) {
6984 err = ret;
6985 break;
6986 }
Josef Bacikca7e70f2012-08-27 17:48:15 -04006987
Yan, Zheng80825102009-11-12 09:35:36 +00006988 nr = trans->blocks_used;
6989 btrfs_end_transaction(trans, root);
6990 btrfs_btree_balance_dirty(root, nr);
Josef Bacikca7e70f2012-08-27 17:48:15 -04006991
6992 trans = btrfs_start_transaction(root, 2);
6993 if (IS_ERR(trans)) {
6994 ret = err = PTR_ERR(trans);
6995 trans = NULL;
6996 break;
6997 }
6998
6999 ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv,
7000 rsv, min_size);
7001 BUG_ON(ret); /* shouldn't happen */
7002 trans->block_rsv = rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00007003 }
7004
7005 if (ret == 0 && inode->i_nlink > 0) {
Josef Bacikfcb80c22011-05-03 10:40:22 -04007006 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00007007 ret = btrfs_orphan_del(trans, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05007008 if (ret)
7009 err = ret;
Josef Bacikded5db92011-03-04 14:09:46 -05007010 } else if (ret && inode->i_nlink > 0) {
7011 /*
7012 * Failed to do the truncate, remove us from the in memory
7013 * orphan list.
7014 */
7015 ret = btrfs_orphan_del(NULL, inode);
Yan, Zheng80825102009-11-12 09:35:36 +00007016 }
7017
Chris Mason917c16b2011-11-08 14:49:59 -05007018 if (trans) {
7019 trans->block_rsv = &root->fs_info->trans_block_rsv;
7020 ret = btrfs_update_inode(trans, root, inode);
7021 if (ret && !err)
7022 err = ret;
Josef Bacik7b128762008-07-24 12:17:14 -04007023
Chris Mason917c16b2011-11-08 14:49:59 -05007024 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05007025 ret = btrfs_end_transaction(trans, root);
Chris Mason917c16b2011-11-08 14:49:59 -05007026 btrfs_btree_balance_dirty(root, nr);
7027 }
Josef Bacikfcb80c22011-05-03 10:40:22 -04007028
7029out:
7030 btrfs_free_block_rsv(root, rsv);
7031
Josef Bacik3893e332011-01-31 16:03:11 -05007032 if (ret && !err)
7033 err = ret;
Josef Bacika41ad392011-01-31 15:30:16 -05007034
Josef Bacik3893e332011-01-31 16:03:11 -05007035 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04007036}
7037
Sven Wegener3b963622008-06-09 21:57:42 -04007038/*
Chris Masond352ac62008-09-29 15:18:18 -04007039 * create a new subvolume directory/inode (helper for the ioctl).
7040 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05007041int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Josef Bacikd82a6f12011-05-11 15:26:06 -04007042 struct btrfs_root *new_root, u64 new_dirid)
Chris Mason39279cc2007-06-12 06:35:45 -04007043{
Chris Mason39279cc2007-06-12 06:35:45 -04007044 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04007045 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04007046 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007047
Florian Albrechtskirchinger12fc9d02012-02-10 22:15:54 +01007048 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2,
7049 new_dirid, new_dirid,
7050 S_IFDIR | (~current_umask() & S_IRWXUGO),
7051 &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04007052 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04007053 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007054 inode->i_op = &btrfs_dir_inode_operations;
7055 inode->i_fop = &btrfs_dir_file_operations;
7056
Miklos Szeredibfe86842011-10-28 14:13:29 +02007057 set_nlink(inode, 1);
Chris Masondbe674a2008-07-17 12:54:05 -04007058 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04007059
Yan, Zheng76dda932009-09-21 16:00:26 -04007060 err = btrfs_update_inode(trans, new_root, inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04007061
Yan, Zheng76dda932009-09-21 16:00:26 -04007062 iput(inode);
Mark Fashehce598972011-07-26 11:32:23 -07007063 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04007064}
7065
Chris Mason39279cc2007-06-12 06:35:45 -04007066struct inode *btrfs_alloc_inode(struct super_block *sb)
7067{
7068 struct btrfs_inode *ei;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007069 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04007070
7071 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
7072 if (!ei)
7073 return NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007074
7075 ei->root = NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007076 ei->generation = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04007077 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04007078 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04007079 ei->logged_trans = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007080 ei->delalloc_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007081 ei->disk_i_size = 0;
7082 ei->flags = 0;
Josef Bacik7709cde2011-08-04 10:25:02 -04007083 ei->csum_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007084 ei->index_cnt = (u64)-1;
7085 ei->last_unlink_trans = 0;
Liu Bo46d8bc32012-08-29 01:07:55 -06007086 ei->last_log_commit = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007087
Josef Bacik9e0baf62011-07-15 15:16:44 +00007088 spin_lock_init(&ei->lock);
7089 ei->outstanding_extents = 0;
7090 ei->reserved_extents = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007091
Josef Bacik72ac3c02012-05-23 14:13:11 -04007092 ei->runtime_flags = 0;
Li Zefan261507a02010-12-17 14:21:50 +08007093 ei->force_compress = BTRFS_COMPRESS_NONE;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007094
Miao Xie16cdcec2011-04-22 18:12:22 +08007095 ei->delayed_node = NULL;
7096
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007097 inode = &ei->vfs_inode;
David Sterbaa8067e02011-04-21 00:34:43 +02007098 extent_map_tree_init(&ei->extent_tree);
David Sterbaf993c882011-04-20 23:35:57 +02007099 extent_io_tree_init(&ei->io_tree, &inode->i_data);
7100 extent_io_tree_init(&ei->io_failure_tree, &inode->i_data);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04007101 ei->io_tree.track_uptodate = 1;
7102 ei->io_failure_tree.track_uptodate = 1;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007103 mutex_init(&ei->log_mutex);
Josef Bacikf2486792012-01-13 12:09:22 -05007104 mutex_init(&ei->delalloc_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007105 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007106 INIT_LIST_HEAD(&ei->delalloc_inodes);
Chris Mason5a3f23d2009-03-31 13:27:11 -04007107 INIT_LIST_HEAD(&ei->ordered_operations);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04007108 RB_CLEAR_NODE(&ei->rb_node);
7109
7110 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04007111}
7112
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11007113static void btrfs_i_callback(struct rcu_head *head)
7114{
7115 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11007116 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
7117}
7118
Chris Mason39279cc2007-06-12 06:35:45 -04007119void btrfs_destroy_inode(struct inode *inode)
7120{
Chris Masone6dcd2d2008-07-17 12:53:50 -04007121 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04007122 struct btrfs_root *root = BTRFS_I(inode)->root;
7123
Al Virob3d9b7a2012-06-09 13:51:19 -04007124 WARN_ON(!hlist_empty(&inode->i_dentry));
Chris Mason39279cc2007-06-12 06:35:45 -04007125 WARN_ON(inode->i_data.nrpages);
Josef Bacik9e0baf62011-07-15 15:16:44 +00007126 WARN_ON(BTRFS_I(inode)->outstanding_extents);
7127 WARN_ON(BTRFS_I(inode)->reserved_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04007128 WARN_ON(BTRFS_I(inode)->delalloc_bytes);
7129 WARN_ON(BTRFS_I(inode)->csum_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -04007130
Chris Mason5a3f23d2009-03-31 13:27:11 -04007131 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05007132 * This can happen where we create an inode, but somebody else also
7133 * created the same inode and we need to destroy the one we already
7134 * created.
7135 */
7136 if (!root)
7137 goto free;
7138
7139 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04007140 * Make sure we're properly removed from the ordered operation
7141 * lists.
7142 */
7143 smp_mb();
7144 if (!list_empty(&BTRFS_I(inode)->ordered_operations)) {
7145 spin_lock(&root->fs_info->ordered_extent_lock);
7146 list_del_init(&BTRFS_I(inode)->ordered_operations);
7147 spin_unlock(&root->fs_info->ordered_extent_lock);
7148 }
7149
Josef Bacik8a35d952012-05-23 14:26:42 -04007150 if (test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
7151 &BTRFS_I(inode)->runtime_flags)) {
Li Zefan33345d012011-04-20 10:31:50 +08007152 printk(KERN_INFO "BTRFS: inode %llu still on the orphan list\n",
7153 (unsigned long long)btrfs_ino(inode));
Josef Bacik8a35d952012-05-23 14:26:42 -04007154 atomic_dec(&root->orphan_inodes);
Josef Bacik7b128762008-07-24 12:17:14 -04007155 }
Josef Bacik7b128762008-07-24 12:17:14 -04007156
Chris Masond3977122009-01-05 21:25:51 -05007157 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04007158 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
7159 if (!ordered)
7160 break;
7161 else {
Chris Masond3977122009-01-05 21:25:51 -05007162 printk(KERN_ERR "btrfs found ordered "
7163 "extent %llu %llu on inode cleanup\n",
7164 (unsigned long long)ordered->file_offset,
7165 (unsigned long long)ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007166 btrfs_remove_ordered_extent(inode, ordered);
7167 btrfs_put_ordered_extent(ordered);
7168 btrfs_put_ordered_extent(ordered);
7169 }
7170 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007171 inode_tree_del(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007172 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
Josef Bacika6dbd422009-11-11 15:53:34 -05007173free:
Miao Xie16cdcec2011-04-22 18:12:22 +08007174 btrfs_remove_delayed_node(inode);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11007175 call_rcu(&inode->i_rcu, btrfs_i_callback);
Chris Mason39279cc2007-06-12 06:35:45 -04007176}
7177
Al Viro45321ac2010-06-07 13:43:19 -04007178int btrfs_drop_inode(struct inode *inode)
Yan, Zheng76dda932009-09-21 16:00:26 -04007179{
7180 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro45321ac2010-06-07 13:43:19 -04007181
Josef Bacik0af3d002010-06-21 14:48:16 -04007182 if (btrfs_root_refs(&root->root_item) == 0 &&
Liu Bo83eea1f2012-07-10 05:28:39 -06007183 !btrfs_is_free_space_inode(inode))
Al Viro45321ac2010-06-07 13:43:19 -04007184 return 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04007185 else
Al Viro45321ac2010-06-07 13:43:19 -04007186 return generic_drop_inode(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04007187}
7188
Sven Wegener0ee0fda2008-07-30 16:54:26 -04007189static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04007190{
7191 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
7192
7193 inode_init_once(&ei->vfs_inode);
7194}
7195
7196void btrfs_destroy_cachep(void)
7197{
7198 if (btrfs_inode_cachep)
7199 kmem_cache_destroy(btrfs_inode_cachep);
7200 if (btrfs_trans_handle_cachep)
7201 kmem_cache_destroy(btrfs_trans_handle_cachep);
7202 if (btrfs_transaction_cachep)
7203 kmem_cache_destroy(btrfs_transaction_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04007204 if (btrfs_path_cachep)
7205 kmem_cache_destroy(btrfs_path_cachep);
Josef Bacikdc89e982011-01-28 17:05:48 -05007206 if (btrfs_free_space_cachep)
7207 kmem_cache_destroy(btrfs_free_space_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04007208}
7209
7210int btrfs_init_cachep(void)
7211{
David Sterba837e1972012-09-07 03:00:48 -06007212 btrfs_inode_cachep = kmem_cache_create("btrfs_inode",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007213 sizeof(struct btrfs_inode), 0,
7214 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04007215 if (!btrfs_inode_cachep)
7216 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007217
David Sterba837e1972012-09-07 03:00:48 -06007218 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007219 sizeof(struct btrfs_trans_handle), 0,
7220 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04007221 if (!btrfs_trans_handle_cachep)
7222 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007223
David Sterba837e1972012-09-07 03:00:48 -06007224 btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007225 sizeof(struct btrfs_transaction), 0,
7226 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04007227 if (!btrfs_transaction_cachep)
7228 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007229
David Sterba837e1972012-09-07 03:00:48 -06007230 btrfs_path_cachep = kmem_cache_create("btrfs_path",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007231 sizeof(struct btrfs_path), 0,
7232 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04007233 if (!btrfs_path_cachep)
7234 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007235
David Sterba837e1972012-09-07 03:00:48 -06007236 btrfs_free_space_cachep = kmem_cache_create("btrfs_free_space",
Josef Bacikdc89e982011-01-28 17:05:48 -05007237 sizeof(struct btrfs_free_space), 0,
7238 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
7239 if (!btrfs_free_space_cachep)
7240 goto fail;
7241
Chris Mason39279cc2007-06-12 06:35:45 -04007242 return 0;
7243fail:
7244 btrfs_destroy_cachep();
7245 return -ENOMEM;
7246}
7247
7248static int btrfs_getattr(struct vfsmount *mnt,
7249 struct dentry *dentry, struct kstat *stat)
7250{
7251 struct inode *inode = dentry->d_inode;
David Sterbafadc0d82011-11-20 07:33:38 -05007252 u32 blocksize = inode->i_sb->s_blocksize;
7253
Chris Mason39279cc2007-06-12 06:35:45 -04007254 generic_fillattr(inode, stat);
Al Viro0ee5dc62011-07-07 15:44:25 -04007255 stat->dev = BTRFS_I(inode)->root->anon_dev;
Chris Masond6667462008-01-03 14:51:00 -05007256 stat->blksize = PAGE_CACHE_SIZE;
David Sterbafadc0d82011-11-20 07:33:38 -05007257 stat->blocks = (ALIGN(inode_get_bytes(inode), blocksize) +
7258 ALIGN(BTRFS_I(inode)->delalloc_bytes, blocksize)) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04007259 return 0;
7260}
7261
Liu Bo75e7cb72011-03-22 10:12:20 +00007262/*
7263 * If a file is moved, it will inherit the cow and compression flags of the new
7264 * directory.
7265 */
7266static void fixup_inode_flags(struct inode *dir, struct inode *inode)
7267{
7268 struct btrfs_inode *b_dir = BTRFS_I(dir);
7269 struct btrfs_inode *b_inode = BTRFS_I(inode);
7270
7271 if (b_dir->flags & BTRFS_INODE_NODATACOW)
7272 b_inode->flags |= BTRFS_INODE_NODATACOW;
7273 else
7274 b_inode->flags &= ~BTRFS_INODE_NODATACOW;
7275
Liu Bobc178232012-06-14 02:23:18 -06007276 if (b_dir->flags & BTRFS_INODE_COMPRESS) {
Liu Bo75e7cb72011-03-22 10:12:20 +00007277 b_inode->flags |= BTRFS_INODE_COMPRESS;
Liu Bobc178232012-06-14 02:23:18 -06007278 b_inode->flags &= ~BTRFS_INODE_NOCOMPRESS;
7279 } else {
7280 b_inode->flags &= ~(BTRFS_INODE_COMPRESS |
7281 BTRFS_INODE_NOCOMPRESS);
7282 }
Liu Bo75e7cb72011-03-22 10:12:20 +00007283}
7284
Chris Masond3977122009-01-05 21:25:51 -05007285static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
7286 struct inode *new_dir, struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04007287{
7288 struct btrfs_trans_handle *trans;
7289 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007290 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04007291 struct inode *new_inode = new_dentry->d_inode;
7292 struct inode *old_inode = old_dentry->d_inode;
7293 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04007294 u64 index = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007295 u64 root_objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04007296 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08007297 u64 old_ino = btrfs_ino(old_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007298
Li Zefan33345d012011-04-20 10:31:50 +08007299 if (btrfs_ino(new_dir) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhengf679a842009-09-24 09:17:31 -04007300 return -EPERM;
7301
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007302 /* we only allow rename subvolume link between subvolumes */
Li Zefan33345d012011-04-20 10:31:50 +08007303 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05007304 return -EXDEV;
7305
Li Zefan33345d012011-04-20 10:31:50 +08007306 if (old_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
7307 (new_inode && btrfs_ino(new_inode) == BTRFS_FIRST_FREE_OBJECTID))
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007308 return -ENOTEMPTY;
7309
Chris Mason39279cc2007-06-12 06:35:45 -04007310 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007311 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04007312 return -ENOTEMPTY;
Chris Mason5a3f23d2009-03-31 13:27:11 -04007313 /*
7314 * we're using rename to replace one file with another.
7315 * and the replacement file is large. Start IO on it now so
7316 * we don't add too much work to the end of the transaction
7317 */
Bartlomiej Zolnierkiewicz4baf8c92009-08-07 13:47:08 -04007318 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size &&
Chris Mason5a3f23d2009-03-31 13:27:11 -04007319 old_inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
7320 filemap_flush(old_inode->i_mapping);
7321
Yan, Zheng76dda932009-09-21 16:00:26 -04007322 /* close the racy window with snapshot create/destroy ioctl */
Li Zefan33345d012011-04-20 10:31:50 +08007323 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04007324 down_read(&root->fs_info->subvol_sem);
Yan, Zhenga22285a2010-05-16 10:48:46 -04007325 /*
7326 * We want to reserve the absolute worst case amount of items. So if
7327 * both inodes are subvols and we need to unlink them then that would
7328 * require 4 item modifications, but if they are both normal inodes it
7329 * would require 5 item modifications, so we'll assume their normal
7330 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
7331 * should cover the worst case number of items we'll modify.
7332 */
7333 trans = btrfs_start_transaction(root, 20);
Johann Lombardib44c59a2011-03-31 13:23:47 +00007334 if (IS_ERR(trans)) {
7335 ret = PTR_ERR(trans);
7336 goto out_notrans;
7337 }
Chris Mason5f39d392007-10-15 16:14:19 -04007338
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007339 if (dest != root)
7340 btrfs_record_root_in_trans(trans, dest);
7341
Yan, Zhenga5719522009-09-24 09:17:31 -04007342 ret = btrfs_set_inode_index(new_dir, &index);
7343 if (ret)
7344 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04007345
Li Zefan33345d012011-04-20 10:31:50 +08007346 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007347 /* force full log commit if subvolume involved. */
7348 root->fs_info->last_trans_log_full_commit = trans->transid;
7349 } else {
Yan, Zhenga5719522009-09-24 09:17:31 -04007350 ret = btrfs_insert_inode_ref(trans, dest,
7351 new_dentry->d_name.name,
7352 new_dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08007353 old_ino,
7354 btrfs_ino(new_dir), index);
Yan, Zhenga5719522009-09-24 09:17:31 -04007355 if (ret)
7356 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007357 /*
7358 * this is an ugly little race, but the rename is required
7359 * to make sure that if we crash, the inode is either at the
7360 * old name or the new one. pinning the log transaction lets
7361 * us make sure we don't allow a log commit to come in after
7362 * we unlink the name but before we add the new name back in.
7363 */
7364 btrfs_pin_log_trans(root);
7365 }
Chris Mason12fcfd22009-03-24 10:24:20 -04007366 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04007367 * make sure the inode gets flushed if it is replacing
7368 * something.
7369 */
Li Zefan33345d012011-04-20 10:31:50 +08007370 if (new_inode && new_inode->i_size && S_ISREG(old_inode->i_mode))
Chris Mason5a3f23d2009-03-31 13:27:11 -04007371 btrfs_add_ordered_operation(trans, root, old_inode);
Chris Mason5a3f23d2009-03-31 13:27:11 -04007372
Josef Bacik0c4d2d92012-04-05 15:03:02 -04007373 inode_inc_iversion(old_dir);
7374 inode_inc_iversion(new_dir);
7375 inode_inc_iversion(old_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007376 old_dir->i_ctime = old_dir->i_mtime = ctime;
7377 new_dir->i_ctime = new_dir->i_mtime = ctime;
7378 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04007379
Chris Mason12fcfd22009-03-24 10:24:20 -04007380 if (old_dentry->d_parent != new_dentry->d_parent)
7381 btrfs_record_unlink_dir(trans, old_dir, old_inode, 1);
7382
Li Zefan33345d012011-04-20 10:31:50 +08007383 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007384 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
7385 ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid,
7386 old_dentry->d_name.name,
7387 old_dentry->d_name.len);
7388 } else {
Al Viro92986792011-03-04 17:14:37 +00007389 ret = __btrfs_unlink_inode(trans, root, old_dir,
7390 old_dentry->d_inode,
7391 old_dentry->d_name.name,
7392 old_dentry->d_name.len);
7393 if (!ret)
7394 ret = btrfs_update_inode(trans, root, old_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007395 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007396 if (ret) {
7397 btrfs_abort_transaction(trans, root, ret);
7398 goto out_fail;
7399 }
Chris Mason39279cc2007-06-12 06:35:45 -04007400
7401 if (new_inode) {
Josef Bacik0c4d2d92012-04-05 15:03:02 -04007402 inode_inc_iversion(new_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007403 new_inode->i_ctime = CURRENT_TIME;
Li Zefan33345d012011-04-20 10:31:50 +08007404 if (unlikely(btrfs_ino(new_inode) ==
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007405 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
7406 root_objectid = BTRFS_I(new_inode)->location.objectid;
7407 ret = btrfs_unlink_subvol(trans, dest, new_dir,
7408 root_objectid,
7409 new_dentry->d_name.name,
7410 new_dentry->d_name.len);
7411 BUG_ON(new_inode->i_nlink == 0);
7412 } else {
7413 ret = btrfs_unlink_inode(trans, dest, new_dir,
7414 new_dentry->d_inode,
7415 new_dentry->d_name.name,
7416 new_dentry->d_name.len);
7417 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007418 if (!ret && new_inode->i_nlink == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04007419 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007420 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04007421 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007422 if (ret) {
7423 btrfs_abort_transaction(trans, root, ret);
7424 goto out_fail;
7425 }
Chris Mason39279cc2007-06-12 06:35:45 -04007426 }
Josef Bacikaec74772008-07-24 12:12:38 -04007427
Liu Bo75e7cb72011-03-22 10:12:20 +00007428 fixup_inode_flags(new_dir, old_inode);
7429
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007430 ret = btrfs_add_link(trans, new_dir, old_inode,
7431 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04007432 new_dentry->d_name.len, 0, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007433 if (ret) {
7434 btrfs_abort_transaction(trans, root, ret);
7435 goto out_fail;
7436 }
Chris Mason39279cc2007-06-12 06:35:45 -04007437
Li Zefan33345d012011-04-20 10:31:50 +08007438 if (old_ino != BTRFS_FIRST_FREE_OBJECTID) {
Al Viro10d9f302011-07-16 23:09:10 -04007439 struct dentry *parent = new_dentry->d_parent;
Josef Bacik6a912212010-11-20 09:48:00 +00007440 btrfs_log_new_name(trans, old_inode, old_dir, parent);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007441 btrfs_end_log_trans(root);
7442 }
Chris Mason39279cc2007-06-12 06:35:45 -04007443out_fail:
Josef Bacik7ad85bb2012-01-12 19:10:12 -05007444 btrfs_end_transaction(trans, root);
Johann Lombardib44c59a2011-03-31 13:23:47 +00007445out_notrans:
Li Zefan33345d012011-04-20 10:31:50 +08007446 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04007447 up_read(&root->fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04007448
Chris Mason39279cc2007-06-12 06:35:45 -04007449 return ret;
7450}
7451
Chris Masond352ac62008-09-29 15:18:18 -04007452/*
7453 * some fairly slow code that needs optimization. This walks the list
7454 * of all the inodes with pending delalloc and forces them to disk.
7455 */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00007456int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput)
Chris Masonea8c2812008-08-04 23:17:27 -04007457{
7458 struct list_head *head = &root->fs_info->delalloc_inodes;
7459 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007460 struct inode *inode;
Chris Masonea8c2812008-08-04 23:17:27 -04007461
Yan Zhengc146afa2008-11-12 14:34:12 -05007462 if (root->fs_info->sb->s_flags & MS_RDONLY)
7463 return -EROFS;
7464
Chris Mason75eff682008-12-15 15:54:40 -05007465 spin_lock(&root->fs_info->delalloc_lock);
Chris Masond3977122009-01-05 21:25:51 -05007466 while (!list_empty(head)) {
Chris Masonea8c2812008-08-04 23:17:27 -04007467 binode = list_entry(head->next, struct btrfs_inode,
7468 delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007469 inode = igrab(&binode->vfs_inode);
7470 if (!inode)
7471 list_del_init(&binode->delalloc_inodes);
Chris Mason75eff682008-12-15 15:54:40 -05007472 spin_unlock(&root->fs_info->delalloc_lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007473 if (inode) {
Chris Mason8c8bee12008-09-29 11:19:10 -04007474 filemap_flush(inode->i_mapping);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00007475 if (delay_iput)
7476 btrfs_add_delayed_iput(inode);
7477 else
7478 iput(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007479 }
7480 cond_resched();
Chris Mason75eff682008-12-15 15:54:40 -05007481 spin_lock(&root->fs_info->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04007482 }
Chris Mason75eff682008-12-15 15:54:40 -05007483 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -04007484
7485 /* the filemap_flush will queue IO into the worker threads, but
7486 * we have to make sure the IO is actually started and that
7487 * ordered extents get created before we return
7488 */
7489 atomic_inc(&root->fs_info->async_submit_draining);
Chris Masond3977122009-01-05 21:25:51 -05007490 while (atomic_read(&root->fs_info->nr_async_submits) ||
Chris Mason771ed682008-11-06 22:02:51 -05007491 atomic_read(&root->fs_info->async_delalloc_pages)) {
Chris Mason8c8bee12008-09-29 11:19:10 -04007492 wait_event(root->fs_info->async_submit_wait,
Chris Mason771ed682008-11-06 22:02:51 -05007493 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
7494 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee12008-09-29 11:19:10 -04007495 }
7496 atomic_dec(&root->fs_info->async_submit_draining);
Chris Masonea8c2812008-08-04 23:17:27 -04007497 return 0;
7498}
7499
Chris Mason39279cc2007-06-12 06:35:45 -04007500static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
7501 const char *symname)
7502{
7503 struct btrfs_trans_handle *trans;
7504 struct btrfs_root *root = BTRFS_I(dir)->root;
7505 struct btrfs_path *path;
7506 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05007507 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04007508 int err;
7509 int drop_inode = 0;
7510 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04007511 u64 index = 0 ;
Chris Mason39279cc2007-06-12 06:35:45 -04007512 int name_len;
7513 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04007514 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04007515 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04007516 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05007517 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007518
7519 name_len = strlen(symname) + 1;
7520 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
7521 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05007522
Josef Bacik9ed74f22009-09-11 16:12:44 -04007523 /*
7524 * 2 items for inode item and ref
7525 * 2 items for dir items
7526 * 1 item for xattr if selinux is on
7527 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04007528 trans = btrfs_start_transaction(root, 5);
7529 if (IS_ERR(trans))
7530 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05007531
Li Zefan581bb052011-04-20 10:06:11 +08007532 err = btrfs_find_free_ino(root, &objectid);
7533 if (err)
7534 goto out_unlock;
7535
Josef Bacikaec74772008-07-24 12:12:38 -04007536 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08007537 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04007538 S_IFLNK|S_IRWXUGO, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04007539 if (IS_ERR(inode)) {
7540 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007541 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04007542 }
Chris Mason39279cc2007-06-12 06:35:45 -04007543
Eric Paris2a7dba32011-02-01 11:05:39 -05007544 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04007545 if (err) {
7546 drop_inode = 1;
7547 goto out_unlock;
7548 }
7549
Casey Schauflerad19db72011-12-15 10:09:07 -05007550 /*
7551 * If the active LSM wants to access the inode during
7552 * d_instantiate it needs these. Smack checks to see
7553 * if the filesystem supports xattrs by looking at the
7554 * ops vector.
7555 */
7556 inode->i_fop = &btrfs_file_operations;
7557 inode->i_op = &btrfs_file_inode_operations;
7558
Josef Bacika1b075d2010-11-19 20:36:11 +00007559 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04007560 if (err)
7561 drop_inode = 1;
7562 else {
7563 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04007564 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05007565 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04007566 }
Chris Mason39279cc2007-06-12 06:35:45 -04007567 if (drop_inode)
7568 goto out_unlock;
7569
7570 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07007571 if (!path) {
7572 err = -ENOMEM;
7573 drop_inode = 1;
7574 goto out_unlock;
7575 }
Li Zefan33345d012011-04-20 10:31:50 +08007576 key.objectid = btrfs_ino(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007577 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007578 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
7579 datasize = btrfs_file_extent_calc_inline_size(name_len);
7580 err = btrfs_insert_empty_item(trans, root, path, &key,
7581 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04007582 if (err) {
7583 drop_inode = 1;
Julia Lawallb0839162011-05-14 07:10:51 +00007584 btrfs_free_path(path);
Chris Mason54aa1f42007-06-22 14:16:25 -04007585 goto out_unlock;
7586 }
Chris Mason5f39d392007-10-15 16:14:19 -04007587 leaf = path->nodes[0];
7588 ei = btrfs_item_ptr(leaf, path->slots[0],
7589 struct btrfs_file_extent_item);
7590 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
7591 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04007592 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -04007593 btrfs_set_file_extent_encryption(leaf, ei, 0);
7594 btrfs_set_file_extent_compression(leaf, ei, 0);
7595 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
7596 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
7597
Chris Mason39279cc2007-06-12 06:35:45 -04007598 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04007599 write_extent_buffer(leaf, symname, ptr, name_len);
7600 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04007601 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04007602
Chris Mason39279cc2007-06-12 06:35:45 -04007603 inode->i_op = &btrfs_symlink_inode_operations;
7604 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04007605 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Yan Zhengd899e052008-10-30 14:25:28 -04007606 inode_set_bytes(inode, name_len);
Chris Masondbe674a2008-07-17 12:54:05 -04007607 btrfs_i_size_write(inode, name_len - 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04007608 err = btrfs_update_inode(trans, root, inode);
7609 if (err)
7610 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04007611
7612out_unlock:
Al Viro08c422c2011-12-23 07:58:13 -05007613 if (!err)
7614 d_instantiate(dentry, inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04007615 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05007616 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04007617 if (drop_inode) {
7618 inode_dec_link_count(inode);
7619 iput(inode);
7620 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04007621 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04007622 return err;
7623}
Chris Mason16432982008-04-10 10:23:21 -04007624
Josef Bacik0af3d002010-06-21 14:48:16 -04007625static int __btrfs_prealloc_file_range(struct inode *inode, int mode,
7626 u64 start, u64 num_bytes, u64 min_size,
7627 loff_t actual_len, u64 *alloc_hint,
7628 struct btrfs_trans_handle *trans)
Yan Zhengd899e052008-10-30 14:25:28 -04007629{
Josef Bacik5dc562c2012-08-17 13:14:17 -04007630 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
7631 struct extent_map *em;
Yan Zhengd899e052008-10-30 14:25:28 -04007632 struct btrfs_root *root = BTRFS_I(inode)->root;
7633 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -04007634 u64 cur_offset = start;
Josef Bacik55a61d12010-11-22 18:50:32 +00007635 u64 i_size;
Yan Zhengd899e052008-10-30 14:25:28 -04007636 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04007637 bool own_trans = true;
Yan Zhengd899e052008-10-30 14:25:28 -04007638
Josef Bacik0af3d002010-06-21 14:48:16 -04007639 if (trans)
7640 own_trans = false;
Yan Zhengd899e052008-10-30 14:25:28 -04007641 while (num_bytes > 0) {
Josef Bacik0af3d002010-06-21 14:48:16 -04007642 if (own_trans) {
7643 trans = btrfs_start_transaction(root, 3);
7644 if (IS_ERR(trans)) {
7645 ret = PTR_ERR(trans);
7646 break;
7647 }
Yan Zhengd899e052008-10-30 14:25:28 -04007648 }
Yan, Zheng5a303d52009-11-12 09:34:52 +00007649
Yan, Zhengefa56462010-05-16 10:49:59 -04007650 ret = btrfs_reserve_extent(trans, root, num_bytes, min_size,
Josef Bacik81c9ad22012-01-18 10:56:06 -05007651 0, *alloc_hint, &ins, 1);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007652 if (ret) {
Josef Bacik0af3d002010-06-21 14:48:16 -04007653 if (own_trans)
7654 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04007655 break;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007656 }
7657
Yan Zhengd899e052008-10-30 14:25:28 -04007658 ret = insert_reserved_file_extent(trans, inode,
7659 cur_offset, ins.objectid,
7660 ins.offset, ins.offset,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00007661 ins.offset, 0, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04007662 BTRFS_FILE_EXTENT_PREALLOC);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007663 if (ret) {
7664 btrfs_abort_transaction(trans, root, ret);
7665 if (own_trans)
7666 btrfs_end_transaction(trans, root);
7667 break;
7668 }
Chris Masona1ed8352009-09-11 12:27:37 -04007669 btrfs_drop_extent_cache(inode, cur_offset,
7670 cur_offset + ins.offset -1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007671
Josef Bacik5dc562c2012-08-17 13:14:17 -04007672 em = alloc_extent_map();
7673 if (!em) {
7674 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
7675 &BTRFS_I(inode)->runtime_flags);
7676 goto next;
7677 }
7678
7679 em->start = cur_offset;
7680 em->orig_start = cur_offset;
7681 em->len = ins.offset;
7682 em->block_start = ins.objectid;
7683 em->block_len = ins.offset;
7684 em->bdev = root->fs_info->fs_devices->latest_bdev;
7685 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
7686 em->generation = trans->transid;
7687
7688 while (1) {
7689 write_lock(&em_tree->lock);
7690 ret = add_extent_mapping(em_tree, em);
7691 if (!ret)
7692 list_move(&em->list,
7693 &em_tree->modified_extents);
7694 write_unlock(&em_tree->lock);
7695 if (ret != -EEXIST)
7696 break;
7697 btrfs_drop_extent_cache(inode, cur_offset,
7698 cur_offset + ins.offset - 1,
7699 0);
7700 }
7701 free_extent_map(em);
7702next:
Yan Zhengd899e052008-10-30 14:25:28 -04007703 num_bytes -= ins.offset;
7704 cur_offset += ins.offset;
Yan, Zhengefa56462010-05-16 10:49:59 -04007705 *alloc_hint = ins.objectid + ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007706
Josef Bacik0c4d2d92012-04-05 15:03:02 -04007707 inode_inc_iversion(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04007708 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +02007709 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -04007710 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
Yan, Zhengefa56462010-05-16 10:49:59 -04007711 (actual_len > inode->i_size) &&
7712 (cur_offset > inode->i_size)) {
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00007713 if (cur_offset > actual_len)
Josef Bacik55a61d12010-11-22 18:50:32 +00007714 i_size = actual_len;
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00007715 else
Josef Bacik55a61d12010-11-22 18:50:32 +00007716 i_size = cur_offset;
7717 i_size_write(inode, i_size);
7718 btrfs_ordered_update_i_size(inode, i_size, NULL);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007719 }
7720
Yan Zhengd899e052008-10-30 14:25:28 -04007721 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007722
7723 if (ret) {
7724 btrfs_abort_transaction(trans, root, ret);
7725 if (own_trans)
7726 btrfs_end_transaction(trans, root);
7727 break;
7728 }
Yan Zhengd899e052008-10-30 14:25:28 -04007729
Josef Bacik0af3d002010-06-21 14:48:16 -04007730 if (own_trans)
7731 btrfs_end_transaction(trans, root);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007732 }
Yan Zhengd899e052008-10-30 14:25:28 -04007733 return ret;
7734}
7735
Josef Bacik0af3d002010-06-21 14:48:16 -04007736int btrfs_prealloc_file_range(struct inode *inode, int mode,
7737 u64 start, u64 num_bytes, u64 min_size,
7738 loff_t actual_len, u64 *alloc_hint)
7739{
7740 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
7741 min_size, actual_len, alloc_hint,
7742 NULL);
7743}
7744
7745int btrfs_prealloc_file_range_trans(struct inode *inode,
7746 struct btrfs_trans_handle *trans, int mode,
7747 u64 start, u64 num_bytes, u64 min_size,
7748 loff_t actual_len, u64 *alloc_hint)
7749{
7750 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
7751 min_size, actual_len, alloc_hint, trans);
7752}
7753
Chris Masone6dcd2d2008-07-17 12:53:50 -04007754static int btrfs_set_page_dirty(struct page *page)
7755{
Chris Masone6dcd2d2008-07-17 12:53:50 -04007756 return __set_page_dirty_nobuffers(page);
7757}
7758
Al Viro10556cb2011-06-20 19:28:19 -04007759static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -05007760{
Li Zefanb83cc962010-12-20 16:04:08 +08007761 struct btrfs_root *root = BTRFS_I(inode)->root;
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +00007762 umode_t mode = inode->i_mode;
Li Zefanb83cc962010-12-20 16:04:08 +08007763
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +00007764 if (mask & MAY_WRITE &&
7765 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) {
7766 if (btrfs_root_readonly(root))
7767 return -EROFS;
7768 if (BTRFS_I(inode)->flags & BTRFS_INODE_READONLY)
7769 return -EACCES;
7770 }
Al Viro2830ba72011-06-20 19:16:29 -04007771 return generic_permission(inode, mask);
Yanfdebe2b2008-01-14 13:26:08 -05007772}
Chris Mason39279cc2007-06-12 06:35:45 -04007773
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007774static const struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -05007775 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -04007776 .lookup = btrfs_lookup,
7777 .create = btrfs_create,
7778 .unlink = btrfs_unlink,
7779 .link = btrfs_link,
7780 .mkdir = btrfs_mkdir,
7781 .rmdir = btrfs_rmdir,
7782 .rename = btrfs_rename,
7783 .symlink = btrfs_symlink,
7784 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04007785 .mknod = btrfs_mknod,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007786 .setxattr = btrfs_setxattr,
7787 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05007788 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007789 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05007790 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007791 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04007792};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007793static const struct inode_operations btrfs_dir_ro_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007794 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05007795 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007796 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04007797};
Yan, Zheng76dda932009-09-21 16:00:26 -04007798
Alexey Dobriyan828c0952009-10-01 15:43:56 -07007799static const struct file_operations btrfs_dir_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007800 .llseek = generic_file_llseek,
7801 .read = generic_read_dir,
David Woodhousecbdf5a22008-08-06 19:42:33 +01007802 .readdir = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04007803 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04007804#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04007805 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04007806#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04007807 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -04007808 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -04007809};
7810
Chris Masond1310b22008-01-24 16:13:08 -05007811static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04007812 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05007813 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04007814 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04007815 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04007816 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04007817 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05007818 .set_bit_hook = btrfs_set_bit_hook,
7819 .clear_bit_hook = btrfs_clear_bit_hook,
Josef Bacik9ed74f22009-09-11 16:12:44 -04007820 .merge_extent_hook = btrfs_merge_extent_hook,
7821 .split_extent_hook = btrfs_split_extent_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04007822};
7823
Chris Mason35054392009-01-21 13:11:13 -05007824/*
7825 * btrfs doesn't support the bmap operation because swapfiles
7826 * use bmap to make a mapping of extents in the file. They assume
7827 * these extents won't change over the life of the file and they
7828 * use the bmap result to do IO directly to the drive.
7829 *
7830 * the btrfs bmap call would return logical addresses that aren't
7831 * suitable for IO and they also will change frequently as COW
7832 * operations happen. So, swapfile + btrfs == corruption.
7833 *
7834 * For now we're avoiding this by dropping bmap.
7835 */
Alexey Dobriyan7f094102009-09-21 17:01:10 -07007836static const struct address_space_operations btrfs_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04007837 .readpage = btrfs_readpage,
7838 .writepage = btrfs_writepage,
Chris Masonb293f022007-11-01 19:45:34 -04007839 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05007840 .readpages = btrfs_readpages,
Chris Mason16432982008-04-10 10:23:21 -04007841 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04007842 .invalidatepage = btrfs_invalidatepage,
7843 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04007844 .set_page_dirty = btrfs_set_page_dirty,
Andi Kleen465fdd92009-09-16 11:50:18 +02007845 .error_remove_page = generic_error_remove_page,
Chris Mason39279cc2007-06-12 06:35:45 -04007846};
7847
Alexey Dobriyan7f094102009-09-21 17:01:10 -07007848static const struct address_space_operations btrfs_symlink_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04007849 .readpage = btrfs_readpage,
7850 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04007851 .invalidatepage = btrfs_invalidatepage,
7852 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04007853};
7854
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007855static const struct inode_operations btrfs_file_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007856 .getattr = btrfs_getattr,
7857 .setattr = btrfs_setattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007858 .setxattr = btrfs_setxattr,
7859 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05007860 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007861 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05007862 .permission = btrfs_permission,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05007863 .fiemap = btrfs_fiemap,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007864 .get_acl = btrfs_get_acl,
Josef Bacike41f9412012-03-26 09:46:47 -04007865 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -04007866};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007867static const struct inode_operations btrfs_special_inode_operations = {
Josef Bacik618e21d2007-07-11 10:18:17 -04007868 .getattr = btrfs_getattr,
7869 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05007870 .permission = btrfs_permission,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007871 .setxattr = btrfs_setxattr,
7872 .getxattr = btrfs_getxattr,
Josef Bacik33268ea2008-07-24 12:16:36 -04007873 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007874 .removexattr = btrfs_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007875 .get_acl = btrfs_get_acl,
Josef Bacike41f9412012-03-26 09:46:47 -04007876 .update_time = btrfs_update_time,
Josef Bacik618e21d2007-07-11 10:18:17 -04007877};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007878static const struct inode_operations btrfs_symlink_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007879 .readlink = generic_readlink,
7880 .follow_link = page_follow_link_light,
7881 .put_link = page_put_link,
Li Zefanf2095612010-11-19 02:05:24 +00007882 .getattr = btrfs_getattr,
Josef Bacik22c44fe2011-11-30 10:45:38 -05007883 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05007884 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -05007885 .setxattr = btrfs_setxattr,
7886 .getxattr = btrfs_getxattr,
7887 .listxattr = btrfs_listxattr,
7888 .removexattr = btrfs_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007889 .get_acl = btrfs_get_acl,
Josef Bacike41f9412012-03-26 09:46:47 -04007890 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -04007891};
Yan, Zheng76dda932009-09-21 16:00:26 -04007892
Alexey Dobriyan82d339d2009-10-09 09:54:36 -04007893const struct dentry_operations btrfs_dentry_operations = {
Yan, Zheng76dda932009-09-21 16:00:26 -04007894 .d_delete = btrfs_dentry_delete,
Josef Bacikb4aff1f2011-06-28 16:18:59 -04007895 .d_release = btrfs_dentry_release,
Yan, Zheng76dda932009-09-21 16:00:26 -04007896};