blob: dc800eefdbc7edefc985b73a09f22ca430d16f21 [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);
Chris Masonc8b97812008-10-29 14:49:59 -040092static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end);
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);
153 BUG_ON(ret);
154 if (ret) {
155 err = ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400156 goto fail;
157 }
158 leaf = path->nodes[0];
159 ei = btrfs_item_ptr(leaf, path->slots[0],
160 struct btrfs_file_extent_item);
161 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
162 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
163 btrfs_set_file_extent_encryption(leaf, ei, 0);
164 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
165 btrfs_set_file_extent_ram_bytes(leaf, ei, size);
166 ptr = btrfs_file_extent_inline_start(ei);
167
Li Zefan261507a02010-12-17 14:21:50 +0800168 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -0400169 struct page *cpage;
170 int i = 0;
Chris Masond3977122009-01-05 21:25:51 -0500171 while (compressed_size > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -0400172 cpage = compressed_pages[i];
Chris Mason5b050f02008-11-11 09:34:41 -0500173 cur_size = min_t(unsigned long, compressed_size,
Chris Masonc8b97812008-10-29 14:49:59 -0400174 PAGE_CACHE_SIZE);
175
Chris Masonb9473432009-03-13 11:00:37 -0400176 kaddr = kmap_atomic(cpage, KM_USER0);
Chris Masonc8b97812008-10-29 14:49:59 -0400177 write_extent_buffer(leaf, kaddr, ptr, cur_size);
Chris Masonb9473432009-03-13 11:00:37 -0400178 kunmap_atomic(kaddr, KM_USER0);
Chris Masonc8b97812008-10-29 14:49:59 -0400179
180 i++;
181 ptr += cur_size;
182 compressed_size -= cur_size;
183 }
184 btrfs_set_file_extent_compression(leaf, ei,
Li Zefan261507a02010-12-17 14:21:50 +0800185 compress_type);
Chris Masonc8b97812008-10-29 14:49:59 -0400186 } else {
187 page = find_get_page(inode->i_mapping,
188 start >> PAGE_CACHE_SHIFT);
189 btrfs_set_file_extent_compression(leaf, ei, 0);
190 kaddr = kmap_atomic(page, KM_USER0);
191 offset = start & (PAGE_CACHE_SIZE - 1);
192 write_extent_buffer(leaf, kaddr + offset, ptr, size);
193 kunmap_atomic(kaddr, KM_USER0);
194 page_cache_release(page);
195 }
196 btrfs_mark_buffer_dirty(leaf);
197 btrfs_free_path(path);
198
Yan, Zhengc2167752009-11-12 09:34:21 +0000199 /*
200 * we're an inline extent, so nobody can
201 * extend the file past i_size without locking
202 * a page we already have locked.
203 *
204 * We must do any isize and inode updates
205 * before we unlock the pages. Otherwise we
206 * could end up racing with unlink.
207 */
Chris Masonc8b97812008-10-29 14:49:59 -0400208 BTRFS_I(inode)->disk_i_size = inode->i_size;
209 btrfs_update_inode(trans, root, inode);
Yan, Zhengc2167752009-11-12 09:34:21 +0000210
Chris Masonc8b97812008-10-29 14:49:59 -0400211 return 0;
212fail:
213 btrfs_free_path(path);
214 return err;
215}
216
217
218/*
219 * conditionally insert an inline extent into the file. This
220 * does the checks required to make sure the data is small enough
221 * to fit as an inline extent.
222 */
Chris Mason7f366cf2009-03-12 20:12:45 -0400223static noinline int cow_file_range_inline(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400224 struct btrfs_root *root,
225 struct inode *inode, u64 start, u64 end,
Li Zefanfe3f5662011-03-28 08:30:38 +0000226 size_t compressed_size, int compress_type,
Chris Masonc8b97812008-10-29 14:49:59 -0400227 struct page **compressed_pages)
228{
229 u64 isize = i_size_read(inode);
230 u64 actual_end = min(end + 1, isize);
231 u64 inline_len = actual_end - start;
232 u64 aligned_end = (end + root->sectorsize - 1) &
233 ~((u64)root->sectorsize - 1);
234 u64 hint_byte;
235 u64 data_len = inline_len;
236 int ret;
237
238 if (compressed_size)
239 data_len = compressed_size;
240
241 if (start > 0 ||
Chris Mason70b99e62008-10-31 12:46:39 -0400242 actual_end >= PAGE_CACHE_SIZE ||
Chris Masonc8b97812008-10-29 14:49:59 -0400243 data_len >= BTRFS_MAX_INLINE_DATA_SIZE(root) ||
244 (!compressed_size &&
245 (actual_end & (root->sectorsize - 1)) == 0) ||
246 end + 1 < isize ||
247 data_len > root->fs_info->max_inline) {
248 return 1;
249 }
250
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000251 ret = btrfs_drop_extents(trans, inode, start, aligned_end,
Chris Masona1ed8352009-09-11 12:27:37 -0400252 &hint_byte, 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400253 BUG_ON(ret);
254
255 if (isize > actual_end)
256 inline_len = min_t(u64, isize, actual_end);
257 ret = insert_inline_extent(trans, root, inode, start,
258 inline_len, compressed_size,
Li Zefanfe3f5662011-03-28 08:30:38 +0000259 compress_type, compressed_pages);
Chris Masonc8b97812008-10-29 14:49:59 -0400260 BUG_ON(ret);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400261 btrfs_delalloc_release_metadata(inode, end + 1 - start);
Chris Masona1ed8352009-09-11 12:27:37 -0400262 btrfs_drop_extent_cache(inode, start, aligned_end - 1, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400263 return 0;
264}
265
Chris Mason771ed682008-11-06 22:02:51 -0500266struct async_extent {
267 u64 start;
268 u64 ram_size;
269 u64 compressed_size;
270 struct page **pages;
271 unsigned long nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800272 int compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500273 struct list_head list;
274};
275
276struct async_cow {
277 struct inode *inode;
278 struct btrfs_root *root;
279 struct page *locked_page;
280 u64 start;
281 u64 end;
282 struct list_head extents;
283 struct btrfs_work work;
284};
285
286static noinline int add_async_extent(struct async_cow *cow,
287 u64 start, u64 ram_size,
288 u64 compressed_size,
289 struct page **pages,
Li Zefan261507a02010-12-17 14:21:50 +0800290 unsigned long nr_pages,
291 int compress_type)
Chris Mason771ed682008-11-06 22:02:51 -0500292{
293 struct async_extent *async_extent;
294
295 async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS);
Yoshinori Sanodac97e52011-02-15 12:01:42 +0000296 BUG_ON(!async_extent);
Chris Mason771ed682008-11-06 22:02:51 -0500297 async_extent->start = start;
298 async_extent->ram_size = ram_size;
299 async_extent->compressed_size = compressed_size;
300 async_extent->pages = pages;
301 async_extent->nr_pages = nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800302 async_extent->compress_type = compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500303 list_add_tail(&async_extent->list, &cow->extents);
304 return 0;
305}
306
Chris Masonc8b97812008-10-29 14:49:59 -0400307/*
Chris Mason771ed682008-11-06 22:02:51 -0500308 * we create compressed extents in two phases. The first
309 * phase compresses a range of pages that have already been
310 * locked (both pages and state bits are locked).
Chris Masonc8b97812008-10-29 14:49:59 -0400311 *
Chris Mason771ed682008-11-06 22:02:51 -0500312 * This is done inside an ordered work queue, and the compression
313 * is spread across many cpus. The actual IO submission is step
314 * two, and the ordered work queue takes care of making sure that
315 * happens in the same order things were put onto the queue by
316 * writepages and friends.
Chris Masonc8b97812008-10-29 14:49:59 -0400317 *
Chris Mason771ed682008-11-06 22:02:51 -0500318 * If this code finds it can't get good compression, it puts an
319 * entry onto the work queue to write the uncompressed bytes. This
320 * makes sure that both compressed inodes and uncompressed inodes
321 * are written in the same order that pdflush sent them down.
Chris Masond352ac62008-09-29 15:18:18 -0400322 */
Chris Mason771ed682008-11-06 22:02:51 -0500323static noinline int compress_file_range(struct inode *inode,
324 struct page *locked_page,
325 u64 start, u64 end,
326 struct async_cow *async_cow,
327 int *num_added)
Chris Masonb888db22007-08-27 16:49:44 -0400328{
329 struct btrfs_root *root = BTRFS_I(inode)->root;
330 struct btrfs_trans_handle *trans;
Chris Masondb945352007-10-15 16:15:53 -0400331 u64 num_bytes;
Chris Masondb945352007-10-15 16:15:53 -0400332 u64 blocksize = root->sectorsize;
Chris Masonc8b97812008-10-29 14:49:59 -0400333 u64 actual_end;
Chris Mason42dc7ba2008-12-15 11:44:56 -0500334 u64 isize = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400335 int ret = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400336 struct page **pages = NULL;
337 unsigned long nr_pages;
338 unsigned long nr_pages_ret = 0;
339 unsigned long total_compressed = 0;
340 unsigned long total_in = 0;
341 unsigned long max_compressed = 128 * 1024;
Chris Mason771ed682008-11-06 22:02:51 -0500342 unsigned long max_uncompressed = 128 * 1024;
Chris Masonc8b97812008-10-29 14:49:59 -0400343 int i;
344 int will_compress;
Li Zefan261507a02010-12-17 14:21:50 +0800345 int compress_type = root->fs_info->compress_type;
Chris Masonb888db22007-08-27 16:49:44 -0400346
Chris Mason4cb53002011-05-24 15:35:30 -0400347 /* if this is a small write inside eof, kick off a defragbot */
348 if (end <= BTRFS_I(inode)->disk_i_size && (end - start + 1) < 16 * 1024)
349 btrfs_add_inode_defrag(NULL, inode);
350
Chris Mason42dc7ba2008-12-15 11:44:56 -0500351 actual_end = min_t(u64, isize, end + 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400352again:
353 will_compress = 0;
354 nr_pages = (end >> PAGE_CACHE_SHIFT) - (start >> PAGE_CACHE_SHIFT) + 1;
355 nr_pages = min(nr_pages, (128 * 1024UL) / PAGE_CACHE_SIZE);
356
Chris Masonf03d9301f2009-02-04 09:31:06 -0500357 /*
358 * we don't want to send crud past the end of i_size through
359 * compression, that's just a waste of CPU time. So, if the
360 * end of the file is before the start of our current
361 * requested range of bytes, we bail out to the uncompressed
362 * cleanup code that can deal with all of this.
363 *
364 * It isn't really the fastest way to fix things, but this is a
365 * very uncommon corner.
366 */
367 if (actual_end <= start)
368 goto cleanup_and_bail_uncompressed;
369
Chris Masonc8b97812008-10-29 14:49:59 -0400370 total_compressed = actual_end - start;
371
372 /* we want to make sure that amount of ram required to uncompress
373 * an extent is reasonable, so we limit the total size in ram
Chris Mason771ed682008-11-06 22:02:51 -0500374 * of a compressed extent to 128k. This is a crucial number
375 * because it also controls how easily we can spread reads across
376 * cpus for decompression.
377 *
378 * We also want to make sure the amount of IO required to do
379 * a random read is reasonably small, so we limit the size of
380 * a compressed extent to 128k.
Chris Masonc8b97812008-10-29 14:49:59 -0400381 */
382 total_compressed = min(total_compressed, max_uncompressed);
Chris Masondb945352007-10-15 16:15:53 -0400383 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
Chris Masonbe20aa92007-12-17 20:14:01 -0500384 num_bytes = max(blocksize, num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -0400385 total_in = 0;
386 ret = 0;
Chris Masondb945352007-10-15 16:15:53 -0400387
Chris Mason771ed682008-11-06 22:02:51 -0500388 /*
389 * we do compression for mount -o compress and when the
390 * inode has not been flagged as nocompress. This flag can
391 * change at any time if we discover bad compression ratios.
Chris Masonc8b97812008-10-29 14:49:59 -0400392 */
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200393 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS) &&
Chris Mason1e701a32010-03-11 09:42:04 -0500394 (btrfs_test_opt(root, COMPRESS) ||
Liu Bo75e7cb72011-03-22 10:12:20 +0000395 (BTRFS_I(inode)->force_compress) ||
396 (BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS))) {
Chris Masonc8b97812008-10-29 14:49:59 -0400397 WARN_ON(pages);
Chris Masoncfbc2462008-10-30 13:22:14 -0400398 pages = kzalloc(sizeof(struct page *) * nr_pages, GFP_NOFS);
Li Zefan560f7d72011-09-08 10:22:01 +0800399 if (!pages) {
400 /* just bail out to the uncompressed code */
401 goto cont;
402 }
Chris Mason179e29e2007-11-01 11:28:41 -0400403
Li Zefan261507a02010-12-17 14:21:50 +0800404 if (BTRFS_I(inode)->force_compress)
405 compress_type = BTRFS_I(inode)->force_compress;
406
407 ret = btrfs_compress_pages(compress_type,
408 inode->i_mapping, start,
409 total_compressed, pages,
410 nr_pages, &nr_pages_ret,
411 &total_in,
412 &total_compressed,
413 max_compressed);
Chris Masonc8b97812008-10-29 14:49:59 -0400414
415 if (!ret) {
416 unsigned long offset = total_compressed &
417 (PAGE_CACHE_SIZE - 1);
418 struct page *page = pages[nr_pages_ret - 1];
419 char *kaddr;
420
421 /* zero the tail end of the last page, we might be
422 * sending it down to disk
423 */
424 if (offset) {
425 kaddr = kmap_atomic(page, KM_USER0);
426 memset(kaddr + offset, 0,
427 PAGE_CACHE_SIZE - offset);
428 kunmap_atomic(kaddr, KM_USER0);
429 }
430 will_compress = 1;
431 }
432 }
Li Zefan560f7d72011-09-08 10:22:01 +0800433cont:
Chris Masonc8b97812008-10-29 14:49:59 -0400434 if (start == 0) {
Josef Bacik7a7eaa42011-04-13 12:54:33 -0400435 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +0000436 BUG_ON(IS_ERR(trans));
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400437 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason771ed682008-11-06 22:02:51 -0500438
Chris Masonc8b97812008-10-29 14:49:59 -0400439 /* lets try to make an inline extent */
Chris Mason771ed682008-11-06 22:02:51 -0500440 if (ret || total_in < (actual_end - start)) {
Chris Masonc8b97812008-10-29 14:49:59 -0400441 /* we didn't compress the entire range, try
Chris Mason771ed682008-11-06 22:02:51 -0500442 * to make an uncompressed inline extent.
Chris Masonc8b97812008-10-29 14:49:59 -0400443 */
444 ret = cow_file_range_inline(trans, root, inode,
Li Zefanfe3f5662011-03-28 08:30:38 +0000445 start, end, 0, 0, NULL);
Chris Masonc8b97812008-10-29 14:49:59 -0400446 } else {
Chris Mason771ed682008-11-06 22:02:51 -0500447 /* try making a compressed inline extent */
Chris Masonc8b97812008-10-29 14:49:59 -0400448 ret = cow_file_range_inline(trans, root, inode,
449 start, end,
Li Zefanfe3f5662011-03-28 08:30:38 +0000450 total_compressed,
451 compress_type, pages);
Chris Masonc8b97812008-10-29 14:49:59 -0400452 }
453 if (ret == 0) {
Chris Mason771ed682008-11-06 22:02:51 -0500454 /*
455 * inline extent creation worked, we don't need
456 * to create any more async work items. Unlock
457 * and free up our temp pages.
458 */
Chris Masonc8b97812008-10-29 14:49:59 -0400459 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400460 &BTRFS_I(inode)->io_tree,
461 start, end, NULL,
462 EXTENT_CLEAR_UNLOCK_PAGE | EXTENT_CLEAR_DIRTY |
Chris Masona3429ab2009-10-08 12:30:20 -0400463 EXTENT_CLEAR_DELALLOC |
Chris Masona791e352009-10-08 11:27:10 -0400464 EXTENT_SET_WRITEBACK | EXTENT_END_WRITEBACK);
Yan, Zhengc2167752009-11-12 09:34:21 +0000465
466 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400467 goto free_pages_out;
468 }
Yan, Zhengc2167752009-11-12 09:34:21 +0000469 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400470 }
471
472 if (will_compress) {
473 /*
474 * we aren't doing an inline extent round the compressed size
475 * up to a block size boundary so the allocator does sane
476 * things
477 */
478 total_compressed = (total_compressed + blocksize - 1) &
479 ~(blocksize - 1);
480
481 /*
482 * one last check to make sure the compression is really a
483 * win, compare the page count read with the blocks on disk
484 */
485 total_in = (total_in + PAGE_CACHE_SIZE - 1) &
486 ~(PAGE_CACHE_SIZE - 1);
487 if (total_compressed >= total_in) {
488 will_compress = 0;
489 } else {
Chris Masonc8b97812008-10-29 14:49:59 -0400490 num_bytes = total_in;
491 }
492 }
493 if (!will_compress && pages) {
494 /*
495 * the compression code ran but failed to make things smaller,
496 * free any pages it allocated and our page pointer array
497 */
498 for (i = 0; i < nr_pages_ret; i++) {
Chris Mason70b99e62008-10-31 12:46:39 -0400499 WARN_ON(pages[i]->mapping);
Chris Masonc8b97812008-10-29 14:49:59 -0400500 page_cache_release(pages[i]);
501 }
502 kfree(pages);
503 pages = NULL;
504 total_compressed = 0;
505 nr_pages_ret = 0;
506
507 /* flag the file so we don't compress in the future */
Chris Mason1e701a32010-03-11 09:42:04 -0500508 if (!btrfs_test_opt(root, FORCE_COMPRESS) &&
509 !(BTRFS_I(inode)->force_compress)) {
Chris Masona555f812010-01-28 16:18:15 -0500510 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
Chris Mason1e701a32010-03-11 09:42:04 -0500511 }
Chris Masonc8b97812008-10-29 14:49:59 -0400512 }
Chris Mason771ed682008-11-06 22:02:51 -0500513 if (will_compress) {
514 *num_added += 1;
515
516 /* the async work queues will take care of doing actual
517 * allocation on disk for these compressed pages,
518 * and will submit them to the elevator.
519 */
520 add_async_extent(async_cow, start, num_bytes,
Li Zefan261507a02010-12-17 14:21:50 +0800521 total_compressed, pages, nr_pages_ret,
522 compress_type);
Chris Mason771ed682008-11-06 22:02:51 -0500523
Yan, Zheng24ae6362010-12-06 07:02:36 +0000524 if (start + num_bytes < end) {
Chris Mason771ed682008-11-06 22:02:51 -0500525 start += num_bytes;
526 pages = NULL;
527 cond_resched();
528 goto again;
529 }
530 } else {
Chris Masonf03d9301f2009-02-04 09:31:06 -0500531cleanup_and_bail_uncompressed:
Chris Mason771ed682008-11-06 22:02:51 -0500532 /*
533 * No compression, but we still need to write the pages in
534 * the file we've been given so far. redirty the locked
535 * page if it corresponds to our extent and set things up
536 * for the async work queue to run cow_file_range to do
537 * the normal delalloc dance
538 */
539 if (page_offset(locked_page) >= start &&
540 page_offset(locked_page) <= end) {
541 __set_page_dirty_nobuffers(locked_page);
542 /* unlocked later on in the async handlers */
543 }
Li Zefan261507a02010-12-17 14:21:50 +0800544 add_async_extent(async_cow, start, end - start + 1,
545 0, NULL, 0, BTRFS_COMPRESS_NONE);
Chris Mason771ed682008-11-06 22:02:51 -0500546 *num_added += 1;
547 }
548
549out:
550 return 0;
551
552free_pages_out:
553 for (i = 0; i < nr_pages_ret; i++) {
554 WARN_ON(pages[i]->mapping);
555 page_cache_release(pages[i]);
556 }
Chris Masond3977122009-01-05 21:25:51 -0500557 kfree(pages);
Chris Mason771ed682008-11-06 22:02:51 -0500558
559 goto out;
560}
561
562/*
563 * phase two of compressed writeback. This is the ordered portion
564 * of the code, which only gets called in the order the work was
565 * queued. We walk all the async extents created by compress_file_range
566 * and send them down to the disk.
567 */
568static noinline int submit_compressed_extents(struct inode *inode,
569 struct async_cow *async_cow)
570{
571 struct async_extent *async_extent;
572 u64 alloc_hint = 0;
573 struct btrfs_trans_handle *trans;
574 struct btrfs_key ins;
575 struct extent_map *em;
576 struct btrfs_root *root = BTRFS_I(inode)->root;
577 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
578 struct extent_io_tree *io_tree;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500579 int ret = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500580
581 if (list_empty(&async_cow->extents))
582 return 0;
583
Chris Mason771ed682008-11-06 22:02:51 -0500584
Chris Masond3977122009-01-05 21:25:51 -0500585 while (!list_empty(&async_cow->extents)) {
Chris Mason771ed682008-11-06 22:02:51 -0500586 async_extent = list_entry(async_cow->extents.next,
587 struct async_extent, list);
588 list_del(&async_extent->list);
589
590 io_tree = &BTRFS_I(inode)->io_tree;
591
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500592retry:
Chris Mason771ed682008-11-06 22:02:51 -0500593 /* did the compression code fall back to uncompressed IO? */
594 if (!async_extent->pages) {
595 int page_started = 0;
596 unsigned long nr_written = 0;
597
598 lock_extent(io_tree, async_extent->start,
Josef Bacik2ac55d42010-02-03 19:33:23 +0000599 async_extent->start +
600 async_extent->ram_size - 1, GFP_NOFS);
Chris Mason771ed682008-11-06 22:02:51 -0500601
602 /* allocate blocks */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500603 ret = cow_file_range(inode, async_cow->locked_page,
604 async_extent->start,
605 async_extent->start +
606 async_extent->ram_size - 1,
607 &page_started, &nr_written, 0);
Chris Mason771ed682008-11-06 22:02:51 -0500608
609 /*
610 * if page_started, cow_file_range inserted an
611 * inline extent and took care of all the unlocking
612 * and IO for us. Otherwise, we need to submit
613 * all those pages down to the drive.
614 */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500615 if (!page_started && !ret)
Chris Mason771ed682008-11-06 22:02:51 -0500616 extent_write_locked_range(io_tree,
617 inode, async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500618 async_extent->start +
Chris Mason771ed682008-11-06 22:02:51 -0500619 async_extent->ram_size - 1,
620 btrfs_get_extent,
621 WB_SYNC_ALL);
622 kfree(async_extent);
623 cond_resched();
624 continue;
625 }
626
627 lock_extent(io_tree, async_extent->start,
628 async_extent->start + async_extent->ram_size - 1,
629 GFP_NOFS);
Chris Mason771ed682008-11-06 22:02:51 -0500630
Josef Bacik7a7eaa42011-04-13 12:54:33 -0400631 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +0000632 BUG_ON(IS_ERR(trans));
Josef Bacik74b21072011-04-13 12:02:53 -0400633 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason771ed682008-11-06 22:02:51 -0500634 ret = btrfs_reserve_extent(trans, root,
635 async_extent->compressed_size,
636 async_extent->compressed_size,
637 0, alloc_hint,
638 (u64)-1, &ins, 1);
Yan, Zhengc2167752009-11-12 09:34:21 +0000639 btrfs_end_transaction(trans, root);
640
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500641 if (ret) {
642 int i;
643 for (i = 0; i < async_extent->nr_pages; i++) {
644 WARN_ON(async_extent->pages[i]->mapping);
645 page_cache_release(async_extent->pages[i]);
646 }
647 kfree(async_extent->pages);
648 async_extent->nr_pages = 0;
649 async_extent->pages = NULL;
650 unlock_extent(io_tree, async_extent->start,
651 async_extent->start +
652 async_extent->ram_size - 1, GFP_NOFS);
653 goto retry;
654 }
655
Yan, Zhengc2167752009-11-12 09:34:21 +0000656 /*
657 * here we're doing allocation and writeback of the
658 * compressed pages
659 */
660 btrfs_drop_extent_cache(inode, async_extent->start,
661 async_extent->start +
662 async_extent->ram_size - 1, 0);
663
David Sterba172ddd62011-04-21 00:48:27 +0200664 em = alloc_extent_map();
Tsutomu Itohc26a9202011-02-14 00:45:29 +0000665 BUG_ON(!em);
Chris Mason771ed682008-11-06 22:02:51 -0500666 em->start = async_extent->start;
667 em->len = async_extent->ram_size;
Chris Mason445a6942008-11-10 11:53:33 -0500668 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500669
670 em->block_start = ins.objectid;
671 em->block_len = ins.offset;
672 em->bdev = root->fs_info->fs_devices->latest_bdev;
Li Zefan261507a02010-12-17 14:21:50 +0800673 em->compress_type = async_extent->compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500674 set_bit(EXTENT_FLAG_PINNED, &em->flags);
675 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
676
Chris Masond3977122009-01-05 21:25:51 -0500677 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400678 write_lock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500679 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400680 write_unlock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500681 if (ret != -EEXIST) {
682 free_extent_map(em);
683 break;
684 }
685 btrfs_drop_extent_cache(inode, async_extent->start,
686 async_extent->start +
687 async_extent->ram_size - 1, 0);
688 }
689
Li Zefan261507a02010-12-17 14:21:50 +0800690 ret = btrfs_add_ordered_extent_compress(inode,
691 async_extent->start,
692 ins.objectid,
693 async_extent->ram_size,
694 ins.offset,
695 BTRFS_ORDERED_COMPRESSED,
696 async_extent->compress_type);
Chris Mason771ed682008-11-06 22:02:51 -0500697 BUG_ON(ret);
698
Chris Mason771ed682008-11-06 22:02:51 -0500699 /*
700 * clear dirty, set writeback and unlock the pages.
701 */
702 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400703 &BTRFS_I(inode)->io_tree,
704 async_extent->start,
705 async_extent->start +
706 async_extent->ram_size - 1,
707 NULL, EXTENT_CLEAR_UNLOCK_PAGE |
708 EXTENT_CLEAR_UNLOCK |
Chris Masona3429ab2009-10-08 12:30:20 -0400709 EXTENT_CLEAR_DELALLOC |
Chris Masona791e352009-10-08 11:27:10 -0400710 EXTENT_CLEAR_DIRTY | EXTENT_SET_WRITEBACK);
Chris Mason771ed682008-11-06 22:02:51 -0500711
712 ret = btrfs_submit_compressed_write(inode,
Chris Masond3977122009-01-05 21:25:51 -0500713 async_extent->start,
714 async_extent->ram_size,
715 ins.objectid,
716 ins.offset, async_extent->pages,
717 async_extent->nr_pages);
Chris Mason771ed682008-11-06 22:02:51 -0500718
719 BUG_ON(ret);
Chris Mason771ed682008-11-06 22:02:51 -0500720 alloc_hint = ins.objectid + ins.offset;
721 kfree(async_extent);
722 cond_resched();
723 }
724
Chris Mason771ed682008-11-06 22:02:51 -0500725 return 0;
726}
727
Josef Bacik4b46fce2010-05-23 11:00:55 -0400728static u64 get_extent_allocation_hint(struct inode *inode, u64 start,
729 u64 num_bytes)
730{
731 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
732 struct extent_map *em;
733 u64 alloc_hint = 0;
734
735 read_lock(&em_tree->lock);
736 em = search_extent_mapping(em_tree, start, num_bytes);
737 if (em) {
738 /*
739 * if block start isn't an actual block number then find the
740 * first block in this inode and use that as a hint. If that
741 * block is also bogus then just don't worry about it.
742 */
743 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
744 free_extent_map(em);
745 em = search_extent_mapping(em_tree, 0, 0);
746 if (em && em->block_start < EXTENT_MAP_LAST_BYTE)
747 alloc_hint = em->block_start;
748 if (em)
749 free_extent_map(em);
750 } else {
751 alloc_hint = em->block_start;
752 free_extent_map(em);
753 }
754 }
755 read_unlock(&em_tree->lock);
756
757 return alloc_hint;
758}
759
Chris Mason771ed682008-11-06 22:02:51 -0500760/*
761 * when extent_io.c finds a delayed allocation range in the file,
762 * the call backs end up in this code. The basic idea is to
763 * allocate extents on disk for the range, and create ordered data structs
764 * in ram to track those extents.
765 *
766 * locked_page is the page that writepage had locked already. We use
767 * it to make sure we don't do extra locks or unlocks.
768 *
769 * *page_started is set to one if we unlock locked_page and do everything
770 * required to start IO on it. It may be clean and already done with
771 * IO when we return.
772 */
773static noinline int cow_file_range(struct inode *inode,
774 struct page *locked_page,
775 u64 start, u64 end, int *page_started,
776 unsigned long *nr_written,
777 int unlock)
778{
779 struct btrfs_root *root = BTRFS_I(inode)->root;
780 struct btrfs_trans_handle *trans;
781 u64 alloc_hint = 0;
782 u64 num_bytes;
783 unsigned long ram_size;
784 u64 disk_num_bytes;
785 u64 cur_alloc_size;
786 u64 blocksize = root->sectorsize;
Chris Mason771ed682008-11-06 22:02:51 -0500787 struct btrfs_key ins;
788 struct extent_map *em;
789 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
790 int ret = 0;
791
Chris Mason2cf85722011-07-26 15:35:09 -0400792 BUG_ON(btrfs_is_free_space_inode(root, inode));
Josef Bacik7a7eaa42011-04-13 12:54:33 -0400793 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +0000794 BUG_ON(IS_ERR(trans));
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400795 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason771ed682008-11-06 22:02:51 -0500796
Chris Mason771ed682008-11-06 22:02:51 -0500797 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
798 num_bytes = max(blocksize, num_bytes);
799 disk_num_bytes = num_bytes;
800 ret = 0;
801
Chris Mason4cb53002011-05-24 15:35:30 -0400802 /* if this is a small write inside eof, kick off defrag */
803 if (end <= BTRFS_I(inode)->disk_i_size && num_bytes < 64 * 1024)
804 btrfs_add_inode_defrag(trans, inode);
805
Chris Mason771ed682008-11-06 22:02:51 -0500806 if (start == 0) {
807 /* lets try to make an inline extent */
808 ret = cow_file_range_inline(trans, root, inode,
Li Zefanfe3f5662011-03-28 08:30:38 +0000809 start, end, 0, 0, NULL);
Chris Mason771ed682008-11-06 22:02:51 -0500810 if (ret == 0) {
811 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400812 &BTRFS_I(inode)->io_tree,
813 start, end, NULL,
814 EXTENT_CLEAR_UNLOCK_PAGE |
815 EXTENT_CLEAR_UNLOCK |
816 EXTENT_CLEAR_DELALLOC |
817 EXTENT_CLEAR_DIRTY |
818 EXTENT_SET_WRITEBACK |
819 EXTENT_END_WRITEBACK);
Yan, Zhengc2167752009-11-12 09:34:21 +0000820
Chris Mason771ed682008-11-06 22:02:51 -0500821 *nr_written = *nr_written +
822 (end - start + PAGE_CACHE_SIZE) / PAGE_CACHE_SIZE;
823 *page_started = 1;
824 ret = 0;
825 goto out;
826 }
827 }
Chris Masonc8b97812008-10-29 14:49:59 -0400828
829 BUG_ON(disk_num_bytes >
David Sterba6c417612011-04-13 15:41:04 +0200830 btrfs_super_total_bytes(root->fs_info->super_copy));
Chris Masonc8b97812008-10-29 14:49:59 -0400831
Josef Bacik4b46fce2010-05-23 11:00:55 -0400832 alloc_hint = get_extent_allocation_hint(inode, start, num_bytes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400833 btrfs_drop_extent_cache(inode, start, start + num_bytes - 1, 0);
Chris Mason3b951512008-04-17 11:29:12 -0400834
Chris Masond3977122009-01-05 21:25:51 -0500835 while (disk_num_bytes > 0) {
Chris Masona791e352009-10-08 11:27:10 -0400836 unsigned long op;
837
Josef Bacik287a0ab2010-03-19 18:07:23 +0000838 cur_alloc_size = disk_num_bytes;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400839 ret = btrfs_reserve_extent(trans, root, cur_alloc_size,
Chris Mason771ed682008-11-06 22:02:51 -0500840 root->sectorsize, 0, alloc_hint,
Chris Masone6dcd2d2008-07-17 12:53:50 -0400841 (u64)-1, &ins, 1);
Chris Masond3977122009-01-05 21:25:51 -0500842 BUG_ON(ret);
843
David Sterba172ddd62011-04-21 00:48:27 +0200844 em = alloc_extent_map();
Tsutomu Itohc26a9202011-02-14 00:45:29 +0000845 BUG_ON(!em);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400846 em->start = start;
Chris Mason445a6942008-11-10 11:53:33 -0500847 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500848 ram_size = ins.offset;
849 em->len = ins.offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400850
Chris Masone6dcd2d2008-07-17 12:53:50 -0400851 em->block_start = ins.objectid;
Chris Masonc8b97812008-10-29 14:49:59 -0400852 em->block_len = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400853 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -0400854 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -0400855
Chris Masond3977122009-01-05 21:25:51 -0500856 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400857 write_lock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400858 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400859 write_unlock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400860 if (ret != -EEXIST) {
861 free_extent_map(em);
862 break;
863 }
864 btrfs_drop_extent_cache(inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -0400865 start + ram_size - 1, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400866 }
867
Chris Mason98d20f62008-04-14 09:46:10 -0400868 cur_alloc_size = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400869 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
Chris Mason771ed682008-11-06 22:02:51 -0500870 ram_size, cur_alloc_size, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400871 BUG_ON(ret);
Chris Masonc8b97812008-10-29 14:49:59 -0400872
Yan Zheng17d217f2008-12-12 10:03:38 -0500873 if (root->root_key.objectid ==
874 BTRFS_DATA_RELOC_TREE_OBJECTID) {
875 ret = btrfs_reloc_clone_csums(inode, start,
876 cur_alloc_size);
877 BUG_ON(ret);
878 }
879
Chris Masond3977122009-01-05 21:25:51 -0500880 if (disk_num_bytes < cur_alloc_size)
Chris Mason3b951512008-04-17 11:29:12 -0400881 break;
Chris Masond3977122009-01-05 21:25:51 -0500882
Chris Masonc8b97812008-10-29 14:49:59 -0400883 /* we're not doing compressed IO, don't unlock the first
884 * page (which the caller expects to stay locked), don't
885 * clear any dirty bits and don't set any writeback bits
Chris Mason8b62b722009-09-02 16:53:46 -0400886 *
887 * Do set the Private2 bit so we know this page was properly
888 * setup for writepage
Chris Masonc8b97812008-10-29 14:49:59 -0400889 */
Chris Masona791e352009-10-08 11:27:10 -0400890 op = unlock ? EXTENT_CLEAR_UNLOCK_PAGE : 0;
891 op |= EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
892 EXTENT_SET_PRIVATE2;
893
Chris Masonc8b97812008-10-29 14:49:59 -0400894 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
895 start, start + ram_size - 1,
Chris Masona791e352009-10-08 11:27:10 -0400896 locked_page, op);
Chris Masonc8b97812008-10-29 14:49:59 -0400897 disk_num_bytes -= cur_alloc_size;
Chris Masonc59f8952007-12-17 20:14:04 -0500898 num_bytes -= cur_alloc_size;
899 alloc_hint = ins.objectid + ins.offset;
900 start += cur_alloc_size;
Chris Masonb888db22007-08-27 16:49:44 -0400901 }
Chris Masonb888db22007-08-27 16:49:44 -0400902out:
Chris Mason771ed682008-11-06 22:02:51 -0500903 ret = 0;
Chris Masonb888db22007-08-27 16:49:44 -0400904 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400905
Chris Masonbe20aa92007-12-17 20:14:01 -0500906 return ret;
Chris Mason771ed682008-11-06 22:02:51 -0500907}
Chris Masonc8b97812008-10-29 14:49:59 -0400908
Chris Mason771ed682008-11-06 22:02:51 -0500909/*
910 * work queue call back to started compression on a file and pages
911 */
912static noinline void async_cow_start(struct btrfs_work *work)
913{
914 struct async_cow *async_cow;
915 int num_added = 0;
916 async_cow = container_of(work, struct async_cow, work);
917
918 compress_file_range(async_cow->inode, async_cow->locked_page,
919 async_cow->start, async_cow->end, async_cow,
920 &num_added);
921 if (num_added == 0)
922 async_cow->inode = NULL;
923}
924
925/*
926 * work queue call back to submit previously compressed pages
927 */
928static noinline void async_cow_submit(struct btrfs_work *work)
929{
930 struct async_cow *async_cow;
931 struct btrfs_root *root;
932 unsigned long nr_pages;
933
934 async_cow = container_of(work, struct async_cow, work);
935
936 root = async_cow->root;
937 nr_pages = (async_cow->end - async_cow->start + PAGE_CACHE_SIZE) >>
938 PAGE_CACHE_SHIFT;
939
940 atomic_sub(nr_pages, &root->fs_info->async_delalloc_pages);
941
942 if (atomic_read(&root->fs_info->async_delalloc_pages) <
943 5 * 1042 * 1024 &&
944 waitqueue_active(&root->fs_info->async_submit_wait))
945 wake_up(&root->fs_info->async_submit_wait);
946
Chris Masond3977122009-01-05 21:25:51 -0500947 if (async_cow->inode)
Chris Mason771ed682008-11-06 22:02:51 -0500948 submit_compressed_extents(async_cow->inode, async_cow);
Chris Mason771ed682008-11-06 22:02:51 -0500949}
Chris Masonc8b97812008-10-29 14:49:59 -0400950
Chris Mason771ed682008-11-06 22:02:51 -0500951static noinline void async_cow_free(struct btrfs_work *work)
952{
953 struct async_cow *async_cow;
954 async_cow = container_of(work, struct async_cow, work);
955 kfree(async_cow);
956}
957
958static int cow_file_range_async(struct inode *inode, struct page *locked_page,
959 u64 start, u64 end, int *page_started,
960 unsigned long *nr_written)
961{
962 struct async_cow *async_cow;
963 struct btrfs_root *root = BTRFS_I(inode)->root;
964 unsigned long nr_pages;
965 u64 cur_end;
966 int limit = 10 * 1024 * 1042;
967
Chris Masona3429ab2009-10-08 12:30:20 -0400968 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED,
969 1, 0, NULL, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -0500970 while (start < end) {
Chris Mason771ed682008-11-06 22:02:51 -0500971 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
Tsutomu Itoh8d413712011-04-25 19:43:52 -0400972 BUG_ON(!async_cow);
Chris Mason771ed682008-11-06 22:02:51 -0500973 async_cow->inode = inode;
974 async_cow->root = root;
975 async_cow->locked_page = locked_page;
976 async_cow->start = start;
977
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200978 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS)
Chris Mason771ed682008-11-06 22:02:51 -0500979 cur_end = end;
980 else
981 cur_end = min(end, start + 512 * 1024 - 1);
982
983 async_cow->end = cur_end;
984 INIT_LIST_HEAD(&async_cow->extents);
985
986 async_cow->work.func = async_cow_start;
987 async_cow->work.ordered_func = async_cow_submit;
988 async_cow->work.ordered_free = async_cow_free;
989 async_cow->work.flags = 0;
990
Chris Mason771ed682008-11-06 22:02:51 -0500991 nr_pages = (cur_end - start + PAGE_CACHE_SIZE) >>
992 PAGE_CACHE_SHIFT;
993 atomic_add(nr_pages, &root->fs_info->async_delalloc_pages);
994
995 btrfs_queue_worker(&root->fs_info->delalloc_workers,
996 &async_cow->work);
997
998 if (atomic_read(&root->fs_info->async_delalloc_pages) > limit) {
999 wait_event(root->fs_info->async_submit_wait,
1000 (atomic_read(&root->fs_info->async_delalloc_pages) <
1001 limit));
1002 }
1003
Chris Masond3977122009-01-05 21:25:51 -05001004 while (atomic_read(&root->fs_info->async_submit_draining) &&
Chris Mason771ed682008-11-06 22:02:51 -05001005 atomic_read(&root->fs_info->async_delalloc_pages)) {
1006 wait_event(root->fs_info->async_submit_wait,
1007 (atomic_read(&root->fs_info->async_delalloc_pages) ==
1008 0));
1009 }
1010
1011 *nr_written += nr_pages;
1012 start = cur_end + 1;
1013 }
1014 *page_started = 1;
1015 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001016}
1017
Chris Masond3977122009-01-05 21:25:51 -05001018static noinline int csum_exist_in_range(struct btrfs_root *root,
Yan Zheng17d217f2008-12-12 10:03:38 -05001019 u64 bytenr, u64 num_bytes)
1020{
1021 int ret;
1022 struct btrfs_ordered_sum *sums;
1023 LIST_HEAD(list);
1024
Yan Zheng07d400a2009-01-06 11:42:00 -05001025 ret = btrfs_lookup_csums_range(root->fs_info->csum_root, bytenr,
Arne Jansena2de7332011-03-08 14:14:00 +01001026 bytenr + num_bytes - 1, &list, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -05001027 if (ret == 0 && list_empty(&list))
1028 return 0;
1029
1030 while (!list_empty(&list)) {
1031 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
1032 list_del(&sums->list);
1033 kfree(sums);
1034 }
1035 return 1;
1036}
1037
Chris Masond352ac62008-09-29 15:18:18 -04001038/*
1039 * when nowcow writeback call back. This checks for snapshots or COW copies
1040 * of the extents that exist in the file, and COWs the file as required.
1041 *
1042 * If no cow copies or snapshots exist, we write directly to the existing
1043 * blocks on disk
1044 */
Chris Mason7f366cf2009-03-12 20:12:45 -04001045static noinline int run_delalloc_nocow(struct inode *inode,
1046 struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001047 u64 start, u64 end, int *page_started, int force,
1048 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001049{
Chris Masonbe20aa92007-12-17 20:14:01 -05001050 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001051 struct btrfs_trans_handle *trans;
Chris Masonbe20aa92007-12-17 20:14:01 -05001052 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -05001053 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -04001054 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -05001055 struct btrfs_key found_key;
Yan Zheng80ff3852008-10-30 14:20:02 -04001056 u64 cow_start;
1057 u64 cur_offset;
1058 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001059 u64 extent_offset;
Yan Zheng80ff3852008-10-30 14:20:02 -04001060 u64 disk_bytenr;
1061 u64 num_bytes;
1062 int extent_type;
1063 int ret;
Yan Zhengd899e052008-10-30 14:25:28 -04001064 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -04001065 int nocow;
1066 int check_prev = 1;
Li Zefan82d59022011-04-20 10:33:24 +08001067 bool nolock;
Li Zefan33345d012011-04-20 10:31:50 +08001068 u64 ino = btrfs_ino(inode);
Chris Masonbe20aa92007-12-17 20:14:01 -05001069
1070 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07001071 if (!path)
1072 return -ENOMEM;
Li Zefan82d59022011-04-20 10:33:24 +08001073
Chris Mason2cf85722011-07-26 15:35:09 -04001074 nolock = btrfs_is_free_space_inode(root, inode);
Li Zefan82d59022011-04-20 10:33:24 +08001075
1076 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001077 trans = btrfs_join_transaction_nolock(root);
Li Zefan82d59022011-04-20 10:33:24 +08001078 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001079 trans = btrfs_join_transaction(root);
Chris Masonff5714c2011-05-28 07:00:39 -04001080
Tsutomu Itoh3612b492011-01-25 02:51:38 +00001081 BUG_ON(IS_ERR(trans));
Josef Bacik74b21072011-04-13 12:02:53 -04001082 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Masonbe20aa92007-12-17 20:14:01 -05001083
Yan Zheng80ff3852008-10-30 14:20:02 -04001084 cow_start = (u64)-1;
1085 cur_offset = start;
1086 while (1) {
Li Zefan33345d012011-04-20 10:31:50 +08001087 ret = btrfs_lookup_file_extent(trans, root, path, ino,
Yan Zheng80ff3852008-10-30 14:20:02 -04001088 cur_offset, 0);
1089 BUG_ON(ret < 0);
1090 if (ret > 0 && path->slots[0] > 0 && check_prev) {
1091 leaf = path->nodes[0];
1092 btrfs_item_key_to_cpu(leaf, &found_key,
1093 path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +08001094 if (found_key.objectid == ino &&
Yan Zheng80ff3852008-10-30 14:20:02 -04001095 found_key.type == BTRFS_EXTENT_DATA_KEY)
1096 path->slots[0]--;
1097 }
1098 check_prev = 0;
1099next_slot:
1100 leaf = path->nodes[0];
1101 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1102 ret = btrfs_next_leaf(root, path);
1103 if (ret < 0)
1104 BUG_ON(1);
1105 if (ret > 0)
1106 break;
1107 leaf = path->nodes[0];
1108 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001109
Yan Zheng80ff3852008-10-30 14:20:02 -04001110 nocow = 0;
1111 disk_bytenr = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -05001112 num_bytes = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001113 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05001114
Li Zefan33345d012011-04-20 10:31:50 +08001115 if (found_key.objectid > ino ||
Yan Zheng80ff3852008-10-30 14:20:02 -04001116 found_key.type > BTRFS_EXTENT_DATA_KEY ||
1117 found_key.offset > end)
1118 break;
Chris Masonbe20aa92007-12-17 20:14:01 -05001119
Yan Zheng80ff3852008-10-30 14:20:02 -04001120 if (found_key.offset > cur_offset) {
1121 extent_end = found_key.offset;
Chris Masone9061e22009-10-09 09:57:45 -04001122 extent_type = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001123 goto out_check;
1124 }
Chris Masonc31f8832008-01-08 15:46:31 -05001125
Yan Zheng80ff3852008-10-30 14:20:02 -04001126 fi = btrfs_item_ptr(leaf, path->slots[0],
1127 struct btrfs_file_extent_item);
1128 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -05001129
Yan Zhengd899e052008-10-30 14:25:28 -04001130 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1131 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001132 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001133 extent_offset = btrfs_file_extent_offset(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001134 extent_end = found_key.offset +
1135 btrfs_file_extent_num_bytes(leaf, fi);
1136 if (extent_end <= start) {
1137 path->slots[0]++;
1138 goto next_slot;
1139 }
Yan Zheng17d217f2008-12-12 10:03:38 -05001140 if (disk_bytenr == 0)
1141 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001142 if (btrfs_file_extent_compression(leaf, fi) ||
1143 btrfs_file_extent_encryption(leaf, fi) ||
1144 btrfs_file_extent_other_encoding(leaf, fi))
1145 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001146 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1147 goto out_check;
Yan Zhengd2fb3432008-12-11 16:30:39 -05001148 if (btrfs_extent_readonly(root, disk_bytenr))
Yan Zheng80ff3852008-10-30 14:20:02 -04001149 goto out_check;
Li Zefan33345d012011-04-20 10:31:50 +08001150 if (btrfs_cross_ref_exist(trans, root, ino,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001151 found_key.offset -
1152 extent_offset, disk_bytenr))
Yan Zheng17d217f2008-12-12 10:03:38 -05001153 goto out_check;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001154 disk_bytenr += extent_offset;
Yan Zheng17d217f2008-12-12 10:03:38 -05001155 disk_bytenr += cur_offset - found_key.offset;
1156 num_bytes = min(end + 1, extent_end) - cur_offset;
1157 /*
1158 * force cow if csum exists in the range.
1159 * this ensure that csum for a given extent are
1160 * either valid or do not exist.
1161 */
1162 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
1163 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001164 nocow = 1;
1165 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1166 extent_end = found_key.offset +
1167 btrfs_file_extent_inline_len(leaf, fi);
1168 extent_end = ALIGN(extent_end, root->sectorsize);
1169 } else {
1170 BUG_ON(1);
1171 }
1172out_check:
1173 if (extent_end <= start) {
1174 path->slots[0]++;
1175 goto next_slot;
1176 }
1177 if (!nocow) {
1178 if (cow_start == (u64)-1)
1179 cow_start = cur_offset;
1180 cur_offset = extent_end;
1181 if (cur_offset > end)
1182 break;
1183 path->slots[0]++;
1184 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001185 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001186
David Sterbab3b4aa72011-04-21 01:20:15 +02001187 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001188 if (cow_start != (u64)-1) {
1189 ret = cow_file_range(inode, locked_page, cow_start,
Chris Mason771ed682008-11-06 22:02:51 -05001190 found_key.offset - 1, page_started,
1191 nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001192 BUG_ON(ret);
1193 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001194 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001195
Yan Zhengd899e052008-10-30 14:25:28 -04001196 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1197 struct extent_map *em;
1198 struct extent_map_tree *em_tree;
1199 em_tree = &BTRFS_I(inode)->extent_tree;
David Sterba172ddd62011-04-21 00:48:27 +02001200 em = alloc_extent_map();
Tsutomu Itohc26a9202011-02-14 00:45:29 +00001201 BUG_ON(!em);
Yan Zhengd899e052008-10-30 14:25:28 -04001202 em->start = cur_offset;
Chris Mason445a6942008-11-10 11:53:33 -05001203 em->orig_start = em->start;
Yan Zhengd899e052008-10-30 14:25:28 -04001204 em->len = num_bytes;
1205 em->block_len = num_bytes;
1206 em->block_start = disk_bytenr;
1207 em->bdev = root->fs_info->fs_devices->latest_bdev;
1208 set_bit(EXTENT_FLAG_PINNED, &em->flags);
1209 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04001210 write_lock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001211 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04001212 write_unlock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001213 if (ret != -EEXIST) {
1214 free_extent_map(em);
1215 break;
1216 }
1217 btrfs_drop_extent_cache(inode, em->start,
1218 em->start + em->len - 1, 0);
1219 }
1220 type = BTRFS_ORDERED_PREALLOC;
1221 } else {
1222 type = BTRFS_ORDERED_NOCOW;
1223 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001224
1225 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001226 num_bytes, num_bytes, type);
1227 BUG_ON(ret);
Chris Mason771ed682008-11-06 22:02:51 -05001228
Yan, Zhengefa56462010-05-16 10:49:59 -04001229 if (root->root_key.objectid ==
1230 BTRFS_DATA_RELOC_TREE_OBJECTID) {
1231 ret = btrfs_reloc_clone_csums(inode, cur_offset,
1232 num_bytes);
1233 BUG_ON(ret);
1234 }
1235
Yan Zhengd899e052008-10-30 14:25:28 -04001236 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
Chris Masona791e352009-10-08 11:27:10 -04001237 cur_offset, cur_offset + num_bytes - 1,
1238 locked_page, EXTENT_CLEAR_UNLOCK_PAGE |
1239 EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
1240 EXTENT_SET_PRIVATE2);
Yan Zheng80ff3852008-10-30 14:20:02 -04001241 cur_offset = extent_end;
1242 if (cur_offset > end)
1243 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001244 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001245 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001246
1247 if (cur_offset <= end && cow_start == (u64)-1)
1248 cow_start = cur_offset;
1249 if (cow_start != (u64)-1) {
1250 ret = cow_file_range(inode, locked_page, cow_start, end,
Chris Mason771ed682008-11-06 22:02:51 -05001251 page_started, nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001252 BUG_ON(ret);
1253 }
1254
Josef Bacik0cb59c92010-07-02 12:14:14 -04001255 if (nolock) {
1256 ret = btrfs_end_transaction_nolock(trans, root);
1257 BUG_ON(ret);
1258 } else {
1259 ret = btrfs_end_transaction(trans, root);
1260 BUG_ON(ret);
1261 }
Yan Zheng7ea394f2008-08-05 13:05:02 -04001262 btrfs_free_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001263 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001264}
1265
Chris Masond352ac62008-09-29 15:18:18 -04001266/*
1267 * extent_io.c call back to do delayed allocation processing
1268 */
Chris Masonc8b97812008-10-29 14:49:59 -04001269static int run_delalloc_range(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001270 u64 start, u64 end, int *page_started,
1271 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001272{
Chris Masonbe20aa92007-12-17 20:14:01 -05001273 int ret;
Chris Mason7f366cf2009-03-12 20:12:45 -04001274 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masona2135012008-06-25 16:01:30 -04001275
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001276 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW)
Chris Masonc8b97812008-10-29 14:49:59 -04001277 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001278 page_started, 1, nr_written);
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001279 else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC)
Yan Zhengd899e052008-10-30 14:25:28 -04001280 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001281 page_started, 0, nr_written);
Chris Mason1e701a32010-03-11 09:42:04 -05001282 else if (!btrfs_test_opt(root, COMPRESS) &&
Liu Bo75e7cb72011-03-22 10:12:20 +00001283 !(BTRFS_I(inode)->force_compress) &&
1284 !(BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS))
Chris Mason7f366cf2009-03-12 20:12:45 -04001285 ret = cow_file_range(inode, locked_page, start, end,
1286 page_started, nr_written, 1);
Chris Masonbe20aa92007-12-17 20:14:01 -05001287 else
Chris Mason771ed682008-11-06 22:02:51 -05001288 ret = cow_file_range_async(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001289 page_started, nr_written);
Chris Masonb888db22007-08-27 16:49:44 -04001290 return ret;
1291}
1292
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001293static void btrfs_split_extent_hook(struct inode *inode,
1294 struct extent_state *orig, u64 split)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001295{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001296 /* not delalloc, ignore it */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001297 if (!(orig->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001298 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001299
Josef Bacik9e0baf62011-07-15 15:16:44 +00001300 spin_lock(&BTRFS_I(inode)->lock);
1301 BTRFS_I(inode)->outstanding_extents++;
1302 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001303}
1304
1305/*
1306 * extent_io.c merge_extent_hook, used to track merged delayed allocation
1307 * extents so we can keep track of new extents that are just merged onto old
1308 * extents, such as when we are doing sequential writes, so we can properly
1309 * account for the metadata space we'll need.
1310 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001311static void btrfs_merge_extent_hook(struct inode *inode,
1312 struct extent_state *new,
1313 struct extent_state *other)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001314{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001315 /* not delalloc, ignore it */
1316 if (!(other->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001317 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001318
Josef Bacik9e0baf62011-07-15 15:16:44 +00001319 spin_lock(&BTRFS_I(inode)->lock);
1320 BTRFS_I(inode)->outstanding_extents--;
1321 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001322}
1323
Chris Masond352ac62008-09-29 15:18:18 -04001324/*
1325 * extent_io.c set_bit_hook, used to track delayed allocation
1326 * bytes in this file, and to maintain the list of inodes that
1327 * have pending delalloc work to be done.
1328 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001329static void btrfs_set_bit_hook(struct inode *inode,
1330 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001331{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001332
Chris Mason75eff682008-12-15 15:54:40 -05001333 /*
1334 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001335 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001336 * bit, which is only set or cleared with irqs on
1337 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001338 if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001339 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001340 u64 len = state->end + 1 - state->start;
Chris Mason2cf85722011-07-26 15:35:09 -04001341 bool do_list = !btrfs_is_free_space_inode(root, inode);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001342
Josef Bacik9e0baf62011-07-15 15:16:44 +00001343 if (*bits & EXTENT_FIRST_DELALLOC) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001344 *bits &= ~EXTENT_FIRST_DELALLOC;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001345 } else {
1346 spin_lock(&BTRFS_I(inode)->lock);
1347 BTRFS_I(inode)->outstanding_extents++;
1348 spin_unlock(&BTRFS_I(inode)->lock);
1349 }
Josef Bacik287a0ab2010-03-19 18:07:23 +00001350
Chris Mason75eff682008-12-15 15:54:40 -05001351 spin_lock(&root->fs_info->delalloc_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001352 BTRFS_I(inode)->delalloc_bytes += len;
1353 root->fs_info->delalloc_bytes += len;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001354 if (do_list && list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
Chris Masonea8c2812008-08-04 23:17:27 -04001355 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1356 &root->fs_info->delalloc_inodes);
1357 }
Chris Mason75eff682008-12-15 15:54:40 -05001358 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001359 }
Chris Mason291d6732008-01-29 15:55:23 -05001360}
1361
Chris Masond352ac62008-09-29 15:18:18 -04001362/*
1363 * extent_io.c clear_bit_hook, see set_bit_hook for why
1364 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001365static void btrfs_clear_bit_hook(struct inode *inode,
1366 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001367{
Chris Mason75eff682008-12-15 15:54:40 -05001368 /*
1369 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001370 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001371 * bit, which is only set or cleared with irqs on
1372 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001373 if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001374 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001375 u64 len = state->end + 1 - state->start;
Chris Mason2cf85722011-07-26 15:35:09 -04001376 bool do_list = !btrfs_is_free_space_inode(root, inode);
Chris Masonbcbfce82008-04-22 13:26:47 -04001377
Josef Bacik9e0baf62011-07-15 15:16:44 +00001378 if (*bits & EXTENT_FIRST_DELALLOC) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001379 *bits &= ~EXTENT_FIRST_DELALLOC;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001380 } else if (!(*bits & EXTENT_DO_ACCOUNTING)) {
1381 spin_lock(&BTRFS_I(inode)->lock);
1382 BTRFS_I(inode)->outstanding_extents--;
1383 spin_unlock(&BTRFS_I(inode)->lock);
1384 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001385
1386 if (*bits & EXTENT_DO_ACCOUNTING)
1387 btrfs_delalloc_release_metadata(inode, len);
1388
Josef Bacik0cb59c92010-07-02 12:14:14 -04001389 if (root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID
1390 && do_list)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001391 btrfs_free_reserved_data_space(inode, len);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001392
Chris Mason75eff682008-12-15 15:54:40 -05001393 spin_lock(&root->fs_info->delalloc_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001394 root->fs_info->delalloc_bytes -= len;
1395 BTRFS_I(inode)->delalloc_bytes -= len;
1396
Josef Bacik0cb59c92010-07-02 12:14:14 -04001397 if (do_list && BTRFS_I(inode)->delalloc_bytes == 0 &&
Chris Masonea8c2812008-08-04 23:17:27 -04001398 !list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1399 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
1400 }
Chris Mason75eff682008-12-15 15:54:40 -05001401 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001402 }
Chris Mason291d6732008-01-29 15:55:23 -05001403}
1404
Chris Masond352ac62008-09-29 15:18:18 -04001405/*
1406 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1407 * we don't create bios that span stripes or chunks
1408 */
Chris Mason239b14b2008-03-24 15:02:07 -04001409int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001410 size_t size, struct bio *bio,
1411 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001412{
1413 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
1414 struct btrfs_mapping_tree *map_tree;
Chris Masona62b9402008-10-03 16:31:08 -04001415 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001416 u64 length = 0;
1417 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001418 int ret;
1419
Chris Mason771ed682008-11-06 22:02:51 -05001420 if (bio_flags & EXTENT_BIO_COMPRESSED)
1421 return 0;
1422
Chris Masonf2d8d742008-04-21 10:03:05 -04001423 length = bio->bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001424 map_tree = &root->fs_info->mapping_tree;
1425 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04001426 ret = btrfs_map_block(map_tree, READ, logical,
Chris Masonf1885912008-04-09 16:28:12 -04001427 &map_length, NULL, 0);
Jeff Mahoney3444a972011-10-03 23:23:13 -04001428 /* Will always return 0 or 1 with map_multi == NULL */
1429 BUG_ON(ret < 0);
Chris Masond3977122009-01-05 21:25:51 -05001430 if (map_length < length + size)
Chris Mason239b14b2008-03-24 15:02:07 -04001431 return 1;
Jeff Mahoney3444a972011-10-03 23:23:13 -04001432 return 0;
Chris Mason239b14b2008-03-24 15:02:07 -04001433}
1434
Chris Masond352ac62008-09-29 15:18:18 -04001435/*
1436 * in order to insert checksums into the metadata in large chunks,
1437 * we wait until bio submission time. All the pages in the bio are
1438 * checksummed and sums are attached onto the ordered extent record.
1439 *
1440 * At IO completion time the cums attached on the ordered extent record
1441 * are inserted into the btree
1442 */
Chris Masond3977122009-01-05 21:25:51 -05001443static int __btrfs_submit_bio_start(struct inode *inode, int rw,
1444 struct bio *bio, int mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001445 unsigned long bio_flags,
1446 u64 bio_offset)
Chris Mason065631f2008-02-20 12:07:25 -05001447{
Chris Mason065631f2008-02-20 12:07:25 -05001448 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason065631f2008-02-20 12:07:25 -05001449 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001450
Chris Masond20f7042008-12-08 16:58:54 -05001451 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
Chris Mason44b8bd72008-04-16 11:14:51 -04001452 BUG_ON(ret);
Chris Mason4a69a412008-11-06 22:03:00 -05001453 return 0;
1454}
Chris Masone0156402008-04-16 11:15:20 -04001455
Chris Mason4a69a412008-11-06 22:03:00 -05001456/*
1457 * in order to insert checksums into the metadata in large chunks,
1458 * we wait until bio submission time. All the pages in the bio are
1459 * checksummed and sums are attached onto the ordered extent record.
1460 *
1461 * At IO completion time the cums attached on the ordered extent record
1462 * are inserted into the btree
1463 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001464static int __btrfs_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001465 int mirror_num, unsigned long bio_flags,
1466 u64 bio_offset)
Chris Mason4a69a412008-11-06 22:03:00 -05001467{
1468 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason8b712842008-06-11 16:50:36 -04001469 return btrfs_map_bio(root, rw, bio, mirror_num, 1);
Chris Mason44b8bd72008-04-16 11:14:51 -04001470}
1471
Chris Masond352ac62008-09-29 15:18:18 -04001472/*
Chris Masoncad321a2008-12-17 14:51:42 -05001473 * extent_io.c submission hook. This does the right thing for csum calculation
1474 * on write, or reading the csums from the tree before a read
Chris Masond352ac62008-09-29 15:18:18 -04001475 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001476static int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001477 int mirror_num, unsigned long bio_flags,
1478 u64 bio_offset)
Chris Mason44b8bd72008-04-16 11:14:51 -04001479{
1480 struct btrfs_root *root = BTRFS_I(inode)->root;
1481 int ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001482 int skip_sum;
Jeff Mahoney04173412011-10-03 23:23:12 -04001483 int metadata = 0;
Chris Mason44b8bd72008-04-16 11:14:51 -04001484
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001485 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masoncad321a2008-12-17 14:51:42 -05001486
Chris Mason2cf85722011-07-26 15:35:09 -04001487 if (btrfs_is_free_space_inode(root, inode))
Jeff Mahoney04173412011-10-03 23:23:12 -04001488 metadata = 2;
1489
1490 ret = btrfs_bio_wq_end_io(root->fs_info, bio, metadata);
Jeff Mahoney355808c2011-10-03 23:23:14 -04001491 if (ret)
1492 return ret;
Chris Mason065631f2008-02-20 12:07:25 -05001493
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001494 if (!(rw & REQ_WRITE)) {
Chris Masond20f7042008-12-08 16:58:54 -05001495 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Chris Masonc8b97812008-10-29 14:49:59 -04001496 return btrfs_submit_compressed_read(inode, bio,
1497 mirror_num, bio_flags);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001498 } else if (!skip_sum) {
1499 ret = btrfs_lookup_bio_sums(root, inode, bio, NULL);
1500 if (ret)
1501 return ret;
1502 }
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001503 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001504 } else if (!skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001505 /* csum items have already been cloned */
1506 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1507 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001508 /* we're doing a write, do the async checksumming */
1509 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
Chris Mason44b8bd72008-04-16 11:14:51 -04001510 inode, rw, bio, mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001511 bio_flags, bio_offset,
1512 __btrfs_submit_bio_start,
Chris Mason4a69a412008-11-06 22:03:00 -05001513 __btrfs_submit_bio_done);
Chris Mason19b9bdb2008-10-30 14:23:13 -04001514 }
1515
Chris Mason0b86a832008-03-24 15:01:56 -04001516mapit:
Chris Mason8b712842008-06-11 16:50:36 -04001517 return btrfs_map_bio(root, rw, bio, mirror_num, 0);
Chris Mason065631f2008-02-20 12:07:25 -05001518}
Chris Mason6885f302008-02-20 16:11:05 -05001519
Chris Masond352ac62008-09-29 15:18:18 -04001520/*
1521 * given a list of ordered sums record them in the inode. This happens
1522 * at IO completion time based on sums calculated at bio submission time.
1523 */
Chris Masonba1da2f2008-07-17 12:54:15 -04001524static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -04001525 struct inode *inode, u64 file_offset,
1526 struct list_head *list)
1527{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001528 struct btrfs_ordered_sum *sum;
1529
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001530 list_for_each_entry(sum, list, list) {
Chris Masond20f7042008-12-08 16:58:54 -05001531 btrfs_csum_file_blocks(trans,
1532 BTRFS_I(inode)->root->fs_info->csum_root, sum);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001533 }
1534 return 0;
1535}
1536
Josef Bacik2ac55d42010-02-03 19:33:23 +00001537int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end,
1538 struct extent_state **cached_state)
Chris Masonea8c2812008-08-04 23:17:27 -04001539{
Chris Masond3977122009-01-05 21:25:51 -05001540 if ((end & (PAGE_CACHE_SIZE - 1)) == 0)
Chris Mason771ed682008-11-06 22:02:51 -05001541 WARN_ON(1);
Chris Masonea8c2812008-08-04 23:17:27 -04001542 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001543 cached_state, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04001544}
1545
Chris Masond352ac62008-09-29 15:18:18 -04001546/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04001547struct btrfs_writepage_fixup {
1548 struct page *page;
1549 struct btrfs_work work;
1550};
1551
Christoph Hellwigb2950862008-12-02 09:54:17 -05001552static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04001553{
1554 struct btrfs_writepage_fixup *fixup;
1555 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001556 struct extent_state *cached_state = NULL;
Chris Mason247e7432008-07-17 12:53:51 -04001557 struct page *page;
1558 struct inode *inode;
1559 u64 page_start;
1560 u64 page_end;
Jeff Mahoney87826df2012-02-15 16:23:57 +01001561 int ret;
Chris Mason247e7432008-07-17 12:53:51 -04001562
1563 fixup = container_of(work, struct btrfs_writepage_fixup, work);
1564 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04001565again:
Chris Mason247e7432008-07-17 12:53:51 -04001566 lock_page(page);
1567 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
1568 ClearPageChecked(page);
1569 goto out_page;
1570 }
1571
1572 inode = page->mapping->host;
1573 page_start = page_offset(page);
1574 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
1575
Josef Bacik2ac55d42010-02-03 19:33:23 +00001576 lock_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end, 0,
1577 &cached_state, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001578
1579 /* already ordered? We're done */
Chris Mason8b62b722009-09-02 16:53:46 -04001580 if (PagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001581 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04001582
1583 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1584 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00001585 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start,
1586 page_end, &cached_state, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001587 unlock_page(page);
1588 btrfs_start_ordered_extent(inode, ordered, 1);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001589 btrfs_put_ordered_extent(ordered);
Chris Mason4a096752008-07-21 10:29:44 -04001590 goto again;
1591 }
Chris Mason247e7432008-07-17 12:53:51 -04001592
Jeff Mahoney87826df2012-02-15 16:23:57 +01001593 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
1594 if (ret) {
1595 mapping_set_error(page->mapping, ret);
1596 end_extent_writepage(page, ret, page_start, page_end);
1597 ClearPageChecked(page);
1598 goto out;
1599 }
1600
Josef Bacik2ac55d42010-02-03 19:33:23 +00001601 btrfs_set_extent_delalloc(inode, page_start, page_end, &cached_state);
Chris Mason247e7432008-07-17 12:53:51 -04001602 ClearPageChecked(page);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001603 set_page_dirty(page);
Chris Mason247e7432008-07-17 12:53:51 -04001604out:
Josef Bacik2ac55d42010-02-03 19:33:23 +00001605 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, page_end,
1606 &cached_state, GFP_NOFS);
Chris Mason247e7432008-07-17 12:53:51 -04001607out_page:
1608 unlock_page(page);
1609 page_cache_release(page);
Miao Xieb897abe2011-01-26 16:19:22 +08001610 kfree(fixup);
Chris Mason247e7432008-07-17 12:53:51 -04001611}
1612
1613/*
1614 * There are a few paths in the higher layers of the kernel that directly
1615 * set the page dirty bit without asking the filesystem if it is a
1616 * good idea. This causes problems because we want to make sure COW
1617 * properly happens and the data=ordered rules are followed.
1618 *
Chris Masonc8b97812008-10-29 14:49:59 -04001619 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04001620 * hasn't been properly setup for IO. We kick off an async process
1621 * to fix it up. The async helper will wait for ordered extents, set
1622 * the delalloc bit and make it safe to write the page.
1623 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001624static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04001625{
1626 struct inode *inode = page->mapping->host;
1627 struct btrfs_writepage_fixup *fixup;
1628 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason247e7432008-07-17 12:53:51 -04001629
Chris Mason8b62b722009-09-02 16:53:46 -04001630 /* this page is properly in the ordered list */
1631 if (TestClearPagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001632 return 0;
1633
1634 if (PageChecked(page))
1635 return -EAGAIN;
1636
1637 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
1638 if (!fixup)
1639 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04001640
Chris Mason247e7432008-07-17 12:53:51 -04001641 SetPageChecked(page);
1642 page_cache_get(page);
1643 fixup->work.func = btrfs_writepage_fixup_worker;
1644 fixup->page = page;
1645 btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001646 return -EBUSY;
Chris Mason247e7432008-07-17 12:53:51 -04001647}
1648
Yan Zhengd899e052008-10-30 14:25:28 -04001649static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
1650 struct inode *inode, u64 file_pos,
1651 u64 disk_bytenr, u64 disk_num_bytes,
1652 u64 num_bytes, u64 ram_bytes,
1653 u8 compression, u8 encryption,
1654 u16 other_encoding, int extent_type)
1655{
1656 struct btrfs_root *root = BTRFS_I(inode)->root;
1657 struct btrfs_file_extent_item *fi;
1658 struct btrfs_path *path;
1659 struct extent_buffer *leaf;
1660 struct btrfs_key ins;
1661 u64 hint;
1662 int ret;
1663
1664 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07001665 if (!path)
1666 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -04001667
Chris Masonb9473432009-03-13 11:00:37 -04001668 path->leave_spinning = 1;
Chris Masona1ed8352009-09-11 12:27:37 -04001669
1670 /*
1671 * we may be replacing one extent in the tree with another.
1672 * The new extent is pinned in the extent map, and we don't want
1673 * to drop it from the cache until it is completely in the btree.
1674 *
1675 * So, tell btrfs_drop_extents to leave this extent in the cache.
1676 * the caller is expected to unpin it and allow it to be merged
1677 * with the others.
1678 */
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001679 ret = btrfs_drop_extents(trans, inode, file_pos, file_pos + num_bytes,
1680 &hint, 0);
Yan Zhengd899e052008-10-30 14:25:28 -04001681 BUG_ON(ret);
1682
Li Zefan33345d012011-04-20 10:31:50 +08001683 ins.objectid = btrfs_ino(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04001684 ins.offset = file_pos;
1685 ins.type = BTRFS_EXTENT_DATA_KEY;
1686 ret = btrfs_insert_empty_item(trans, root, path, &ins, sizeof(*fi));
1687 BUG_ON(ret);
1688 leaf = path->nodes[0];
1689 fi = btrfs_item_ptr(leaf, path->slots[0],
1690 struct btrfs_file_extent_item);
1691 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
1692 btrfs_set_file_extent_type(leaf, fi, extent_type);
1693 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
1694 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
1695 btrfs_set_file_extent_offset(leaf, fi, 0);
1696 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
1697 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
1698 btrfs_set_file_extent_compression(leaf, fi, compression);
1699 btrfs_set_file_extent_encryption(leaf, fi, encryption);
1700 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
Chris Masonb9473432009-03-13 11:00:37 -04001701
1702 btrfs_unlock_up_safe(path, 1);
1703 btrfs_set_lock_blocking(leaf);
1704
Yan Zhengd899e052008-10-30 14:25:28 -04001705 btrfs_mark_buffer_dirty(leaf);
1706
1707 inode_add_bytes(inode, num_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -04001708
1709 ins.objectid = disk_bytenr;
1710 ins.offset = disk_num_bytes;
1711 ins.type = BTRFS_EXTENT_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001712 ret = btrfs_alloc_reserved_file_extent(trans, root,
1713 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08001714 btrfs_ino(inode), file_pos, &ins);
Yan Zhengd899e052008-10-30 14:25:28 -04001715 BUG_ON(ret);
Yan Zhengd899e052008-10-30 14:25:28 -04001716 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04001717
Yan Zhengd899e052008-10-30 14:25:28 -04001718 return 0;
1719}
1720
Chris Mason5d13a982009-03-13 11:41:46 -04001721/*
1722 * helper function for btrfs_finish_ordered_io, this
1723 * just reads in some of the csum leaves to prime them into ram
1724 * before we start the transaction. It limits the amount of btree
1725 * reads required while inside the transaction.
1726 */
Chris Masond352ac62008-09-29 15:18:18 -04001727/* as ordered data IO finishes, this gets called so we can finish
1728 * an ordered extent if the range of bytes in the file it covers are
1729 * fully written.
1730 */
Chris Mason211f90e2008-07-18 11:56:15 -04001731static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001732{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001733 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001734 struct btrfs_trans_handle *trans = NULL;
Chris Mason5d13a982009-03-13 11:41:46 -04001735 struct btrfs_ordered_extent *ordered_extent = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001736 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001737 struct extent_state *cached_state = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08001738 int compress_type = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001739 int ret;
Li Zefan82d59022011-04-20 10:33:24 +08001740 bool nolock;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001741
Josef Bacik5a1a3df2010-02-02 20:51:14 +00001742 ret = btrfs_dec_test_ordered_pending(inode, &ordered_extent, start,
1743 end - start + 1);
Chris Masonba1da2f2008-07-17 12:54:15 -04001744 if (!ret)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001745 return 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001746 BUG_ON(!ordered_extent);
Josef Bacikefd049f2010-02-02 20:50:10 +00001747
Chris Mason2cf85722011-07-26 15:35:09 -04001748 nolock = btrfs_is_free_space_inode(root, inode);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001749
Yan, Zhengc2167752009-11-12 09:34:21 +00001750 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
1751 BUG_ON(!list_empty(&ordered_extent->list));
1752 ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent);
1753 if (!ret) {
Josef Bacik0cb59c92010-07-02 12:14:14 -04001754 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001755 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001756 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001757 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00001758 BUG_ON(IS_ERR(trans));
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001759 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason21151332011-11-10 20:39:08 -05001760 ret = btrfs_update_inode_fallback(trans, root, inode);
Yan, Zhengc2167752009-11-12 09:34:21 +00001761 BUG_ON(ret);
Yan, Zhengc2167752009-11-12 09:34:21 +00001762 }
1763 goto out;
1764 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001765
Josef Bacik2ac55d42010-02-03 19:33:23 +00001766 lock_extent_bits(io_tree, ordered_extent->file_offset,
1767 ordered_extent->file_offset + ordered_extent->len - 1,
1768 0, &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001769
Josef Bacik0cb59c92010-07-02 12:14:14 -04001770 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001771 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001772 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001773 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00001774 BUG_ON(IS_ERR(trans));
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001775 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Yan, Zhengc2167752009-11-12 09:34:21 +00001776
Chris Masonc8b97812008-10-29 14:49:59 -04001777 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Li Zefan261507a02010-12-17 14:21:50 +08001778 compress_type = ordered_extent->compress_type;
Yan Zhengd899e052008-10-30 14:25:28 -04001779 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Li Zefan261507a02010-12-17 14:21:50 +08001780 BUG_ON(compress_type);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001781 ret = btrfs_mark_extent_written(trans, inode,
Yan Zhengd899e052008-10-30 14:25:28 -04001782 ordered_extent->file_offset,
1783 ordered_extent->file_offset +
1784 ordered_extent->len);
1785 BUG_ON(ret);
1786 } else {
Josef Bacik0af3d002010-06-21 14:48:16 -04001787 BUG_ON(root == root->fs_info->tree_root);
Yan Zhengd899e052008-10-30 14:25:28 -04001788 ret = insert_reserved_file_extent(trans, inode,
1789 ordered_extent->file_offset,
1790 ordered_extent->start,
1791 ordered_extent->disk_len,
1792 ordered_extent->len,
1793 ordered_extent->len,
Li Zefan261507a02010-12-17 14:21:50 +08001794 compress_type, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04001795 BTRFS_FILE_EXTENT_REG);
Chris Masona1ed8352009-09-11 12:27:37 -04001796 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
1797 ordered_extent->file_offset,
1798 ordered_extent->len);
Yan Zhengd899e052008-10-30 14:25:28 -04001799 BUG_ON(ret);
1800 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00001801 unlock_extent_cached(io_tree, ordered_extent->file_offset,
1802 ordered_extent->file_offset +
1803 ordered_extent->len - 1, &cached_state, GFP_NOFS);
1804
Chris Masone6dcd2d2008-07-17 12:53:50 -04001805 add_pending_csums(trans, inode, ordered_extent->file_offset,
1806 &ordered_extent->list);
1807
Josef Bacik1ef30be2011-04-05 19:25:36 -04001808 ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent);
Miao Xiea39f7522011-09-11 10:52:25 -04001809 if (!ret || !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Chris Mason21151332011-11-10 20:39:08 -05001810 ret = btrfs_update_inode_fallback(trans, root, inode);
Josef Bacik1ef30be2011-04-05 19:25:36 -04001811 BUG_ON(ret);
1812 }
1813 ret = 0;
Yan, Zhengc2167752009-11-12 09:34:21 +00001814out:
Josef Bacik5b0e95b2011-10-06 08:58:24 -04001815 if (root != root->fs_info->tree_root)
Josef Bacik0cb59c92010-07-02 12:14:14 -04001816 btrfs_delalloc_release_metadata(inode, ordered_extent->len);
Josef Bacik5b0e95b2011-10-06 08:58:24 -04001817 if (trans) {
1818 if (nolock)
Josef Bacik0cb59c92010-07-02 12:14:14 -04001819 btrfs_end_transaction_nolock(trans, root);
Josef Bacik5b0e95b2011-10-06 08:58:24 -04001820 else
Josef Bacik0cb59c92010-07-02 12:14:14 -04001821 btrfs_end_transaction(trans, root);
1822 }
1823
Chris Masone6dcd2d2008-07-17 12:53:50 -04001824 /* once for us */
1825 btrfs_put_ordered_extent(ordered_extent);
1826 /* once for the tree */
1827 btrfs_put_ordered_extent(ordered_extent);
1828
Chris Masone6dcd2d2008-07-17 12:53:50 -04001829 return 0;
1830}
1831
Christoph Hellwigb2950862008-12-02 09:54:17 -05001832static int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04001833 struct extent_state *state, int uptodate)
1834{
liubo1abe9b82011-03-24 11:18:59 +00001835 trace_btrfs_writepage_end_io_hook(page, start, end, uptodate);
1836
Chris Mason8b62b722009-09-02 16:53:46 -04001837 ClearPagePrivate2(page);
Chris Mason211f90e2008-07-18 11:56:15 -04001838 return btrfs_finish_ordered_io(page->mapping->host, start, end);
1839}
1840
Chris Masond352ac62008-09-29 15:18:18 -04001841/*
Chris Masond352ac62008-09-29 15:18:18 -04001842 * when reads are done, we need to check csums to verify the data is correct
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001843 * if there's a match, we allow the bio to finish. If not, the code in
1844 * extent_io.c will try to find good copies for us.
Chris Masond352ac62008-09-29 15:18:18 -04001845 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001846static int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason70dec802008-01-29 09:59:12 -05001847 struct extent_state *state)
Chris Mason07157aa2007-08-30 08:50:51 -04001848{
Chris Mason35ebb932007-10-30 16:56:53 -04001849 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -04001850 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05001851 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -04001852 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -05001853 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -04001854 int ret;
Chris Masonff79f812007-10-15 16:22:25 -04001855 struct btrfs_root *root = BTRFS_I(inode)->root;
1856 u32 csum = ~(u32)0;
Chris Masond1310b22008-01-24 16:13:08 -05001857
Chris Masond20f7042008-12-08 16:58:54 -05001858 if (PageChecked(page)) {
1859 ClearPageChecked(page);
1860 goto good;
1861 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001862
1863 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Jan Schmidt08d2f342011-05-04 16:18:50 +02001864 goto good;
Chris Masond20f7042008-12-08 16:58:54 -05001865
Yan Zheng17d217f2008-12-12 10:03:38 -05001866 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04001867 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001868 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM,
1869 GFP_NOFS);
1870 return 0;
1871 }
1872
Yanc2e639f2008-02-04 08:57:25 -05001873 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -05001874 private = state->private;
1875 ret = 0;
1876 } else {
1877 ret = get_state_private(io_tree, start, &private);
1878 }
Chris Mason9ab86c82009-01-07 09:48:51 -05001879 kaddr = kmap_atomic(page, KM_USER0);
Chris Masond3977122009-01-05 21:25:51 -05001880 if (ret)
Chris Mason07157aa2007-08-30 08:50:51 -04001881 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05001882
Chris Masonff79f812007-10-15 16:22:25 -04001883 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
1884 btrfs_csum_final(csum, (char *)&csum);
Chris Masond3977122009-01-05 21:25:51 -05001885 if (csum != private)
Chris Mason07157aa2007-08-30 08:50:51 -04001886 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05001887
Chris Mason9ab86c82009-01-07 09:48:51 -05001888 kunmap_atomic(kaddr, KM_USER0);
Chris Masond20f7042008-12-08 16:58:54 -05001889good:
Chris Mason07157aa2007-08-30 08:50:51 -04001890 return 0;
1891
1892zeroit:
Chris Mason945d8962011-05-22 12:33:42 -04001893 printk_ratelimited(KERN_INFO "btrfs csum failed ino %llu off %llu csum %u "
Li Zefan33345d012011-04-20 10:31:50 +08001894 "private %llu\n",
1895 (unsigned long long)btrfs_ino(page->mapping->host),
Chris Mason193f2842009-04-27 07:29:05 -04001896 (unsigned long long)start, csum,
1897 (unsigned long long)private);
Chris Masondb945352007-10-15 16:15:53 -04001898 memset(kaddr + offset, 1, end - start + 1);
1899 flush_dcache_page(page);
Chris Mason9ab86c82009-01-07 09:48:51 -05001900 kunmap_atomic(kaddr, KM_USER0);
Chris Mason3b951512008-04-17 11:29:12 -04001901 if (private == 0)
1902 return 0;
Chris Mason7e383262008-04-09 16:28:12 -04001903 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -04001904}
Chris Masonb888db22007-08-27 16:49:44 -04001905
Yan, Zheng24bbcf02009-11-12 09:36:34 +00001906struct delayed_iput {
1907 struct list_head list;
1908 struct inode *inode;
1909};
1910
1911void btrfs_add_delayed_iput(struct inode *inode)
1912{
1913 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
1914 struct delayed_iput *delayed;
1915
1916 if (atomic_add_unless(&inode->i_count, -1, 1))
1917 return;
1918
1919 delayed = kmalloc(sizeof(*delayed), GFP_NOFS | __GFP_NOFAIL);
1920 delayed->inode = inode;
1921
1922 spin_lock(&fs_info->delayed_iput_lock);
1923 list_add_tail(&delayed->list, &fs_info->delayed_iputs);
1924 spin_unlock(&fs_info->delayed_iput_lock);
1925}
1926
1927void btrfs_run_delayed_iputs(struct btrfs_root *root)
1928{
1929 LIST_HEAD(list);
1930 struct btrfs_fs_info *fs_info = root->fs_info;
1931 struct delayed_iput *delayed;
1932 int empty;
1933
1934 spin_lock(&fs_info->delayed_iput_lock);
1935 empty = list_empty(&fs_info->delayed_iputs);
1936 spin_unlock(&fs_info->delayed_iput_lock);
1937 if (empty)
1938 return;
1939
1940 down_read(&root->fs_info->cleanup_work_sem);
1941 spin_lock(&fs_info->delayed_iput_lock);
1942 list_splice_init(&fs_info->delayed_iputs, &list);
1943 spin_unlock(&fs_info->delayed_iput_lock);
1944
1945 while (!list_empty(&list)) {
1946 delayed = list_entry(list.next, struct delayed_iput, list);
1947 list_del(&delayed->list);
1948 iput(delayed->inode);
1949 kfree(delayed);
1950 }
1951 up_read(&root->fs_info->cleanup_work_sem);
1952}
1953
Yan, Zhengd68fc572010-05-16 10:49:58 -04001954enum btrfs_orphan_cleanup_state {
1955 ORPHAN_CLEANUP_STARTED = 1,
1956 ORPHAN_CLEANUP_DONE = 2,
1957};
1958
1959/*
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08001960 * This is called in transaction commit time. If there are no orphan
Yan, Zhengd68fc572010-05-16 10:49:58 -04001961 * files in the subvolume, it removes orphan item and frees block_rsv
1962 * structure.
1963 */
1964void btrfs_orphan_commit_root(struct btrfs_trans_handle *trans,
1965 struct btrfs_root *root)
1966{
Josef Bacik90290e12011-12-02 15:44:12 -05001967 struct btrfs_block_rsv *block_rsv;
Yan, Zhengd68fc572010-05-16 10:49:58 -04001968 int ret;
1969
1970 if (!list_empty(&root->orphan_list) ||
1971 root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE)
1972 return;
1973
Josef Bacik90290e12011-12-02 15:44:12 -05001974 spin_lock(&root->orphan_lock);
1975 if (!list_empty(&root->orphan_list)) {
1976 spin_unlock(&root->orphan_lock);
1977 return;
1978 }
1979
1980 if (root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE) {
1981 spin_unlock(&root->orphan_lock);
1982 return;
1983 }
1984
1985 block_rsv = root->orphan_block_rsv;
1986 root->orphan_block_rsv = NULL;
1987 spin_unlock(&root->orphan_lock);
1988
Yan, Zhengd68fc572010-05-16 10:49:58 -04001989 if (root->orphan_item_inserted &&
1990 btrfs_root_refs(&root->root_item) > 0) {
1991 ret = btrfs_del_orphan_item(trans, root->fs_info->tree_root,
1992 root->root_key.objectid);
1993 BUG_ON(ret);
1994 root->orphan_item_inserted = 0;
1995 }
1996
Josef Bacik90290e12011-12-02 15:44:12 -05001997 if (block_rsv) {
1998 WARN_ON(block_rsv->size > 0);
1999 btrfs_free_block_rsv(root, block_rsv);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002000 }
2001}
2002
2003/*
Josef Bacik7b128762008-07-24 12:17:14 -04002004 * This creates an orphan entry for the given inode in case something goes
2005 * wrong in the middle of an unlink/truncate.
Yan, Zhengd68fc572010-05-16 10:49:58 -04002006 *
2007 * NOTE: caller of this function should reserve 5 units of metadata for
2008 * this function.
Josef Bacik7b128762008-07-24 12:17:14 -04002009 */
2010int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
2011{
2012 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002013 struct btrfs_block_rsv *block_rsv = NULL;
2014 int reserve = 0;
2015 int insert = 0;
2016 int ret;
Josef Bacik7b128762008-07-24 12:17:14 -04002017
Yan, Zhengd68fc572010-05-16 10:49:58 -04002018 if (!root->orphan_block_rsv) {
2019 block_rsv = btrfs_alloc_block_rsv(root);
Tsutomu Itohb5324022011-07-19 07:27:20 +00002020 if (!block_rsv)
2021 return -ENOMEM;
Josef Bacik7b128762008-07-24 12:17:14 -04002022 }
2023
Yan, Zhengd68fc572010-05-16 10:49:58 -04002024 spin_lock(&root->orphan_lock);
2025 if (!root->orphan_block_rsv) {
2026 root->orphan_block_rsv = block_rsv;
2027 } else if (block_rsv) {
2028 btrfs_free_block_rsv(root, block_rsv);
2029 block_rsv = NULL;
2030 }
Josef Bacik7b128762008-07-24 12:17:14 -04002031
Yan, Zhengd68fc572010-05-16 10:49:58 -04002032 if (list_empty(&BTRFS_I(inode)->i_orphan)) {
2033 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
2034#if 0
2035 /*
2036 * For proper ENOSPC handling, we should do orphan
2037 * cleanup when mounting. But this introduces backward
2038 * compatibility issue.
2039 */
2040 if (!xchg(&root->orphan_item_inserted, 1))
2041 insert = 2;
2042 else
2043 insert = 1;
2044#endif
2045 insert = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002046 }
Josef Bacik7b128762008-07-24 12:17:14 -04002047
Yan, Zhengd68fc572010-05-16 10:49:58 -04002048 if (!BTRFS_I(inode)->orphan_meta_reserved) {
2049 BTRFS_I(inode)->orphan_meta_reserved = 1;
2050 reserve = 1;
2051 }
2052 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002053
Yan, Zhengd68fc572010-05-16 10:49:58 -04002054 /* grab metadata reservation from transaction handle */
2055 if (reserve) {
2056 ret = btrfs_orphan_reserve_metadata(trans, inode);
2057 BUG_ON(ret);
2058 }
2059
2060 /* insert an orphan item to track this unlinked/truncated file */
2061 if (insert >= 1) {
Li Zefan33345d012011-04-20 10:31:50 +08002062 ret = btrfs_insert_orphan_item(trans, root, btrfs_ino(inode));
Josef Bacikee4d89f2011-12-13 12:55:58 -05002063 BUG_ON(ret && ret != -EEXIST);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002064 }
2065
2066 /* insert an orphan item to track subvolume contains orphan files */
2067 if (insert >= 2) {
2068 ret = btrfs_insert_orphan_item(trans, root->fs_info->tree_root,
2069 root->root_key.objectid);
2070 BUG_ON(ret);
2071 }
2072 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002073}
2074
2075/*
2076 * We have done the truncate/delete so we can go ahead and remove the orphan
2077 * item for this particular inode.
2078 */
2079int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode)
2080{
2081 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002082 int delete_item = 0;
2083 int release_rsv = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002084 int ret = 0;
2085
Yan, Zhengd68fc572010-05-16 10:49:58 -04002086 spin_lock(&root->orphan_lock);
2087 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
2088 list_del_init(&BTRFS_I(inode)->i_orphan);
2089 delete_item = 1;
Josef Bacik7b128762008-07-24 12:17:14 -04002090 }
2091
Yan, Zhengd68fc572010-05-16 10:49:58 -04002092 if (BTRFS_I(inode)->orphan_meta_reserved) {
2093 BTRFS_I(inode)->orphan_meta_reserved = 0;
2094 release_rsv = 1;
2095 }
2096 spin_unlock(&root->orphan_lock);
2097
2098 if (trans && delete_item) {
Li Zefan33345d012011-04-20 10:31:50 +08002099 ret = btrfs_del_orphan_item(trans, root, btrfs_ino(inode));
Yan, Zhengd68fc572010-05-16 10:49:58 -04002100 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04002101 }
2102
Yan, Zhengd68fc572010-05-16 10:49:58 -04002103 if (release_rsv)
2104 btrfs_orphan_release_metadata(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04002105
Yan, Zhengd68fc572010-05-16 10:49:58 -04002106 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002107}
2108
2109/*
2110 * this cleans up any orphans that may be left on the list from the last use
2111 * of this root.
2112 */
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002113int btrfs_orphan_cleanup(struct btrfs_root *root)
Josef Bacik7b128762008-07-24 12:17:14 -04002114{
2115 struct btrfs_path *path;
2116 struct extent_buffer *leaf;
Josef Bacik7b128762008-07-24 12:17:14 -04002117 struct btrfs_key key, found_key;
2118 struct btrfs_trans_handle *trans;
2119 struct inode *inode;
Josef Bacik8f6d7f42011-09-26 15:55:20 -04002120 u64 last_objectid = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002121 int ret = 0, nr_unlink = 0, nr_truncate = 0;
2122
Yan, Zhengd68fc572010-05-16 10:49:58 -04002123 if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002124 return 0;
Yan, Zhengc71bf092009-11-12 09:34:40 +00002125
2126 path = btrfs_alloc_path();
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002127 if (!path) {
2128 ret = -ENOMEM;
2129 goto out;
2130 }
Josef Bacik7b128762008-07-24 12:17:14 -04002131 path->reada = -1;
2132
2133 key.objectid = BTRFS_ORPHAN_OBJECTID;
2134 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
2135 key.offset = (u64)-1;
2136
Josef Bacik7b128762008-07-24 12:17:14 -04002137 while (1) {
2138 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002139 if (ret < 0)
2140 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04002141
2142 /*
2143 * if ret == 0 means we found what we were searching for, which
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002144 * is weird, but possible, so only screw with path if we didn't
Josef Bacik7b128762008-07-24 12:17:14 -04002145 * find the key and see if we have stuff that matches
2146 */
2147 if (ret > 0) {
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002148 ret = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002149 if (path->slots[0] == 0)
2150 break;
2151 path->slots[0]--;
2152 }
2153
2154 /* pull out the item */
2155 leaf = path->nodes[0];
Josef Bacik7b128762008-07-24 12:17:14 -04002156 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2157
2158 /* make sure the item matches what we want */
2159 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
2160 break;
2161 if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY)
2162 break;
2163
2164 /* release the path since we're done with it */
David Sterbab3b4aa72011-04-21 01:20:15 +02002165 btrfs_release_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04002166
2167 /*
2168 * this is where we are basically btrfs_lookup, without the
2169 * crossing root thing. we store the inode number in the
2170 * offset of the orphan item.
2171 */
Josef Bacik8f6d7f42011-09-26 15:55:20 -04002172
2173 if (found_key.offset == last_objectid) {
2174 printk(KERN_ERR "btrfs: Error removing orphan entry, "
2175 "stopping orphan cleanup\n");
2176 ret = -EINVAL;
2177 goto out;
2178 }
2179
2180 last_objectid = found_key.offset;
2181
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002182 found_key.objectid = found_key.offset;
2183 found_key.type = BTRFS_INODE_ITEM_KEY;
2184 found_key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +00002185 inode = btrfs_iget(root->fs_info->sb, &found_key, root, NULL);
Josef Bacika8c9e572011-09-21 16:55:59 -04002186 ret = PTR_RET(inode);
2187 if (ret && ret != -ESTALE)
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002188 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04002189
Arne Jansenf8e9e0b2011-12-14 20:12:02 -05002190 if (ret == -ESTALE && root == root->fs_info->tree_root) {
2191 struct btrfs_root *dead_root;
2192 struct btrfs_fs_info *fs_info = root->fs_info;
2193 int is_dead_root = 0;
2194
2195 /*
2196 * this is an orphan in the tree root. Currently these
2197 * could come from 2 sources:
2198 * a) a snapshot deletion in progress
2199 * b) a free space cache inode
2200 * We need to distinguish those two, as the snapshot
2201 * orphan must not get deleted.
2202 * find_dead_roots already ran before us, so if this
2203 * is a snapshot deletion, we should find the root
2204 * in the dead_roots list
2205 */
2206 spin_lock(&fs_info->trans_lock);
2207 list_for_each_entry(dead_root, &fs_info->dead_roots,
2208 root_list) {
2209 if (dead_root->root_key.objectid ==
2210 found_key.objectid) {
2211 is_dead_root = 1;
2212 break;
2213 }
2214 }
2215 spin_unlock(&fs_info->trans_lock);
2216 if (is_dead_root) {
2217 /* prevent this orphan from being found again */
2218 key.offset = found_key.objectid - 1;
2219 continue;
2220 }
2221 }
Josef Bacika8c9e572011-09-21 16:55:59 -04002222 /*
2223 * Inode is already gone but the orphan item is still there,
2224 * kill the orphan item.
2225 */
2226 if (ret == -ESTALE) {
2227 trans = btrfs_start_transaction(root, 1);
2228 if (IS_ERR(trans)) {
2229 ret = PTR_ERR(trans);
2230 goto out;
2231 }
2232 ret = btrfs_del_orphan_item(trans, root,
2233 found_key.objectid);
2234 BUG_ON(ret);
2235 btrfs_end_transaction(trans, root);
2236 continue;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002237 }
Josef Bacik7b128762008-07-24 12:17:14 -04002238
Josef Bacik7b128762008-07-24 12:17:14 -04002239 /*
2240 * add this inode to the orphan list so btrfs_orphan_del does
2241 * the proper thing when we hit it
2242 */
Yan, Zhengd68fc572010-05-16 10:49:58 -04002243 spin_lock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002244 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002245 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002246
Josef Bacik7b128762008-07-24 12:17:14 -04002247 /* if we have links, this was a truncate, lets do that */
2248 if (inode->i_nlink) {
Josef Bacika41ad392011-01-31 15:30:16 -05002249 if (!S_ISREG(inode->i_mode)) {
2250 WARN_ON(1);
2251 iput(inode);
2252 continue;
2253 }
Josef Bacik7b128762008-07-24 12:17:14 -04002254 nr_truncate++;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002255 ret = btrfs_truncate(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04002256 } else {
2257 nr_unlink++;
2258 }
2259
2260 /* this will do delete_inode and everything for us */
2261 iput(inode);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002262 if (ret)
2263 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04002264 }
Miao Xie3254c872011-11-10 20:45:05 -05002265 /* release the path since we're done with it */
2266 btrfs_release_path(path);
2267
Yan, Zhengd68fc572010-05-16 10:49:58 -04002268 root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE;
2269
2270 if (root->orphan_block_rsv)
2271 btrfs_block_rsv_release(root, root->orphan_block_rsv,
2272 (u64)-1);
2273
2274 if (root->orphan_block_rsv || root->orphan_item_inserted) {
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002275 trans = btrfs_join_transaction(root);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002276 if (!IS_ERR(trans))
2277 btrfs_end_transaction(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002278 }
Josef Bacik7b128762008-07-24 12:17:14 -04002279
2280 if (nr_unlink)
2281 printk(KERN_INFO "btrfs: unlinked %d orphans\n", nr_unlink);
2282 if (nr_truncate)
2283 printk(KERN_INFO "btrfs: truncated %d orphans\n", nr_truncate);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002284
2285out:
2286 if (ret)
2287 printk(KERN_CRIT "btrfs: could not do orphan cleanup %d\n", ret);
2288 btrfs_free_path(path);
2289 return ret;
Josef Bacik7b128762008-07-24 12:17:14 -04002290}
2291
Chris Masond352ac62008-09-29 15:18:18 -04002292/*
Chris Mason46a53cc2009-04-27 11:47:50 -04002293 * very simple check to peek ahead in the leaf looking for xattrs. If we
2294 * don't find any xattrs, we know there can't be any acls.
2295 *
2296 * slot is the slot the inode is in, objectid is the objectid of the inode
2297 */
2298static noinline int acls_after_inode_item(struct extent_buffer *leaf,
2299 int slot, u64 objectid)
2300{
2301 u32 nritems = btrfs_header_nritems(leaf);
2302 struct btrfs_key found_key;
2303 int scanned = 0;
2304
2305 slot++;
2306 while (slot < nritems) {
2307 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2308
2309 /* we found a different objectid, there must not be acls */
2310 if (found_key.objectid != objectid)
2311 return 0;
2312
2313 /* we found an xattr, assume we've got an acl */
2314 if (found_key.type == BTRFS_XATTR_ITEM_KEY)
2315 return 1;
2316
2317 /*
2318 * we found a key greater than an xattr key, there can't
2319 * be any acls later on
2320 */
2321 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
2322 return 0;
2323
2324 slot++;
2325 scanned++;
2326
2327 /*
2328 * it goes inode, inode backrefs, xattrs, extents,
2329 * so if there are a ton of hard links to an inode there can
2330 * be a lot of backrefs. Don't waste time searching too hard,
2331 * this is just an optimization
2332 */
2333 if (scanned >= 8)
2334 break;
2335 }
2336 /* we hit the end of the leaf before we found an xattr or
2337 * something larger than an xattr. We have to assume the inode
2338 * has acls
2339 */
2340 return 1;
2341}
2342
2343/*
Chris Masond352ac62008-09-29 15:18:18 -04002344 * read an inode from the btree into the in-memory inode
2345 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002346static void btrfs_read_locked_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002347{
2348 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002349 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002350 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -04002351 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -04002352 struct btrfs_root *root = BTRFS_I(inode)->root;
2353 struct btrfs_key location;
Chris Mason46a53cc2009-04-27 11:47:50 -04002354 int maybe_acls;
Josef Bacik618e21d2007-07-11 10:18:17 -04002355 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04002356 int ret;
Miao Xie2f7e33d2011-06-23 07:27:13 +00002357 bool filled = false;
2358
2359 ret = btrfs_fill_inode(inode, &rdev);
2360 if (!ret)
2361 filled = true;
Chris Mason39279cc2007-06-12 06:35:45 -04002362
2363 path = btrfs_alloc_path();
Mark Fasheh1748f842011-07-12 11:25:31 -07002364 if (!path)
2365 goto make_bad;
2366
Josef Bacikd90c7322011-05-17 09:50:54 -04002367 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002368 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05002369
Chris Mason39279cc2007-06-12 06:35:45 -04002370 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002371 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04002372 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -04002373
Chris Mason5f39d392007-10-15 16:14:19 -04002374 leaf = path->nodes[0];
Miao Xie2f7e33d2011-06-23 07:27:13 +00002375
2376 if (filled)
2377 goto cache_acl;
2378
Chris Mason5f39d392007-10-15 16:14:19 -04002379 inode_item = btrfs_item_ptr(leaf, path->slots[0],
2380 struct btrfs_inode_item);
Chris Mason5f39d392007-10-15 16:14:19 -04002381 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
Miklos Szeredibfe86842011-10-28 14:13:29 +02002382 set_nlink(inode, btrfs_inode_nlink(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002383 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
2384 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
Chris Masondbe674a2008-07-17 12:54:05 -04002385 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002386
2387 tspec = btrfs_inode_atime(inode_item);
2388 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2389 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2390
2391 tspec = btrfs_inode_mtime(inode_item);
2392 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2393 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2394
2395 tspec = btrfs_inode_ctime(inode_item);
2396 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2397 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2398
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002399 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04002400 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Chris Masonc3027eb2008-12-08 16:40:21 -05002401 BTRFS_I(inode)->sequence = btrfs_inode_sequence(leaf, inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04002402 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04002403 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002404 rdev = btrfs_inode_rdev(leaf, inode_item);
2405
Josef Bacikaec74772008-07-24 12:12:38 -04002406 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05002407 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Miao Xie2f7e33d2011-06-23 07:27:13 +00002408cache_acl:
Chris Mason46a53cc2009-04-27 11:47:50 -04002409 /*
2410 * try to precache a NULL acl entry for files that don't have
2411 * any xattrs or acls
2412 */
Li Zefan33345d012011-04-20 10:31:50 +08002413 maybe_acls = acls_after_inode_item(leaf, path->slots[0],
2414 btrfs_ino(inode));
Al Viro72c04902009-06-24 16:58:48 -04002415 if (!maybe_acls)
2416 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04002417
Chris Mason39279cc2007-06-12 06:35:45 -04002418 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002419
Chris Mason39279cc2007-06-12 06:35:45 -04002420 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04002421 case S_IFREG:
2422 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04002423 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05002424 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04002425 inode->i_fop = &btrfs_file_operations;
2426 inode->i_op = &btrfs_file_inode_operations;
2427 break;
2428 case S_IFDIR:
2429 inode->i_fop = &btrfs_dir_file_operations;
2430 if (root == root->fs_info->tree_root)
2431 inode->i_op = &btrfs_dir_ro_inode_operations;
2432 else
2433 inode->i_op = &btrfs_dir_inode_operations;
2434 break;
2435 case S_IFLNK:
2436 inode->i_op = &btrfs_symlink_inode_operations;
2437 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04002438 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04002439 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04002440 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05002441 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04002442 init_special_inode(inode, inode->i_mode, rdev);
2443 break;
Chris Mason39279cc2007-06-12 06:35:45 -04002444 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002445
2446 btrfs_update_iflags(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002447 return;
2448
2449make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04002450 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002451 make_bad_inode(inode);
2452}
2453
Chris Masond352ac62008-09-29 15:18:18 -04002454/*
2455 * given a leaf and an inode, copy the inode fields into the leaf
2456 */
Chris Masone02119d2008-09-05 16:13:11 -04002457static void fill_inode_item(struct btrfs_trans_handle *trans,
2458 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04002459 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04002460 struct inode *inode)
2461{
Chris Mason5f39d392007-10-15 16:14:19 -04002462 btrfs_set_inode_uid(leaf, item, inode->i_uid);
2463 btrfs_set_inode_gid(leaf, item, inode->i_gid);
Chris Masondbe674a2008-07-17 12:54:05 -04002464 btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size);
Chris Mason5f39d392007-10-15 16:14:19 -04002465 btrfs_set_inode_mode(leaf, item, inode->i_mode);
2466 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
2467
2468 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
2469 inode->i_atime.tv_sec);
2470 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
2471 inode->i_atime.tv_nsec);
2472
2473 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
2474 inode->i_mtime.tv_sec);
2475 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
2476 inode->i_mtime.tv_nsec);
2477
2478 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
2479 inode->i_ctime.tv_sec);
2480 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
2481 inode->i_ctime.tv_nsec);
2482
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002483 btrfs_set_inode_nbytes(leaf, item, inode_get_bytes(inode));
Chris Masone02119d2008-09-05 16:13:11 -04002484 btrfs_set_inode_generation(leaf, item, BTRFS_I(inode)->generation);
Chris Masonc3027eb2008-12-08 16:40:21 -05002485 btrfs_set_inode_sequence(leaf, item, BTRFS_I(inode)->sequence);
Chris Masone02119d2008-09-05 16:13:11 -04002486 btrfs_set_inode_transid(leaf, item, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002487 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -05002488 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04002489 btrfs_set_inode_block_group(leaf, item, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002490}
2491
Chris Masond352ac62008-09-29 15:18:18 -04002492/*
2493 * copy everything in the in-memory inode into the btree.
2494 */
Chris Mason21151332011-11-10 20:39:08 -05002495static noinline int btrfs_update_inode_item(struct btrfs_trans_handle *trans,
Chris Masond3977122009-01-05 21:25:51 -05002496 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002497{
2498 struct btrfs_inode_item *inode_item;
2499 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002500 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002501 int ret;
2502
2503 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08002504 if (!path)
2505 return -ENOMEM;
2506
Chris Masonb9473432009-03-13 11:00:37 -04002507 path->leave_spinning = 1;
Miao Xie16cdcec2011-04-22 18:12:22 +08002508 ret = btrfs_lookup_inode(trans, root, path, &BTRFS_I(inode)->location,
2509 1);
Chris Mason39279cc2007-06-12 06:35:45 -04002510 if (ret) {
2511 if (ret > 0)
2512 ret = -ENOENT;
2513 goto failed;
2514 }
2515
Chris Masonb4ce94d2009-02-04 09:25:08 -05002516 btrfs_unlock_up_safe(path, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002517 leaf = path->nodes[0];
2518 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Miao Xie16cdcec2011-04-22 18:12:22 +08002519 struct btrfs_inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -04002520
Chris Masone02119d2008-09-05 16:13:11 -04002521 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002522 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002523 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002524 ret = 0;
2525failed:
Chris Mason39279cc2007-06-12 06:35:45 -04002526 btrfs_free_path(path);
2527 return ret;
2528}
2529
Chris Masond352ac62008-09-29 15:18:18 -04002530/*
Chris Mason21151332011-11-10 20:39:08 -05002531 * copy everything in the in-memory inode into the btree.
2532 */
2533noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
2534 struct btrfs_root *root, struct inode *inode)
2535{
2536 int ret;
2537
2538 /*
2539 * If the inode is a free space inode, we can deadlock during commit
2540 * if we put it into the delayed code.
2541 *
2542 * The data relocation inode should also be directly updated
2543 * without delay
2544 */
2545 if (!btrfs_is_free_space_inode(root, inode)
2546 && root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID) {
2547 ret = btrfs_delayed_update_inode(trans, root, inode);
2548 if (!ret)
2549 btrfs_set_inode_last_trans(trans, inode);
2550 return ret;
2551 }
2552
2553 return btrfs_update_inode_item(trans, root, inode);
2554}
2555
2556static noinline int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans,
2557 struct btrfs_root *root, struct inode *inode)
2558{
2559 int ret;
2560
2561 ret = btrfs_update_inode(trans, root, inode);
2562 if (ret == -ENOSPC)
2563 return btrfs_update_inode_item(trans, root, inode);
2564 return ret;
2565}
2566
2567/*
Chris Masond352ac62008-09-29 15:18:18 -04002568 * unlink helper that gets used here in inode.c and in the tree logging
2569 * recovery code. It remove a link in a directory with a given name, and
2570 * also drops the back refs in the inode to the directory
2571 */
Al Viro92986792011-03-04 17:14:37 +00002572static int __btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2573 struct btrfs_root *root,
2574 struct inode *dir, struct inode *inode,
2575 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04002576{
2577 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04002578 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002579 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002580 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04002581 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04002582 u64 index;
Li Zefan33345d012011-04-20 10:31:50 +08002583 u64 ino = btrfs_ino(inode);
2584 u64 dir_ino = btrfs_ino(dir);
Chris Mason39279cc2007-06-12 06:35:45 -04002585
2586 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002587 if (!path) {
2588 ret = -ENOMEM;
Tsutomu Itoh554233a2011-02-03 03:16:25 +00002589 goto out;
Chris Mason54aa1f42007-06-22 14:16:25 -04002590 }
2591
Chris Masonb9473432009-03-13 11:00:37 -04002592 path->leave_spinning = 1;
Li Zefan33345d012011-04-20 10:31:50 +08002593 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Chris Mason39279cc2007-06-12 06:35:45 -04002594 name, name_len, -1);
2595 if (IS_ERR(di)) {
2596 ret = PTR_ERR(di);
2597 goto err;
2598 }
2599 if (!di) {
2600 ret = -ENOENT;
2601 goto err;
2602 }
Chris Mason5f39d392007-10-15 16:14:19 -04002603 leaf = path->nodes[0];
2604 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04002605 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04002606 if (ret)
2607 goto err;
David Sterbab3b4aa72011-04-21 01:20:15 +02002608 btrfs_release_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002609
Li Zefan33345d012011-04-20 10:31:50 +08002610 ret = btrfs_del_inode_ref(trans, root, name, name_len, ino,
2611 dir_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04002612 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05002613 printk(KERN_INFO "btrfs failed to delete reference to %.*s, "
Li Zefan33345d012011-04-20 10:31:50 +08002614 "inode %llu parent %llu\n", name_len, name,
2615 (unsigned long long)ino, (unsigned long long)dir_ino);
Josef Bacikaec74772008-07-24 12:12:38 -04002616 goto err;
2617 }
2618
Miao Xie16cdcec2011-04-22 18:12:22 +08002619 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
2620 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04002621 goto err;
Chris Mason39279cc2007-06-12 06:35:45 -04002622
Chris Masone02119d2008-09-05 16:13:11 -04002623 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
Li Zefan33345d012011-04-20 10:31:50 +08002624 inode, dir_ino);
Chris Mason49eb7e42008-09-11 15:53:12 -04002625 BUG_ON(ret != 0 && ret != -ENOENT);
Chris Masone02119d2008-09-05 16:13:11 -04002626
2627 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
2628 dir, index);
Chris Mason6418c962010-10-30 07:34:24 -04002629 if (ret == -ENOENT)
2630 ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002631err:
2632 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002633 if (ret)
2634 goto out;
2635
2636 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
2637 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
2638 btrfs_update_inode(trans, root, dir);
Chris Masone02119d2008-09-05 16:13:11 -04002639out:
Chris Mason39279cc2007-06-12 06:35:45 -04002640 return ret;
2641}
2642
Al Viro92986792011-03-04 17:14:37 +00002643int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2644 struct btrfs_root *root,
2645 struct inode *dir, struct inode *inode,
2646 const char *name, int name_len)
2647{
2648 int ret;
2649 ret = __btrfs_unlink_inode(trans, root, dir, inode, name, name_len);
2650 if (!ret) {
2651 btrfs_drop_nlink(inode);
2652 ret = btrfs_update_inode(trans, root, inode);
2653 }
2654 return ret;
2655}
2656
2657
Yan, Zhenga22285a2010-05-16 10:48:46 -04002658/* helper to check if there is any shared block in the path */
2659static int check_path_shared(struct btrfs_root *root,
2660 struct btrfs_path *path)
2661{
2662 struct extent_buffer *eb;
2663 int level;
Dan Carpenter0e4dcbef2010-06-01 08:23:11 +00002664 u64 refs = 1;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002665
2666 for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
Josef Bacikdedefd72011-01-24 21:43:18 +00002667 int ret;
2668
Yan, Zhenga22285a2010-05-16 10:48:46 -04002669 if (!path->nodes[level])
2670 break;
2671 eb = path->nodes[level];
2672 if (!btrfs_block_can_be_shared(root, eb))
2673 continue;
2674 ret = btrfs_lookup_extent_info(NULL, root, eb->start, eb->len,
2675 &refs, NULL);
2676 if (refs > 1)
2677 return 1;
2678 }
Josef Bacikdedefd72011-01-24 21:43:18 +00002679 return 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002680}
2681
2682/*
2683 * helper to start transaction for unlink and rmdir.
2684 *
2685 * unlink and rmdir are special in btrfs, they do not always free space.
2686 * so in enospc case, we should make sure they will free space before
2687 * allowing them to use the global metadata reservation.
2688 */
2689static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir,
2690 struct dentry *dentry)
2691{
2692 struct btrfs_trans_handle *trans;
2693 struct btrfs_root *root = BTRFS_I(dir)->root;
2694 struct btrfs_path *path;
2695 struct btrfs_inode_ref *ref;
2696 struct btrfs_dir_item *di;
2697 struct inode *inode = dentry->d_inode;
2698 u64 index;
2699 int check_link = 1;
2700 int err = -ENOSPC;
2701 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08002702 u64 ino = btrfs_ino(inode);
2703 u64 dir_ino = btrfs_ino(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002704
Josef Bacike70bea52011-10-11 14:18:24 -04002705 /*
2706 * 1 for the possible orphan item
2707 * 1 for the dir item
2708 * 1 for the dir index
2709 * 1 for the inode ref
2710 * 1 for the inode ref in the tree log
2711 * 2 for the dir entries in the log
2712 * 1 for the inode
2713 */
2714 trans = btrfs_start_transaction(root, 8);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002715 if (!IS_ERR(trans) || PTR_ERR(trans) != -ENOSPC)
2716 return trans;
2717
Li Zefan33345d012011-04-20 10:31:50 +08002718 if (ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhenga22285a2010-05-16 10:48:46 -04002719 return ERR_PTR(-ENOSPC);
2720
2721 /* check if there is someone else holds reference */
2722 if (S_ISDIR(inode->i_mode) && atomic_read(&inode->i_count) > 1)
2723 return ERR_PTR(-ENOSPC);
2724
2725 if (atomic_read(&inode->i_count) > 2)
2726 return ERR_PTR(-ENOSPC);
2727
2728 if (xchg(&root->fs_info->enospc_unlink, 1))
2729 return ERR_PTR(-ENOSPC);
2730
2731 path = btrfs_alloc_path();
2732 if (!path) {
2733 root->fs_info->enospc_unlink = 0;
2734 return ERR_PTR(-ENOMEM);
2735 }
2736
Josef Bacik3880a1b2011-10-14 14:46:51 -04002737 /* 1 for the orphan item */
2738 trans = btrfs_start_transaction(root, 1);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002739 if (IS_ERR(trans)) {
2740 btrfs_free_path(path);
2741 root->fs_info->enospc_unlink = 0;
2742 return trans;
2743 }
2744
2745 path->skip_locking = 1;
2746 path->search_commit_root = 1;
2747
2748 ret = btrfs_lookup_inode(trans, root, path,
2749 &BTRFS_I(dir)->location, 0);
2750 if (ret < 0) {
2751 err = ret;
2752 goto out;
2753 }
2754 if (ret == 0) {
2755 if (check_path_shared(root, path))
2756 goto out;
2757 } else {
2758 check_link = 0;
2759 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002760 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002761
2762 ret = btrfs_lookup_inode(trans, root, path,
2763 &BTRFS_I(inode)->location, 0);
2764 if (ret < 0) {
2765 err = ret;
2766 goto out;
2767 }
2768 if (ret == 0) {
2769 if (check_path_shared(root, path))
2770 goto out;
2771 } else {
2772 check_link = 0;
2773 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002774 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002775
2776 if (ret == 0 && S_ISREG(inode->i_mode)) {
2777 ret = btrfs_lookup_file_extent(trans, root, path,
Li Zefan33345d012011-04-20 10:31:50 +08002778 ino, (u64)-1, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002779 if (ret < 0) {
2780 err = ret;
2781 goto out;
2782 }
2783 BUG_ON(ret == 0);
2784 if (check_path_shared(root, path))
2785 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +02002786 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002787 }
2788
2789 if (!check_link) {
2790 err = 0;
2791 goto out;
2792 }
2793
Li Zefan33345d012011-04-20 10:31:50 +08002794 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zhenga22285a2010-05-16 10:48:46 -04002795 dentry->d_name.name, dentry->d_name.len, 0);
2796 if (IS_ERR(di)) {
2797 err = PTR_ERR(di);
2798 goto out;
2799 }
2800 if (di) {
2801 if (check_path_shared(root, path))
2802 goto out;
2803 } else {
2804 err = 0;
2805 goto out;
2806 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002807 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002808
2809 ref = btrfs_lookup_inode_ref(trans, root, path,
2810 dentry->d_name.name, dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08002811 ino, dir_ino, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002812 if (IS_ERR(ref)) {
2813 err = PTR_ERR(ref);
2814 goto out;
2815 }
2816 BUG_ON(!ref);
2817 if (check_path_shared(root, path))
2818 goto out;
2819 index = btrfs_inode_ref_index(path->nodes[0], ref);
David Sterbab3b4aa72011-04-21 01:20:15 +02002820 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002821
Miao Xie16cdcec2011-04-22 18:12:22 +08002822 /*
2823 * This is a commit root search, if we can lookup inode item and other
2824 * relative items in the commit root, it means the transaction of
2825 * dir/file creation has been committed, and the dir index item that we
2826 * delay to insert has also been inserted into the commit root. So
2827 * we needn't worry about the delayed insertion of the dir index item
2828 * here.
2829 */
Li Zefan33345d012011-04-20 10:31:50 +08002830 di = btrfs_lookup_dir_index_item(trans, root, path, dir_ino, index,
Yan, Zhenga22285a2010-05-16 10:48:46 -04002831 dentry->d_name.name, dentry->d_name.len, 0);
2832 if (IS_ERR(di)) {
2833 err = PTR_ERR(di);
2834 goto out;
2835 }
2836 BUG_ON(ret == -ENOENT);
2837 if (check_path_shared(root, path))
2838 goto out;
2839
2840 err = 0;
2841out:
2842 btrfs_free_path(path);
Josef Bacik3880a1b2011-10-14 14:46:51 -04002843 /* Migrate the orphan reservation over */
2844 if (!err)
2845 err = btrfs_block_rsv_migrate(trans->block_rsv,
2846 &root->fs_info->global_block_rsv,
Josef Bacik5a77d762011-11-01 14:32:23 -04002847 trans->bytes_reserved);
Josef Bacik3880a1b2011-10-14 14:46:51 -04002848
Yan, Zhenga22285a2010-05-16 10:48:46 -04002849 if (err) {
2850 btrfs_end_transaction(trans, root);
2851 root->fs_info->enospc_unlink = 0;
2852 return ERR_PTR(err);
2853 }
2854
2855 trans->block_rsv = &root->fs_info->global_block_rsv;
2856 return trans;
2857}
2858
2859static void __unlink_end_trans(struct btrfs_trans_handle *trans,
2860 struct btrfs_root *root)
2861{
2862 if (trans->block_rsv == &root->fs_info->global_block_rsv) {
Josef Bacik5a77d762011-11-01 14:32:23 -04002863 btrfs_block_rsv_release(root, trans->block_rsv,
2864 trans->bytes_reserved);
2865 trans->block_rsv = &root->fs_info->trans_block_rsv;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002866 BUG_ON(!root->fs_info->enospc_unlink);
2867 root->fs_info->enospc_unlink = 0;
2868 }
Josef Bacik7ad85bb2012-01-12 19:10:12 -05002869 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002870}
2871
Chris Mason39279cc2007-06-12 06:35:45 -04002872static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
2873{
Yan, Zhenga22285a2010-05-16 10:48:46 -04002874 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002875 struct btrfs_trans_handle *trans;
Josef Bacik7b128762008-07-24 12:17:14 -04002876 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002877 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05002878 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002879
Yan, Zhenga22285a2010-05-16 10:48:46 -04002880 trans = __unlink_start_trans(dir, dentry);
2881 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002882 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04002883
Chris Mason12fcfd22009-03-24 10:24:20 -04002884 btrfs_record_unlink_dir(trans, dir, dentry->d_inode, 0);
2885
Chris Masone02119d2008-09-05 16:13:11 -04002886 ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
2887 dentry->d_name.name, dentry->d_name.len);
Tsutomu Itohb5324022011-07-19 07:27:20 +00002888 if (ret)
2889 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04002890
Yan, Zhenga22285a2010-05-16 10:48:46 -04002891 if (inode->i_nlink == 0) {
Josef Bacik7b128762008-07-24 12:17:14 -04002892 ret = btrfs_orphan_add(trans, inode);
Tsutomu Itohb5324022011-07-19 07:27:20 +00002893 if (ret)
2894 goto out;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002895 }
Josef Bacik7b128762008-07-24 12:17:14 -04002896
Tsutomu Itohb5324022011-07-19 07:27:20 +00002897out:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002898 nr = trans->blocks_used;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002899 __unlink_end_trans(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002900 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002901 return ret;
2902}
2903
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002904int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
2905 struct btrfs_root *root,
2906 struct inode *dir, u64 objectid,
2907 const char *name, int name_len)
2908{
2909 struct btrfs_path *path;
2910 struct extent_buffer *leaf;
2911 struct btrfs_dir_item *di;
2912 struct btrfs_key key;
2913 u64 index;
2914 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08002915 u64 dir_ino = btrfs_ino(dir);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002916
2917 path = btrfs_alloc_path();
2918 if (!path)
2919 return -ENOMEM;
2920
Li Zefan33345d012011-04-20 10:31:50 +08002921 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002922 name, name_len, -1);
David Sterbac7040052011-04-19 18:00:01 +02002923 BUG_ON(IS_ERR_OR_NULL(di));
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002924
2925 leaf = path->nodes[0];
2926 btrfs_dir_item_key_to_cpu(leaf, di, &key);
2927 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
2928 ret = btrfs_delete_one_dir_name(trans, root, path, di);
2929 BUG_ON(ret);
David Sterbab3b4aa72011-04-21 01:20:15 +02002930 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002931
2932 ret = btrfs_del_root_ref(trans, root->fs_info->tree_root,
2933 objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08002934 dir_ino, &index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002935 if (ret < 0) {
2936 BUG_ON(ret != -ENOENT);
Li Zefan33345d012011-04-20 10:31:50 +08002937 di = btrfs_search_dir_index_item(root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002938 name, name_len);
David Sterbac7040052011-04-19 18:00:01 +02002939 BUG_ON(IS_ERR_OR_NULL(di));
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002940
2941 leaf = path->nodes[0];
2942 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02002943 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002944 index = key.offset;
2945 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002946 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002947
Miao Xie16cdcec2011-04-22 18:12:22 +08002948 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
2949 BUG_ON(ret);
2950
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002951 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
2952 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
2953 ret = btrfs_update_inode(trans, root, dir);
2954 BUG_ON(ret);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002955
Josef Bacik71d7aed2011-06-14 14:24:32 -04002956 btrfs_free_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002957 return 0;
2958}
2959
Chris Mason39279cc2007-06-12 06:35:45 -04002960static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
2961{
2962 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002963 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002964 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002965 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -05002966 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002967
Chris Mason3394e162008-11-17 20:42:26 -05002968 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE ||
Li Zefan33345d012011-04-20 10:31:50 +08002969 btrfs_ino(inode) == BTRFS_FIRST_FREE_OBJECTID)
Yan134d4512007-10-25 15:49:25 -04002970 return -ENOTEMPTY;
2971
Yan, Zhenga22285a2010-05-16 10:48:46 -04002972 trans = __unlink_start_trans(dir, dentry);
2973 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002974 return PTR_ERR(trans);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002975
Li Zefan33345d012011-04-20 10:31:50 +08002976 if (unlikely(btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002977 err = btrfs_unlink_subvol(trans, root, dir,
2978 BTRFS_I(inode)->location.objectid,
2979 dentry->d_name.name,
2980 dentry->d_name.len);
2981 goto out;
2982 }
2983
Josef Bacik7b128762008-07-24 12:17:14 -04002984 err = btrfs_orphan_add(trans, inode);
2985 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002986 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04002987
Chris Mason39279cc2007-06-12 06:35:45 -04002988 /* now the directory is empty */
Chris Masone02119d2008-09-05 16:13:11 -04002989 err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
2990 dentry->d_name.name, dentry->d_name.len);
Chris Masond3977122009-01-05 21:25:51 -05002991 if (!err)
Chris Masondbe674a2008-07-17 12:54:05 -04002992 btrfs_i_size_write(inode, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002993out:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002994 nr = trans->blocks_used;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002995 __unlink_end_trans(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002996 btrfs_btree_balance_dirty(root, nr);
Chris Mason39544012007-12-12 14:38:19 -05002997
Chris Mason39279cc2007-06-12 06:35:45 -04002998 return err;
2999}
3000
Chris Mason323ac952008-10-01 19:05:46 -04003001/*
Chris Mason39279cc2007-06-12 06:35:45 -04003002 * this can truncate away extent items, csum items and directory items.
3003 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04003004 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04003005 *
3006 * csum items that cross the new i_size are truncated to the new size
3007 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04003008 *
3009 * min_type is the minimum key type to truncate down to. If set to 0, this
3010 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04003011 */
Yan, Zheng80825102009-11-12 09:35:36 +00003012int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
3013 struct btrfs_root *root,
3014 struct inode *inode,
3015 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003016{
Chris Mason39279cc2007-06-12 06:35:45 -04003017 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003018 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003019 struct btrfs_file_extent_item *fi;
Yan, Zheng80825102009-11-12 09:35:36 +00003020 struct btrfs_key key;
3021 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04003022 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04003023 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003024 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003025 u64 item_end = 0;
Yan, Zheng80825102009-11-12 09:35:36 +00003026 u64 mask = root->sectorsize - 1;
3027 u32 found_type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -04003028 int found_extent;
3029 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05003030 int pending_del_nr = 0;
3031 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04003032 int extent_type = -1;
Yan, Zheng80825102009-11-12 09:35:36 +00003033 int ret;
3034 int err = 0;
Li Zefan33345d012011-04-20 10:31:50 +08003035 u64 ino = btrfs_ino(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003036
3037 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04003038
Mark Fasheh0eb0e192011-07-12 16:44:10 -07003039 path = btrfs_alloc_path();
3040 if (!path)
3041 return -ENOMEM;
3042 path->reada = -1;
3043
Josef Bacik0af3d002010-06-21 14:48:16 -04003044 if (root->ref_cows || root == root->fs_info->tree_root)
Zheng Yan5b21f2e2008-09-26 10:05:38 -04003045 btrfs_drop_extent_cache(inode, new_size & (~mask), (u64)-1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003046
Miao Xie16cdcec2011-04-22 18:12:22 +08003047 /*
3048 * This function is also used to drop the items in the log tree before
3049 * we relog the inode, so if root != BTRFS_I(inode)->root, it means
3050 * it is used to drop the loged items. So we shouldn't kill the delayed
3051 * items.
3052 */
3053 if (min_type == 0 && root == BTRFS_I(inode)->root)
3054 btrfs_kill_delayed_inode_items(inode);
3055
Li Zefan33345d012011-04-20 10:31:50 +08003056 key.objectid = ino;
Chris Mason39279cc2007-06-12 06:35:45 -04003057 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04003058 key.type = (u8)-1;
3059
Chris Mason85e21ba2008-01-29 15:11:36 -05003060search_again:
Chris Masonb9473432009-03-13 11:00:37 -04003061 path->leave_spinning = 1;
Chris Mason85e21ba2008-01-29 15:11:36 -05003062 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Yan, Zheng80825102009-11-12 09:35:36 +00003063 if (ret < 0) {
3064 err = ret;
3065 goto out;
3066 }
Chris Masond3977122009-01-05 21:25:51 -05003067
Chris Mason85e21ba2008-01-29 15:11:36 -05003068 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003069 /* there are no items in the tree for us to truncate, we're
3070 * done
3071 */
Yan, Zheng80825102009-11-12 09:35:36 +00003072 if (path->slots[0] == 0)
3073 goto out;
Chris Mason85e21ba2008-01-29 15:11:36 -05003074 path->slots[0]--;
3075 }
3076
Chris Masond3977122009-01-05 21:25:51 -05003077 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04003078 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04003079 leaf = path->nodes[0];
3080 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3081 found_type = btrfs_key_type(&found_key);
Chris Mason39279cc2007-06-12 06:35:45 -04003082
Li Zefan33345d012011-04-20 10:31:50 +08003083 if (found_key.objectid != ino)
Chris Mason39279cc2007-06-12 06:35:45 -04003084 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003085
Chris Mason85e21ba2008-01-29 15:11:36 -05003086 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003087 break;
3088
Chris Mason5f39d392007-10-15 16:14:19 -04003089 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04003090 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04003091 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04003092 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04003093 extent_type = btrfs_file_extent_type(leaf, fi);
3094 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04003095 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04003096 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04003097 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04003098 item_end += btrfs_file_extent_inline_len(leaf,
Chris Masonc8b97812008-10-29 14:49:59 -04003099 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003100 }
Yan008630c2007-11-07 13:31:09 -05003101 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04003102 }
Yan, Zheng80825102009-11-12 09:35:36 +00003103 if (found_type > min_type) {
Chris Mason39279cc2007-06-12 06:35:45 -04003104 del_item = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00003105 } else {
3106 if (item_end < new_size)
3107 break;
3108 if (found_key.offset >= new_size)
3109 del_item = 1;
3110 else
3111 del_item = 0;
3112 }
Chris Mason39279cc2007-06-12 06:35:45 -04003113 found_extent = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003114 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04003115 if (found_type != BTRFS_EXTENT_DATA_KEY)
3116 goto delete;
3117
3118 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04003119 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04003120 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Miao Xief70a9a6b2012-01-12 19:10:12 -05003121 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -04003122 u64 orig_num_bytes =
3123 btrfs_file_extent_num_bytes(leaf, fi);
Chris Masone02119d2008-09-05 16:13:11 -04003124 extent_num_bytes = new_size -
Chris Mason5f39d392007-10-15 16:14:19 -04003125 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -05003126 extent_num_bytes = extent_num_bytes &
3127 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04003128 btrfs_set_file_extent_num_bytes(leaf, fi,
3129 extent_num_bytes);
3130 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05003131 extent_num_bytes);
Chris Masone02119d2008-09-05 16:13:11 -04003132 if (root->ref_cows && extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003133 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04003134 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003135 } else {
Chris Masondb945352007-10-15 16:15:53 -04003136 extent_num_bytes =
3137 btrfs_file_extent_disk_num_bytes(leaf,
3138 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003139 extent_offset = found_key.offset -
3140 btrfs_file_extent_offset(leaf, fi);
3141
Chris Mason39279cc2007-06-12 06:35:45 -04003142 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05003143 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003144 if (extent_start != 0) {
3145 found_extent = 1;
Chris Masone02119d2008-09-05 16:13:11 -04003146 if (root->ref_cows)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003147 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04003148 }
3149 }
Chris Mason90692182008-02-08 13:49:28 -05003150 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003151 /*
3152 * we can't truncate inline items that have had
3153 * special encodings
3154 */
3155 if (!del_item &&
3156 btrfs_file_extent_compression(leaf, fi) == 0 &&
3157 btrfs_file_extent_encryption(leaf, fi) == 0 &&
3158 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003159 u32 size = new_size - found_key.offset;
3160
3161 if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003162 inode_sub_bytes(inode, item_end + 1 -
3163 new_size);
Chris Masone02119d2008-09-05 16:13:11 -04003164 }
3165 size =
3166 btrfs_file_extent_calc_inline_size(size);
Jeff Mahoney143bede2012-03-01 14:56:26 +01003167 btrfs_truncate_item(trans, root, path,
3168 size, 1);
Chris Masone02119d2008-09-05 16:13:11 -04003169 } else if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003170 inode_sub_bytes(inode, item_end + 1 -
3171 found_key.offset);
Chris Mason90692182008-02-08 13:49:28 -05003172 }
Chris Mason39279cc2007-06-12 06:35:45 -04003173 }
Chris Mason179e29e2007-11-01 11:28:41 -04003174delete:
Chris Mason39279cc2007-06-12 06:35:45 -04003175 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05003176 if (!pending_del_nr) {
3177 /* no pending yet, add ourselves */
3178 pending_del_slot = path->slots[0];
3179 pending_del_nr = 1;
3180 } else if (pending_del_nr &&
3181 path->slots[0] + 1 == pending_del_slot) {
3182 /* hop on the pending chunk */
3183 pending_del_nr++;
3184 pending_del_slot = path->slots[0];
3185 } else {
Chris Masond3977122009-01-05 21:25:51 -05003186 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05003187 }
Chris Mason39279cc2007-06-12 06:35:45 -04003188 } else {
3189 break;
3190 }
Josef Bacik0af3d002010-06-21 14:48:16 -04003191 if (found_extent && (root->ref_cows ||
3192 root == root->fs_info->tree_root)) {
Chris Masonb9473432009-03-13 11:00:37 -04003193 btrfs_set_path_blocking(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003194 ret = btrfs_free_extent(trans, root, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003195 extent_num_bytes, 0,
3196 btrfs_header_owner(leaf),
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003197 ino, extent_offset, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04003198 BUG_ON(ret);
3199 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003200
Yan, Zheng80825102009-11-12 09:35:36 +00003201 if (found_type == BTRFS_INODE_ITEM_KEY)
3202 break;
3203
3204 if (path->slots[0] == 0 ||
3205 path->slots[0] != pending_del_slot) {
Li Zefan82d59022011-04-20 10:33:24 +08003206 if (root->ref_cows &&
3207 BTRFS_I(inode)->location.objectid !=
3208 BTRFS_FREE_INO_OBJECTID) {
Yan, Zheng80825102009-11-12 09:35:36 +00003209 err = -EAGAIN;
3210 goto out;
3211 }
3212 if (pending_del_nr) {
3213 ret = btrfs_del_items(trans, root, path,
3214 pending_del_slot,
3215 pending_del_nr);
3216 BUG_ON(ret);
3217 pending_del_nr = 0;
3218 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003219 btrfs_release_path(path);
Chris Mason85e21ba2008-01-29 15:11:36 -05003220 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00003221 } else {
3222 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05003223 }
Chris Mason39279cc2007-06-12 06:35:45 -04003224 }
Yan, Zheng80825102009-11-12 09:35:36 +00003225out:
Chris Mason85e21ba2008-01-29 15:11:36 -05003226 if (pending_del_nr) {
3227 ret = btrfs_del_items(trans, root, path, pending_del_slot,
3228 pending_del_nr);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003229 BUG_ON(ret);
Chris Mason85e21ba2008-01-29 15:11:36 -05003230 }
Chris Mason39279cc2007-06-12 06:35:45 -04003231 btrfs_free_path(path);
Yan, Zheng80825102009-11-12 09:35:36 +00003232 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003233}
3234
Chris Masona52d9a82007-08-27 16:49:44 -04003235/*
3236 * taken from block_truncate_page, but does cow as it zeros out
3237 * any bytes left in the last page in the file.
3238 */
3239static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
3240{
3241 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -04003242 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003243 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
3244 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003245 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003246 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04003247 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04003248 pgoff_t index = from >> PAGE_CACHE_SHIFT;
3249 unsigned offset = from & (PAGE_CACHE_SIZE-1);
3250 struct page *page;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04003251 gfp_t mask = btrfs_alloc_write_mask(mapping);
Chris Masona52d9a82007-08-27 16:49:44 -04003252 int ret = 0;
3253 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003254 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04003255
3256 if ((offset & (blocksize - 1)) == 0)
3257 goto out;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003258 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003259 if (ret)
3260 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003261
3262 ret = -ENOMEM;
Chris Mason211c17f2008-05-15 09:13:45 -04003263again:
Josef Bacik3b16a4e2011-09-21 15:05:58 -04003264 page = find_or_create_page(mapping, index, mask);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003265 if (!page) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003266 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Masona52d9a82007-08-27 16:49:44 -04003267 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04003268 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003269
3270 page_start = page_offset(page);
3271 page_end = page_start + PAGE_CACHE_SIZE - 1;
3272
Chris Masona52d9a82007-08-27 16:49:44 -04003273 if (!PageUptodate(page)) {
3274 ret = btrfs_readpage(NULL, page);
3275 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04003276 if (page->mapping != mapping) {
3277 unlock_page(page);
3278 page_cache_release(page);
3279 goto again;
3280 }
Chris Masona52d9a82007-08-27 16:49:44 -04003281 if (!PageUptodate(page)) {
3282 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04003283 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04003284 }
3285 }
Chris Mason211c17f2008-05-15 09:13:45 -04003286 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003287
Josef Bacik2ac55d42010-02-03 19:33:23 +00003288 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state,
3289 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003290 set_page_extent_mapped(page);
3291
3292 ordered = btrfs_lookup_ordered_extent(inode, page_start);
3293 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003294 unlock_extent_cached(io_tree, page_start, page_end,
3295 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003296 unlock_page(page);
3297 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04003298 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003299 btrfs_put_ordered_extent(ordered);
3300 goto again;
3301 }
3302
Josef Bacik2ac55d42010-02-03 19:33:23 +00003303 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Josef Bacik5d5e1032009-10-13 16:46:49 -04003304 EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003305 0, 0, &cached_state, GFP_NOFS);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003306
Josef Bacik2ac55d42010-02-03 19:33:23 +00003307 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
3308 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003309 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003310 unlock_extent_cached(io_tree, page_start, page_end,
3311 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003312 goto out_unlock;
3313 }
3314
Chris Masone6dcd2d2008-07-17 12:53:50 -04003315 ret = 0;
3316 if (offset != PAGE_CACHE_SIZE) {
3317 kaddr = kmap(page);
3318 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
3319 flush_dcache_page(page);
3320 kunmap(page);
3321 }
Chris Mason247e7432008-07-17 12:53:51 -04003322 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003323 set_page_dirty(page);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003324 unlock_extent_cached(io_tree, page_start, page_end, &cached_state,
3325 GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04003326
Chris Mason89642222008-07-24 09:41:53 -04003327out_unlock:
Josef Bacik5d5e1032009-10-13 16:46:49 -04003328 if (ret)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003329 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason39279cc2007-06-12 06:35:45 -04003330 unlock_page(page);
3331 page_cache_release(page);
3332out:
3333 return ret;
3334}
3335
Josef Bacik695a0d02011-03-04 15:46:53 -05003336/*
3337 * This function puts in dummy file extents for the area we're creating a hole
3338 * for. So if we are truncating this file to a larger size we need to insert
3339 * these file extents so that btrfs_get_extent will return a EXTENT_MAP_HOLE for
3340 * the range between oldsize and size
3341 */
Josef Bacika41ad392011-01-31 15:30:16 -05003342int btrfs_cont_expand(struct inode *inode, loff_t oldsize, loff_t size)
Yan Zheng9036c102008-10-30 14:19:41 -04003343{
3344 struct btrfs_trans_handle *trans;
3345 struct btrfs_root *root = BTRFS_I(inode)->root;
3346 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003347 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003348 struct extent_state *cached_state = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04003349 u64 mask = root->sectorsize - 1;
Josef Bacika41ad392011-01-31 15:30:16 -05003350 u64 hole_start = (oldsize + mask) & ~mask;
Yan Zheng9036c102008-10-30 14:19:41 -04003351 u64 block_end = (size + mask) & ~mask;
3352 u64 last_byte;
3353 u64 cur_offset;
3354 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003355 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003356
3357 if (size <= hole_start)
3358 return 0;
3359
Yan Zheng9036c102008-10-30 14:19:41 -04003360 while (1) {
3361 struct btrfs_ordered_extent *ordered;
3362 btrfs_wait_ordered_range(inode, hole_start,
3363 block_end - hole_start);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003364 lock_extent_bits(io_tree, hole_start, block_end - 1, 0,
3365 &cached_state, GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003366 ordered = btrfs_lookup_ordered_extent(inode, hole_start);
3367 if (!ordered)
3368 break;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003369 unlock_extent_cached(io_tree, hole_start, block_end - 1,
3370 &cached_state, GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003371 btrfs_put_ordered_extent(ordered);
3372 }
3373
Yan Zheng9036c102008-10-30 14:19:41 -04003374 cur_offset = hole_start;
3375 while (1) {
3376 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
3377 block_end - cur_offset, 0);
David Sterbac7040052011-04-19 18:00:01 +02003378 BUG_ON(IS_ERR_OR_NULL(em));
Yan Zheng9036c102008-10-30 14:19:41 -04003379 last_byte = min(extent_map_end(em), block_end);
3380 last_byte = (last_byte + mask) & ~mask;
Yan, Zheng80825102009-11-12 09:35:36 +00003381 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Chris Mason771ed682008-11-06 22:02:51 -05003382 u64 hint_byte = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003383 hole_size = last_byte - cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00003384
Miao Xie36423202011-12-14 20:12:02 -05003385 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003386 if (IS_ERR(trans)) {
3387 err = PTR_ERR(trans);
Chris Mason771ed682008-11-06 22:02:51 -05003388 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003389 }
Yan, Zheng80825102009-11-12 09:35:36 +00003390
3391 err = btrfs_drop_extents(trans, inode, cur_offset,
3392 cur_offset + hole_size,
3393 &hint_byte, 1);
Miao Xie5b397372011-09-11 10:52:24 -04003394 if (err) {
Miao Xie36423202011-12-14 20:12:02 -05003395 btrfs_update_inode(trans, root, inode);
Miao Xie5b397372011-09-11 10:52:24 -04003396 btrfs_end_transaction(trans, root);
Josef Bacik3893e332011-01-31 16:03:11 -05003397 break;
Miao Xie5b397372011-09-11 10:52:24 -04003398 }
Josef Bacik9ed74f22009-09-11 16:12:44 -04003399
Yan Zheng9036c102008-10-30 14:19:41 -04003400 err = btrfs_insert_file_extent(trans, root,
Li Zefan33345d012011-04-20 10:31:50 +08003401 btrfs_ino(inode), cur_offset, 0,
Yan Zheng9036c102008-10-30 14:19:41 -04003402 0, hole_size, 0, hole_size,
3403 0, 0, 0);
Miao Xie5b397372011-09-11 10:52:24 -04003404 if (err) {
Miao Xie36423202011-12-14 20:12:02 -05003405 btrfs_update_inode(trans, root, inode);
Miao Xie5b397372011-09-11 10:52:24 -04003406 btrfs_end_transaction(trans, root);
Josef Bacik3893e332011-01-31 16:03:11 -05003407 break;
Miao Xie5b397372011-09-11 10:52:24 -04003408 }
Yan, Zheng80825102009-11-12 09:35:36 +00003409
Yan Zheng9036c102008-10-30 14:19:41 -04003410 btrfs_drop_extent_cache(inode, hole_start,
3411 last_byte - 1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003412
Miao Xie36423202011-12-14 20:12:02 -05003413 btrfs_update_inode(trans, root, inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003414 btrfs_end_transaction(trans, root);
Yan Zheng9036c102008-10-30 14:19:41 -04003415 }
3416 free_extent_map(em);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003417 em = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04003418 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00003419 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04003420 break;
3421 }
3422
Yan, Zhenga22285a2010-05-16 10:48:46 -04003423 free_extent_map(em);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003424 unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state,
3425 GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003426 return err;
3427}
3428
Josef Bacika41ad392011-01-31 15:30:16 -05003429static int btrfs_setsize(struct inode *inode, loff_t newsize)
Yan, Zheng80825102009-11-12 09:35:36 +00003430{
Miao Xief4a2f4c2011-12-14 20:12:01 -05003431 struct btrfs_root *root = BTRFS_I(inode)->root;
3432 struct btrfs_trans_handle *trans;
Josef Bacika41ad392011-01-31 15:30:16 -05003433 loff_t oldsize = i_size_read(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003434 int ret;
3435
Josef Bacika41ad392011-01-31 15:30:16 -05003436 if (newsize == oldsize)
Yan, Zheng80825102009-11-12 09:35:36 +00003437 return 0;
3438
Josef Bacika41ad392011-01-31 15:30:16 -05003439 if (newsize > oldsize) {
Josef Bacika41ad392011-01-31 15:30:16 -05003440 truncate_pagecache(inode, oldsize, newsize);
3441 ret = btrfs_cont_expand(inode, oldsize, newsize);
Miao Xief4a2f4c2011-12-14 20:12:01 -05003442 if (ret)
Yan, Zheng80825102009-11-12 09:35:36 +00003443 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00003444
Miao Xief4a2f4c2011-12-14 20:12:01 -05003445 trans = btrfs_start_transaction(root, 1);
3446 if (IS_ERR(trans))
3447 return PTR_ERR(trans);
3448
3449 i_size_write(inode, newsize);
3450 btrfs_ordered_update_i_size(inode, i_size_read(inode), NULL);
3451 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik7ad85bb2012-01-12 19:10:12 -05003452 btrfs_end_transaction(trans, root);
Josef Bacika41ad392011-01-31 15:30:16 -05003453 } else {
Yan, Zheng80825102009-11-12 09:35:36 +00003454
Josef Bacika41ad392011-01-31 15:30:16 -05003455 /*
3456 * We're truncating a file that used to have good data down to
3457 * zero. Make sure it gets into the ordered flush list so that
3458 * any new writes get down to disk quickly.
3459 */
3460 if (newsize == 0)
3461 BTRFS_I(inode)->ordered_data_close = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00003462
Josef Bacika41ad392011-01-31 15:30:16 -05003463 /* we don't support swapfiles, so vmtruncate shouldn't fail */
3464 truncate_setsize(inode, newsize);
3465 ret = btrfs_truncate(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003466 }
3467
Josef Bacika41ad392011-01-31 15:30:16 -05003468 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00003469}
3470
Chris Mason39279cc2007-06-12 06:35:45 -04003471static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
3472{
3473 struct inode *inode = dentry->d_inode;
Li Zefanb83cc962010-12-20 16:04:08 +08003474 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003475 int err;
3476
Li Zefanb83cc962010-12-20 16:04:08 +08003477 if (btrfs_root_readonly(root))
3478 return -EROFS;
3479
Chris Mason39279cc2007-06-12 06:35:45 -04003480 err = inode_change_ok(inode, attr);
3481 if (err)
3482 return err;
3483
Chris Mason5a3f23d2009-03-31 13:27:11 -04003484 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Josef Bacika41ad392011-01-31 15:30:16 -05003485 err = btrfs_setsize(inode, attr->ia_size);
Yan, Zheng80825102009-11-12 09:35:36 +00003486 if (err)
3487 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003488 }
Yan Zheng9036c102008-10-30 14:19:41 -04003489
Christoph Hellwig10257742010-06-04 11:30:02 +02003490 if (attr->ia_valid) {
3491 setattr_copy(inode, attr);
Josef Bacik22c44fe2011-11-30 10:45:38 -05003492 err = btrfs_dirty_inode(inode);
Josef Bacik33268ea2008-07-24 12:16:36 -04003493
Josef Bacik22c44fe2011-11-30 10:45:38 -05003494 if (!err && attr->ia_valid & ATTR_MODE)
Christoph Hellwig10257742010-06-04 11:30:02 +02003495 err = btrfs_acl_chmod(inode);
3496 }
3497
Chris Mason39279cc2007-06-12 06:35:45 -04003498 return err;
3499}
Chris Mason61295eb2008-01-14 16:24:38 -05003500
Al Virobd555972010-06-07 11:35:40 -04003501void btrfs_evict_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003502{
3503 struct btrfs_trans_handle *trans;
3504 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik726c35f2011-09-26 15:46:06 -04003505 struct btrfs_block_rsv *rsv, *global_rsv;
Josef Bacik07127182011-08-19 10:29:59 -04003506 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003507 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04003508 int ret;
3509
liubo1abe9b82011-03-24 11:18:59 +00003510 trace_btrfs_inode_evict(inode);
3511
Chris Mason39279cc2007-06-12 06:35:45 -04003512 truncate_inode_pages(&inode->i_data, 0);
Josef Bacik0af3d002010-06-21 14:48:16 -04003513 if (inode->i_nlink && (btrfs_root_refs(&root->root_item) != 0 ||
Chris Mason2cf85722011-07-26 15:35:09 -04003514 btrfs_is_free_space_inode(root, inode)))
Al Virobd555972010-06-07 11:35:40 -04003515 goto no_delete;
3516
Chris Mason39279cc2007-06-12 06:35:45 -04003517 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04003518 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003519 goto no_delete;
3520 }
Al Virobd555972010-06-07 11:35:40 -04003521 /* do we really want it for ->i_nlink > 0 and zero btrfs_root_refs? */
Chris Mason4a096752008-07-21 10:29:44 -04003522 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04003523
Yan, Zhengc71bf092009-11-12 09:34:40 +00003524 if (root->fs_info->log_root_recovering) {
3525 BUG_ON(!list_empty(&BTRFS_I(inode)->i_orphan));
3526 goto no_delete;
3527 }
3528
Yan, Zheng76dda932009-09-21 16:00:26 -04003529 if (inode->i_nlink > 0) {
3530 BUG_ON(btrfs_root_refs(&root->root_item) != 0);
3531 goto no_delete;
3532 }
3533
Josef Bacik4289a662011-08-05 13:22:24 -04003534 rsv = btrfs_alloc_block_rsv(root);
3535 if (!rsv) {
3536 btrfs_orphan_del(NULL, inode);
3537 goto no_delete;
3538 }
Josef Bacik4a338542011-08-29 11:01:31 -04003539 rsv->size = min_size;
Josef Bacik726c35f2011-09-26 15:46:06 -04003540 global_rsv = &root->fs_info->global_block_rsv;
Josef Bacik4289a662011-08-05 13:22:24 -04003541
Chris Masondbe674a2008-07-17 12:54:05 -04003542 btrfs_i_size_write(inode, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003543
Josef Bacik4289a662011-08-05 13:22:24 -04003544 /*
3545 * This is a bit simpler than btrfs_truncate since
3546 *
3547 * 1) We've already reserved our space for our orphan item in the
3548 * unlink.
3549 * 2) We're going to delete the inode item, so we don't need to update
3550 * it at all.
3551 *
3552 * So we just need to reserve some slack space in case we add bytes when
3553 * doing the truncate.
3554 */
Yan, Zheng80825102009-11-12 09:35:36 +00003555 while (1) {
Miao Xieaa38a712011-11-18 17:43:00 +08003556 ret = btrfs_block_rsv_refill_noflush(root, rsv, min_size);
Yan, Zheng80825102009-11-12 09:35:36 +00003557
Josef Bacik726c35f2011-09-26 15:46:06 -04003558 /*
3559 * Try and steal from the global reserve since we will
3560 * likely not use this space anyway, we want to try as
3561 * hard as possible to get this to work.
3562 */
3563 if (ret)
3564 ret = btrfs_block_rsv_migrate(global_rsv, rsv, min_size);
3565
Yan, Zhengd68fc572010-05-16 10:49:58 -04003566 if (ret) {
Josef Bacik4289a662011-08-05 13:22:24 -04003567 printk(KERN_WARNING "Could not get space for a "
Josef Bacik482e6dc2011-08-19 10:31:56 -04003568 "delete, will truncate on mount %d\n", ret);
Josef Bacik4289a662011-08-05 13:22:24 -04003569 btrfs_orphan_del(NULL, inode);
3570 btrfs_free_block_rsv(root, rsv);
3571 goto no_delete;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003572 }
3573
Josef Bacik4289a662011-08-05 13:22:24 -04003574 trans = btrfs_start_transaction(root, 0);
3575 if (IS_ERR(trans)) {
3576 btrfs_orphan_del(NULL, inode);
3577 btrfs_free_block_rsv(root, rsv);
3578 goto no_delete;
3579 }
3580
3581 trans->block_rsv = rsv;
3582
Yan, Zhengd68fc572010-05-16 10:49:58 -04003583 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003584 if (ret != -EAGAIN)
3585 break;
3586
3587 nr = trans->blocks_used;
3588 btrfs_end_transaction(trans, root);
3589 trans = NULL;
3590 btrfs_btree_balance_dirty(root, nr);
Josef Bacik7b128762008-07-24 12:17:14 -04003591 }
3592
Josef Bacik4289a662011-08-05 13:22:24 -04003593 btrfs_free_block_rsv(root, rsv);
3594
Yan, Zheng80825102009-11-12 09:35:36 +00003595 if (ret == 0) {
Josef Bacik4289a662011-08-05 13:22:24 -04003596 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00003597 ret = btrfs_orphan_del(trans, inode);
3598 BUG_ON(ret);
3599 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003600
Josef Bacik4289a662011-08-05 13:22:24 -04003601 trans->block_rsv = &root->fs_info->trans_block_rsv;
Li Zefan581bb052011-04-20 10:06:11 +08003602 if (!(root == root->fs_info->tree_root ||
3603 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID))
Li Zefan33345d012011-04-20 10:31:50 +08003604 btrfs_return_ino(root, btrfs_ino(inode));
Li Zefan581bb052011-04-20 10:06:11 +08003605
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003606 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04003607 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003608 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003609no_delete:
Al Virobd555972010-06-07 11:35:40 -04003610 end_writeback(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003611 return;
Chris Mason39279cc2007-06-12 06:35:45 -04003612}
3613
3614/*
3615 * this returns the key found in the dir entry in the location pointer.
3616 * If no dir entries were found, location->objectid is 0.
3617 */
3618static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
3619 struct btrfs_key *location)
3620{
3621 const char *name = dentry->d_name.name;
3622 int namelen = dentry->d_name.len;
3623 struct btrfs_dir_item *di;
3624 struct btrfs_path *path;
3625 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04003626 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003627
3628 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07003629 if (!path)
3630 return -ENOMEM;
Chris Mason39544012007-12-12 14:38:19 -05003631
Li Zefan33345d012011-04-20 10:31:50 +08003632 di = btrfs_lookup_dir_item(NULL, root, path, btrfs_ino(dir), name,
Chris Mason39279cc2007-06-12 06:35:45 -04003633 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04003634 if (IS_ERR(di))
3635 ret = PTR_ERR(di);
Chris Masond3977122009-01-05 21:25:51 -05003636
David Sterbac7040052011-04-19 18:00:01 +02003637 if (IS_ERR_OR_NULL(di))
Chris Mason39544012007-12-12 14:38:19 -05003638 goto out_err;
Chris Masond3977122009-01-05 21:25:51 -05003639
Chris Mason5f39d392007-10-15 16:14:19 -04003640 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04003641out:
Chris Mason39279cc2007-06-12 06:35:45 -04003642 btrfs_free_path(path);
3643 return ret;
Chris Mason39544012007-12-12 14:38:19 -05003644out_err:
3645 location->objectid = 0;
3646 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04003647}
3648
3649/*
3650 * when we hit a tree root in a directory, the btrfs part of the inode
3651 * needs to be changed to reflect the root directory of the tree root. This
3652 * is kind of like crossing a mount point.
3653 */
3654static int fixup_tree_root_location(struct btrfs_root *root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003655 struct inode *dir,
3656 struct dentry *dentry,
3657 struct btrfs_key *location,
3658 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04003659{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003660 struct btrfs_path *path;
3661 struct btrfs_root *new_root;
3662 struct btrfs_root_ref *ref;
3663 struct extent_buffer *leaf;
3664 int ret;
3665 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003666
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003667 path = btrfs_alloc_path();
3668 if (!path) {
3669 err = -ENOMEM;
3670 goto out;
3671 }
Chris Mason39279cc2007-06-12 06:35:45 -04003672
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003673 err = -ENOENT;
3674 ret = btrfs_find_root_ref(root->fs_info->tree_root, path,
3675 BTRFS_I(dir)->root->root_key.objectid,
3676 location->objectid);
3677 if (ret) {
3678 if (ret < 0)
3679 err = ret;
3680 goto out;
3681 }
Chris Mason39279cc2007-06-12 06:35:45 -04003682
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003683 leaf = path->nodes[0];
3684 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
Li Zefan33345d012011-04-20 10:31:50 +08003685 if (btrfs_root_ref_dirid(leaf, ref) != btrfs_ino(dir) ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003686 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
3687 goto out;
3688
3689 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
3690 (unsigned long)(ref + 1),
3691 dentry->d_name.len);
3692 if (ret)
3693 goto out;
3694
David Sterbab3b4aa72011-04-21 01:20:15 +02003695 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003696
3697 new_root = btrfs_read_fs_root_no_name(root->fs_info, location);
3698 if (IS_ERR(new_root)) {
3699 err = PTR_ERR(new_root);
3700 goto out;
3701 }
3702
3703 if (btrfs_root_refs(&new_root->root_item) == 0) {
3704 err = -ENOENT;
3705 goto out;
3706 }
3707
3708 *sub_root = new_root;
3709 location->objectid = btrfs_root_dirid(&new_root->root_item);
3710 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04003711 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003712 err = 0;
3713out:
3714 btrfs_free_path(path);
3715 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003716}
3717
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003718static void inode_tree_add(struct inode *inode)
3719{
3720 struct btrfs_root *root = BTRFS_I(inode)->root;
3721 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003722 struct rb_node **p;
3723 struct rb_node *parent;
Li Zefan33345d012011-04-20 10:31:50 +08003724 u64 ino = btrfs_ino(inode);
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003725again:
3726 p = &root->inode_tree.rb_node;
3727 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003728
Al Viro1d3382cb2010-10-23 15:19:20 -04003729 if (inode_unhashed(inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04003730 return;
3731
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003732 spin_lock(&root->inode_lock);
3733 while (*p) {
3734 parent = *p;
3735 entry = rb_entry(parent, struct btrfs_inode, rb_node);
3736
Li Zefan33345d012011-04-20 10:31:50 +08003737 if (ino < btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003738 p = &parent->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08003739 else if (ino > btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003740 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003741 else {
3742 WARN_ON(!(entry->vfs_inode.i_state &
Al Viroa4ffdde2010-06-02 17:38:30 -04003743 (I_WILL_FREE | I_FREEING)));
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003744 rb_erase(parent, &root->inode_tree);
3745 RB_CLEAR_NODE(parent);
3746 spin_unlock(&root->inode_lock);
3747 goto again;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003748 }
3749 }
3750 rb_link_node(&BTRFS_I(inode)->rb_node, parent, p);
3751 rb_insert_color(&BTRFS_I(inode)->rb_node, &root->inode_tree);
3752 spin_unlock(&root->inode_lock);
3753}
3754
3755static void inode_tree_del(struct inode *inode)
3756{
3757 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04003758 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003759
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003760 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003761 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003762 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003763 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04003764 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003765 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003766 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04003767
Josef Bacik0af3d002010-06-21 14:48:16 -04003768 /*
3769 * Free space cache has inodes in the tree root, but the tree root has a
3770 * root_refs of 0, so this could end up dropping the tree root as a
3771 * snapshot, so we need the extra !root->fs_info->tree_root check to
3772 * make sure we don't drop it.
3773 */
3774 if (empty && btrfs_root_refs(&root->root_item) == 0 &&
3775 root != root->fs_info->tree_root) {
Yan, Zheng76dda932009-09-21 16:00:26 -04003776 synchronize_srcu(&root->fs_info->subvol_srcu);
3777 spin_lock(&root->inode_lock);
3778 empty = RB_EMPTY_ROOT(&root->inode_tree);
3779 spin_unlock(&root->inode_lock);
3780 if (empty)
3781 btrfs_add_dead_root(root);
3782 }
3783}
3784
Jeff Mahoney143bede2012-03-01 14:56:26 +01003785void btrfs_invalidate_inodes(struct btrfs_root *root)
Yan, Zheng76dda932009-09-21 16:00:26 -04003786{
3787 struct rb_node *node;
3788 struct rb_node *prev;
3789 struct btrfs_inode *entry;
3790 struct inode *inode;
3791 u64 objectid = 0;
3792
3793 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
3794
3795 spin_lock(&root->inode_lock);
3796again:
3797 node = root->inode_tree.rb_node;
3798 prev = NULL;
3799 while (node) {
3800 prev = node;
3801 entry = rb_entry(node, struct btrfs_inode, rb_node);
3802
Li Zefan33345d012011-04-20 10:31:50 +08003803 if (objectid < btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04003804 node = node->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08003805 else if (objectid > btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04003806 node = node->rb_right;
3807 else
3808 break;
3809 }
3810 if (!node) {
3811 while (prev) {
3812 entry = rb_entry(prev, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08003813 if (objectid <= btrfs_ino(&entry->vfs_inode)) {
Yan, Zheng76dda932009-09-21 16:00:26 -04003814 node = prev;
3815 break;
3816 }
3817 prev = rb_next(prev);
3818 }
3819 }
3820 while (node) {
3821 entry = rb_entry(node, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08003822 objectid = btrfs_ino(&entry->vfs_inode) + 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04003823 inode = igrab(&entry->vfs_inode);
3824 if (inode) {
3825 spin_unlock(&root->inode_lock);
3826 if (atomic_read(&inode->i_count) > 1)
3827 d_prune_aliases(inode);
3828 /*
Al Viro45321ac2010-06-07 13:43:19 -04003829 * btrfs_drop_inode will have it removed from
Yan, Zheng76dda932009-09-21 16:00:26 -04003830 * the inode cache when its usage count
3831 * hits zero.
3832 */
3833 iput(inode);
3834 cond_resched();
3835 spin_lock(&root->inode_lock);
3836 goto again;
3837 }
3838
3839 if (cond_resched_lock(&root->inode_lock))
3840 goto again;
3841
3842 node = rb_next(node);
3843 }
3844 spin_unlock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003845}
3846
Chris Masone02119d2008-09-05 16:13:11 -04003847static int btrfs_init_locked_inode(struct inode *inode, void *p)
3848{
3849 struct btrfs_iget_args *args = p;
3850 inode->i_ino = args->ino;
Chris Masone02119d2008-09-05 16:13:11 -04003851 BTRFS_I(inode)->root = args->root;
Josef Bacik6a632092009-02-20 11:00:09 -05003852 btrfs_set_inode_space_info(args->root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003853 return 0;
3854}
3855
3856static int btrfs_find_actor(struct inode *inode, void *opaque)
3857{
3858 struct btrfs_iget_args *args = opaque;
Li Zefan33345d012011-04-20 10:31:50 +08003859 return args->ino == btrfs_ino(inode) &&
Chris Masond3977122009-01-05 21:25:51 -05003860 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003861}
3862
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003863static struct inode *btrfs_iget_locked(struct super_block *s,
3864 u64 objectid,
3865 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04003866{
3867 struct inode *inode;
3868 struct btrfs_iget_args args;
3869 args.ino = objectid;
3870 args.root = root;
3871
3872 inode = iget5_locked(s, objectid, btrfs_find_actor,
3873 btrfs_init_locked_inode,
3874 (void *)&args);
3875 return inode;
3876}
3877
Balaji Rao1a54ef82008-07-21 02:01:04 +05303878/* Get an inode object given its location and corresponding root.
3879 * Returns in *is_new if the inode was read from disk
3880 */
3881struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
Josef Bacik73f73412009-12-04 17:38:27 +00003882 struct btrfs_root *root, int *new)
Balaji Rao1a54ef82008-07-21 02:01:04 +05303883{
3884 struct inode *inode;
3885
3886 inode = btrfs_iget_locked(s, location->objectid, root);
3887 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003888 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05303889
3890 if (inode->i_state & I_NEW) {
3891 BTRFS_I(inode)->root = root;
3892 memcpy(&BTRFS_I(inode)->location, location, sizeof(*location));
3893 btrfs_read_locked_inode(inode);
Mark Fasheh1748f842011-07-12 11:25:31 -07003894 if (!is_bad_inode(inode)) {
3895 inode_tree_add(inode);
3896 unlock_new_inode(inode);
3897 if (new)
3898 *new = 1;
3899 } else {
Sergei Trofimoviche0b6d652011-09-11 10:52:24 -04003900 unlock_new_inode(inode);
3901 iput(inode);
3902 inode = ERR_PTR(-ESTALE);
Mark Fasheh1748f842011-07-12 11:25:31 -07003903 }
3904 }
3905
Balaji Rao1a54ef82008-07-21 02:01:04 +05303906 return inode;
3907}
3908
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003909static struct inode *new_simple_dir(struct super_block *s,
3910 struct btrfs_key *key,
3911 struct btrfs_root *root)
3912{
3913 struct inode *inode = new_inode(s);
3914
3915 if (!inode)
3916 return ERR_PTR(-ENOMEM);
3917
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003918 BTRFS_I(inode)->root = root;
3919 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
3920 BTRFS_I(inode)->dummy_inode = 1;
3921
3922 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
3923 inode->i_op = &simple_dir_inode_operations;
3924 inode->i_fop = &simple_dir_operations;
3925 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
3926 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
3927
3928 return inode;
3929}
3930
Chris Mason3de45862008-11-17 21:02:50 -05003931struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04003932{
Chris Masond3977122009-01-05 21:25:51 -05003933 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003934 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003935 struct btrfs_root *sub_root = root;
3936 struct btrfs_key location;
Yan, Zheng76dda932009-09-21 16:00:26 -04003937 int index;
Josef Bacikb4aff1f2011-06-28 16:18:59 -04003938 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003939
3940 if (dentry->d_name.len > BTRFS_NAME_LEN)
3941 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04003942
Josef Bacikb4aff1f2011-06-28 16:18:59 -04003943 if (unlikely(d_need_lookup(dentry))) {
3944 memcpy(&location, dentry->d_fsdata, sizeof(struct btrfs_key));
3945 kfree(dentry->d_fsdata);
3946 dentry->d_fsdata = NULL;
Josef Bacika66e7cc2011-09-18 10:34:03 -04003947 /* This thing is hashed, drop it for now */
3948 d_drop(dentry);
Josef Bacikb4aff1f2011-06-28 16:18:59 -04003949 } else {
3950 ret = btrfs_inode_by_name(dir, dentry, &location);
3951 }
Chris Mason5f39d392007-10-15 16:14:19 -04003952
Chris Mason39279cc2007-06-12 06:35:45 -04003953 if (ret < 0)
3954 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04003955
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003956 if (location.objectid == 0)
3957 return NULL;
3958
3959 if (location.type == BTRFS_INODE_ITEM_KEY) {
Josef Bacik73f73412009-12-04 17:38:27 +00003960 inode = btrfs_iget(dir->i_sb, &location, root, NULL);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003961 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04003962 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003963
3964 BUG_ON(location.type != BTRFS_ROOT_ITEM_KEY);
3965
Yan, Zheng76dda932009-09-21 16:00:26 -04003966 index = srcu_read_lock(&root->fs_info->subvol_srcu);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003967 ret = fixup_tree_root_location(root, dir, dentry,
3968 &location, &sub_root);
3969 if (ret < 0) {
3970 if (ret != -ENOENT)
3971 inode = ERR_PTR(ret);
3972 else
3973 inode = new_simple_dir(dir->i_sb, &location, sub_root);
3974 } else {
Josef Bacik73f73412009-12-04 17:38:27 +00003975 inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003976 }
Yan, Zheng76dda932009-09-21 16:00:26 -04003977 srcu_read_unlock(&root->fs_info->subvol_srcu, index);
3978
Julia Lawall34d19ba2011-01-24 19:55:19 +00003979 if (!IS_ERR(inode) && root != sub_root) {
Yan, Zhengc71bf092009-11-12 09:34:40 +00003980 down_read(&root->fs_info->cleanup_work_sem);
3981 if (!(inode->i_sb->s_flags & MS_RDONLY))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003982 ret = btrfs_orphan_cleanup(sub_root);
Yan, Zhengc71bf092009-11-12 09:34:40 +00003983 up_read(&root->fs_info->cleanup_work_sem);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05003984 if (ret)
3985 inode = ERR_PTR(ret);
Yan, Zhengc71bf092009-11-12 09:34:40 +00003986 }
3987
Chris Mason3de45862008-11-17 21:02:50 -05003988 return inode;
3989}
3990
Nick Pigginfe15ce42011-01-07 17:49:23 +11003991static int btrfs_dentry_delete(const struct dentry *dentry)
Yan, Zheng76dda932009-09-21 16:00:26 -04003992{
3993 struct btrfs_root *root;
3994
Yan, Zhengefefb142009-10-09 09:25:16 -04003995 if (!dentry->d_inode && !IS_ROOT(dentry))
3996 dentry = dentry->d_parent;
Yan, Zheng76dda932009-09-21 16:00:26 -04003997
Yan, Zhengefefb142009-10-09 09:25:16 -04003998 if (dentry->d_inode) {
3999 root = BTRFS_I(dentry->d_inode)->root;
4000 if (btrfs_root_refs(&root->root_item) == 0)
4001 return 1;
4002 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004003 return 0;
4004}
4005
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004006static void btrfs_dentry_release(struct dentry *dentry)
4007{
4008 if (dentry->d_fsdata)
4009 kfree(dentry->d_fsdata);
4010}
4011
Chris Mason3de45862008-11-17 21:02:50 -05004012static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
4013 struct nameidata *nd)
4014{
Josef Bacika66e7cc2011-09-18 10:34:03 -04004015 struct dentry *ret;
4016
4017 ret = d_splice_alias(btrfs_lookup_dentry(dir, dentry), dentry);
4018 if (unlikely(d_need_lookup(dentry))) {
4019 spin_lock(&dentry->d_lock);
4020 dentry->d_flags &= ~DCACHE_NEED_LOOKUP;
4021 spin_unlock(&dentry->d_lock);
4022 }
4023 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004024}
4025
Miao Xie16cdcec2011-04-22 18:12:22 +08004026unsigned char btrfs_filetype_table[] = {
Chris Mason39279cc2007-06-12 06:35:45 -04004027 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
4028};
4029
David Woodhousecbdf5a22008-08-06 19:42:33 +01004030static int btrfs_real_readdir(struct file *filp, void *dirent,
4031 filldir_t filldir)
Chris Mason39279cc2007-06-12 06:35:45 -04004032{
Chris Mason6da6aba2007-12-18 16:15:09 -05004033 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004034 struct btrfs_root *root = BTRFS_I(inode)->root;
4035 struct btrfs_item *item;
4036 struct btrfs_dir_item *di;
4037 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04004038 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04004039 struct btrfs_path *path;
Miao Xie16cdcec2011-04-22 18:12:22 +08004040 struct list_head ins_list;
4041 struct list_head del_list;
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004042 struct qstr q;
Chris Mason39279cc2007-06-12 06:35:45 -04004043 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04004044 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04004045 int slot;
Chris Mason39279cc2007-06-12 06:35:45 -04004046 unsigned char d_type;
4047 int over = 0;
4048 u32 di_cur;
4049 u32 di_total;
4050 u32 di_len;
4051 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004052 char tmp_name[32];
4053 char *name_ptr;
4054 int name_len;
Miao Xie16cdcec2011-04-22 18:12:22 +08004055 int is_curr = 0; /* filp->f_pos points to the current index? */
Chris Mason39279cc2007-06-12 06:35:45 -04004056
4057 /* FIXME, use a real flag for deciding about the key type */
4058 if (root->fs_info->tree_root == root)
4059 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004060
Chris Mason39544012007-12-12 14:38:19 -05004061 /* special case for "." */
4062 if (filp->f_pos == 0) {
Hidetoshi Seto3765fef2011-09-18 10:20:46 -04004063 over = filldir(dirent, ".", 1,
4064 filp->f_pos, btrfs_ino(inode), DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05004065 if (over)
4066 return 0;
4067 filp->f_pos = 1;
4068 }
Chris Mason39544012007-12-12 14:38:19 -05004069 /* special case for .., just use the back ref */
4070 if (filp->f_pos == 1) {
David Woodhouse5ecc7e52008-08-17 15:14:48 +01004071 u64 pino = parent_ino(filp->f_path.dentry);
Chris Mason39544012007-12-12 14:38:19 -05004072 over = filldir(dirent, "..", 2,
Hidetoshi Seto3765fef2011-09-18 10:20:46 -04004073 filp->f_pos, pino, DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05004074 if (over)
David Woodhouse49593bf2008-08-17 17:08:36 +01004075 return 0;
Chris Mason39544012007-12-12 14:38:19 -05004076 filp->f_pos = 2;
4077 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004078 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08004079 if (!path)
4080 return -ENOMEM;
Chris Masonff5714c2011-05-28 07:00:39 -04004081
Josef Bacik026fd312011-05-13 10:32:11 -04004082 path->reada = 1;
David Woodhouse49593bf2008-08-17 17:08:36 +01004083
Miao Xie16cdcec2011-04-22 18:12:22 +08004084 if (key_type == BTRFS_DIR_INDEX_KEY) {
4085 INIT_LIST_HEAD(&ins_list);
4086 INIT_LIST_HEAD(&del_list);
4087 btrfs_get_delayed_items(inode, &ins_list, &del_list);
4088 }
4089
Chris Mason39279cc2007-06-12 06:35:45 -04004090 btrfs_set_key_type(&key, key_type);
4091 key.offset = filp->f_pos;
Li Zefan33345d012011-04-20 10:31:50 +08004092 key.objectid = btrfs_ino(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004093
Chris Mason39279cc2007-06-12 06:35:45 -04004094 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4095 if (ret < 0)
4096 goto err;
David Woodhouse49593bf2008-08-17 17:08:36 +01004097
4098 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04004099 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -04004100 slot = path->slots[0];
Li Zefanb9e03af2011-03-23 10:43:58 +08004101 if (slot >= btrfs_header_nritems(leaf)) {
4102 ret = btrfs_next_leaf(root, path);
4103 if (ret < 0)
4104 goto err;
4105 else if (ret > 0)
4106 break;
4107 continue;
Chris Mason39279cc2007-06-12 06:35:45 -04004108 }
Chris Mason3de45862008-11-17 21:02:50 -05004109
Chris Mason5f39d392007-10-15 16:14:19 -04004110 item = btrfs_item_nr(leaf, slot);
4111 btrfs_item_key_to_cpu(leaf, &found_key, slot);
4112
4113 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04004114 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004115 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004116 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004117 if (found_key.offset < filp->f_pos)
Li Zefanb9e03af2011-03-23 10:43:58 +08004118 goto next;
Miao Xie16cdcec2011-04-22 18:12:22 +08004119 if (key_type == BTRFS_DIR_INDEX_KEY &&
4120 btrfs_should_delete_dir_index(&del_list,
4121 found_key.offset))
4122 goto next;
Chris Mason5f39d392007-10-15 16:14:19 -04004123
4124 filp->f_pos = found_key.offset;
Miao Xie16cdcec2011-04-22 18:12:22 +08004125 is_curr = 1;
David Woodhouse49593bf2008-08-17 17:08:36 +01004126
Chris Mason39279cc2007-06-12 06:35:45 -04004127 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
4128 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04004129 di_total = btrfs_item_size(leaf, item);
David Woodhouse49593bf2008-08-17 17:08:36 +01004130
4131 while (di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04004132 struct btrfs_key location;
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004133 struct dentry *tmp;
Chris Mason5f39d392007-10-15 16:14:19 -04004134
Josef Bacik22a94d42011-03-16 16:47:17 -04004135 if (verify_dir_item(root, leaf, di))
4136 break;
4137
Chris Mason5f39d392007-10-15 16:14:19 -04004138 name_len = btrfs_dir_name_len(leaf, di);
David Woodhouse49593bf2008-08-17 17:08:36 +01004139 if (name_len <= sizeof(tmp_name)) {
Chris Mason5f39d392007-10-15 16:14:19 -04004140 name_ptr = tmp_name;
4141 } else {
4142 name_ptr = kmalloc(name_len, GFP_NOFS);
David Woodhouse49593bf2008-08-17 17:08:36 +01004143 if (!name_ptr) {
4144 ret = -ENOMEM;
4145 goto err;
4146 }
Chris Mason5f39d392007-10-15 16:14:19 -04004147 }
4148 read_extent_buffer(leaf, name_ptr,
4149 (unsigned long)(di + 1), name_len);
4150
4151 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
4152 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason3de45862008-11-17 21:02:50 -05004153
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004154 q.name = name_ptr;
4155 q.len = name_len;
4156 q.hash = full_name_hash(q.name, q.len);
4157 tmp = d_lookup(filp->f_dentry, &q);
4158 if (!tmp) {
4159 struct btrfs_key *newkey;
4160
4161 newkey = kzalloc(sizeof(struct btrfs_key),
4162 GFP_NOFS);
4163 if (!newkey)
4164 goto no_dentry;
4165 tmp = d_alloc(filp->f_dentry, &q);
4166 if (!tmp) {
4167 kfree(newkey);
4168 dput(tmp);
4169 goto no_dentry;
4170 }
4171 memcpy(newkey, &location,
4172 sizeof(struct btrfs_key));
4173 tmp->d_fsdata = newkey;
4174 tmp->d_flags |= DCACHE_NEED_LOOKUP;
4175 d_rehash(tmp);
4176 dput(tmp);
4177 } else {
4178 dput(tmp);
4179 }
4180no_dentry:
Chris Mason3de45862008-11-17 21:02:50 -05004181 /* is this a reference to our own snapshot? If so
4182 * skip it
4183 */
4184 if (location.type == BTRFS_ROOT_ITEM_KEY &&
4185 location.objectid == root->root_key.objectid) {
4186 over = 0;
4187 goto skip;
4188 }
Chris Mason5f39d392007-10-15 16:14:19 -04004189 over = filldir(dirent, name_ptr, name_len,
David Woodhouse49593bf2008-08-17 17:08:36 +01004190 found_key.offset, location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04004191 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04004192
Chris Mason3de45862008-11-17 21:02:50 -05004193skip:
Chris Mason5f39d392007-10-15 16:14:19 -04004194 if (name_ptr != tmp_name)
4195 kfree(name_ptr);
4196
Chris Mason39279cc2007-06-12 06:35:45 -04004197 if (over)
4198 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05004199 di_len = btrfs_dir_name_len(leaf, di) +
David Woodhouse49593bf2008-08-17 17:08:36 +01004200 btrfs_dir_data_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04004201 di_cur += di_len;
4202 di = (struct btrfs_dir_item *)((char *)di + di_len);
4203 }
Li Zefanb9e03af2011-03-23 10:43:58 +08004204next:
4205 path->slots[0]++;
Chris Mason39279cc2007-06-12 06:35:45 -04004206 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004207
Miao Xie16cdcec2011-04-22 18:12:22 +08004208 if (key_type == BTRFS_DIR_INDEX_KEY) {
4209 if (is_curr)
4210 filp->f_pos++;
4211 ret = btrfs_readdir_delayed_dir_index(filp, dirent, filldir,
4212 &ins_list);
4213 if (ret)
4214 goto nopos;
4215 }
4216
David Woodhouse49593bf2008-08-17 17:08:36 +01004217 /* Reached end of directory/root. Bump pos past the last item. */
Yan Zheng5e591a02008-02-19 11:41:02 -05004218 if (key_type == BTRFS_DIR_INDEX_KEY)
Jan Engelhardt406266a2009-12-09 22:00:38 +00004219 /*
4220 * 32-bit glibc will use getdents64, but then strtol -
4221 * so the last number we can serve is this.
4222 */
4223 filp->f_pos = 0x7fffffff;
Yan Zheng5e591a02008-02-19 11:41:02 -05004224 else
4225 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04004226nopos:
4227 ret = 0;
4228err:
Miao Xie16cdcec2011-04-22 18:12:22 +08004229 if (key_type == BTRFS_DIR_INDEX_KEY)
4230 btrfs_put_delayed_items(&ins_list, &del_list);
Chris Mason39279cc2007-06-12 06:35:45 -04004231 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004232 return ret;
4233}
4234
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004235int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc)
Chris Mason39279cc2007-06-12 06:35:45 -04004236{
4237 struct btrfs_root *root = BTRFS_I(inode)->root;
4238 struct btrfs_trans_handle *trans;
4239 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04004240 bool nolock = false;
Chris Mason39279cc2007-06-12 06:35:45 -04004241
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004242 if (BTRFS_I(inode)->dummy_inode)
Chris Mason4ca8b412008-08-05 13:30:48 -04004243 return 0;
4244
Chris Mason2cf85722011-07-26 15:35:09 -04004245 if (btrfs_fs_closing(root->fs_info) && btrfs_is_free_space_inode(root, inode))
Li Zefan82d59022011-04-20 10:33:24 +08004246 nolock = true;
Josef Bacik0af3d002010-06-21 14:48:16 -04004247
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004248 if (wbc->sync_mode == WB_SYNC_ALL) {
Josef Bacik0af3d002010-06-21 14:48:16 -04004249 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004250 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0af3d002010-06-21 14:48:16 -04004251 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004252 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00004253 if (IS_ERR(trans))
4254 return PTR_ERR(trans);
Josef Bacik0af3d002010-06-21 14:48:16 -04004255 if (nolock)
4256 ret = btrfs_end_transaction_nolock(trans, root);
4257 else
4258 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004259 }
4260 return ret;
4261}
4262
4263/*
Chris Mason54aa1f42007-06-22 14:16:25 -04004264 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04004265 * inode changes. But, it is most likely to find the inode in cache.
4266 * FIXME, needs more benchmarking...there are no reasons other than performance
4267 * to keep or drop this code.
4268 */
Josef Bacik22c44fe2011-11-30 10:45:38 -05004269int btrfs_dirty_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04004270{
4271 struct btrfs_root *root = BTRFS_I(inode)->root;
4272 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004273 int ret;
4274
4275 if (BTRFS_I(inode)->dummy_inode)
Josef Bacik22c44fe2011-11-30 10:45:38 -05004276 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004277
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004278 trans = btrfs_join_transaction(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004279 if (IS_ERR(trans))
4280 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004281
4282 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04004283 if (ret && ret == -ENOSPC) {
4284 /* whoops, lets try again with the full transaction */
4285 btrfs_end_transaction(trans, root);
4286 trans = btrfs_start_transaction(root, 1);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004287 if (IS_ERR(trans))
4288 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004289
Chris Mason94b60442010-05-26 11:02:00 -04004290 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04004291 }
Chris Mason39279cc2007-06-12 06:35:45 -04004292 btrfs_end_transaction(trans, root);
Miao Xie16cdcec2011-04-22 18:12:22 +08004293 if (BTRFS_I(inode)->delayed_node)
4294 btrfs_balance_delayed_items(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004295
4296 return ret;
4297}
4298
4299/*
4300 * This is a copy of file_update_time. We need this so we can return error on
4301 * ENOSPC for updating the inode in the case of file write and mmap writes.
4302 */
4303int btrfs_update_time(struct file *file)
4304{
4305 struct inode *inode = file->f_path.dentry->d_inode;
4306 struct timespec now;
4307 int ret;
4308 enum { S_MTIME = 1, S_CTIME = 2, S_VERSION = 4 } sync_it = 0;
4309
4310 /* First try to exhaust all avenues to not sync */
4311 if (IS_NOCMTIME(inode))
4312 return 0;
4313
4314 now = current_fs_time(inode->i_sb);
4315 if (!timespec_equal(&inode->i_mtime, &now))
4316 sync_it = S_MTIME;
4317
4318 if (!timespec_equal(&inode->i_ctime, &now))
4319 sync_it |= S_CTIME;
4320
4321 if (IS_I_VERSION(inode))
4322 sync_it |= S_VERSION;
4323
4324 if (!sync_it)
4325 return 0;
4326
4327 /* Finally allowed to write? Takes lock. */
4328 if (mnt_want_write_file(file))
4329 return 0;
4330
4331 /* Only change inode inside the lock region */
4332 if (sync_it & S_VERSION)
4333 inode_inc_iversion(inode);
4334 if (sync_it & S_CTIME)
4335 inode->i_ctime = now;
4336 if (sync_it & S_MTIME)
4337 inode->i_mtime = now;
4338 ret = btrfs_dirty_inode(inode);
4339 if (!ret)
4340 mark_inode_dirty_sync(inode);
4341 mnt_drop_write(file->f_path.mnt);
4342 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004343}
4344
Chris Masond352ac62008-09-29 15:18:18 -04004345/*
4346 * find the highest existing sequence number in a directory
4347 * and then set the in-memory index_cnt variable to reflect
4348 * free sequence numbers
4349 */
Josef Bacikaec74772008-07-24 12:12:38 -04004350static int btrfs_set_inode_index_count(struct inode *inode)
4351{
4352 struct btrfs_root *root = BTRFS_I(inode)->root;
4353 struct btrfs_key key, found_key;
4354 struct btrfs_path *path;
4355 struct extent_buffer *leaf;
4356 int ret;
4357
Li Zefan33345d012011-04-20 10:31:50 +08004358 key.objectid = btrfs_ino(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004359 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
4360 key.offset = (u64)-1;
4361
4362 path = btrfs_alloc_path();
4363 if (!path)
4364 return -ENOMEM;
4365
4366 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4367 if (ret < 0)
4368 goto out;
4369 /* FIXME: we should be able to handle this */
4370 if (ret == 0)
4371 goto out;
4372 ret = 0;
4373
4374 /*
4375 * MAGIC NUMBER EXPLANATION:
4376 * since we search a directory based on f_pos we have to start at 2
4377 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
4378 * else has to start at 2
4379 */
4380 if (path->slots[0] == 0) {
4381 BTRFS_I(inode)->index_cnt = 2;
4382 goto out;
4383 }
4384
4385 path->slots[0]--;
4386
4387 leaf = path->nodes[0];
4388 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4389
Li Zefan33345d012011-04-20 10:31:50 +08004390 if (found_key.objectid != btrfs_ino(inode) ||
Josef Bacikaec74772008-07-24 12:12:38 -04004391 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
4392 BTRFS_I(inode)->index_cnt = 2;
4393 goto out;
4394 }
4395
4396 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
4397out:
4398 btrfs_free_path(path);
4399 return ret;
4400}
4401
Chris Masond352ac62008-09-29 15:18:18 -04004402/*
4403 * helper to find a free sequence number in a given directory. This current
4404 * code is very simple, later versions will do smarter things in the btree
4405 */
Chris Mason3de45862008-11-17 21:02:50 -05004406int btrfs_set_inode_index(struct inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04004407{
4408 int ret = 0;
4409
4410 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
Miao Xie16cdcec2011-04-22 18:12:22 +08004411 ret = btrfs_inode_delayed_dir_index_count(dir);
4412 if (ret) {
4413 ret = btrfs_set_inode_index_count(dir);
4414 if (ret)
4415 return ret;
4416 }
Josef Bacikaec74772008-07-24 12:12:38 -04004417 }
4418
Chris Mason00e4e6b2008-08-05 11:18:09 -04004419 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04004420 BTRFS_I(dir)->index_cnt++;
4421
4422 return ret;
4423}
4424
Chris Mason39279cc2007-06-12 06:35:45 -04004425static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
4426 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04004427 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05004428 const char *name, int name_len,
Al Viro175a4eb2011-07-26 03:30:54 -04004429 u64 ref_objectid, u64 objectid,
4430 umode_t mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04004431{
4432 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004433 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04004434 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04004435 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05004436 struct btrfs_inode_ref *ref;
4437 struct btrfs_key key[2];
4438 u32 sizes[2];
4439 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04004440 int ret;
4441 int owner;
4442
Chris Mason5f39d392007-10-15 16:14:19 -04004443 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07004444 if (!path)
4445 return ERR_PTR(-ENOMEM);
Chris Mason5f39d392007-10-15 16:14:19 -04004446
Chris Mason39279cc2007-06-12 06:35:45 -04004447 inode = new_inode(root->fs_info->sb);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004448 if (!inode) {
4449 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004450 return ERR_PTR(-ENOMEM);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004451 }
Chris Mason39279cc2007-06-12 06:35:45 -04004452
Li Zefan581bb052011-04-20 10:06:11 +08004453 /*
4454 * we have to initialize this early, so we can reclaim the inode
4455 * number if we fail afterwards in this function.
4456 */
4457 inode->i_ino = objectid;
4458
Josef Bacikaec74772008-07-24 12:12:38 -04004459 if (dir) {
liubo1abe9b82011-03-24 11:18:59 +00004460 trace_btrfs_inode_request(dir);
4461
Chris Mason3de45862008-11-17 21:02:50 -05004462 ret = btrfs_set_inode_index(dir, index);
Shen Feng09771432009-04-02 16:46:06 -04004463 if (ret) {
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004464 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004465 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004466 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04004467 }
Josef Bacikaec74772008-07-24 12:12:38 -04004468 }
4469 /*
4470 * index_cnt is ignored for everything but a dir,
4471 * btrfs_get_inode_index_count has an explanation for the magic
4472 * number
4473 */
4474 BTRFS_I(inode)->index_cnt = 2;
Chris Mason39279cc2007-06-12 06:35:45 -04004475 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04004476 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik76195852010-11-19 02:18:02 +00004477 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik6a632092009-02-20 11:00:09 -05004478 btrfs_set_inode_space_info(root, inode);
Chris Masonb888db22007-08-27 16:49:44 -04004479
Al Viro569254b2011-07-24 17:08:40 -04004480 if (S_ISDIR(mode))
Chris Mason39279cc2007-06-12 06:35:45 -04004481 owner = 0;
4482 else
4483 owner = 1;
Chris Mason9c583092008-01-29 15:15:18 -05004484
4485 key[0].objectid = objectid;
4486 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
4487 key[0].offset = 0;
4488
4489 key[1].objectid = objectid;
4490 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
4491 key[1].offset = ref_objectid;
4492
4493 sizes[0] = sizeof(struct btrfs_inode_item);
4494 sizes[1] = name_len + sizeof(*ref);
4495
Chris Masonb9473432009-03-13 11:00:37 -04004496 path->leave_spinning = 1;
Chris Mason9c583092008-01-29 15:15:18 -05004497 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
4498 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04004499 goto fail;
4500
Dmitry Monakhovecc11fab2010-03-04 17:31:47 +03004501 inode_init_owner(inode, dir, mode);
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004502 inode_set_bytes(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004503 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04004504 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
4505 struct btrfs_inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04004506 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05004507
4508 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
4509 struct btrfs_inode_ref);
4510 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004511 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
Chris Mason9c583092008-01-29 15:15:18 -05004512 ptr = (unsigned long)(ref + 1);
4513 write_extent_buffer(path->nodes[0], name, ptr, name_len);
4514
Chris Mason5f39d392007-10-15 16:14:19 -04004515 btrfs_mark_buffer_dirty(path->nodes[0]);
4516 btrfs_free_path(path);
4517
Chris Mason39279cc2007-06-12 06:35:45 -04004518 location = &BTRFS_I(inode)->location;
4519 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04004520 location->offset = 0;
4521 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
4522
Christoph Hellwig6cbff002009-04-17 10:37:41 +02004523 btrfs_inherit_iflags(inode, dir);
4524
Al Viro569254b2011-07-24 17:08:40 -04004525 if (S_ISREG(mode)) {
Chris Mason94272162009-07-02 12:26:06 -04004526 if (btrfs_test_opt(root, NODATASUM))
4527 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
Liu Bo75e7cb72011-03-22 10:12:20 +00004528 if (btrfs_test_opt(root, NODATACOW) ||
4529 (BTRFS_I(dir)->flags & BTRFS_INODE_NODATACOW))
Chris Mason94272162009-07-02 12:26:06 -04004530 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
4531 }
4532
Chris Mason39279cc2007-06-12 06:35:45 -04004533 insert_inode_hash(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004534 inode_tree_add(inode);
liubo1abe9b82011-03-24 11:18:59 +00004535
4536 trace_btrfs_inode_new(inode);
Chris Mason1973f0f2011-06-24 13:13:29 -04004537 btrfs_set_inode_last_trans(trans, inode);
liubo1abe9b82011-03-24 11:18:59 +00004538
Chris Mason39279cc2007-06-12 06:35:45 -04004539 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004540fail:
Josef Bacikaec74772008-07-24 12:12:38 -04004541 if (dir)
4542 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04004543 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004544 iput(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004545 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004546}
4547
4548static inline u8 btrfs_inode_type(struct inode *inode)
4549{
4550 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
4551}
4552
Chris Masond352ac62008-09-29 15:18:18 -04004553/*
4554 * utility function to add 'inode' into 'parent_inode' with
4555 * a give name and a given sequence number.
4556 * if 'add_backref' is true, also insert a backref from the
4557 * inode to the parent directory.
4558 */
Chris Masone02119d2008-09-05 16:13:11 -04004559int btrfs_add_link(struct btrfs_trans_handle *trans,
4560 struct inode *parent_inode, struct inode *inode,
4561 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004562{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004563 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004564 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04004565 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Li Zefan33345d012011-04-20 10:31:50 +08004566 u64 ino = btrfs_ino(inode);
4567 u64 parent_ino = btrfs_ino(parent_inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004568
Li Zefan33345d012011-04-20 10:31:50 +08004569 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004570 memcpy(&key, &BTRFS_I(inode)->root->root_key, sizeof(key));
4571 } else {
Li Zefan33345d012011-04-20 10:31:50 +08004572 key.objectid = ino;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004573 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
4574 key.offset = 0;
4575 }
Chris Mason39279cc2007-06-12 06:35:45 -04004576
Li Zefan33345d012011-04-20 10:31:50 +08004577 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004578 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
4579 key.objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08004580 parent_ino, index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004581 } else if (add_backref) {
Li Zefan33345d012011-04-20 10:31:50 +08004582 ret = btrfs_insert_inode_ref(trans, root, name, name_len, ino,
4583 parent_ino, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004584 }
4585
Chris Mason39279cc2007-06-12 06:35:45 -04004586 if (ret == 0) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004587 ret = btrfs_insert_dir_item(trans, root, name, name_len,
Miao Xie16cdcec2011-04-22 18:12:22 +08004588 parent_inode, &key,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004589 btrfs_inode_type(inode), index);
Chris Masonfe66a052012-02-20 08:40:56 -05004590 if (ret)
4591 goto fail_dir_item;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004592
Chris Masondbe674a2008-07-17 12:54:05 -04004593 btrfs_i_size_write(parent_inode, parent_inode->i_size +
Chris Masone02119d2008-09-05 16:13:11 -04004594 name_len * 2);
Chris Mason79c44582007-06-25 10:09:33 -04004595 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
Chris Masone02119d2008-09-05 16:13:11 -04004596 ret = btrfs_update_inode(trans, root, parent_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004597 }
4598 return ret;
Chris Masonfe66a052012-02-20 08:40:56 -05004599
4600fail_dir_item:
4601 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
4602 u64 local_index;
4603 int err;
4604 err = btrfs_del_root_ref(trans, root->fs_info->tree_root,
4605 key.objectid, root->root_key.objectid,
4606 parent_ino, &local_index, name, name_len);
4607
4608 } else if (add_backref) {
4609 u64 local_index;
4610 int err;
4611
4612 err = btrfs_del_inode_ref(trans, root, name, name_len,
4613 ino, parent_ino, &local_index);
4614 }
4615 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004616}
4617
4618static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Josef Bacika1b075d2010-11-19 20:36:11 +00004619 struct inode *dir, struct dentry *dentry,
4620 struct inode *inode, int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004621{
Josef Bacika1b075d2010-11-19 20:36:11 +00004622 int err = btrfs_add_link(trans, dir, inode,
4623 dentry->d_name.name, dentry->d_name.len,
4624 backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004625 if (err > 0)
4626 err = -EEXIST;
4627 return err;
4628}
4629
Josef Bacik618e21d2007-07-11 10:18:17 -04004630static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -04004631 umode_t mode, dev_t rdev)
Josef Bacik618e21d2007-07-11 10:18:17 -04004632{
4633 struct btrfs_trans_handle *trans;
4634 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004635 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04004636 int err;
4637 int drop_inode = 0;
4638 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05004639 unsigned long nr = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004640 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04004641
4642 if (!new_valid_dev(rdev))
4643 return -EINVAL;
4644
Josef Bacik9ed74f22009-09-11 16:12:44 -04004645 /*
4646 * 2 for inode item and ref
4647 * 2 for dir items
4648 * 1 for xattr if selinux is on
4649 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004650 trans = btrfs_start_transaction(root, 5);
4651 if (IS_ERR(trans))
4652 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05004653
Li Zefan581bb052011-04-20 10:06:11 +08004654 err = btrfs_find_free_ino(root, &objectid);
4655 if (err)
4656 goto out_unlock;
4657
Josef Bacikaec74772008-07-24 12:12:38 -04004658 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08004659 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04004660 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004661 if (IS_ERR(inode)) {
4662 err = PTR_ERR(inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04004663 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004664 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004665
Eric Paris2a7dba32011-02-01 11:05:39 -05004666 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04004667 if (err) {
4668 drop_inode = 1;
4669 goto out_unlock;
4670 }
4671
Casey Schauflerad19db72011-12-15 10:09:07 -05004672 /*
4673 * If the active LSM wants to access the inode during
4674 * d_instantiate it needs these. Smack checks to see
4675 * if the filesystem supports xattrs by looking at the
4676 * ops vector.
4677 */
4678
4679 inode->i_op = &btrfs_special_inode_operations;
Josef Bacika1b075d2010-11-19 20:36:11 +00004680 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Josef Bacik618e21d2007-07-11 10:18:17 -04004681 if (err)
4682 drop_inode = 1;
4683 else {
Josef Bacik618e21d2007-07-11 10:18:17 -04004684 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04004685 btrfs_update_inode(trans, root, inode);
Al Viro08c422c2011-12-23 07:58:13 -05004686 d_instantiate(dentry, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04004687 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004688out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004689 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05004690 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004691 btrfs_btree_balance_dirty(root, nr);
Josef Bacik618e21d2007-07-11 10:18:17 -04004692 if (drop_inode) {
4693 inode_dec_link_count(inode);
4694 iput(inode);
4695 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004696 return err;
4697}
4698
Chris Mason39279cc2007-06-12 06:35:45 -04004699static int btrfs_create(struct inode *dir, struct dentry *dentry,
Al Viro4acdaf22011-07-26 01:42:34 -04004700 umode_t mode, struct nameidata *nd)
Chris Mason39279cc2007-06-12 06:35:45 -04004701{
4702 struct btrfs_trans_handle *trans;
4703 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004704 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004705 int drop_inode = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004706 int err;
Chris Mason1832a6d2007-12-21 16:27:21 -05004707 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004708 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004709 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004710
Josef Bacik9ed74f22009-09-11 16:12:44 -04004711 /*
4712 * 2 for inode item and ref
4713 * 2 for dir items
4714 * 1 for xattr if selinux is on
4715 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004716 trans = btrfs_start_transaction(root, 5);
4717 if (IS_ERR(trans))
4718 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004719
Li Zefan581bb052011-04-20 10:06:11 +08004720 err = btrfs_find_free_ino(root, &objectid);
4721 if (err)
4722 goto out_unlock;
4723
Josef Bacikaec74772008-07-24 12:12:38 -04004724 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08004725 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04004726 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004727 if (IS_ERR(inode)) {
4728 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004729 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004730 }
Chris Mason39279cc2007-06-12 06:35:45 -04004731
Eric Paris2a7dba32011-02-01 11:05:39 -05004732 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04004733 if (err) {
4734 drop_inode = 1;
4735 goto out_unlock;
4736 }
4737
Casey Schauflerad19db72011-12-15 10:09:07 -05004738 /*
4739 * If the active LSM wants to access the inode during
4740 * d_instantiate it needs these. Smack checks to see
4741 * if the filesystem supports xattrs by looking at the
4742 * ops vector.
4743 */
4744 inode->i_fop = &btrfs_file_operations;
4745 inode->i_op = &btrfs_file_inode_operations;
4746
Josef Bacika1b075d2010-11-19 20:36:11 +00004747 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004748 if (err)
4749 drop_inode = 1;
4750 else {
4751 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04004752 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05004753 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Al Viro08c422c2011-12-23 07:58:13 -05004754 d_instantiate(dentry, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004755 }
Chris Mason39279cc2007-06-12 06:35:45 -04004756out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004757 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05004758 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004759 if (drop_inode) {
4760 inode_dec_link_count(inode);
4761 iput(inode);
4762 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004763 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004764 return err;
4765}
4766
4767static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
4768 struct dentry *dentry)
4769{
4770 struct btrfs_trans_handle *trans;
4771 struct btrfs_root *root = BTRFS_I(dir)->root;
4772 struct inode *inode = old_dentry->d_inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004773 u64 index;
Chris Mason1832a6d2007-12-21 16:27:21 -05004774 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004775 int err;
4776 int drop_inode = 0;
4777
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00004778 /* do not allow sys_link's with other subvols of the same device */
4779 if (root->objectid != BTRFS_I(inode)->root->objectid)
Mark Fasheh3ab35642011-03-22 17:20:26 +00004780 return -EXDEV;
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00004781
Al Viroc055e992011-03-04 17:15:18 +00004782 if (inode->i_nlink == ~0U)
4783 return -EMLINK;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004784
Chris Mason3de45862008-11-17 21:02:50 -05004785 err = btrfs_set_inode_index(dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04004786 if (err)
4787 goto fail;
4788
Yan, Zhenga22285a2010-05-16 10:48:46 -04004789 /*
Miao Xie7e6b6462011-02-18 09:21:17 +00004790 * 2 items for inode and inode ref
Yan, Zhenga22285a2010-05-16 10:48:46 -04004791 * 2 items for dir items
Miao Xie7e6b6462011-02-18 09:21:17 +00004792 * 1 item for parent inode
Yan, Zhenga22285a2010-05-16 10:48:46 -04004793 */
Miao Xie7e6b6462011-02-18 09:21:17 +00004794 trans = btrfs_start_transaction(root, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004795 if (IS_ERR(trans)) {
4796 err = PTR_ERR(trans);
4797 goto fail;
4798 }
Chris Mason5f39d392007-10-15 16:14:19 -04004799
Miao Xie31534952011-04-13 13:19:21 +08004800 btrfs_inc_nlink(inode);
4801 inode->i_ctime = CURRENT_TIME;
Al Viro7de9c6ee2010-10-23 11:11:40 -04004802 ihold(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004803
Josef Bacika1b075d2010-11-19 20:36:11 +00004804 err = btrfs_add_nondir(trans, dir, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04004805
Yan, Zhenga5719522009-09-24 09:17:31 -04004806 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04004807 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04004808 } else {
Al Viro10d9f302011-07-16 23:09:10 -04004809 struct dentry *parent = dentry->d_parent;
Yan, Zhenga5719522009-09-24 09:17:31 -04004810 err = btrfs_update_inode(trans, root, inode);
4811 BUG_ON(err);
Al Viro08c422c2011-12-23 07:58:13 -05004812 d_instantiate(dentry, inode);
Josef Bacik6a912212010-11-20 09:48:00 +00004813 btrfs_log_new_name(trans, inode, NULL, parent);
Yan, Zhenga5719522009-09-24 09:17:31 -04004814 }
Chris Mason39279cc2007-06-12 06:35:45 -04004815
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004816 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05004817 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004818fail:
Chris Mason39279cc2007-06-12 06:35:45 -04004819 if (drop_inode) {
4820 inode_dec_link_count(inode);
4821 iput(inode);
4822 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004823 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004824 return err;
4825}
4826
Al Viro18bb1db2011-07-26 01:41:39 -04004827static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Chris Mason39279cc2007-06-12 06:35:45 -04004828{
Chris Masonb9d86662008-05-02 16:13:49 -04004829 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004830 struct btrfs_trans_handle *trans;
4831 struct btrfs_root *root = BTRFS_I(dir)->root;
4832 int err = 0;
4833 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04004834 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004835 u64 index = 0;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004836 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04004837
Josef Bacik9ed74f22009-09-11 16:12:44 -04004838 /*
4839 * 2 items for inode and ref
4840 * 2 items for dir items
4841 * 1 for xattr if selinux is on
4842 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004843 trans = btrfs_start_transaction(root, 5);
4844 if (IS_ERR(trans))
4845 return PTR_ERR(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04004846
Li Zefan581bb052011-04-20 10:06:11 +08004847 err = btrfs_find_free_ino(root, &objectid);
4848 if (err)
4849 goto out_fail;
4850
Josef Bacikaec74772008-07-24 12:12:38 -04004851 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08004852 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04004853 S_IFDIR | mode, &index);
Chris Mason39279cc2007-06-12 06:35:45 -04004854 if (IS_ERR(inode)) {
4855 err = PTR_ERR(inode);
4856 goto out_fail;
4857 }
Chris Mason5f39d392007-10-15 16:14:19 -04004858
Chris Mason39279cc2007-06-12 06:35:45 -04004859 drop_on_err = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -04004860
Eric Paris2a7dba32011-02-01 11:05:39 -05004861 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04004862 if (err)
4863 goto out_fail;
4864
Chris Mason39279cc2007-06-12 06:35:45 -04004865 inode->i_op = &btrfs_dir_inode_operations;
4866 inode->i_fop = &btrfs_dir_file_operations;
Chris Mason39279cc2007-06-12 06:35:45 -04004867
Chris Masondbe674a2008-07-17 12:54:05 -04004868 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004869 err = btrfs_update_inode(trans, root, inode);
4870 if (err)
4871 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04004872
Josef Bacika1b075d2010-11-19 20:36:11 +00004873 err = btrfs_add_link(trans, dir, inode, dentry->d_name.name,
4874 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004875 if (err)
4876 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04004877
Chris Mason39279cc2007-06-12 06:35:45 -04004878 d_instantiate(dentry, inode);
4879 drop_on_err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004880
4881out_fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004882 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05004883 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004884 if (drop_on_err)
4885 iput(inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004886 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004887 return err;
4888}
4889
Chris Masond352ac62008-09-29 15:18:18 -04004890/* helper for btfs_get_extent. Given an existing extent in the tree,
4891 * and an extent that you want to insert, deal with overlap and insert
4892 * the new extent into the tree.
4893 */
Chris Mason3b951512008-04-17 11:29:12 -04004894static int merge_extent_mapping(struct extent_map_tree *em_tree,
4895 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04004896 struct extent_map *em,
4897 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04004898{
4899 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04004900
Chris Masone6dcd2d2008-07-17 12:53:50 -04004901 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
4902 start_diff = map_start - em->start;
4903 em->start = map_start;
4904 em->len = map_len;
Chris Masonc8b97812008-10-29 14:49:59 -04004905 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
4906 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04004907 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04004908 em->block_len -= start_diff;
4909 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004910 return add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04004911}
4912
Chris Masonc8b97812008-10-29 14:49:59 -04004913static noinline int uncompress_inline(struct btrfs_path *path,
4914 struct inode *inode, struct page *page,
4915 size_t pg_offset, u64 extent_offset,
4916 struct btrfs_file_extent_item *item)
4917{
4918 int ret;
4919 struct extent_buffer *leaf = path->nodes[0];
4920 char *tmp;
4921 size_t max_size;
4922 unsigned long inline_size;
4923 unsigned long ptr;
Li Zefan261507a02010-12-17 14:21:50 +08004924 int compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04004925
4926 WARN_ON(pg_offset != 0);
Li Zefan261507a02010-12-17 14:21:50 +08004927 compress_type = btrfs_file_extent_compression(leaf, item);
Chris Masonc8b97812008-10-29 14:49:59 -04004928 max_size = btrfs_file_extent_ram_bytes(leaf, item);
4929 inline_size = btrfs_file_extent_inline_item_len(leaf,
4930 btrfs_item_nr(leaf, path->slots[0]));
4931 tmp = kmalloc(inline_size, GFP_NOFS);
Tsutomu Itoh8d413712011-04-25 19:43:52 -04004932 if (!tmp)
4933 return -ENOMEM;
Chris Masonc8b97812008-10-29 14:49:59 -04004934 ptr = btrfs_file_extent_inline_start(item);
4935
4936 read_extent_buffer(leaf, tmp, ptr, inline_size);
4937
Chris Mason5b050f02008-11-11 09:34:41 -05004938 max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size);
Li Zefan261507a02010-12-17 14:21:50 +08004939 ret = btrfs_decompress(compress_type, tmp, page,
4940 extent_offset, inline_size, max_size);
Chris Masonc8b97812008-10-29 14:49:59 -04004941 if (ret) {
4942 char *kaddr = kmap_atomic(page, KM_USER0);
4943 unsigned long copy_size = min_t(u64,
4944 PAGE_CACHE_SIZE - pg_offset,
4945 max_size - extent_offset);
4946 memset(kaddr + pg_offset, 0, copy_size);
4947 kunmap_atomic(kaddr, KM_USER0);
4948 }
4949 kfree(tmp);
4950 return 0;
4951}
4952
Chris Masond352ac62008-09-29 15:18:18 -04004953/*
4954 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05004955 * the ugly parts come from merging extents from the disk with the in-ram
4956 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04004957 * where the in-ram extents might be locked pending data=ordered completion.
4958 *
4959 * This also copies inline extents directly into the page.
4960 */
Chris Masond3977122009-01-05 21:25:51 -05004961
Chris Masona52d9a82007-08-27 16:49:44 -04004962struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05004963 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04004964 int create)
4965{
4966 int ret;
4967 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04004968 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04004969 u64 extent_start = 0;
4970 u64 extent_end = 0;
Li Zefan33345d012011-04-20 10:31:50 +08004971 u64 objectid = btrfs_ino(inode);
Chris Masona52d9a82007-08-27 16:49:44 -04004972 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04004973 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04004974 struct btrfs_root *root = BTRFS_I(inode)->root;
4975 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04004976 struct extent_buffer *leaf;
4977 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04004978 struct extent_map *em = NULL;
4979 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05004980 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04004981 struct btrfs_trans_handle *trans = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08004982 int compress_type;
Chris Masona52d9a82007-08-27 16:49:44 -04004983
Chris Masona52d9a82007-08-27 16:49:44 -04004984again:
Chris Mason890871b2009-09-02 16:24:52 -04004985 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05004986 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04004987 if (em)
4988 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04004989 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05004990
Chris Masona52d9a82007-08-27 16:49:44 -04004991 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04004992 if (em->start > start || em->start + em->len <= start)
4993 free_extent_map(em);
4994 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05004995 free_extent_map(em);
4996 else
4997 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004998 }
David Sterba172ddd62011-04-21 00:48:27 +02004999 em = alloc_extent_map();
Chris Masona52d9a82007-08-27 16:49:44 -04005000 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05005001 err = -ENOMEM;
5002 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005003 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005004 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05005005 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05005006 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05005007 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04005008 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04005009
5010 if (!path) {
5011 path = btrfs_alloc_path();
Josef Bacik026fd312011-05-13 10:32:11 -04005012 if (!path) {
5013 err = -ENOMEM;
5014 goto out;
5015 }
5016 /*
5017 * Chances are we'll be called again, so go ahead and do
5018 * readahead
5019 */
5020 path->reada = 1;
Chris Masonf4219502008-07-22 11:18:09 -04005021 }
5022
Chris Mason179e29e2007-11-01 11:28:41 -04005023 ret = btrfs_lookup_file_extent(trans, root, path,
5024 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04005025 if (ret < 0) {
5026 err = ret;
5027 goto out;
5028 }
5029
5030 if (ret != 0) {
5031 if (path->slots[0] == 0)
5032 goto not_found;
5033 path->slots[0]--;
5034 }
5035
Chris Mason5f39d392007-10-15 16:14:19 -04005036 leaf = path->nodes[0];
5037 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04005038 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04005039 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04005040 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5041 found_type = btrfs_key_type(&found_key);
5042 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04005043 found_type != BTRFS_EXTENT_DATA_KEY) {
5044 goto not_found;
5045 }
5046
Chris Mason5f39d392007-10-15 16:14:19 -04005047 found_type = btrfs_file_extent_type(leaf, item);
5048 extent_start = found_key.offset;
Li Zefan261507a02010-12-17 14:21:50 +08005049 compress_type = btrfs_file_extent_compression(leaf, item);
Yan Zhengd899e052008-10-30 14:25:28 -04005050 if (found_type == BTRFS_FILE_EXTENT_REG ||
5051 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04005052 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04005053 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04005054 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
5055 size_t size;
5056 size = btrfs_file_extent_inline_len(leaf, item);
5057 extent_end = (extent_start + size + root->sectorsize - 1) &
5058 ~((u64)root->sectorsize - 1);
5059 }
5060
5061 if (start >= extent_end) {
5062 path->slots[0]++;
5063 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
5064 ret = btrfs_next_leaf(root, path);
5065 if (ret < 0) {
5066 err = ret;
5067 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005068 }
Yan Zheng9036c102008-10-30 14:19:41 -04005069 if (ret > 0)
5070 goto not_found;
5071 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04005072 }
Yan Zheng9036c102008-10-30 14:19:41 -04005073 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5074 if (found_key.objectid != objectid ||
5075 found_key.type != BTRFS_EXTENT_DATA_KEY)
5076 goto not_found;
5077 if (start + len <= found_key.offset)
5078 goto not_found;
5079 em->start = start;
5080 em->len = found_key.offset - start;
5081 goto not_found_em;
5082 }
5083
Yan Zhengd899e052008-10-30 14:25:28 -04005084 if (found_type == BTRFS_FILE_EXTENT_REG ||
5085 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng9036c102008-10-30 14:19:41 -04005086 em->start = extent_start;
5087 em->len = extent_end - extent_start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005088 em->orig_start = extent_start -
5089 btrfs_file_extent_offset(leaf, item);
Chris Masondb945352007-10-15 16:15:53 -04005090 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
5091 if (bytenr == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04005092 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04005093 goto insert;
5094 }
Li Zefan261507a02010-12-17 14:21:50 +08005095 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04005096 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08005097 em->compress_type = compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04005098 em->block_start = bytenr;
5099 em->block_len = btrfs_file_extent_disk_num_bytes(leaf,
5100 item);
5101 } else {
5102 bytenr += btrfs_file_extent_offset(leaf, item);
5103 em->block_start = bytenr;
5104 em->block_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04005105 if (found_type == BTRFS_FILE_EXTENT_PREALLOC)
5106 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -04005107 }
Chris Masona52d9a82007-08-27 16:49:44 -04005108 goto insert;
5109 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04005110 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04005111 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04005112 size_t size;
5113 size_t extent_offset;
5114 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04005115
Chris Masona52d9a82007-08-27 16:49:44 -04005116 em->block_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04005117 if (!page || create) {
Yan689f9342007-10-29 11:41:07 -04005118 em->start = extent_start;
Yan Zheng9036c102008-10-30 14:19:41 -04005119 em->len = extent_end - extent_start;
Yan689f9342007-10-29 11:41:07 -04005120 goto out;
5121 }
5122
Yan Zheng9036c102008-10-30 14:19:41 -04005123 size = btrfs_file_extent_inline_len(leaf, item);
5124 extent_offset = page_offset(page) + pg_offset - extent_start;
Chris Mason70dec802008-01-29 09:59:12 -05005125 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04005126 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04005127 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05005128 em->len = (copy_size + root->sectorsize - 1) &
5129 ~((u64)root->sectorsize - 1);
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005130 em->orig_start = EXTENT_MAP_INLINE;
Li Zefan261507a02010-12-17 14:21:50 +08005131 if (compress_type) {
Chris Masonc8b97812008-10-29 14:49:59 -04005132 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08005133 em->compress_type = compress_type;
5134 }
Yan689f9342007-10-29 11:41:07 -04005135 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04005136 if (create == 0 && !PageUptodate(page)) {
Li Zefan261507a02010-12-17 14:21:50 +08005137 if (btrfs_file_extent_compression(leaf, item) !=
5138 BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04005139 ret = uncompress_inline(path, inode, page,
5140 pg_offset,
5141 extent_offset, item);
5142 BUG_ON(ret);
5143 } else {
5144 map = kmap(page);
5145 read_extent_buffer(leaf, map + pg_offset, ptr,
5146 copy_size);
Chris Mason93c82d52009-09-11 12:36:29 -04005147 if (pg_offset + copy_size < PAGE_CACHE_SIZE) {
5148 memset(map + pg_offset + copy_size, 0,
5149 PAGE_CACHE_SIZE - pg_offset -
5150 copy_size);
5151 }
Chris Masonc8b97812008-10-29 14:49:59 -04005152 kunmap(page);
5153 }
Chris Mason179e29e2007-11-01 11:28:41 -04005154 flush_dcache_page(page);
5155 } else if (create && PageUptodate(page)) {
Jan Schmidt6bf7e082011-12-01 14:35:19 +01005156 BUG();
Chris Mason179e29e2007-11-01 11:28:41 -04005157 if (!trans) {
5158 kunmap(page);
5159 free_extent_map(em);
5160 em = NULL;
Chris Masonff5714c2011-05-28 07:00:39 -04005161
David Sterbab3b4aa72011-04-21 01:20:15 +02005162 btrfs_release_path(path);
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005163 trans = btrfs_join_transaction(root);
Chris Masonff5714c2011-05-28 07:00:39 -04005164
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005165 if (IS_ERR(trans))
5166 return ERR_CAST(trans);
Chris Mason179e29e2007-11-01 11:28:41 -04005167 goto again;
5168 }
Chris Masonc8b97812008-10-29 14:49:59 -04005169 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05005170 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04005171 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04005172 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04005173 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04005174 }
Chris Masond1310b22008-01-24 16:13:08 -05005175 set_extent_uptodate(io_tree, em->start,
Arne Jansen507903b2011-04-06 10:02:20 +00005176 extent_map_end(em) - 1, NULL, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04005177 goto insert;
5178 } else {
Chris Masond3977122009-01-05 21:25:51 -05005179 printk(KERN_ERR "btrfs unknown found_type %d\n", found_type);
Chris Masona52d9a82007-08-27 16:49:44 -04005180 WARN_ON(1);
5181 }
5182not_found:
5183 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05005184 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04005185not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04005186 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04005187 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04005188insert:
David Sterbab3b4aa72011-04-21 01:20:15 +02005189 btrfs_release_path(path);
Chris Masond1310b22008-01-24 16:13:08 -05005190 if (em->start > start || extent_map_end(em) <= start) {
Chris Masond3977122009-01-05 21:25:51 -05005191 printk(KERN_ERR "Btrfs: bad extent! em: [%llu %llu] passed "
5192 "[%llu %llu]\n", (unsigned long long)em->start,
5193 (unsigned long long)em->len,
5194 (unsigned long long)start,
5195 (unsigned long long)len);
Chris Masona52d9a82007-08-27 16:49:44 -04005196 err = -EIO;
5197 goto out;
5198 }
Chris Masond1310b22008-01-24 16:13:08 -05005199
5200 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04005201 write_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005202 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04005203 /* it is possible that someone inserted the extent into the tree
5204 * while we had the lock dropped. It is also possible that
5205 * an overlapping map exists in the tree
5206 */
Chris Masona52d9a82007-08-27 16:49:44 -04005207 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04005208 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005209
5210 ret = 0;
5211
Chris Mason3b951512008-04-17 11:29:12 -04005212 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04005213 if (existing && (existing->start > start ||
5214 existing->start + existing->len <= start)) {
5215 free_extent_map(existing);
5216 existing = NULL;
5217 }
Chris Mason3b951512008-04-17 11:29:12 -04005218 if (!existing) {
5219 existing = lookup_extent_mapping(em_tree, em->start,
5220 em->len);
5221 if (existing) {
5222 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005223 em, start,
5224 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04005225 free_extent_map(existing);
5226 if (err) {
5227 free_extent_map(em);
5228 em = NULL;
5229 }
5230 } else {
5231 err = -EIO;
Chris Mason3b951512008-04-17 11:29:12 -04005232 free_extent_map(em);
5233 em = NULL;
5234 }
5235 } else {
5236 free_extent_map(em);
5237 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005238 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04005239 }
Chris Masona52d9a82007-08-27 16:49:44 -04005240 }
Chris Mason890871b2009-09-02 16:24:52 -04005241 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005242out:
liubo1abe9b82011-03-24 11:18:59 +00005243
5244 trace_btrfs_get_extent(root, em);
5245
Chris Masonf4219502008-07-22 11:18:09 -04005246 if (path)
5247 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04005248 if (trans) {
5249 ret = btrfs_end_transaction(trans, root);
Chris Masond3977122009-01-05 21:25:51 -05005250 if (!err)
Chris Masona52d9a82007-08-27 16:49:44 -04005251 err = ret;
5252 }
Chris Masona52d9a82007-08-27 16:49:44 -04005253 if (err) {
5254 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04005255 return ERR_PTR(err);
5256 }
5257 return em;
5258}
5259
Chris Masonec29ed52011-02-23 16:23:20 -05005260struct extent_map *btrfs_get_extent_fiemap(struct inode *inode, struct page *page,
5261 size_t pg_offset, u64 start, u64 len,
5262 int create)
5263{
5264 struct extent_map *em;
5265 struct extent_map *hole_em = NULL;
5266 u64 range_start = start;
5267 u64 end;
5268 u64 found;
5269 u64 found_end;
5270 int err = 0;
5271
5272 em = btrfs_get_extent(inode, page, pg_offset, start, len, create);
5273 if (IS_ERR(em))
5274 return em;
5275 if (em) {
5276 /*
5277 * if our em maps to a hole, there might
5278 * actually be delalloc bytes behind it
5279 */
5280 if (em->block_start != EXTENT_MAP_HOLE)
5281 return em;
5282 else
5283 hole_em = em;
5284 }
5285
5286 /* check to see if we've wrapped (len == -1 or similar) */
5287 end = start + len;
5288 if (end < start)
5289 end = (u64)-1;
5290 else
5291 end -= 1;
5292
5293 em = NULL;
5294
5295 /* ok, we didn't find anything, lets look for delalloc */
5296 found = count_range_bits(&BTRFS_I(inode)->io_tree, &range_start,
5297 end, len, EXTENT_DELALLOC, 1);
5298 found_end = range_start + found;
5299 if (found_end < range_start)
5300 found_end = (u64)-1;
5301
5302 /*
5303 * we didn't find anything useful, return
5304 * the original results from get_extent()
5305 */
5306 if (range_start > end || found_end <= start) {
5307 em = hole_em;
5308 hole_em = NULL;
5309 goto out;
5310 }
5311
5312 /* adjust the range_start to make sure it doesn't
5313 * go backwards from the start they passed in
5314 */
5315 range_start = max(start,range_start);
5316 found = found_end - range_start;
5317
5318 if (found > 0) {
5319 u64 hole_start = start;
5320 u64 hole_len = len;
5321
David Sterba172ddd62011-04-21 00:48:27 +02005322 em = alloc_extent_map();
Chris Masonec29ed52011-02-23 16:23:20 -05005323 if (!em) {
5324 err = -ENOMEM;
5325 goto out;
5326 }
5327 /*
5328 * when btrfs_get_extent can't find anything it
5329 * returns one huge hole
5330 *
5331 * make sure what it found really fits our range, and
5332 * adjust to make sure it is based on the start from
5333 * the caller
5334 */
5335 if (hole_em) {
5336 u64 calc_end = extent_map_end(hole_em);
5337
5338 if (calc_end <= start || (hole_em->start > end)) {
5339 free_extent_map(hole_em);
5340 hole_em = NULL;
5341 } else {
5342 hole_start = max(hole_em->start, start);
5343 hole_len = calc_end - hole_start;
5344 }
5345 }
5346 em->bdev = NULL;
5347 if (hole_em && range_start > hole_start) {
5348 /* our hole starts before our delalloc, so we
5349 * have to return just the parts of the hole
5350 * that go until the delalloc starts
5351 */
5352 em->len = min(hole_len,
5353 range_start - hole_start);
5354 em->start = hole_start;
5355 em->orig_start = hole_start;
5356 /*
5357 * don't adjust block start at all,
5358 * it is fixed at EXTENT_MAP_HOLE
5359 */
5360 em->block_start = hole_em->block_start;
5361 em->block_len = hole_len;
5362 } else {
5363 em->start = range_start;
5364 em->len = found;
5365 em->orig_start = range_start;
5366 em->block_start = EXTENT_MAP_DELALLOC;
5367 em->block_len = found;
5368 }
5369 } else if (hole_em) {
5370 return hole_em;
5371 }
5372out:
5373
5374 free_extent_map(hole_em);
5375 if (err) {
5376 free_extent_map(em);
5377 return ERR_PTR(err);
5378 }
5379 return em;
5380}
5381
Josef Bacik4b46fce2010-05-23 11:00:55 -04005382static struct extent_map *btrfs_new_extent_direct(struct inode *inode,
Josef Bacik16d299a2011-04-06 14:53:07 -04005383 struct extent_map *em,
Josef Bacik4b46fce2010-05-23 11:00:55 -04005384 u64 start, u64 len)
5385{
5386 struct btrfs_root *root = BTRFS_I(inode)->root;
5387 struct btrfs_trans_handle *trans;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005388 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
5389 struct btrfs_key ins;
5390 u64 alloc_hint;
5391 int ret;
Josef Bacik16d299a2011-04-06 14:53:07 -04005392 bool insert = false;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005393
Josef Bacik16d299a2011-04-06 14:53:07 -04005394 /*
5395 * Ok if the extent map we looked up is a hole and is for the exact
5396 * range we want, there is no reason to allocate a new one, however if
5397 * it is not right then we need to free this one and drop the cache for
5398 * our range.
5399 */
5400 if (em->block_start != EXTENT_MAP_HOLE || em->start != start ||
5401 em->len != len) {
5402 free_extent_map(em);
5403 em = NULL;
5404 insert = true;
5405 btrfs_drop_extent_cache(inode, start, start + len - 1, 0);
5406 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005407
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005408 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005409 if (IS_ERR(trans))
5410 return ERR_CAST(trans);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005411
Chris Mason4cb53002011-05-24 15:35:30 -04005412 if (start <= BTRFS_I(inode)->disk_i_size && len < 64 * 1024)
5413 btrfs_add_inode_defrag(trans, inode);
5414
Josef Bacik4b46fce2010-05-23 11:00:55 -04005415 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
5416
5417 alloc_hint = get_extent_allocation_hint(inode, start, len);
5418 ret = btrfs_reserve_extent(trans, root, len, root->sectorsize, 0,
5419 alloc_hint, (u64)-1, &ins, 1);
5420 if (ret) {
5421 em = ERR_PTR(ret);
5422 goto out;
5423 }
5424
Josef Bacik4b46fce2010-05-23 11:00:55 -04005425 if (!em) {
David Sterba172ddd62011-04-21 00:48:27 +02005426 em = alloc_extent_map();
Josef Bacik16d299a2011-04-06 14:53:07 -04005427 if (!em) {
5428 em = ERR_PTR(-ENOMEM);
5429 goto out;
5430 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005431 }
5432
5433 em->start = start;
5434 em->orig_start = em->start;
5435 em->len = ins.offset;
5436
5437 em->block_start = ins.objectid;
5438 em->block_len = ins.offset;
5439 em->bdev = root->fs_info->fs_devices->latest_bdev;
Josef Bacik16d299a2011-04-06 14:53:07 -04005440
5441 /*
5442 * We need to do this because if we're using the original em we searched
5443 * for, we could have EXTENT_FLAG_VACANCY set, and we don't want that.
5444 */
5445 em->flags = 0;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005446 set_bit(EXTENT_FLAG_PINNED, &em->flags);
5447
Josef Bacik16d299a2011-04-06 14:53:07 -04005448 while (insert) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04005449 write_lock(&em_tree->lock);
5450 ret = add_extent_mapping(em_tree, em);
5451 write_unlock(&em_tree->lock);
5452 if (ret != -EEXIST)
5453 break;
5454 btrfs_drop_extent_cache(inode, start, start + em->len - 1, 0);
5455 }
5456
5457 ret = btrfs_add_ordered_extent_dio(inode, start, ins.objectid,
5458 ins.offset, ins.offset, 0);
5459 if (ret) {
5460 btrfs_free_reserved_extent(root, ins.objectid, ins.offset);
5461 em = ERR_PTR(ret);
5462 }
5463out:
5464 btrfs_end_transaction(trans, root);
5465 return em;
5466}
5467
Chris Mason46bfbb52010-05-26 11:04:10 -04005468/*
5469 * returns 1 when the nocow is safe, < 1 on error, 0 if the
5470 * block must be cow'd
5471 */
5472static noinline int can_nocow_odirect(struct btrfs_trans_handle *trans,
5473 struct inode *inode, u64 offset, u64 len)
5474{
5475 struct btrfs_path *path;
5476 int ret;
5477 struct extent_buffer *leaf;
5478 struct btrfs_root *root = BTRFS_I(inode)->root;
5479 struct btrfs_file_extent_item *fi;
5480 struct btrfs_key key;
5481 u64 disk_bytenr;
5482 u64 backref_offset;
5483 u64 extent_end;
5484 u64 num_bytes;
5485 int slot;
5486 int found_type;
5487
5488 path = btrfs_alloc_path();
5489 if (!path)
5490 return -ENOMEM;
5491
Li Zefan33345d012011-04-20 10:31:50 +08005492 ret = btrfs_lookup_file_extent(trans, root, path, btrfs_ino(inode),
Chris Mason46bfbb52010-05-26 11:04:10 -04005493 offset, 0);
5494 if (ret < 0)
5495 goto out;
5496
5497 slot = path->slots[0];
5498 if (ret == 1) {
5499 if (slot == 0) {
5500 /* can't find the item, must cow */
5501 ret = 0;
5502 goto out;
5503 }
5504 slot--;
5505 }
5506 ret = 0;
5507 leaf = path->nodes[0];
5508 btrfs_item_key_to_cpu(leaf, &key, slot);
Li Zefan33345d012011-04-20 10:31:50 +08005509 if (key.objectid != btrfs_ino(inode) ||
Chris Mason46bfbb52010-05-26 11:04:10 -04005510 key.type != BTRFS_EXTENT_DATA_KEY) {
5511 /* not our file or wrong item type, must cow */
5512 goto out;
5513 }
5514
5515 if (key.offset > offset) {
5516 /* Wrong offset, must cow */
5517 goto out;
5518 }
5519
5520 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
5521 found_type = btrfs_file_extent_type(leaf, fi);
5522 if (found_type != BTRFS_FILE_EXTENT_REG &&
5523 found_type != BTRFS_FILE_EXTENT_PREALLOC) {
5524 /* not a regular extent, must cow */
5525 goto out;
5526 }
5527 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
5528 backref_offset = btrfs_file_extent_offset(leaf, fi);
5529
5530 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
5531 if (extent_end < offset + len) {
5532 /* extent doesn't include our full range, must cow */
5533 goto out;
5534 }
5535
5536 if (btrfs_extent_readonly(root, disk_bytenr))
5537 goto out;
5538
5539 /*
5540 * look for other files referencing this extent, if we
5541 * find any we must cow
5542 */
Li Zefan33345d012011-04-20 10:31:50 +08005543 if (btrfs_cross_ref_exist(trans, root, btrfs_ino(inode),
Chris Mason46bfbb52010-05-26 11:04:10 -04005544 key.offset - backref_offset, disk_bytenr))
5545 goto out;
5546
5547 /*
5548 * adjust disk_bytenr and num_bytes to cover just the bytes
5549 * in this extent we are about to write. If there
5550 * are any csums in that range we have to cow in order
5551 * to keep the csums correct
5552 */
5553 disk_bytenr += backref_offset;
5554 disk_bytenr += offset - key.offset;
5555 num_bytes = min(offset + len, extent_end) - offset;
5556 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
5557 goto out;
5558 /*
5559 * all of the above have passed, it is safe to overwrite this extent
5560 * without cow
5561 */
5562 ret = 1;
5563out:
5564 btrfs_free_path(path);
5565 return ret;
5566}
5567
Josef Bacik4b46fce2010-05-23 11:00:55 -04005568static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock,
5569 struct buffer_head *bh_result, int create)
5570{
5571 struct extent_map *em;
5572 struct btrfs_root *root = BTRFS_I(inode)->root;
5573 u64 start = iblock << inode->i_blkbits;
5574 u64 len = bh_result->b_size;
Chris Mason46bfbb52010-05-26 11:04:10 -04005575 struct btrfs_trans_handle *trans;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005576
5577 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
5578 if (IS_ERR(em))
5579 return PTR_ERR(em);
5580
5581 /*
5582 * Ok for INLINE and COMPRESSED extents we need to fallback on buffered
5583 * io. INLINE is special, and we could probably kludge it in here, but
5584 * it's still buffered so for safety lets just fall back to the generic
5585 * buffered path.
5586 *
5587 * For COMPRESSED we _have_ to read the entire extent in so we can
5588 * decompress it, so there will be buffering required no matter what we
5589 * do, so go ahead and fallback to buffered.
5590 *
5591 * We return -ENOTBLK because thats what makes DIO go ahead and go back
5592 * to buffered IO. Don't blame me, this is the price we pay for using
5593 * the generic code.
5594 */
5595 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) ||
5596 em->block_start == EXTENT_MAP_INLINE) {
5597 free_extent_map(em);
5598 return -ENOTBLK;
5599 }
5600
5601 /* Just a good old fashioned hole, return */
5602 if (!create && (em->block_start == EXTENT_MAP_HOLE ||
5603 test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
5604 free_extent_map(em);
5605 /* DIO will do one hole at a time, so just unlock a sector */
5606 unlock_extent(&BTRFS_I(inode)->io_tree, start,
5607 start + root->sectorsize - 1, GFP_NOFS);
5608 return 0;
5609 }
5610
5611 /*
5612 * We don't allocate a new extent in the following cases
5613 *
5614 * 1) The inode is marked as NODATACOW. In this case we'll just use the
5615 * existing extent.
5616 * 2) The extent is marked as PREALLOC. We're good to go here and can
5617 * just use the extent.
5618 *
5619 */
Chris Mason46bfbb52010-05-26 11:04:10 -04005620 if (!create) {
5621 len = em->len - (start - em->start);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005622 goto map;
Chris Mason46bfbb52010-05-26 11:04:10 -04005623 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005624
5625 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
5626 ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
5627 em->block_start != EXTENT_MAP_HOLE)) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04005628 int type;
5629 int ret;
Chris Mason46bfbb52010-05-26 11:04:10 -04005630 u64 block_start;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005631
5632 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
5633 type = BTRFS_ORDERED_PREALLOC;
5634 else
5635 type = BTRFS_ORDERED_NOCOW;
Chris Mason46bfbb52010-05-26 11:04:10 -04005636 len = min(len, em->len - (start - em->start));
Josef Bacik4b46fce2010-05-23 11:00:55 -04005637 block_start = em->block_start + (start - em->start);
Chris Mason46bfbb52010-05-26 11:04:10 -04005638
5639 /*
5640 * we're not going to log anything, but we do need
5641 * to make sure the current transaction stays open
5642 * while we look for nocow cross refs
5643 */
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005644 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005645 if (IS_ERR(trans))
Chris Mason46bfbb52010-05-26 11:04:10 -04005646 goto must_cow;
5647
5648 if (can_nocow_odirect(trans, inode, start, len) == 1) {
5649 ret = btrfs_add_ordered_extent_dio(inode, start,
5650 block_start, len, len, type);
5651 btrfs_end_transaction(trans, root);
5652 if (ret) {
5653 free_extent_map(em);
5654 return ret;
5655 }
5656 goto unlock;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005657 }
Chris Mason46bfbb52010-05-26 11:04:10 -04005658 btrfs_end_transaction(trans, root);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005659 }
Chris Mason46bfbb52010-05-26 11:04:10 -04005660must_cow:
5661 /*
5662 * this will cow the extent, reset the len in case we changed
5663 * it above
5664 */
5665 len = bh_result->b_size;
Josef Bacik16d299a2011-04-06 14:53:07 -04005666 em = btrfs_new_extent_direct(inode, em, start, len);
Chris Mason46bfbb52010-05-26 11:04:10 -04005667 if (IS_ERR(em))
5668 return PTR_ERR(em);
5669 len = min(len, em->len - (start - em->start));
5670unlock:
Chris Mason4845e442010-05-25 20:56:50 -04005671 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, start + len - 1,
5672 EXTENT_LOCKED | EXTENT_DELALLOC | EXTENT_DIRTY, 1,
5673 0, NULL, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005674map:
5675 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
5676 inode->i_blkbits;
Chris Mason46bfbb52010-05-26 11:04:10 -04005677 bh_result->b_size = len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005678 bh_result->b_bdev = em->bdev;
5679 set_buffer_mapped(bh_result);
5680 if (create && !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
5681 set_buffer_new(bh_result);
5682
5683 free_extent_map(em);
5684
5685 return 0;
5686}
5687
5688struct btrfs_dio_private {
5689 struct inode *inode;
5690 u64 logical_offset;
5691 u64 disk_bytenr;
5692 u64 bytes;
5693 u32 *csums;
5694 void *private;
Miao Xiee65e1532010-11-22 03:04:43 +00005695
5696 /* number of bios pending for this dio */
5697 atomic_t pending_bios;
5698
5699 /* IO errors */
5700 int errors;
5701
5702 struct bio *orig_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005703};
5704
5705static void btrfs_endio_direct_read(struct bio *bio, int err)
5706{
Miao Xiee65e1532010-11-22 03:04:43 +00005707 struct btrfs_dio_private *dip = bio->bi_private;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005708 struct bio_vec *bvec_end = bio->bi_io_vec + bio->bi_vcnt - 1;
5709 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005710 struct inode *inode = dip->inode;
5711 struct btrfs_root *root = BTRFS_I(inode)->root;
5712 u64 start;
5713 u32 *private = dip->csums;
5714
5715 start = dip->logical_offset;
5716 do {
5717 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)) {
5718 struct page *page = bvec->bv_page;
5719 char *kaddr;
5720 u32 csum = ~(u32)0;
5721 unsigned long flags;
5722
5723 local_irq_save(flags);
5724 kaddr = kmap_atomic(page, KM_IRQ0);
5725 csum = btrfs_csum_data(root, kaddr + bvec->bv_offset,
5726 csum, bvec->bv_len);
5727 btrfs_csum_final(csum, (char *)&csum);
5728 kunmap_atomic(kaddr, KM_IRQ0);
5729 local_irq_restore(flags);
5730
5731 flush_dcache_page(bvec->bv_page);
5732 if (csum != *private) {
Li Zefan33345d012011-04-20 10:31:50 +08005733 printk(KERN_ERR "btrfs csum failed ino %llu off"
Josef Bacik4b46fce2010-05-23 11:00:55 -04005734 " %llu csum %u private %u\n",
Li Zefan33345d012011-04-20 10:31:50 +08005735 (unsigned long long)btrfs_ino(inode),
5736 (unsigned long long)start,
Josef Bacik4b46fce2010-05-23 11:00:55 -04005737 csum, *private);
5738 err = -EIO;
5739 }
5740 }
5741
5742 start += bvec->bv_len;
5743 private++;
5744 bvec++;
5745 } while (bvec <= bvec_end);
5746
5747 unlock_extent(&BTRFS_I(inode)->io_tree, dip->logical_offset,
5748 dip->logical_offset + dip->bytes - 1, GFP_NOFS);
5749 bio->bi_private = dip->private;
5750
5751 kfree(dip->csums);
5752 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04005753
5754 /* If we had a csum failure make sure to clear the uptodate flag */
5755 if (err)
5756 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005757 dio_end_io(bio, err);
5758}
5759
5760static void btrfs_endio_direct_write(struct bio *bio, int err)
5761{
5762 struct btrfs_dio_private *dip = bio->bi_private;
5763 struct inode *inode = dip->inode;
5764 struct btrfs_root *root = BTRFS_I(inode)->root;
5765 struct btrfs_trans_handle *trans;
5766 struct btrfs_ordered_extent *ordered = NULL;
5767 struct extent_state *cached_state = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05005768 u64 ordered_offset = dip->logical_offset;
5769 u64 ordered_bytes = dip->bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005770 int ret;
5771
5772 if (err)
5773 goto out_done;
Chris Mason163cf092010-11-28 19:56:33 -05005774again:
5775 ret = btrfs_dec_test_first_ordered_pending(inode, &ordered,
5776 &ordered_offset,
5777 ordered_bytes);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005778 if (!ret)
Chris Mason163cf092010-11-28 19:56:33 -05005779 goto out_test;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005780
5781 BUG_ON(!ordered);
5782
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005783 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005784 if (IS_ERR(trans)) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04005785 err = -ENOMEM;
5786 goto out;
5787 }
5788 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
5789
5790 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags)) {
5791 ret = btrfs_ordered_update_i_size(inode, 0, ordered);
5792 if (!ret)
Chris Mason21151332011-11-10 20:39:08 -05005793 err = btrfs_update_inode_fallback(trans, root, inode);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005794 goto out;
5795 }
5796
5797 lock_extent_bits(&BTRFS_I(inode)->io_tree, ordered->file_offset,
5798 ordered->file_offset + ordered->len - 1, 0,
5799 &cached_state, GFP_NOFS);
5800
5801 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags)) {
5802 ret = btrfs_mark_extent_written(trans, inode,
5803 ordered->file_offset,
5804 ordered->file_offset +
5805 ordered->len);
5806 if (ret) {
5807 err = ret;
5808 goto out_unlock;
5809 }
5810 } else {
5811 ret = insert_reserved_file_extent(trans, inode,
5812 ordered->file_offset,
5813 ordered->start,
5814 ordered->disk_len,
5815 ordered->len,
5816 ordered->len,
5817 0, 0, 0,
5818 BTRFS_FILE_EXTENT_REG);
5819 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
5820 ordered->file_offset, ordered->len);
5821 if (ret) {
5822 err = ret;
5823 WARN_ON(1);
5824 goto out_unlock;
5825 }
5826 }
5827
5828 add_pending_csums(trans, inode, ordered->file_offset, &ordered->list);
Josef Bacik1ef30be2011-04-05 19:25:36 -04005829 ret = btrfs_ordered_update_i_size(inode, 0, ordered);
Miao Xiea39f7522011-09-11 10:52:25 -04005830 if (!ret || !test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags))
Chris Mason21151332011-11-10 20:39:08 -05005831 btrfs_update_inode_fallback(trans, root, inode);
Josef Bacik1ef30be2011-04-05 19:25:36 -04005832 ret = 0;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005833out_unlock:
5834 unlock_extent_cached(&BTRFS_I(inode)->io_tree, ordered->file_offset,
5835 ordered->file_offset + ordered->len - 1,
5836 &cached_state, GFP_NOFS);
5837out:
5838 btrfs_delalloc_release_metadata(inode, ordered->len);
5839 btrfs_end_transaction(trans, root);
Chris Mason163cf092010-11-28 19:56:33 -05005840 ordered_offset = ordered->file_offset + ordered->len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005841 btrfs_put_ordered_extent(ordered);
5842 btrfs_put_ordered_extent(ordered);
Chris Mason163cf092010-11-28 19:56:33 -05005843
5844out_test:
5845 /*
5846 * our bio might span multiple ordered extents. If we haven't
5847 * completed the accounting for the whole dio, go back and try again
5848 */
5849 if (ordered_offset < dip->logical_offset + dip->bytes) {
5850 ordered_bytes = dip->logical_offset + dip->bytes -
5851 ordered_offset;
5852 goto again;
5853 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005854out_done:
5855 bio->bi_private = dip->private;
5856
5857 kfree(dip->csums);
5858 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04005859
5860 /* If we had an error make sure to clear the uptodate flag */
5861 if (err)
5862 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005863 dio_end_io(bio, err);
5864}
5865
Chris Masoneaf25d92010-05-25 09:48:28 -04005866static int __btrfs_submit_bio_start_direct_io(struct inode *inode, int rw,
5867 struct bio *bio, int mirror_num,
5868 unsigned long bio_flags, u64 offset)
5869{
5870 int ret;
5871 struct btrfs_root *root = BTRFS_I(inode)->root;
5872 ret = btrfs_csum_one_bio(root, inode, bio, offset, 1);
5873 BUG_ON(ret);
5874 return 0;
5875}
5876
Miao Xiee65e1532010-11-22 03:04:43 +00005877static void btrfs_end_dio_bio(struct bio *bio, int err)
5878{
5879 struct btrfs_dio_private *dip = bio->bi_private;
5880
5881 if (err) {
Li Zefan33345d012011-04-20 10:31:50 +08005882 printk(KERN_ERR "btrfs direct IO failed ino %llu rw %lu "
Jan Beulich3dd14622010-12-07 14:54:09 +00005883 "sector %#Lx len %u err no %d\n",
Li Zefan33345d012011-04-20 10:31:50 +08005884 (unsigned long long)btrfs_ino(dip->inode), bio->bi_rw,
Jan Beulich3dd14622010-12-07 14:54:09 +00005885 (unsigned long long)bio->bi_sector, bio->bi_size, err);
Miao Xiee65e1532010-11-22 03:04:43 +00005886 dip->errors = 1;
5887
5888 /*
5889 * before atomic variable goto zero, we must make sure
5890 * dip->errors is perceived to be set.
5891 */
5892 smp_mb__before_atomic_dec();
5893 }
5894
5895 /* if there are more bios still pending for this dio, just exit */
5896 if (!atomic_dec_and_test(&dip->pending_bios))
5897 goto out;
5898
5899 if (dip->errors)
5900 bio_io_error(dip->orig_bio);
5901 else {
5902 set_bit(BIO_UPTODATE, &dip->orig_bio->bi_flags);
5903 bio_endio(dip->orig_bio, 0);
5904 }
5905out:
5906 bio_put(bio);
5907}
5908
5909static struct bio *btrfs_dio_bio_alloc(struct block_device *bdev,
5910 u64 first_sector, gfp_t gfp_flags)
5911{
5912 int nr_vecs = bio_get_nr_vecs(bdev);
5913 return btrfs_bio_alloc(bdev, first_sector, nr_vecs, gfp_flags);
5914}
5915
5916static inline int __btrfs_submit_dio_bio(struct bio *bio, struct inode *inode,
5917 int rw, u64 file_offset, int skip_sum,
Josef Bacik1ae39932011-04-06 14:41:34 -04005918 u32 *csums, int async_submit)
Miao Xiee65e1532010-11-22 03:04:43 +00005919{
5920 int write = rw & REQ_WRITE;
5921 struct btrfs_root *root = BTRFS_I(inode)->root;
5922 int ret;
5923
5924 bio_get(bio);
5925 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
5926 if (ret)
5927 goto err;
5928
Josef Bacik1ae39932011-04-06 14:41:34 -04005929 if (skip_sum)
5930 goto map;
5931
5932 if (write && async_submit) {
Miao Xiee65e1532010-11-22 03:04:43 +00005933 ret = btrfs_wq_submit_bio(root->fs_info,
5934 inode, rw, bio, 0, 0,
5935 file_offset,
5936 __btrfs_submit_bio_start_direct_io,
5937 __btrfs_submit_bio_done);
5938 goto err;
Josef Bacik1ae39932011-04-06 14:41:34 -04005939 } else if (write) {
5940 /*
5941 * If we aren't doing async submit, calculate the csum of the
5942 * bio now.
5943 */
5944 ret = btrfs_csum_one_bio(root, inode, bio, file_offset, 1);
5945 if (ret)
5946 goto err;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00005947 } else if (!skip_sum) {
5948 ret = btrfs_lookup_bio_sums_dio(root, inode, bio,
Miao Xiee65e1532010-11-22 03:04:43 +00005949 file_offset, csums);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00005950 if (ret)
5951 goto err;
5952 }
Miao Xiee65e1532010-11-22 03:04:43 +00005953
Josef Bacik1ae39932011-04-06 14:41:34 -04005954map:
5955 ret = btrfs_map_bio(root, rw, bio, 0, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00005956err:
5957 bio_put(bio);
5958 return ret;
5959}
5960
5961static int btrfs_submit_direct_hook(int rw, struct btrfs_dio_private *dip,
5962 int skip_sum)
5963{
5964 struct inode *inode = dip->inode;
5965 struct btrfs_root *root = BTRFS_I(inode)->root;
5966 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
5967 struct bio *bio;
5968 struct bio *orig_bio = dip->orig_bio;
5969 struct bio_vec *bvec = orig_bio->bi_io_vec;
5970 u64 start_sector = orig_bio->bi_sector;
5971 u64 file_offset = dip->logical_offset;
5972 u64 submit_len = 0;
5973 u64 map_length;
5974 int nr_pages = 0;
5975 u32 *csums = dip->csums;
5976 int ret = 0;
Josef Bacik1ae39932011-04-06 14:41:34 -04005977 int async_submit = 0;
Josef Bacik98bc3142011-03-22 11:00:46 -04005978 int write = rw & REQ_WRITE;
Miao Xiee65e1532010-11-22 03:04:43 +00005979
Miao Xiee65e1532010-11-22 03:04:43 +00005980 map_length = orig_bio->bi_size;
5981 ret = btrfs_map_block(map_tree, READ, start_sector << 9,
5982 &map_length, NULL, 0);
5983 if (ret) {
Josef Bacik64728bb2011-04-25 19:43:52 -04005984 bio_put(orig_bio);
Miao Xiee65e1532010-11-22 03:04:43 +00005985 return -EIO;
5986 }
5987
Josef Bacik02f57c72011-04-06 14:25:44 -04005988 if (map_length >= orig_bio->bi_size) {
5989 bio = orig_bio;
5990 goto submit;
5991 }
5992
Josef Bacik1ae39932011-04-06 14:41:34 -04005993 async_submit = 1;
Josef Bacik02f57c72011-04-06 14:25:44 -04005994 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev, start_sector, GFP_NOFS);
5995 if (!bio)
5996 return -ENOMEM;
5997 bio->bi_private = dip;
5998 bio->bi_end_io = btrfs_end_dio_bio;
5999 atomic_inc(&dip->pending_bios);
6000
Miao Xiee65e1532010-11-22 03:04:43 +00006001 while (bvec <= (orig_bio->bi_io_vec + orig_bio->bi_vcnt - 1)) {
6002 if (unlikely(map_length < submit_len + bvec->bv_len ||
6003 bio_add_page(bio, bvec->bv_page, bvec->bv_len,
6004 bvec->bv_offset) < bvec->bv_len)) {
6005 /*
6006 * inc the count before we submit the bio so
6007 * we know the end IO handler won't happen before
6008 * we inc the count. Otherwise, the dip might get freed
6009 * before we're done setting it up
6010 */
6011 atomic_inc(&dip->pending_bios);
6012 ret = __btrfs_submit_dio_bio(bio, inode, rw,
6013 file_offset, skip_sum,
Josef Bacik1ae39932011-04-06 14:41:34 -04006014 csums, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00006015 if (ret) {
6016 bio_put(bio);
6017 atomic_dec(&dip->pending_bios);
6018 goto out_err;
6019 }
6020
Josef Bacik98bc3142011-03-22 11:00:46 -04006021 /* Write's use the ordered csums */
6022 if (!write && !skip_sum)
Miao Xiee65e1532010-11-22 03:04:43 +00006023 csums = csums + nr_pages;
6024 start_sector += submit_len >> 9;
6025 file_offset += submit_len;
6026
6027 submit_len = 0;
6028 nr_pages = 0;
6029
6030 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev,
6031 start_sector, GFP_NOFS);
6032 if (!bio)
6033 goto out_err;
6034 bio->bi_private = dip;
6035 bio->bi_end_io = btrfs_end_dio_bio;
6036
6037 map_length = orig_bio->bi_size;
6038 ret = btrfs_map_block(map_tree, READ, start_sector << 9,
6039 &map_length, NULL, 0);
6040 if (ret) {
6041 bio_put(bio);
6042 goto out_err;
6043 }
6044 } else {
6045 submit_len += bvec->bv_len;
6046 nr_pages ++;
6047 bvec++;
6048 }
6049 }
6050
Josef Bacik02f57c72011-04-06 14:25:44 -04006051submit:
Miao Xiee65e1532010-11-22 03:04:43 +00006052 ret = __btrfs_submit_dio_bio(bio, inode, rw, file_offset, skip_sum,
Josef Bacik1ae39932011-04-06 14:41:34 -04006053 csums, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00006054 if (!ret)
6055 return 0;
6056
6057 bio_put(bio);
6058out_err:
6059 dip->errors = 1;
6060 /*
6061 * before atomic variable goto zero, we must
6062 * make sure dip->errors is perceived to be set.
6063 */
6064 smp_mb__before_atomic_dec();
6065 if (atomic_dec_and_test(&dip->pending_bios))
6066 bio_io_error(dip->orig_bio);
6067
6068 /* bio_end_io() will handle error, so we needn't return it */
6069 return 0;
6070}
6071
Josef Bacik4b46fce2010-05-23 11:00:55 -04006072static void btrfs_submit_direct(int rw, struct bio *bio, struct inode *inode,
6073 loff_t file_offset)
6074{
6075 struct btrfs_root *root = BTRFS_I(inode)->root;
6076 struct btrfs_dio_private *dip;
6077 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006078 int skip_sum;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02006079 int write = rw & REQ_WRITE;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006080 int ret = 0;
6081
6082 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
6083
6084 dip = kmalloc(sizeof(*dip), GFP_NOFS);
6085 if (!dip) {
6086 ret = -ENOMEM;
6087 goto free_ordered;
6088 }
6089 dip->csums = NULL;
6090
Josef Bacik98bc3142011-03-22 11:00:46 -04006091 /* Write's use the ordered csum stuff, so we don't need dip->csums */
6092 if (!write && !skip_sum) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04006093 dip->csums = kmalloc(sizeof(u32) * bio->bi_vcnt, GFP_NOFS);
6094 if (!dip->csums) {
Daniel J Bluemanb4966b72011-03-09 16:46:42 +00006095 kfree(dip);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006096 ret = -ENOMEM;
6097 goto free_ordered;
6098 }
6099 }
6100
6101 dip->private = bio->bi_private;
6102 dip->inode = inode;
6103 dip->logical_offset = file_offset;
6104
Josef Bacik4b46fce2010-05-23 11:00:55 -04006105 dip->bytes = 0;
6106 do {
6107 dip->bytes += bvec->bv_len;
6108 bvec++;
6109 } while (bvec <= (bio->bi_io_vec + bio->bi_vcnt - 1));
6110
Chris Mason46bfbb52010-05-26 11:04:10 -04006111 dip->disk_bytenr = (u64)bio->bi_sector << 9;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006112 bio->bi_private = dip;
Miao Xiee65e1532010-11-22 03:04:43 +00006113 dip->errors = 0;
6114 dip->orig_bio = bio;
6115 atomic_set(&dip->pending_bios, 0);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006116
6117 if (write)
6118 bio->bi_end_io = btrfs_endio_direct_write;
6119 else
6120 bio->bi_end_io = btrfs_endio_direct_read;
6121
Miao Xiee65e1532010-11-22 03:04:43 +00006122 ret = btrfs_submit_direct_hook(rw, dip, skip_sum);
6123 if (!ret)
Chris Masoneaf25d92010-05-25 09:48:28 -04006124 return;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006125free_ordered:
6126 /*
6127 * If this is a write, we need to clean up the reserved space and kill
6128 * the ordered extent.
6129 */
6130 if (write) {
6131 struct btrfs_ordered_extent *ordered;
Josef Bacik955256f2010-11-19 09:41:10 -05006132 ordered = btrfs_lookup_ordered_extent(inode, file_offset);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006133 if (!test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags) &&
6134 !test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags))
6135 btrfs_free_reserved_extent(root, ordered->start,
6136 ordered->disk_len);
6137 btrfs_put_ordered_extent(ordered);
6138 btrfs_put_ordered_extent(ordered);
6139 }
6140 bio_endio(bio, ret);
6141}
6142
Chris Mason5a5f79b2010-05-26 21:33:37 -04006143static ssize_t check_direct_IO(struct btrfs_root *root, int rw, struct kiocb *iocb,
6144 const struct iovec *iov, loff_t offset,
6145 unsigned long nr_segs)
6146{
6147 int seg;
Josef Bacika1b75f72011-04-08 15:51:18 +00006148 int i;
Chris Mason5a5f79b2010-05-26 21:33:37 -04006149 size_t size;
6150 unsigned long addr;
6151 unsigned blocksize_mask = root->sectorsize - 1;
6152 ssize_t retval = -EINVAL;
6153 loff_t end = offset;
6154
6155 if (offset & blocksize_mask)
6156 goto out;
6157
6158 /* Check the memory alignment. Blocks cannot straddle pages */
6159 for (seg = 0; seg < nr_segs; seg++) {
6160 addr = (unsigned long)iov[seg].iov_base;
6161 size = iov[seg].iov_len;
6162 end += size;
Josef Bacika1b75f72011-04-08 15:51:18 +00006163 if ((addr & blocksize_mask) || (size & blocksize_mask))
Chris Mason5a5f79b2010-05-26 21:33:37 -04006164 goto out;
Josef Bacika1b75f72011-04-08 15:51:18 +00006165
6166 /* If this is a write we don't need to check anymore */
6167 if (rw & WRITE)
6168 continue;
6169
6170 /*
6171 * Check to make sure we don't have duplicate iov_base's in this
6172 * iovec, if so return EINVAL, otherwise we'll get csum errors
6173 * when reading back.
6174 */
6175 for (i = seg + 1; i < nr_segs; i++) {
6176 if (iov[seg].iov_base == iov[i].iov_base)
6177 goto out;
6178 }
Chris Mason5a5f79b2010-05-26 21:33:37 -04006179 }
6180 retval = 0;
6181out:
6182 return retval;
6183}
Chris Mason16432982008-04-10 10:23:21 -04006184static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
6185 const struct iovec *iov, loff_t offset,
6186 unsigned long nr_segs)
6187{
Josef Bacik4b46fce2010-05-23 11:00:55 -04006188 struct file *file = iocb->ki_filp;
6189 struct inode *inode = file->f_mapping->host;
6190 struct btrfs_ordered_extent *ordered;
Chris Mason4845e442010-05-25 20:56:50 -04006191 struct extent_state *cached_state = NULL;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006192 u64 lockstart, lockend;
6193 ssize_t ret;
Chris Mason4845e442010-05-25 20:56:50 -04006194 int writing = rw & WRITE;
6195 int write_bits = 0;
Chris Mason3f7c5792010-05-26 10:59:53 -04006196 size_t count = iov_length(iov, nr_segs);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006197
Chris Mason5a5f79b2010-05-26 21:33:37 -04006198 if (check_direct_IO(BTRFS_I(inode)->root, rw, iocb, iov,
6199 offset, nr_segs)) {
6200 return 0;
6201 }
6202
Josef Bacik4b46fce2010-05-23 11:00:55 -04006203 lockstart = offset;
Chris Mason3f7c5792010-05-26 10:59:53 -04006204 lockend = offset + count - 1;
6205
6206 if (writing) {
6207 ret = btrfs_delalloc_reserve_space(inode, count);
6208 if (ret)
6209 goto out;
6210 }
Chris Mason4845e442010-05-25 20:56:50 -04006211
Josef Bacik4b46fce2010-05-23 11:00:55 -04006212 while (1) {
Chris Mason4845e442010-05-25 20:56:50 -04006213 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6214 0, &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006215 /*
6216 * We're concerned with the entire range that we're going to be
6217 * doing DIO to, so we need to make sure theres no ordered
6218 * extents in this range.
6219 */
6220 ordered = btrfs_lookup_ordered_range(inode, lockstart,
6221 lockend - lockstart + 1);
6222 if (!ordered)
6223 break;
Chris Mason4845e442010-05-25 20:56:50 -04006224 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6225 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006226 btrfs_start_ordered_extent(inode, ordered, 1);
6227 btrfs_put_ordered_extent(ordered);
6228 cond_resched();
6229 }
6230
Chris Mason4845e442010-05-25 20:56:50 -04006231 /*
6232 * we don't use btrfs_set_extent_delalloc because we don't want
6233 * the dirty or uptodate bits
6234 */
6235 if (writing) {
6236 write_bits = EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING;
6237 ret = set_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6238 EXTENT_DELALLOC, 0, NULL, &cached_state,
6239 GFP_NOFS);
6240 if (ret) {
6241 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
6242 lockend, EXTENT_LOCKED | write_bits,
6243 1, 0, &cached_state, GFP_NOFS);
6244 goto out;
6245 }
6246 }
6247
6248 free_extent_state(cached_state);
6249 cached_state = NULL;
6250
Chris Mason5a5f79b2010-05-26 21:33:37 -04006251 ret = __blockdev_direct_IO(rw, iocb, inode,
6252 BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev,
6253 iov, offset, nr_segs, btrfs_get_blocks_direct, NULL,
6254 btrfs_submit_direct, 0);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006255
6256 if (ret < 0 && ret != -EIOCBQUEUED) {
Chris Mason4845e442010-05-25 20:56:50 -04006257 clear_extent_bit(&BTRFS_I(inode)->io_tree, offset,
6258 offset + iov_length(iov, nr_segs) - 1,
6259 EXTENT_LOCKED | write_bits, 1, 0,
6260 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006261 } else if (ret >= 0 && ret < iov_length(iov, nr_segs)) {
6262 /*
6263 * We're falling back to buffered, unlock the section we didn't
6264 * do IO on.
6265 */
Chris Mason4845e442010-05-25 20:56:50 -04006266 clear_extent_bit(&BTRFS_I(inode)->io_tree, offset + ret,
6267 offset + iov_length(iov, nr_segs) - 1,
6268 EXTENT_LOCKED | write_bits, 1, 0,
6269 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006270 }
Chris Mason4845e442010-05-25 20:56:50 -04006271out:
6272 free_extent_state(cached_state);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006273 return ret;
Chris Mason16432982008-04-10 10:23:21 -04006274}
6275
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006276static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
6277 __u64 start, __u64 len)
6278{
Chris Masonec29ed52011-02-23 16:23:20 -05006279 return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent_fiemap);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006280}
6281
Chris Mason9ebefb182007-06-15 13:50:00 -04006282int btrfs_readpage(struct file *file, struct page *page)
6283{
Chris Masond1310b22008-01-24 16:13:08 -05006284 struct extent_io_tree *tree;
6285 tree = &BTRFS_I(page->mapping->host)->io_tree;
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02006286 return extent_read_full_page(tree, page, btrfs_get_extent, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04006287}
Chris Mason1832a6d2007-12-21 16:27:21 -05006288
Chris Mason39279cc2007-06-12 06:35:45 -04006289static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
6290{
Chris Masond1310b22008-01-24 16:13:08 -05006291 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04006292
6293
6294 if (current->flags & PF_MEMALLOC) {
6295 redirty_page_for_writepage(wbc, page);
6296 unlock_page(page);
6297 return 0;
6298 }
Chris Masond1310b22008-01-24 16:13:08 -05006299 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04006300 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
6301}
Chris Mason39279cc2007-06-12 06:35:45 -04006302
Chris Masonf4219502008-07-22 11:18:09 -04006303int btrfs_writepages(struct address_space *mapping,
6304 struct writeback_control *wbc)
Chris Masonb293f022007-11-01 19:45:34 -04006305{
Chris Masond1310b22008-01-24 16:13:08 -05006306 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05006307
Chris Masond1310b22008-01-24 16:13:08 -05006308 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04006309 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
6310}
6311
Chris Mason3ab2fb52007-11-08 10:59:22 -05006312static int
6313btrfs_readpages(struct file *file, struct address_space *mapping,
6314 struct list_head *pages, unsigned nr_pages)
6315{
Chris Masond1310b22008-01-24 16:13:08 -05006316 struct extent_io_tree *tree;
6317 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05006318 return extent_readpages(tree, mapping, pages, nr_pages,
6319 btrfs_get_extent);
6320}
Chris Masone6dcd2d2008-07-17 12:53:50 -04006321static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04006322{
Chris Masond1310b22008-01-24 16:13:08 -05006323 struct extent_io_tree *tree;
6324 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04006325 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006326
Chris Masond1310b22008-01-24 16:13:08 -05006327 tree = &BTRFS_I(page->mapping->host)->io_tree;
6328 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05006329 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04006330 if (ret == 1) {
6331 ClearPagePrivate(page);
6332 set_page_private(page, 0);
6333 page_cache_release(page);
6334 }
6335 return ret;
6336}
Chris Mason39279cc2007-06-12 06:35:45 -04006337
Chris Masone6dcd2d2008-07-17 12:53:50 -04006338static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
6339{
Chris Mason98509cf2008-09-11 15:51:43 -04006340 if (PageWriteback(page) || PageDirty(page))
6341 return 0;
Yan Zhengb335b002009-02-12 10:06:04 -05006342 return __btrfs_releasepage(page, gfp_flags & GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006343}
6344
Chris Masona52d9a82007-08-27 16:49:44 -04006345static void btrfs_invalidatepage(struct page *page, unsigned long offset)
6346{
Chris Masond1310b22008-01-24 16:13:08 -05006347 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006348 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006349 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006350 u64 page_start = page_offset(page);
6351 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006352
Chris Mason8b62b722009-09-02 16:53:46 -04006353
6354 /*
6355 * we have the page locked, so new writeback can't start,
6356 * and the dirty bit won't be cleared while we are here.
6357 *
6358 * Wait for IO on this page so that we can safely clear
6359 * the PagePrivate2 bit and do ordered accounting
6360 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006361 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04006362
Chris Masond1310b22008-01-24 16:13:08 -05006363 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006364 if (offset) {
6365 btrfs_releasepage(page, GFP_NOFS);
6366 return;
6367 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00006368 lock_extent_bits(tree, page_start, page_end, 0, &cached_state,
6369 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006370 ordered = btrfs_lookup_ordered_extent(page->mapping->host,
6371 page_offset(page));
6372 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04006373 /*
6374 * IO on this page will never be started, so we need
6375 * to account for any ordered extents now
6376 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006377 clear_extent_bit(tree, page_start, page_end,
6378 EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik32c00af2009-10-08 13:34:05 -04006379 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING, 1, 0,
Josef Bacik2ac55d42010-02-03 19:33:23 +00006380 &cached_state, GFP_NOFS);
Chris Mason8b62b722009-09-02 16:53:46 -04006381 /*
6382 * whoever cleared the private bit is responsible
6383 * for the finish_ordered_io
6384 */
6385 if (TestClearPagePrivate2(page)) {
6386 btrfs_finish_ordered_io(page->mapping->host,
6387 page_start, page_end);
6388 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006389 btrfs_put_ordered_extent(ordered);
Josef Bacik2ac55d42010-02-03 19:33:23 +00006390 cached_state = NULL;
6391 lock_extent_bits(tree, page_start, page_end, 0, &cached_state,
6392 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006393 }
6394 clear_extent_bit(tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04006395 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik2ac55d42010-02-03 19:33:23 +00006396 EXTENT_DO_ACCOUNTING, 1, 1, &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006397 __btrfs_releasepage(page, GFP_NOFS);
6398
Chris Mason4a096752008-07-21 10:29:44 -04006399 ClearPageChecked(page);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04006400 if (PagePrivate(page)) {
Chris Mason9ad6b7b2008-04-18 16:11:30 -04006401 ClearPagePrivate(page);
6402 set_page_private(page, 0);
6403 page_cache_release(page);
6404 }
Chris Mason39279cc2007-06-12 06:35:45 -04006405}
6406
Chris Mason9ebefb182007-06-15 13:50:00 -04006407/*
6408 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
6409 * called from a page fault handler when a page is first dirtied. Hence we must
6410 * be careful to check for EOF conditions here. We set the page up correctly
6411 * for a written page which means we get ENOSPC checking when writing into
6412 * holes and correct delalloc and unwritten extent mapping on filesystems that
6413 * support these features.
6414 *
6415 * We are not allowed to take the i_mutex here so we have to play games to
6416 * protect against truncate races as the page could now be beyond EOF. Because
6417 * vmtruncate() writes the inode size before removing pages, once we have the
6418 * page lock we can determine safely if the page is beyond EOF. If it is not
6419 * beyond EOF, then the page is guaranteed safe against truncation until we
6420 * unlock the page.
6421 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07006422int btrfs_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04006423{
Nick Pigginc2ec1752009-03-31 15:23:21 -07006424 struct page *page = vmf->page;
Chris Mason6da6aba2007-12-18 16:15:09 -05006425 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05006426 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006427 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
6428 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006429 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006430 char *kaddr;
6431 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04006432 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05006433 int ret;
Chris Mason9998eb72012-01-25 13:47:40 -05006434 int reserved = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04006435 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006436 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04006437
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006438 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Chris Mason9998eb72012-01-25 13:47:40 -05006439 if (!ret) {
Josef Bacik22c44fe2011-11-30 10:45:38 -05006440 ret = btrfs_update_time(vma->vm_file);
Chris Mason9998eb72012-01-25 13:47:40 -05006441 reserved = 1;
6442 }
Nick Piggin56a76f82009-03-31 15:23:23 -07006443 if (ret) {
6444 if (ret == -ENOMEM)
6445 ret = VM_FAULT_OOM;
6446 else /* -ENOSPC, -EIO, etc */
6447 ret = VM_FAULT_SIGBUS;
Chris Mason9998eb72012-01-25 13:47:40 -05006448 if (reserved)
6449 goto out;
6450 goto out_noreserve;
Nick Piggin56a76f82009-03-31 15:23:23 -07006451 }
Chris Mason1832a6d2007-12-21 16:27:21 -05006452
Nick Piggin56a76f82009-03-31 15:23:23 -07006453 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006454again:
Chris Mason9ebefb182007-06-15 13:50:00 -04006455 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04006456 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006457 page_start = page_offset(page);
6458 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006459
Chris Mason9ebefb182007-06-15 13:50:00 -04006460 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04006461 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04006462 /* page got truncated out from underneath us */
6463 goto out_unlock;
6464 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006465 wait_on_page_writeback(page);
6466
Josef Bacik2ac55d42010-02-03 19:33:23 +00006467 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state,
6468 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006469 set_page_extent_mapped(page);
6470
Chris Masoneb84ae02008-07-17 13:53:27 -04006471 /*
6472 * we can't set the delalloc bits if there are pending ordered
6473 * extents. Drop our locks and wait for them to finish
6474 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006475 ordered = btrfs_lookup_ordered_extent(inode, page_start);
6476 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006477 unlock_extent_cached(io_tree, page_start, page_end,
6478 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006479 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04006480 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006481 btrfs_put_ordered_extent(ordered);
6482 goto again;
6483 }
6484
Josef Bacikfbf19082009-10-01 17:10:23 -04006485 /*
6486 * XXX - page_mkwrite gets called every time the page is dirtied, even
6487 * if it was already dirty, so for space accounting reasons we need to
6488 * clear any delalloc bits for the range we are fixing to save. There
6489 * is probably a better way to do this, but for now keep consistent with
6490 * prepare_pages in the normal write path.
6491 */
Josef Bacik2ac55d42010-02-03 19:33:23 +00006492 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04006493 EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00006494 0, 0, &cached_state, GFP_NOFS);
Josef Bacikfbf19082009-10-01 17:10:23 -04006495
Josef Bacik2ac55d42010-02-03 19:33:23 +00006496 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
6497 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006498 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006499 unlock_extent_cached(io_tree, page_start, page_end,
6500 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006501 ret = VM_FAULT_SIGBUS;
6502 goto out_unlock;
6503 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006504 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04006505
6506 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04006507 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04006508 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04006509 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04006510 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04006511
Chris Masone6dcd2d2008-07-17 12:53:50 -04006512 if (zero_start != PAGE_CACHE_SIZE) {
6513 kaddr = kmap(page);
6514 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
6515 flush_dcache_page(page);
6516 kunmap(page);
6517 }
Chris Mason247e7432008-07-17 12:53:51 -04006518 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006519 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04006520 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04006521
Chris Mason257c62e2009-10-13 13:21:08 -04006522 BTRFS_I(inode)->last_trans = root->fs_info->generation;
6523 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
6524
Josef Bacik2ac55d42010-02-03 19:33:23 +00006525 unlock_extent_cached(io_tree, page_start, page_end, &cached_state, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04006526
6527out_unlock:
Chris Mason50a9b212009-09-11 12:33:12 -04006528 if (!ret)
6529 return VM_FAULT_LOCKED;
Chris Mason9ebefb182007-06-15 13:50:00 -04006530 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05006531out:
Josef Bacikec39e182012-01-12 19:10:12 -05006532 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason9998eb72012-01-25 13:47:40 -05006533out_noreserve:
Chris Mason9ebefb182007-06-15 13:50:00 -04006534 return ret;
6535}
6536
Josef Bacika41ad392011-01-31 15:30:16 -05006537static int btrfs_truncate(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04006538{
6539 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikfcb80c22011-05-03 10:40:22 -04006540 struct btrfs_block_rsv *rsv;
Chris Mason39279cc2007-06-12 06:35:45 -04006541 int ret;
Josef Bacik3893e332011-01-31 16:03:11 -05006542 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006543 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04006544 unsigned long nr;
Chris Masondbe674a2008-07-17 12:54:05 -04006545 u64 mask = root->sectorsize - 1;
Josef Bacik07127182011-08-19 10:29:59 -04006546 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04006547
Josef Bacik5d5e1032009-10-13 16:46:49 -04006548 ret = btrfs_truncate_page(inode->i_mapping, inode->i_size);
6549 if (ret)
Josef Bacika41ad392011-01-31 15:30:16 -05006550 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00006551
Chris Mason4a096752008-07-21 10:29:44 -04006552 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
Yan, Zheng80825102009-11-12 09:35:36 +00006553 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006554
Josef Bacikfcb80c22011-05-03 10:40:22 -04006555 /*
6556 * Yes ladies and gentelment, this is indeed ugly. The fact is we have
6557 * 3 things going on here
6558 *
6559 * 1) We need to reserve space for our orphan item and the space to
6560 * delete our orphan item. Lord knows we don't want to have a dangling
6561 * orphan item because we didn't reserve space to remove it.
6562 *
6563 * 2) We need to reserve space to update our inode.
6564 *
6565 * 3) We need to have something to cache all the space that is going to
6566 * be free'd up by the truncate operation, but also have some slack
6567 * space reserved in case it uses space during the truncate (thank you
6568 * very much snapshotting).
6569 *
6570 * And we need these to all be seperate. The fact is we can use alot of
6571 * space doing the truncate, and we have no earthly idea how much space
6572 * we will use, so we need the truncate reservation to be seperate so it
6573 * doesn't end up using space reserved for updating the inode or
6574 * removing the orphan item. We also need to be able to stop the
6575 * transaction and start a new one, which means we need to be able to
6576 * update the inode several times, and we have no idea of knowing how
6577 * many times that will be, so we can't just reserve 1 item for the
6578 * entirety of the opration, so that has to be done seperately as well.
6579 * Then there is the orphan item, which does indeed need to be held on
6580 * to for the whole operation, and we need nobody to touch this reserved
6581 * space except the orphan code.
6582 *
6583 * So that leaves us with
6584 *
6585 * 1) root->orphan_block_rsv - for the orphan deletion.
6586 * 2) rsv - for the truncate reservation, which we will steal from the
6587 * transaction reservation.
6588 * 3) fs_info->trans_block_rsv - this will have 1 items worth left for
6589 * updating the inode.
6590 */
6591 rsv = btrfs_alloc_block_rsv(root);
6592 if (!rsv)
6593 return -ENOMEM;
Josef Bacik4a338542011-08-29 11:01:31 -04006594 rsv->size = min_size;
Josef Bacikf0cd8462011-03-04 14:37:08 -05006595
Josef Bacik907cbce2011-08-08 13:46:15 -04006596 /*
Josef Bacik07127182011-08-19 10:29:59 -04006597 * 1 for the truncate slack space
Josef Bacik907cbce2011-08-08 13:46:15 -04006598 * 1 for the orphan item we're going to add
6599 * 1 for the orphan item deletion
6600 * 1 for updating the inode.
6601 */
Josef Bacikfcb80c22011-05-03 10:40:22 -04006602 trans = btrfs_start_transaction(root, 4);
6603 if (IS_ERR(trans)) {
6604 err = PTR_ERR(trans);
6605 goto out;
6606 }
Josef Bacikf0cd8462011-03-04 14:37:08 -05006607
Josef Bacik907cbce2011-08-08 13:46:15 -04006608 /* Migrate the slack space for the truncate to our reserve */
6609 ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv, rsv,
6610 min_size);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006611 BUG_ON(ret);
Josef Bacikf0cd8462011-03-04 14:37:08 -05006612
6613 ret = btrfs_orphan_add(trans, inode);
6614 if (ret) {
6615 btrfs_end_transaction(trans, root);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006616 goto out;
Josef Bacikf0cd8462011-03-04 14:37:08 -05006617 }
6618
Chris Mason5a3f23d2009-03-31 13:27:11 -04006619 /*
6620 * setattr is responsible for setting the ordered_data_close flag,
6621 * but that is only tested during the last file release. That
6622 * could happen well after the next commit, leaving a great big
6623 * window where new writes may get lost if someone chooses to write
6624 * to this file after truncating to zero
6625 *
6626 * The inode doesn't have any dirty data here, and so if we commit
6627 * this is a noop. If someone immediately starts writing to the inode
6628 * it is very likely we'll catch some of their writes in this
6629 * transaction, and the commit will find this file on the ordered
6630 * data list with good things to send down.
6631 *
6632 * This is a best effort solution, there is still a window where
6633 * using truncate to replace the contents of the file will
6634 * end up with a zero length file after a crash.
6635 */
6636 if (inode->i_size == 0 && BTRFS_I(inode)->ordered_data_close)
6637 btrfs_add_ordered_operation(trans, root, inode);
6638
Yan, Zheng80825102009-11-12 09:35:36 +00006639 while (1) {
Josef Bacik36ba0222011-10-18 12:15:48 -04006640 ret = btrfs_block_rsv_refill(root, rsv, min_size);
Josef Bacik907cbce2011-08-08 13:46:15 -04006641 if (ret) {
6642 /*
6643 * This can only happen with the original transaction we
6644 * started above, every other time we shouldn't have a
6645 * transaction started yet.
6646 */
6647 if (ret == -EAGAIN)
6648 goto end_trans;
6649 err = ret;
6650 break;
6651 }
6652
Yan, Zhengd68fc572010-05-16 10:49:58 -04006653 if (!trans) {
Josef Bacik907cbce2011-08-08 13:46:15 -04006654 /* Just need the 1 for updating the inode */
6655 trans = btrfs_start_transaction(root, 1);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006656 if (IS_ERR(trans)) {
Josef Bacik7041ee92011-12-09 13:26:22 -05006657 ret = err = PTR_ERR(trans);
6658 trans = NULL;
6659 break;
Josef Bacikfcb80c22011-05-03 10:40:22 -04006660 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04006661 }
6662
Josef Bacik907cbce2011-08-08 13:46:15 -04006663 trans->block_rsv = rsv;
6664
Yan, Zheng80825102009-11-12 09:35:36 +00006665 ret = btrfs_truncate_inode_items(trans, root, inode,
6666 inode->i_size,
6667 BTRFS_EXTENT_DATA_KEY);
Josef Bacik3893e332011-01-31 16:03:11 -05006668 if (ret != -EAGAIN) {
6669 err = ret;
Yan, Zheng80825102009-11-12 09:35:36 +00006670 break;
Josef Bacik3893e332011-01-31 16:03:11 -05006671 }
Chris Mason39279cc2007-06-12 06:35:45 -04006672
Josef Bacikfcb80c22011-05-03 10:40:22 -04006673 trans->block_rsv = &root->fs_info->trans_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00006674 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05006675 if (ret) {
6676 err = ret;
6677 break;
6678 }
Josef Bacik907cbce2011-08-08 13:46:15 -04006679end_trans:
Yan, Zheng80825102009-11-12 09:35:36 +00006680 nr = trans->blocks_used;
6681 btrfs_end_transaction(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -04006682 trans = NULL;
Yan, Zheng80825102009-11-12 09:35:36 +00006683 btrfs_btree_balance_dirty(root, nr);
Yan, Zheng80825102009-11-12 09:35:36 +00006684 }
6685
6686 if (ret == 0 && inode->i_nlink > 0) {
Josef Bacikfcb80c22011-05-03 10:40:22 -04006687 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00006688 ret = btrfs_orphan_del(trans, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05006689 if (ret)
6690 err = ret;
Josef Bacikded5db92011-03-04 14:09:46 -05006691 } else if (ret && inode->i_nlink > 0) {
6692 /*
6693 * Failed to do the truncate, remove us from the in memory
6694 * orphan list.
6695 */
6696 ret = btrfs_orphan_del(NULL, inode);
Yan, Zheng80825102009-11-12 09:35:36 +00006697 }
6698
Chris Mason917c16b2011-11-08 14:49:59 -05006699 if (trans) {
6700 trans->block_rsv = &root->fs_info->trans_block_rsv;
6701 ret = btrfs_update_inode(trans, root, inode);
6702 if (ret && !err)
6703 err = ret;
Josef Bacik7b128762008-07-24 12:17:14 -04006704
Chris Mason917c16b2011-11-08 14:49:59 -05006705 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05006706 ret = btrfs_end_transaction(trans, root);
Chris Mason917c16b2011-11-08 14:49:59 -05006707 btrfs_btree_balance_dirty(root, nr);
6708 }
Josef Bacikfcb80c22011-05-03 10:40:22 -04006709
6710out:
6711 btrfs_free_block_rsv(root, rsv);
6712
Josef Bacik3893e332011-01-31 16:03:11 -05006713 if (ret && !err)
6714 err = ret;
Josef Bacika41ad392011-01-31 15:30:16 -05006715
Josef Bacik3893e332011-01-31 16:03:11 -05006716 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04006717}
6718
Sven Wegener3b963622008-06-09 21:57:42 -04006719/*
Chris Masond352ac62008-09-29 15:18:18 -04006720 * create a new subvolume directory/inode (helper for the ioctl).
6721 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05006722int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04006723 struct btrfs_root *new_root, u64 new_dirid)
Chris Mason39279cc2007-06-12 06:35:45 -04006724{
Chris Mason39279cc2007-06-12 06:35:45 -04006725 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04006726 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006727 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006728
Florian Albrechtskirchinger12fc9d02012-02-10 22:15:54 +01006729 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2,
6730 new_dirid, new_dirid,
6731 S_IFDIR | (~current_umask() & S_IRWXUGO),
6732 &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04006733 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04006734 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006735 inode->i_op = &btrfs_dir_inode_operations;
6736 inode->i_fop = &btrfs_dir_file_operations;
6737
Miklos Szeredibfe86842011-10-28 14:13:29 +02006738 set_nlink(inode, 1);
Chris Masondbe674a2008-07-17 12:54:05 -04006739 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04006740
Yan, Zheng76dda932009-09-21 16:00:26 -04006741 err = btrfs_update_inode(trans, new_root, inode);
6742 BUG_ON(err);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04006743
Yan, Zheng76dda932009-09-21 16:00:26 -04006744 iput(inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04006745 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006746}
6747
Chris Mason39279cc2007-06-12 06:35:45 -04006748struct inode *btrfs_alloc_inode(struct super_block *sb)
6749{
6750 struct btrfs_inode *ei;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006751 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04006752
6753 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
6754 if (!ei)
6755 return NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006756
6757 ei->root = NULL;
6758 ei->space_info = NULL;
6759 ei->generation = 0;
6760 ei->sequence = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04006761 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04006762 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04006763 ei->logged_trans = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006764 ei->delalloc_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006765 ei->disk_i_size = 0;
6766 ei->flags = 0;
Josef Bacik7709cde2011-08-04 10:25:02 -04006767 ei->csum_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006768 ei->index_cnt = (u64)-1;
6769 ei->last_unlink_trans = 0;
6770
Josef Bacik9e0baf62011-07-15 15:16:44 +00006771 spin_lock_init(&ei->lock);
6772 ei->outstanding_extents = 0;
6773 ei->reserved_extents = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006774
6775 ei->ordered_data_close = 0;
Yan, Zhengd68fc572010-05-16 10:49:58 -04006776 ei->orphan_meta_reserved = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006777 ei->dummy_inode = 0;
Chris Mason4cb53002011-05-24 15:35:30 -04006778 ei->in_defrag = 0;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05006779 ei->delalloc_meta_reserved = 0;
Li Zefan261507a02010-12-17 14:21:50 +08006780 ei->force_compress = BTRFS_COMPRESS_NONE;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006781
Miao Xie16cdcec2011-04-22 18:12:22 +08006782 ei->delayed_node = NULL;
6783
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006784 inode = &ei->vfs_inode;
David Sterbaa8067e02011-04-21 00:34:43 +02006785 extent_map_tree_init(&ei->extent_tree);
David Sterbaf993c882011-04-20 23:35:57 +02006786 extent_io_tree_init(&ei->io_tree, &inode->i_data);
6787 extent_io_tree_init(&ei->io_failure_tree, &inode->i_data);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006788 mutex_init(&ei->log_mutex);
Josef Bacikf2486792012-01-13 12:09:22 -05006789 mutex_init(&ei->delalloc_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006790 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Josef Bacik7b128762008-07-24 12:17:14 -04006791 INIT_LIST_HEAD(&ei->i_orphan);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006792 INIT_LIST_HEAD(&ei->delalloc_inodes);
Chris Mason5a3f23d2009-03-31 13:27:11 -04006793 INIT_LIST_HEAD(&ei->ordered_operations);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006794 RB_CLEAR_NODE(&ei->rb_node);
6795
6796 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04006797}
6798
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11006799static void btrfs_i_callback(struct rcu_head *head)
6800{
6801 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11006802 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
6803}
6804
Chris Mason39279cc2007-06-12 06:35:45 -04006805void btrfs_destroy_inode(struct inode *inode)
6806{
Chris Masone6dcd2d2008-07-17 12:53:50 -04006807 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006808 struct btrfs_root *root = BTRFS_I(inode)->root;
6809
Chris Mason39279cc2007-06-12 06:35:45 -04006810 WARN_ON(!list_empty(&inode->i_dentry));
6811 WARN_ON(inode->i_data.nrpages);
Josef Bacik9e0baf62011-07-15 15:16:44 +00006812 WARN_ON(BTRFS_I(inode)->outstanding_extents);
6813 WARN_ON(BTRFS_I(inode)->reserved_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04006814 WARN_ON(BTRFS_I(inode)->delalloc_bytes);
6815 WARN_ON(BTRFS_I(inode)->csum_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -04006816
Chris Mason5a3f23d2009-03-31 13:27:11 -04006817 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05006818 * This can happen where we create an inode, but somebody else also
6819 * created the same inode and we need to destroy the one we already
6820 * created.
6821 */
6822 if (!root)
6823 goto free;
6824
6825 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04006826 * Make sure we're properly removed from the ordered operation
6827 * lists.
6828 */
6829 smp_mb();
6830 if (!list_empty(&BTRFS_I(inode)->ordered_operations)) {
6831 spin_lock(&root->fs_info->ordered_extent_lock);
6832 list_del_init(&BTRFS_I(inode)->ordered_operations);
6833 spin_unlock(&root->fs_info->ordered_extent_lock);
6834 }
6835
Yan, Zhengd68fc572010-05-16 10:49:58 -04006836 spin_lock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04006837 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
Li Zefan33345d012011-04-20 10:31:50 +08006838 printk(KERN_INFO "BTRFS: inode %llu still on the orphan list\n",
6839 (unsigned long long)btrfs_ino(inode));
Yan, Zheng80825102009-11-12 09:35:36 +00006840 list_del_init(&BTRFS_I(inode)->i_orphan);
Josef Bacik7b128762008-07-24 12:17:14 -04006841 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04006842 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04006843
Chris Masond3977122009-01-05 21:25:51 -05006844 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04006845 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
6846 if (!ordered)
6847 break;
6848 else {
Chris Masond3977122009-01-05 21:25:51 -05006849 printk(KERN_ERR "btrfs found ordered "
6850 "extent %llu %llu on inode cleanup\n",
6851 (unsigned long long)ordered->file_offset,
6852 (unsigned long long)ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006853 btrfs_remove_ordered_extent(inode, ordered);
6854 btrfs_put_ordered_extent(ordered);
6855 btrfs_put_ordered_extent(ordered);
6856 }
6857 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006858 inode_tree_del(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04006859 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
Josef Bacika6dbd422009-11-11 15:53:34 -05006860free:
Miao Xie16cdcec2011-04-22 18:12:22 +08006861 btrfs_remove_delayed_node(inode);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11006862 call_rcu(&inode->i_rcu, btrfs_i_callback);
Chris Mason39279cc2007-06-12 06:35:45 -04006863}
6864
Al Viro45321ac2010-06-07 13:43:19 -04006865int btrfs_drop_inode(struct inode *inode)
Yan, Zheng76dda932009-09-21 16:00:26 -04006866{
6867 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro45321ac2010-06-07 13:43:19 -04006868
Josef Bacik0af3d002010-06-21 14:48:16 -04006869 if (btrfs_root_refs(&root->root_item) == 0 &&
Chris Mason2cf85722011-07-26 15:35:09 -04006870 !btrfs_is_free_space_inode(root, inode))
Al Viro45321ac2010-06-07 13:43:19 -04006871 return 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04006872 else
Al Viro45321ac2010-06-07 13:43:19 -04006873 return generic_drop_inode(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04006874}
6875
Sven Wegener0ee0fda2008-07-30 16:54:26 -04006876static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04006877{
6878 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
6879
6880 inode_init_once(&ei->vfs_inode);
6881}
6882
6883void btrfs_destroy_cachep(void)
6884{
6885 if (btrfs_inode_cachep)
6886 kmem_cache_destroy(btrfs_inode_cachep);
6887 if (btrfs_trans_handle_cachep)
6888 kmem_cache_destroy(btrfs_trans_handle_cachep);
6889 if (btrfs_transaction_cachep)
6890 kmem_cache_destroy(btrfs_transaction_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04006891 if (btrfs_path_cachep)
6892 kmem_cache_destroy(btrfs_path_cachep);
Josef Bacikdc89e982011-01-28 17:05:48 -05006893 if (btrfs_free_space_cachep)
6894 kmem_cache_destroy(btrfs_free_space_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04006895}
6896
6897int btrfs_init_cachep(void)
6898{
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006899 btrfs_inode_cachep = kmem_cache_create("btrfs_inode_cache",
6900 sizeof(struct btrfs_inode), 0,
6901 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04006902 if (!btrfs_inode_cachep)
6903 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006904
6905 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle_cache",
6906 sizeof(struct btrfs_trans_handle), 0,
6907 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006908 if (!btrfs_trans_handle_cachep)
6909 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006910
6911 btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction_cache",
6912 sizeof(struct btrfs_transaction), 0,
6913 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006914 if (!btrfs_transaction_cachep)
6915 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006916
6917 btrfs_path_cachep = kmem_cache_create("btrfs_path_cache",
6918 sizeof(struct btrfs_path), 0,
6919 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006920 if (!btrfs_path_cachep)
6921 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006922
Josef Bacikdc89e982011-01-28 17:05:48 -05006923 btrfs_free_space_cachep = kmem_cache_create("btrfs_free_space_cache",
6924 sizeof(struct btrfs_free_space), 0,
6925 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
6926 if (!btrfs_free_space_cachep)
6927 goto fail;
6928
Chris Mason39279cc2007-06-12 06:35:45 -04006929 return 0;
6930fail:
6931 btrfs_destroy_cachep();
6932 return -ENOMEM;
6933}
6934
6935static int btrfs_getattr(struct vfsmount *mnt,
6936 struct dentry *dentry, struct kstat *stat)
6937{
6938 struct inode *inode = dentry->d_inode;
David Sterbafadc0d82011-11-20 07:33:38 -05006939 u32 blocksize = inode->i_sb->s_blocksize;
6940
Chris Mason39279cc2007-06-12 06:35:45 -04006941 generic_fillattr(inode, stat);
Al Viro0ee5dc62011-07-07 15:44:25 -04006942 stat->dev = BTRFS_I(inode)->root->anon_dev;
Chris Masond6667462008-01-03 14:51:00 -05006943 stat->blksize = PAGE_CACHE_SIZE;
David Sterbafadc0d82011-11-20 07:33:38 -05006944 stat->blocks = (ALIGN(inode_get_bytes(inode), blocksize) +
6945 ALIGN(BTRFS_I(inode)->delalloc_bytes, blocksize)) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04006946 return 0;
6947}
6948
Liu Bo75e7cb72011-03-22 10:12:20 +00006949/*
6950 * If a file is moved, it will inherit the cow and compression flags of the new
6951 * directory.
6952 */
6953static void fixup_inode_flags(struct inode *dir, struct inode *inode)
6954{
6955 struct btrfs_inode *b_dir = BTRFS_I(dir);
6956 struct btrfs_inode *b_inode = BTRFS_I(inode);
6957
6958 if (b_dir->flags & BTRFS_INODE_NODATACOW)
6959 b_inode->flags |= BTRFS_INODE_NODATACOW;
6960 else
6961 b_inode->flags &= ~BTRFS_INODE_NODATACOW;
6962
6963 if (b_dir->flags & BTRFS_INODE_COMPRESS)
6964 b_inode->flags |= BTRFS_INODE_COMPRESS;
6965 else
6966 b_inode->flags &= ~BTRFS_INODE_COMPRESS;
6967}
6968
Chris Masond3977122009-01-05 21:25:51 -05006969static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
6970 struct inode *new_dir, struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04006971{
6972 struct btrfs_trans_handle *trans;
6973 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006974 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04006975 struct inode *new_inode = new_dentry->d_inode;
6976 struct inode *old_inode = old_dentry->d_inode;
6977 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006978 u64 index = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006979 u64 root_objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04006980 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08006981 u64 old_ino = btrfs_ino(old_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006982
Li Zefan33345d012011-04-20 10:31:50 +08006983 if (btrfs_ino(new_dir) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhengf679a842009-09-24 09:17:31 -04006984 return -EPERM;
6985
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006986 /* we only allow rename subvolume link between subvolumes */
Li Zefan33345d012011-04-20 10:31:50 +08006987 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05006988 return -EXDEV;
6989
Li Zefan33345d012011-04-20 10:31:50 +08006990 if (old_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
6991 (new_inode && btrfs_ino(new_inode) == BTRFS_FIRST_FREE_OBJECTID))
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006992 return -ENOTEMPTY;
6993
Chris Mason39279cc2007-06-12 06:35:45 -04006994 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006995 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04006996 return -ENOTEMPTY;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006997 /*
6998 * we're using rename to replace one file with another.
6999 * and the replacement file is large. Start IO on it now so
7000 * we don't add too much work to the end of the transaction
7001 */
Bartlomiej Zolnierkiewicz4baf8c92009-08-07 13:47:08 -04007002 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size &&
Chris Mason5a3f23d2009-03-31 13:27:11 -04007003 old_inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
7004 filemap_flush(old_inode->i_mapping);
7005
Yan, Zheng76dda932009-09-21 16:00:26 -04007006 /* close the racy window with snapshot create/destroy ioctl */
Li Zefan33345d012011-04-20 10:31:50 +08007007 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04007008 down_read(&root->fs_info->subvol_sem);
Yan, Zhenga22285a2010-05-16 10:48:46 -04007009 /*
7010 * We want to reserve the absolute worst case amount of items. So if
7011 * both inodes are subvols and we need to unlink them then that would
7012 * require 4 item modifications, but if they are both normal inodes it
7013 * would require 5 item modifications, so we'll assume their normal
7014 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
7015 * should cover the worst case number of items we'll modify.
7016 */
7017 trans = btrfs_start_transaction(root, 20);
Johann Lombardib44c59a2011-03-31 13:23:47 +00007018 if (IS_ERR(trans)) {
7019 ret = PTR_ERR(trans);
7020 goto out_notrans;
7021 }
Chris Mason5f39d392007-10-15 16:14:19 -04007022
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007023 if (dest != root)
7024 btrfs_record_root_in_trans(trans, dest);
7025
Yan, Zhenga5719522009-09-24 09:17:31 -04007026 ret = btrfs_set_inode_index(new_dir, &index);
7027 if (ret)
7028 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04007029
Li Zefan33345d012011-04-20 10:31:50 +08007030 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007031 /* force full log commit if subvolume involved. */
7032 root->fs_info->last_trans_log_full_commit = trans->transid;
7033 } else {
Yan, Zhenga5719522009-09-24 09:17:31 -04007034 ret = btrfs_insert_inode_ref(trans, dest,
7035 new_dentry->d_name.name,
7036 new_dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08007037 old_ino,
7038 btrfs_ino(new_dir), index);
Yan, Zhenga5719522009-09-24 09:17:31 -04007039 if (ret)
7040 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007041 /*
7042 * this is an ugly little race, but the rename is required
7043 * to make sure that if we crash, the inode is either at the
7044 * old name or the new one. pinning the log transaction lets
7045 * us make sure we don't allow a log commit to come in after
7046 * we unlink the name but before we add the new name back in.
7047 */
7048 btrfs_pin_log_trans(root);
7049 }
Chris Mason12fcfd22009-03-24 10:24:20 -04007050 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04007051 * make sure the inode gets flushed if it is replacing
7052 * something.
7053 */
Li Zefan33345d012011-04-20 10:31:50 +08007054 if (new_inode && new_inode->i_size && S_ISREG(old_inode->i_mode))
Chris Mason5a3f23d2009-03-31 13:27:11 -04007055 btrfs_add_ordered_operation(trans, root, old_inode);
Chris Mason5a3f23d2009-03-31 13:27:11 -04007056
Chris Mason39279cc2007-06-12 06:35:45 -04007057 old_dir->i_ctime = old_dir->i_mtime = ctime;
7058 new_dir->i_ctime = new_dir->i_mtime = ctime;
7059 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04007060
Chris Mason12fcfd22009-03-24 10:24:20 -04007061 if (old_dentry->d_parent != new_dentry->d_parent)
7062 btrfs_record_unlink_dir(trans, old_dir, old_inode, 1);
7063
Li Zefan33345d012011-04-20 10:31:50 +08007064 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007065 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
7066 ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid,
7067 old_dentry->d_name.name,
7068 old_dentry->d_name.len);
7069 } else {
Al Viro92986792011-03-04 17:14:37 +00007070 ret = __btrfs_unlink_inode(trans, root, old_dir,
7071 old_dentry->d_inode,
7072 old_dentry->d_name.name,
7073 old_dentry->d_name.len);
7074 if (!ret)
7075 ret = btrfs_update_inode(trans, root, old_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007076 }
7077 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04007078
7079 if (new_inode) {
7080 new_inode->i_ctime = CURRENT_TIME;
Li Zefan33345d012011-04-20 10:31:50 +08007081 if (unlikely(btrfs_ino(new_inode) ==
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007082 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
7083 root_objectid = BTRFS_I(new_inode)->location.objectid;
7084 ret = btrfs_unlink_subvol(trans, dest, new_dir,
7085 root_objectid,
7086 new_dentry->d_name.name,
7087 new_dentry->d_name.len);
7088 BUG_ON(new_inode->i_nlink == 0);
7089 } else {
7090 ret = btrfs_unlink_inode(trans, dest, new_dir,
7091 new_dentry->d_inode,
7092 new_dentry->d_name.name,
7093 new_dentry->d_name.len);
7094 }
7095 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04007096 if (new_inode->i_nlink == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04007097 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007098 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04007099 }
Chris Mason39279cc2007-06-12 06:35:45 -04007100 }
Josef Bacikaec74772008-07-24 12:12:38 -04007101
Liu Bo75e7cb72011-03-22 10:12:20 +00007102 fixup_inode_flags(new_dir, old_inode);
7103
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007104 ret = btrfs_add_link(trans, new_dir, old_inode,
7105 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04007106 new_dentry->d_name.len, 0, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007107 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04007108
Li Zefan33345d012011-04-20 10:31:50 +08007109 if (old_ino != BTRFS_FIRST_FREE_OBJECTID) {
Al Viro10d9f302011-07-16 23:09:10 -04007110 struct dentry *parent = new_dentry->d_parent;
Josef Bacik6a912212010-11-20 09:48:00 +00007111 btrfs_log_new_name(trans, old_inode, old_dir, parent);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007112 btrfs_end_log_trans(root);
7113 }
Chris Mason39279cc2007-06-12 06:35:45 -04007114out_fail:
Josef Bacik7ad85bb2012-01-12 19:10:12 -05007115 btrfs_end_transaction(trans, root);
Johann Lombardib44c59a2011-03-31 13:23:47 +00007116out_notrans:
Li Zefan33345d012011-04-20 10:31:50 +08007117 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04007118 up_read(&root->fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04007119
Chris Mason39279cc2007-06-12 06:35:45 -04007120 return ret;
7121}
7122
Chris Masond352ac62008-09-29 15:18:18 -04007123/*
7124 * some fairly slow code that needs optimization. This walks the list
7125 * of all the inodes with pending delalloc and forces them to disk.
7126 */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00007127int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput)
Chris Masonea8c2812008-08-04 23:17:27 -04007128{
7129 struct list_head *head = &root->fs_info->delalloc_inodes;
7130 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007131 struct inode *inode;
Chris Masonea8c2812008-08-04 23:17:27 -04007132
Yan Zhengc146afa2008-11-12 14:34:12 -05007133 if (root->fs_info->sb->s_flags & MS_RDONLY)
7134 return -EROFS;
7135
Chris Mason75eff682008-12-15 15:54:40 -05007136 spin_lock(&root->fs_info->delalloc_lock);
Chris Masond3977122009-01-05 21:25:51 -05007137 while (!list_empty(head)) {
Chris Masonea8c2812008-08-04 23:17:27 -04007138 binode = list_entry(head->next, struct btrfs_inode,
7139 delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007140 inode = igrab(&binode->vfs_inode);
7141 if (!inode)
7142 list_del_init(&binode->delalloc_inodes);
Chris Mason75eff682008-12-15 15:54:40 -05007143 spin_unlock(&root->fs_info->delalloc_lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007144 if (inode) {
Chris Mason8c8bee12008-09-29 11:19:10 -04007145 filemap_flush(inode->i_mapping);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00007146 if (delay_iput)
7147 btrfs_add_delayed_iput(inode);
7148 else
7149 iput(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007150 }
7151 cond_resched();
Chris Mason75eff682008-12-15 15:54:40 -05007152 spin_lock(&root->fs_info->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04007153 }
Chris Mason75eff682008-12-15 15:54:40 -05007154 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -04007155
7156 /* the filemap_flush will queue IO into the worker threads, but
7157 * we have to make sure the IO is actually started and that
7158 * ordered extents get created before we return
7159 */
7160 atomic_inc(&root->fs_info->async_submit_draining);
Chris Masond3977122009-01-05 21:25:51 -05007161 while (atomic_read(&root->fs_info->nr_async_submits) ||
Chris Mason771ed682008-11-06 22:02:51 -05007162 atomic_read(&root->fs_info->async_delalloc_pages)) {
Chris Mason8c8bee12008-09-29 11:19:10 -04007163 wait_event(root->fs_info->async_submit_wait,
Chris Mason771ed682008-11-06 22:02:51 -05007164 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
7165 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee12008-09-29 11:19:10 -04007166 }
7167 atomic_dec(&root->fs_info->async_submit_draining);
Chris Masonea8c2812008-08-04 23:17:27 -04007168 return 0;
7169}
7170
Chris Mason39279cc2007-06-12 06:35:45 -04007171static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
7172 const char *symname)
7173{
7174 struct btrfs_trans_handle *trans;
7175 struct btrfs_root *root = BTRFS_I(dir)->root;
7176 struct btrfs_path *path;
7177 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05007178 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04007179 int err;
7180 int drop_inode = 0;
7181 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04007182 u64 index = 0 ;
Chris Mason39279cc2007-06-12 06:35:45 -04007183 int name_len;
7184 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04007185 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04007186 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04007187 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05007188 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007189
7190 name_len = strlen(symname) + 1;
7191 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
7192 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05007193
Josef Bacik9ed74f22009-09-11 16:12:44 -04007194 /*
7195 * 2 items for inode item and ref
7196 * 2 items for dir items
7197 * 1 item for xattr if selinux is on
7198 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04007199 trans = btrfs_start_transaction(root, 5);
7200 if (IS_ERR(trans))
7201 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05007202
Li Zefan581bb052011-04-20 10:06:11 +08007203 err = btrfs_find_free_ino(root, &objectid);
7204 if (err)
7205 goto out_unlock;
7206
Josef Bacikaec74772008-07-24 12:12:38 -04007207 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08007208 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04007209 S_IFLNK|S_IRWXUGO, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04007210 if (IS_ERR(inode)) {
7211 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007212 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04007213 }
Chris Mason39279cc2007-06-12 06:35:45 -04007214
Eric Paris2a7dba32011-02-01 11:05:39 -05007215 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04007216 if (err) {
7217 drop_inode = 1;
7218 goto out_unlock;
7219 }
7220
Casey Schauflerad19db72011-12-15 10:09:07 -05007221 /*
7222 * If the active LSM wants to access the inode during
7223 * d_instantiate it needs these. Smack checks to see
7224 * if the filesystem supports xattrs by looking at the
7225 * ops vector.
7226 */
7227 inode->i_fop = &btrfs_file_operations;
7228 inode->i_op = &btrfs_file_inode_operations;
7229
Josef Bacika1b075d2010-11-19 20:36:11 +00007230 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04007231 if (err)
7232 drop_inode = 1;
7233 else {
7234 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04007235 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05007236 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04007237 }
Chris Mason39279cc2007-06-12 06:35:45 -04007238 if (drop_inode)
7239 goto out_unlock;
7240
7241 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07007242 if (!path) {
7243 err = -ENOMEM;
7244 drop_inode = 1;
7245 goto out_unlock;
7246 }
Li Zefan33345d012011-04-20 10:31:50 +08007247 key.objectid = btrfs_ino(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007248 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007249 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
7250 datasize = btrfs_file_extent_calc_inline_size(name_len);
7251 err = btrfs_insert_empty_item(trans, root, path, &key,
7252 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04007253 if (err) {
7254 drop_inode = 1;
Julia Lawallb0839162011-05-14 07:10:51 +00007255 btrfs_free_path(path);
Chris Mason54aa1f42007-06-22 14:16:25 -04007256 goto out_unlock;
7257 }
Chris Mason5f39d392007-10-15 16:14:19 -04007258 leaf = path->nodes[0];
7259 ei = btrfs_item_ptr(leaf, path->slots[0],
7260 struct btrfs_file_extent_item);
7261 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
7262 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04007263 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -04007264 btrfs_set_file_extent_encryption(leaf, ei, 0);
7265 btrfs_set_file_extent_compression(leaf, ei, 0);
7266 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
7267 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
7268
Chris Mason39279cc2007-06-12 06:35:45 -04007269 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04007270 write_extent_buffer(leaf, symname, ptr, name_len);
7271 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04007272 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04007273
Chris Mason39279cc2007-06-12 06:35:45 -04007274 inode->i_op = &btrfs_symlink_inode_operations;
7275 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04007276 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Yan Zhengd899e052008-10-30 14:25:28 -04007277 inode_set_bytes(inode, name_len);
Chris Masondbe674a2008-07-17 12:54:05 -04007278 btrfs_i_size_write(inode, name_len - 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04007279 err = btrfs_update_inode(trans, root, inode);
7280 if (err)
7281 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04007282
7283out_unlock:
Al Viro08c422c2011-12-23 07:58:13 -05007284 if (!err)
7285 d_instantiate(dentry, inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04007286 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05007287 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04007288 if (drop_inode) {
7289 inode_dec_link_count(inode);
7290 iput(inode);
7291 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04007292 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04007293 return err;
7294}
Chris Mason16432982008-04-10 10:23:21 -04007295
Josef Bacik0af3d002010-06-21 14:48:16 -04007296static int __btrfs_prealloc_file_range(struct inode *inode, int mode,
7297 u64 start, u64 num_bytes, u64 min_size,
7298 loff_t actual_len, u64 *alloc_hint,
7299 struct btrfs_trans_handle *trans)
Yan Zhengd899e052008-10-30 14:25:28 -04007300{
Yan Zhengd899e052008-10-30 14:25:28 -04007301 struct btrfs_root *root = BTRFS_I(inode)->root;
7302 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -04007303 u64 cur_offset = start;
Josef Bacik55a61d12010-11-22 18:50:32 +00007304 u64 i_size;
Yan Zhengd899e052008-10-30 14:25:28 -04007305 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04007306 bool own_trans = true;
Yan Zhengd899e052008-10-30 14:25:28 -04007307
Josef Bacik0af3d002010-06-21 14:48:16 -04007308 if (trans)
7309 own_trans = false;
Yan Zhengd899e052008-10-30 14:25:28 -04007310 while (num_bytes > 0) {
Josef Bacik0af3d002010-06-21 14:48:16 -04007311 if (own_trans) {
7312 trans = btrfs_start_transaction(root, 3);
7313 if (IS_ERR(trans)) {
7314 ret = PTR_ERR(trans);
7315 break;
7316 }
Yan Zhengd899e052008-10-30 14:25:28 -04007317 }
Yan, Zheng5a303d52009-11-12 09:34:52 +00007318
Yan, Zhengefa56462010-05-16 10:49:59 -04007319 ret = btrfs_reserve_extent(trans, root, num_bytes, min_size,
7320 0, *alloc_hint, (u64)-1, &ins, 1);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007321 if (ret) {
Josef Bacik0af3d002010-06-21 14:48:16 -04007322 if (own_trans)
7323 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04007324 break;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007325 }
7326
Yan Zhengd899e052008-10-30 14:25:28 -04007327 ret = insert_reserved_file_extent(trans, inode,
7328 cur_offset, ins.objectid,
7329 ins.offset, ins.offset,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00007330 ins.offset, 0, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04007331 BTRFS_FILE_EXTENT_PREALLOC);
7332 BUG_ON(ret);
Chris Masona1ed8352009-09-11 12:27:37 -04007333 btrfs_drop_extent_cache(inode, cur_offset,
7334 cur_offset + ins.offset -1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007335
Yan Zhengd899e052008-10-30 14:25:28 -04007336 num_bytes -= ins.offset;
7337 cur_offset += ins.offset;
Yan, Zhengefa56462010-05-16 10:49:59 -04007338 *alloc_hint = ins.objectid + ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007339
Yan Zhengd899e052008-10-30 14:25:28 -04007340 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +02007341 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -04007342 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
Yan, Zhengefa56462010-05-16 10:49:59 -04007343 (actual_len > inode->i_size) &&
7344 (cur_offset > inode->i_size)) {
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00007345 if (cur_offset > actual_len)
Josef Bacik55a61d12010-11-22 18:50:32 +00007346 i_size = actual_len;
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00007347 else
Josef Bacik55a61d12010-11-22 18:50:32 +00007348 i_size = cur_offset;
7349 i_size_write(inode, i_size);
7350 btrfs_ordered_update_i_size(inode, i_size, NULL);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007351 }
7352
Yan Zhengd899e052008-10-30 14:25:28 -04007353 ret = btrfs_update_inode(trans, root, inode);
7354 BUG_ON(ret);
Yan Zhengd899e052008-10-30 14:25:28 -04007355
Josef Bacik0af3d002010-06-21 14:48:16 -04007356 if (own_trans)
7357 btrfs_end_transaction(trans, root);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007358 }
Yan Zhengd899e052008-10-30 14:25:28 -04007359 return ret;
7360}
7361
Josef Bacik0af3d002010-06-21 14:48:16 -04007362int btrfs_prealloc_file_range(struct inode *inode, int mode,
7363 u64 start, u64 num_bytes, u64 min_size,
7364 loff_t actual_len, u64 *alloc_hint)
7365{
7366 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
7367 min_size, actual_len, alloc_hint,
7368 NULL);
7369}
7370
7371int btrfs_prealloc_file_range_trans(struct inode *inode,
7372 struct btrfs_trans_handle *trans, int mode,
7373 u64 start, u64 num_bytes, u64 min_size,
7374 loff_t actual_len, u64 *alloc_hint)
7375{
7376 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
7377 min_size, actual_len, alloc_hint, trans);
7378}
7379
Chris Masone6dcd2d2008-07-17 12:53:50 -04007380static int btrfs_set_page_dirty(struct page *page)
7381{
Chris Masone6dcd2d2008-07-17 12:53:50 -04007382 return __set_page_dirty_nobuffers(page);
7383}
7384
Al Viro10556cb2011-06-20 19:28:19 -04007385static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -05007386{
Li Zefanb83cc962010-12-20 16:04:08 +08007387 struct btrfs_root *root = BTRFS_I(inode)->root;
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +00007388 umode_t mode = inode->i_mode;
Li Zefanb83cc962010-12-20 16:04:08 +08007389
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +00007390 if (mask & MAY_WRITE &&
7391 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) {
7392 if (btrfs_root_readonly(root))
7393 return -EROFS;
7394 if (BTRFS_I(inode)->flags & BTRFS_INODE_READONLY)
7395 return -EACCES;
7396 }
Al Viro2830ba72011-06-20 19:16:29 -04007397 return generic_permission(inode, mask);
Yanfdebe2b2008-01-14 13:26:08 -05007398}
Chris Mason39279cc2007-06-12 06:35:45 -04007399
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007400static const struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -05007401 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -04007402 .lookup = btrfs_lookup,
7403 .create = btrfs_create,
7404 .unlink = btrfs_unlink,
7405 .link = btrfs_link,
7406 .mkdir = btrfs_mkdir,
7407 .rmdir = btrfs_rmdir,
7408 .rename = btrfs_rename,
7409 .symlink = btrfs_symlink,
7410 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04007411 .mknod = btrfs_mknod,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007412 .setxattr = btrfs_setxattr,
7413 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05007414 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007415 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05007416 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007417 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04007418};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007419static const struct inode_operations btrfs_dir_ro_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007420 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05007421 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007422 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04007423};
Yan, Zheng76dda932009-09-21 16:00:26 -04007424
Alexey Dobriyan828c0952009-10-01 15:43:56 -07007425static const struct file_operations btrfs_dir_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007426 .llseek = generic_file_llseek,
7427 .read = generic_read_dir,
David Woodhousecbdf5a22008-08-06 19:42:33 +01007428 .readdir = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04007429 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04007430#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04007431 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04007432#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04007433 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -04007434 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -04007435};
7436
Chris Masond1310b22008-01-24 16:13:08 -05007437static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04007438 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05007439 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04007440 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04007441 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04007442 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04007443 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05007444 .set_bit_hook = btrfs_set_bit_hook,
7445 .clear_bit_hook = btrfs_clear_bit_hook,
Josef Bacik9ed74f22009-09-11 16:12:44 -04007446 .merge_extent_hook = btrfs_merge_extent_hook,
7447 .split_extent_hook = btrfs_split_extent_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04007448};
7449
Chris Mason35054392009-01-21 13:11:13 -05007450/*
7451 * btrfs doesn't support the bmap operation because swapfiles
7452 * use bmap to make a mapping of extents in the file. They assume
7453 * these extents won't change over the life of the file and they
7454 * use the bmap result to do IO directly to the drive.
7455 *
7456 * the btrfs bmap call would return logical addresses that aren't
7457 * suitable for IO and they also will change frequently as COW
7458 * operations happen. So, swapfile + btrfs == corruption.
7459 *
7460 * For now we're avoiding this by dropping bmap.
7461 */
Alexey Dobriyan7f094102009-09-21 17:01:10 -07007462static const struct address_space_operations btrfs_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04007463 .readpage = btrfs_readpage,
7464 .writepage = btrfs_writepage,
Chris Masonb293f022007-11-01 19:45:34 -04007465 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05007466 .readpages = btrfs_readpages,
Chris Mason16432982008-04-10 10:23:21 -04007467 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04007468 .invalidatepage = btrfs_invalidatepage,
7469 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04007470 .set_page_dirty = btrfs_set_page_dirty,
Andi Kleen465fdd92009-09-16 11:50:18 +02007471 .error_remove_page = generic_error_remove_page,
Chris Mason39279cc2007-06-12 06:35:45 -04007472};
7473
Alexey Dobriyan7f094102009-09-21 17:01:10 -07007474static const struct address_space_operations btrfs_symlink_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04007475 .readpage = btrfs_readpage,
7476 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04007477 .invalidatepage = btrfs_invalidatepage,
7478 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04007479};
7480
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007481static const struct inode_operations btrfs_file_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007482 .getattr = btrfs_getattr,
7483 .setattr = btrfs_setattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007484 .setxattr = btrfs_setxattr,
7485 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05007486 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007487 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05007488 .permission = btrfs_permission,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05007489 .fiemap = btrfs_fiemap,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007490 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04007491};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007492static const struct inode_operations btrfs_special_inode_operations = {
Josef Bacik618e21d2007-07-11 10:18:17 -04007493 .getattr = btrfs_getattr,
7494 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05007495 .permission = btrfs_permission,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007496 .setxattr = btrfs_setxattr,
7497 .getxattr = btrfs_getxattr,
Josef Bacik33268ea2008-07-24 12:16:36 -04007498 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007499 .removexattr = btrfs_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007500 .get_acl = btrfs_get_acl,
Josef Bacik618e21d2007-07-11 10:18:17 -04007501};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007502static const struct inode_operations btrfs_symlink_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007503 .readlink = generic_readlink,
7504 .follow_link = page_follow_link_light,
7505 .put_link = page_put_link,
Li Zefanf2095612010-11-19 02:05:24 +00007506 .getattr = btrfs_getattr,
Josef Bacik22c44fe2011-11-30 10:45:38 -05007507 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05007508 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -05007509 .setxattr = btrfs_setxattr,
7510 .getxattr = btrfs_getxattr,
7511 .listxattr = btrfs_listxattr,
7512 .removexattr = btrfs_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007513 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04007514};
Yan, Zheng76dda932009-09-21 16:00:26 -04007515
Alexey Dobriyan82d339d2009-10-09 09:54:36 -04007516const struct dentry_operations btrfs_dentry_operations = {
Yan, Zheng76dda932009-09-21 16:00:26 -04007517 .d_delete = btrfs_dentry_delete,
Josef Bacikb4aff1f2011-06-28 16:18:59 -04007518 .d_release = btrfs_dentry_release,
Yan, Zheng76dda932009-09-21 16:00:26 -04007519};