blob: 65474d95f26f1f04794982d7fbe0937f41bdaa51 [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>
Chris Mason4b4e25f2008-11-20 10:22:27 -050041#include "compat.h"
Chris Mason39279cc2007-06-12 06:35:45 -040042#include "ctree.h"
43#include "disk-io.h"
44#include "transaction.h"
45#include "btrfs_inode.h"
46#include "ioctl.h"
47#include "print-tree.h"
Chris Mason0b86a832008-03-24 15:01:56 -040048#include "volumes.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"
Chris Masonc8b97812008-10-29 14:49:59 -040052#include "compression.h"
Chris Masonb4ce94d2009-02-04 09:25:08 -050053#include "locking.h"
Josef Bacikdc89e982011-01-28 17:05:48 -050054#include "free-space-cache.h"
Li Zefan581bb052011-04-20 10:06:11 +080055#include "inode-map.h"
Chris Mason39279cc2007-06-12 06:35:45 -040056
57struct btrfs_iget_args {
58 u64 ino;
59 struct btrfs_root *root;
60};
61
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070062static const struct inode_operations btrfs_dir_inode_operations;
63static const struct inode_operations btrfs_symlink_inode_operations;
64static const struct inode_operations btrfs_dir_ro_inode_operations;
65static const struct inode_operations btrfs_special_inode_operations;
66static const struct inode_operations btrfs_file_inode_operations;
Alexey Dobriyan7f094102009-09-21 17:01:10 -070067static const struct address_space_operations btrfs_aops;
68static const struct address_space_operations btrfs_symlink_aops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -070069static const struct file_operations btrfs_dir_file_operations;
Chris Masond1310b22008-01-24 16:13:08 -050070static struct extent_io_ops btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -040071
72static struct kmem_cache *btrfs_inode_cachep;
73struct kmem_cache *btrfs_trans_handle_cachep;
74struct kmem_cache *btrfs_transaction_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040075struct kmem_cache *btrfs_path_cachep;
Josef Bacikdc89e982011-01-28 17:05:48 -050076struct kmem_cache *btrfs_free_space_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040077
78#define S_SHIFT 12
79static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
80 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
81 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
82 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
83 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
84 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
85 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
86 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
87};
88
Josef Bacika41ad392011-01-31 15:30:16 -050089static int btrfs_setsize(struct inode *inode, loff_t newsize);
90static int btrfs_truncate(struct inode *inode);
Chris Masonc8b97812008-10-29 14:49:59 -040091static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end);
Chris Mason771ed682008-11-06 22:02:51 -050092static noinline int cow_file_range(struct inode *inode,
93 struct page *locked_page,
94 u64 start, u64 end, int *page_started,
95 unsigned long *nr_written, int unlock);
Josef Bacik7b128762008-07-24 12:17:14 -040096
Yan, Zhengf34f57a2009-11-12 09:35:27 +000097static int btrfs_init_inode_security(struct btrfs_trans_handle *trans,
Eric Paris2a7dba32011-02-01 11:05:39 -050098 struct inode *inode, struct inode *dir,
99 const struct qstr *qstr)
Jim Owens0279b4c2009-02-04 09:29:13 -0500100{
101 int err;
102
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000103 err = btrfs_init_acl(trans, inode, dir);
Jim Owens0279b4c2009-02-04 09:29:13 -0500104 if (!err)
Eric Paris2a7dba32011-02-01 11:05:39 -0500105 err = btrfs_xattr_security_init(trans, inode, dir, qstr);
Jim Owens0279b4c2009-02-04 09:29:13 -0500106 return err;
107}
108
Chris Masond352ac62008-09-29 15:18:18 -0400109/*
Chris Masonc8b97812008-10-29 14:49:59 -0400110 * this does all the hard work for inserting an inline extent into
111 * the btree. The caller should have done a btrfs_drop_extents so that
112 * no overlapping inline items exist in the btree
113 */
Chris Masond3977122009-01-05 21:25:51 -0500114static noinline int insert_inline_extent(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400115 struct btrfs_root *root, struct inode *inode,
116 u64 start, size_t size, size_t compressed_size,
Li Zefanfe3f5662011-03-28 08:30:38 +0000117 int compress_type,
Chris Masonc8b97812008-10-29 14:49:59 -0400118 struct page **compressed_pages)
119{
120 struct btrfs_key key;
121 struct btrfs_path *path;
122 struct extent_buffer *leaf;
123 struct page *page = NULL;
124 char *kaddr;
125 unsigned long ptr;
126 struct btrfs_file_extent_item *ei;
127 int err = 0;
128 int ret;
129 size_t cur_size = size;
130 size_t datasize;
131 unsigned long offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400132
Li Zefanfe3f5662011-03-28 08:30:38 +0000133 if (compressed_size && compressed_pages)
Chris Masonc8b97812008-10-29 14:49:59 -0400134 cur_size = compressed_size;
Chris Masonc8b97812008-10-29 14:49:59 -0400135
Chris Masond3977122009-01-05 21:25:51 -0500136 path = btrfs_alloc_path();
137 if (!path)
Chris Masonc8b97812008-10-29 14:49:59 -0400138 return -ENOMEM;
139
Chris Masonb9473432009-03-13 11:00:37 -0400140 path->leave_spinning = 1;
Chris Masonc8b97812008-10-29 14:49:59 -0400141
Li Zefan33345d012011-04-20 10:31:50 +0800142 key.objectid = btrfs_ino(inode);
Chris Masonc8b97812008-10-29 14:49:59 -0400143 key.offset = start;
144 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
Chris Masonc8b97812008-10-29 14:49:59 -0400145 datasize = btrfs_file_extent_calc_inline_size(cur_size);
146
147 inode_add_bytes(inode, size);
148 ret = btrfs_insert_empty_item(trans, root, path, &key,
149 datasize);
150 BUG_ON(ret);
151 if (ret) {
152 err = ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400153 goto fail;
154 }
155 leaf = path->nodes[0];
156 ei = btrfs_item_ptr(leaf, path->slots[0],
157 struct btrfs_file_extent_item);
158 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
159 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
160 btrfs_set_file_extent_encryption(leaf, ei, 0);
161 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
162 btrfs_set_file_extent_ram_bytes(leaf, ei, size);
163 ptr = btrfs_file_extent_inline_start(ei);
164
Li Zefan261507a02010-12-17 14:21:50 +0800165 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -0400166 struct page *cpage;
167 int i = 0;
Chris Masond3977122009-01-05 21:25:51 -0500168 while (compressed_size > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -0400169 cpage = compressed_pages[i];
Chris Mason5b050f02008-11-11 09:34:41 -0500170 cur_size = min_t(unsigned long, compressed_size,
Chris Masonc8b97812008-10-29 14:49:59 -0400171 PAGE_CACHE_SIZE);
172
Chris Masonb9473432009-03-13 11:00:37 -0400173 kaddr = kmap_atomic(cpage, KM_USER0);
Chris Masonc8b97812008-10-29 14:49:59 -0400174 write_extent_buffer(leaf, kaddr, ptr, cur_size);
Chris Masonb9473432009-03-13 11:00:37 -0400175 kunmap_atomic(kaddr, KM_USER0);
Chris Masonc8b97812008-10-29 14:49:59 -0400176
177 i++;
178 ptr += cur_size;
179 compressed_size -= cur_size;
180 }
181 btrfs_set_file_extent_compression(leaf, ei,
Li Zefan261507a02010-12-17 14:21:50 +0800182 compress_type);
Chris Masonc8b97812008-10-29 14:49:59 -0400183 } else {
184 page = find_get_page(inode->i_mapping,
185 start >> PAGE_CACHE_SHIFT);
186 btrfs_set_file_extent_compression(leaf, ei, 0);
187 kaddr = kmap_atomic(page, KM_USER0);
188 offset = start & (PAGE_CACHE_SIZE - 1);
189 write_extent_buffer(leaf, kaddr + offset, ptr, size);
190 kunmap_atomic(kaddr, KM_USER0);
191 page_cache_release(page);
192 }
193 btrfs_mark_buffer_dirty(leaf);
194 btrfs_free_path(path);
195
Yan, Zhengc2167752009-11-12 09:34:21 +0000196 /*
197 * we're an inline extent, so nobody can
198 * extend the file past i_size without locking
199 * a page we already have locked.
200 *
201 * We must do any isize and inode updates
202 * before we unlock the pages. Otherwise we
203 * could end up racing with unlink.
204 */
Chris Masonc8b97812008-10-29 14:49:59 -0400205 BTRFS_I(inode)->disk_i_size = inode->i_size;
206 btrfs_update_inode(trans, root, inode);
Yan, Zhengc2167752009-11-12 09:34:21 +0000207
Chris Masonc8b97812008-10-29 14:49:59 -0400208 return 0;
209fail:
210 btrfs_free_path(path);
211 return err;
212}
213
214
215/*
216 * conditionally insert an inline extent into the file. This
217 * does the checks required to make sure the data is small enough
218 * to fit as an inline extent.
219 */
Chris Mason7f366cf2009-03-12 20:12:45 -0400220static noinline int cow_file_range_inline(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400221 struct btrfs_root *root,
222 struct inode *inode, u64 start, u64 end,
Li Zefanfe3f5662011-03-28 08:30:38 +0000223 size_t compressed_size, int compress_type,
Chris Masonc8b97812008-10-29 14:49:59 -0400224 struct page **compressed_pages)
225{
226 u64 isize = i_size_read(inode);
227 u64 actual_end = min(end + 1, isize);
228 u64 inline_len = actual_end - start;
229 u64 aligned_end = (end + root->sectorsize - 1) &
230 ~((u64)root->sectorsize - 1);
231 u64 hint_byte;
232 u64 data_len = inline_len;
233 int ret;
234
235 if (compressed_size)
236 data_len = compressed_size;
237
238 if (start > 0 ||
Chris Mason70b99e62008-10-31 12:46:39 -0400239 actual_end >= PAGE_CACHE_SIZE ||
Chris Masonc8b97812008-10-29 14:49:59 -0400240 data_len >= BTRFS_MAX_INLINE_DATA_SIZE(root) ||
241 (!compressed_size &&
242 (actual_end & (root->sectorsize - 1)) == 0) ||
243 end + 1 < isize ||
244 data_len > root->fs_info->max_inline) {
245 return 1;
246 }
247
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000248 ret = btrfs_drop_extents(trans, inode, start, aligned_end,
Chris Masona1ed8352009-09-11 12:27:37 -0400249 &hint_byte, 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400250 BUG_ON(ret);
251
252 if (isize > actual_end)
253 inline_len = min_t(u64, isize, actual_end);
254 ret = insert_inline_extent(trans, root, inode, start,
255 inline_len, compressed_size,
Li Zefanfe3f5662011-03-28 08:30:38 +0000256 compress_type, compressed_pages);
Chris Masonc8b97812008-10-29 14:49:59 -0400257 BUG_ON(ret);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400258 btrfs_delalloc_release_metadata(inode, end + 1 - start);
Chris Masona1ed8352009-09-11 12:27:37 -0400259 btrfs_drop_extent_cache(inode, start, aligned_end - 1, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400260 return 0;
261}
262
Chris Mason771ed682008-11-06 22:02:51 -0500263struct async_extent {
264 u64 start;
265 u64 ram_size;
266 u64 compressed_size;
267 struct page **pages;
268 unsigned long nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800269 int compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500270 struct list_head list;
271};
272
273struct async_cow {
274 struct inode *inode;
275 struct btrfs_root *root;
276 struct page *locked_page;
277 u64 start;
278 u64 end;
279 struct list_head extents;
280 struct btrfs_work work;
281};
282
283static noinline int add_async_extent(struct async_cow *cow,
284 u64 start, u64 ram_size,
285 u64 compressed_size,
286 struct page **pages,
Li Zefan261507a02010-12-17 14:21:50 +0800287 unsigned long nr_pages,
288 int compress_type)
Chris Mason771ed682008-11-06 22:02:51 -0500289{
290 struct async_extent *async_extent;
291
292 async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS);
Yoshinori Sanodac97e52011-02-15 12:01:42 +0000293 BUG_ON(!async_extent);
Chris Mason771ed682008-11-06 22:02:51 -0500294 async_extent->start = start;
295 async_extent->ram_size = ram_size;
296 async_extent->compressed_size = compressed_size;
297 async_extent->pages = pages;
298 async_extent->nr_pages = nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800299 async_extent->compress_type = compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500300 list_add_tail(&async_extent->list, &cow->extents);
301 return 0;
302}
303
Chris Masonc8b97812008-10-29 14:49:59 -0400304/*
Chris Mason771ed682008-11-06 22:02:51 -0500305 * we create compressed extents in two phases. The first
306 * phase compresses a range of pages that have already been
307 * locked (both pages and state bits are locked).
Chris Masonc8b97812008-10-29 14:49:59 -0400308 *
Chris Mason771ed682008-11-06 22:02:51 -0500309 * This is done inside an ordered work queue, and the compression
310 * is spread across many cpus. The actual IO submission is step
311 * two, and the ordered work queue takes care of making sure that
312 * happens in the same order things were put onto the queue by
313 * writepages and friends.
Chris Masonc8b97812008-10-29 14:49:59 -0400314 *
Chris Mason771ed682008-11-06 22:02:51 -0500315 * If this code finds it can't get good compression, it puts an
316 * entry onto the work queue to write the uncompressed bytes. This
317 * makes sure that both compressed inodes and uncompressed inodes
318 * are written in the same order that pdflush sent them down.
Chris Masond352ac62008-09-29 15:18:18 -0400319 */
Chris Mason771ed682008-11-06 22:02:51 -0500320static noinline int compress_file_range(struct inode *inode,
321 struct page *locked_page,
322 u64 start, u64 end,
323 struct async_cow *async_cow,
324 int *num_added)
Chris Masonb888db22007-08-27 16:49:44 -0400325{
326 struct btrfs_root *root = BTRFS_I(inode)->root;
327 struct btrfs_trans_handle *trans;
Chris Masondb945352007-10-15 16:15:53 -0400328 u64 num_bytes;
Chris Masondb945352007-10-15 16:15:53 -0400329 u64 blocksize = root->sectorsize;
Chris Masonc8b97812008-10-29 14:49:59 -0400330 u64 actual_end;
Chris Mason42dc7ba2008-12-15 11:44:56 -0500331 u64 isize = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400332 int ret = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400333 struct page **pages = NULL;
334 unsigned long nr_pages;
335 unsigned long nr_pages_ret = 0;
336 unsigned long total_compressed = 0;
337 unsigned long total_in = 0;
338 unsigned long max_compressed = 128 * 1024;
Chris Mason771ed682008-11-06 22:02:51 -0500339 unsigned long max_uncompressed = 128 * 1024;
Chris Masonc8b97812008-10-29 14:49:59 -0400340 int i;
341 int will_compress;
Li Zefan261507a02010-12-17 14:21:50 +0800342 int compress_type = root->fs_info->compress_type;
Chris Masonb888db22007-08-27 16:49:44 -0400343
Chris Mason4cb53002011-05-24 15:35:30 -0400344 /* if this is a small write inside eof, kick off a defragbot */
345 if (end <= BTRFS_I(inode)->disk_i_size && (end - start + 1) < 16 * 1024)
346 btrfs_add_inode_defrag(NULL, inode);
347
Chris Mason42dc7ba2008-12-15 11:44:56 -0500348 actual_end = min_t(u64, isize, end + 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400349again:
350 will_compress = 0;
351 nr_pages = (end >> PAGE_CACHE_SHIFT) - (start >> PAGE_CACHE_SHIFT) + 1;
352 nr_pages = min(nr_pages, (128 * 1024UL) / PAGE_CACHE_SIZE);
353
Chris Masonf03d9302009-02-04 09:31:06 -0500354 /*
355 * we don't want to send crud past the end of i_size through
356 * compression, that's just a waste of CPU time. So, if the
357 * end of the file is before the start of our current
358 * requested range of bytes, we bail out to the uncompressed
359 * cleanup code that can deal with all of this.
360 *
361 * It isn't really the fastest way to fix things, but this is a
362 * very uncommon corner.
363 */
364 if (actual_end <= start)
365 goto cleanup_and_bail_uncompressed;
366
Chris Masonc8b97812008-10-29 14:49:59 -0400367 total_compressed = actual_end - start;
368
369 /* we want to make sure that amount of ram required to uncompress
370 * an extent is reasonable, so we limit the total size in ram
Chris Mason771ed682008-11-06 22:02:51 -0500371 * of a compressed extent to 128k. This is a crucial number
372 * because it also controls how easily we can spread reads across
373 * cpus for decompression.
374 *
375 * We also want to make sure the amount of IO required to do
376 * a random read is reasonably small, so we limit the size of
377 * a compressed extent to 128k.
Chris Masonc8b97812008-10-29 14:49:59 -0400378 */
379 total_compressed = min(total_compressed, max_uncompressed);
Chris Masondb945352007-10-15 16:15:53 -0400380 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
Chris Masonbe20aa92007-12-17 20:14:01 -0500381 num_bytes = max(blocksize, num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -0400382 total_in = 0;
383 ret = 0;
Chris Masondb945352007-10-15 16:15:53 -0400384
Chris Mason771ed682008-11-06 22:02:51 -0500385 /*
386 * we do compression for mount -o compress and when the
387 * inode has not been flagged as nocompress. This flag can
388 * change at any time if we discover bad compression ratios.
Chris Masonc8b97812008-10-29 14:49:59 -0400389 */
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200390 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS) &&
Chris Mason1e701a32010-03-11 09:42:04 -0500391 (btrfs_test_opt(root, COMPRESS) ||
Liu Bo75e7cb72011-03-22 10:12:20 +0000392 (BTRFS_I(inode)->force_compress) ||
393 (BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS))) {
Chris Masonc8b97812008-10-29 14:49:59 -0400394 WARN_ON(pages);
Chris Masoncfbc2462008-10-30 13:22:14 -0400395 pages = kzalloc(sizeof(struct page *) * nr_pages, GFP_NOFS);
Li Zefan560f7d72011-09-08 10:22:01 +0800396 if (!pages) {
397 /* just bail out to the uncompressed code */
398 goto cont;
399 }
Chris Mason179e29e2007-11-01 11:28:41 -0400400
Li Zefan261507a02010-12-17 14:21:50 +0800401 if (BTRFS_I(inode)->force_compress)
402 compress_type = BTRFS_I(inode)->force_compress;
403
404 ret = btrfs_compress_pages(compress_type,
405 inode->i_mapping, start,
406 total_compressed, pages,
407 nr_pages, &nr_pages_ret,
408 &total_in,
409 &total_compressed,
410 max_compressed);
Chris Masonc8b97812008-10-29 14:49:59 -0400411
412 if (!ret) {
413 unsigned long offset = total_compressed &
414 (PAGE_CACHE_SIZE - 1);
415 struct page *page = pages[nr_pages_ret - 1];
416 char *kaddr;
417
418 /* zero the tail end of the last page, we might be
419 * sending it down to disk
420 */
421 if (offset) {
422 kaddr = kmap_atomic(page, KM_USER0);
423 memset(kaddr + offset, 0,
424 PAGE_CACHE_SIZE - offset);
425 kunmap_atomic(kaddr, KM_USER0);
426 }
427 will_compress = 1;
428 }
429 }
Li Zefan560f7d72011-09-08 10:22:01 +0800430cont:
Chris Masonc8b97812008-10-29 14:49:59 -0400431 if (start == 0) {
Josef Bacik7a7eaa42011-04-13 12:54:33 -0400432 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +0000433 BUG_ON(IS_ERR(trans));
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400434 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason771ed682008-11-06 22:02:51 -0500435
Chris Masonc8b97812008-10-29 14:49:59 -0400436 /* lets try to make an inline extent */
Chris Mason771ed682008-11-06 22:02:51 -0500437 if (ret || total_in < (actual_end - start)) {
Chris Masonc8b97812008-10-29 14:49:59 -0400438 /* we didn't compress the entire range, try
Chris Mason771ed682008-11-06 22:02:51 -0500439 * to make an uncompressed inline extent.
Chris Masonc8b97812008-10-29 14:49:59 -0400440 */
441 ret = cow_file_range_inline(trans, root, inode,
Li Zefanfe3f5662011-03-28 08:30:38 +0000442 start, end, 0, 0, NULL);
Chris Masonc8b97812008-10-29 14:49:59 -0400443 } else {
Chris Mason771ed682008-11-06 22:02:51 -0500444 /* try making a compressed inline extent */
Chris Masonc8b97812008-10-29 14:49:59 -0400445 ret = cow_file_range_inline(trans, root, inode,
446 start, end,
Li Zefanfe3f5662011-03-28 08:30:38 +0000447 total_compressed,
448 compress_type, pages);
Chris Masonc8b97812008-10-29 14:49:59 -0400449 }
450 if (ret == 0) {
Chris Mason771ed682008-11-06 22:02:51 -0500451 /*
452 * inline extent creation worked, we don't need
453 * to create any more async work items. Unlock
454 * and free up our temp pages.
455 */
Chris Masonc8b97812008-10-29 14:49:59 -0400456 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400457 &BTRFS_I(inode)->io_tree,
458 start, end, NULL,
459 EXTENT_CLEAR_UNLOCK_PAGE | EXTENT_CLEAR_DIRTY |
Chris Masona3429ab2009-10-08 12:30:20 -0400460 EXTENT_CLEAR_DELALLOC |
Chris Masona791e352009-10-08 11:27:10 -0400461 EXTENT_SET_WRITEBACK | EXTENT_END_WRITEBACK);
Yan, Zhengc2167752009-11-12 09:34:21 +0000462
463 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400464 goto free_pages_out;
465 }
Yan, Zhengc2167752009-11-12 09:34:21 +0000466 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400467 }
468
469 if (will_compress) {
470 /*
471 * we aren't doing an inline extent round the compressed size
472 * up to a block size boundary so the allocator does sane
473 * things
474 */
475 total_compressed = (total_compressed + blocksize - 1) &
476 ~(blocksize - 1);
477
478 /*
479 * one last check to make sure the compression is really a
480 * win, compare the page count read with the blocks on disk
481 */
482 total_in = (total_in + PAGE_CACHE_SIZE - 1) &
483 ~(PAGE_CACHE_SIZE - 1);
484 if (total_compressed >= total_in) {
485 will_compress = 0;
486 } else {
Chris Masonc8b97812008-10-29 14:49:59 -0400487 num_bytes = total_in;
488 }
489 }
490 if (!will_compress && pages) {
491 /*
492 * the compression code ran but failed to make things smaller,
493 * free any pages it allocated and our page pointer array
494 */
495 for (i = 0; i < nr_pages_ret; i++) {
Chris Mason70b99e62008-10-31 12:46:39 -0400496 WARN_ON(pages[i]->mapping);
Chris Masonc8b97812008-10-29 14:49:59 -0400497 page_cache_release(pages[i]);
498 }
499 kfree(pages);
500 pages = NULL;
501 total_compressed = 0;
502 nr_pages_ret = 0;
503
504 /* flag the file so we don't compress in the future */
Chris Mason1e701a32010-03-11 09:42:04 -0500505 if (!btrfs_test_opt(root, FORCE_COMPRESS) &&
506 !(BTRFS_I(inode)->force_compress)) {
Chris Masona555f812010-01-28 16:18:15 -0500507 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
Chris Mason1e701a32010-03-11 09:42:04 -0500508 }
Chris Masonc8b97812008-10-29 14:49:59 -0400509 }
Chris Mason771ed682008-11-06 22:02:51 -0500510 if (will_compress) {
511 *num_added += 1;
512
513 /* the async work queues will take care of doing actual
514 * allocation on disk for these compressed pages,
515 * and will submit them to the elevator.
516 */
517 add_async_extent(async_cow, start, num_bytes,
Li Zefan261507a02010-12-17 14:21:50 +0800518 total_compressed, pages, nr_pages_ret,
519 compress_type);
Chris Mason771ed682008-11-06 22:02:51 -0500520
Yan, Zheng24ae6362010-12-06 07:02:36 +0000521 if (start + num_bytes < end) {
Chris Mason771ed682008-11-06 22:02:51 -0500522 start += num_bytes;
523 pages = NULL;
524 cond_resched();
525 goto again;
526 }
527 } else {
Chris Masonf03d9302009-02-04 09:31:06 -0500528cleanup_and_bail_uncompressed:
Chris Mason771ed682008-11-06 22:02:51 -0500529 /*
530 * No compression, but we still need to write the pages in
531 * the file we've been given so far. redirty the locked
532 * page if it corresponds to our extent and set things up
533 * for the async work queue to run cow_file_range to do
534 * the normal delalloc dance
535 */
536 if (page_offset(locked_page) >= start &&
537 page_offset(locked_page) <= end) {
538 __set_page_dirty_nobuffers(locked_page);
539 /* unlocked later on in the async handlers */
540 }
Li Zefan261507a02010-12-17 14:21:50 +0800541 add_async_extent(async_cow, start, end - start + 1,
542 0, NULL, 0, BTRFS_COMPRESS_NONE);
Chris Mason771ed682008-11-06 22:02:51 -0500543 *num_added += 1;
544 }
545
546out:
547 return 0;
548
549free_pages_out:
550 for (i = 0; i < nr_pages_ret; i++) {
551 WARN_ON(pages[i]->mapping);
552 page_cache_release(pages[i]);
553 }
Chris Masond3977122009-01-05 21:25:51 -0500554 kfree(pages);
Chris Mason771ed682008-11-06 22:02:51 -0500555
556 goto out;
557}
558
559/*
560 * phase two of compressed writeback. This is the ordered portion
561 * of the code, which only gets called in the order the work was
562 * queued. We walk all the async extents created by compress_file_range
563 * and send them down to the disk.
564 */
565static noinline int submit_compressed_extents(struct inode *inode,
566 struct async_cow *async_cow)
567{
568 struct async_extent *async_extent;
569 u64 alloc_hint = 0;
570 struct btrfs_trans_handle *trans;
571 struct btrfs_key ins;
572 struct extent_map *em;
573 struct btrfs_root *root = BTRFS_I(inode)->root;
574 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
575 struct extent_io_tree *io_tree;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500576 int ret = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500577
578 if (list_empty(&async_cow->extents))
579 return 0;
580
Chris Mason771ed682008-11-06 22:02:51 -0500581
Chris Masond3977122009-01-05 21:25:51 -0500582 while (!list_empty(&async_cow->extents)) {
Chris Mason771ed682008-11-06 22:02:51 -0500583 async_extent = list_entry(async_cow->extents.next,
584 struct async_extent, list);
585 list_del(&async_extent->list);
586
587 io_tree = &BTRFS_I(inode)->io_tree;
588
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500589retry:
Chris Mason771ed682008-11-06 22:02:51 -0500590 /* did the compression code fall back to uncompressed IO? */
591 if (!async_extent->pages) {
592 int page_started = 0;
593 unsigned long nr_written = 0;
594
595 lock_extent(io_tree, async_extent->start,
Josef Bacik2ac55d42010-02-03 19:33:23 +0000596 async_extent->start +
597 async_extent->ram_size - 1, GFP_NOFS);
Chris Mason771ed682008-11-06 22:02:51 -0500598
599 /* allocate blocks */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500600 ret = cow_file_range(inode, async_cow->locked_page,
601 async_extent->start,
602 async_extent->start +
603 async_extent->ram_size - 1,
604 &page_started, &nr_written, 0);
Chris Mason771ed682008-11-06 22:02:51 -0500605
606 /*
607 * if page_started, cow_file_range inserted an
608 * inline extent and took care of all the unlocking
609 * and IO for us. Otherwise, we need to submit
610 * all those pages down to the drive.
611 */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500612 if (!page_started && !ret)
Chris Mason771ed682008-11-06 22:02:51 -0500613 extent_write_locked_range(io_tree,
614 inode, async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500615 async_extent->start +
Chris Mason771ed682008-11-06 22:02:51 -0500616 async_extent->ram_size - 1,
617 btrfs_get_extent,
618 WB_SYNC_ALL);
619 kfree(async_extent);
620 cond_resched();
621 continue;
622 }
623
624 lock_extent(io_tree, async_extent->start,
625 async_extent->start + async_extent->ram_size - 1,
626 GFP_NOFS);
Chris Mason771ed682008-11-06 22:02:51 -0500627
Josef Bacik7a7eaa42011-04-13 12:54:33 -0400628 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +0000629 BUG_ON(IS_ERR(trans));
Josef Bacik74b21072011-04-13 12:02:53 -0400630 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason771ed682008-11-06 22:02:51 -0500631 ret = btrfs_reserve_extent(trans, root,
632 async_extent->compressed_size,
633 async_extent->compressed_size,
634 0, alloc_hint,
635 (u64)-1, &ins, 1);
Yan, Zhengc2167752009-11-12 09:34:21 +0000636 btrfs_end_transaction(trans, root);
637
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500638 if (ret) {
639 int i;
640 for (i = 0; i < async_extent->nr_pages; i++) {
641 WARN_ON(async_extent->pages[i]->mapping);
642 page_cache_release(async_extent->pages[i]);
643 }
644 kfree(async_extent->pages);
645 async_extent->nr_pages = 0;
646 async_extent->pages = NULL;
647 unlock_extent(io_tree, async_extent->start,
648 async_extent->start +
649 async_extent->ram_size - 1, GFP_NOFS);
650 goto retry;
651 }
652
Yan, Zhengc2167752009-11-12 09:34:21 +0000653 /*
654 * here we're doing allocation and writeback of the
655 * compressed pages
656 */
657 btrfs_drop_extent_cache(inode, async_extent->start,
658 async_extent->start +
659 async_extent->ram_size - 1, 0);
660
David Sterba172ddd62011-04-21 00:48:27 +0200661 em = alloc_extent_map();
Tsutomu Itohc26a9202011-02-14 00:45:29 +0000662 BUG_ON(!em);
Chris Mason771ed682008-11-06 22:02:51 -0500663 em->start = async_extent->start;
664 em->len = async_extent->ram_size;
Chris Mason445a6942008-11-10 11:53:33 -0500665 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500666
667 em->block_start = ins.objectid;
668 em->block_len = ins.offset;
669 em->bdev = root->fs_info->fs_devices->latest_bdev;
Li Zefan261507a02010-12-17 14:21:50 +0800670 em->compress_type = async_extent->compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500671 set_bit(EXTENT_FLAG_PINNED, &em->flags);
672 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
673
Chris Masond3977122009-01-05 21:25:51 -0500674 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400675 write_lock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500676 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400677 write_unlock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500678 if (ret != -EEXIST) {
679 free_extent_map(em);
680 break;
681 }
682 btrfs_drop_extent_cache(inode, async_extent->start,
683 async_extent->start +
684 async_extent->ram_size - 1, 0);
685 }
686
Li Zefan261507a02010-12-17 14:21:50 +0800687 ret = btrfs_add_ordered_extent_compress(inode,
688 async_extent->start,
689 ins.objectid,
690 async_extent->ram_size,
691 ins.offset,
692 BTRFS_ORDERED_COMPRESSED,
693 async_extent->compress_type);
Chris Mason771ed682008-11-06 22:02:51 -0500694 BUG_ON(ret);
695
Chris Mason771ed682008-11-06 22:02:51 -0500696 /*
697 * clear dirty, set writeback and unlock the pages.
698 */
699 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400700 &BTRFS_I(inode)->io_tree,
701 async_extent->start,
702 async_extent->start +
703 async_extent->ram_size - 1,
704 NULL, EXTENT_CLEAR_UNLOCK_PAGE |
705 EXTENT_CLEAR_UNLOCK |
Chris Masona3429ab2009-10-08 12:30:20 -0400706 EXTENT_CLEAR_DELALLOC |
Chris Masona791e352009-10-08 11:27:10 -0400707 EXTENT_CLEAR_DIRTY | EXTENT_SET_WRITEBACK);
Chris Mason771ed682008-11-06 22:02:51 -0500708
709 ret = btrfs_submit_compressed_write(inode,
Chris Masond3977122009-01-05 21:25:51 -0500710 async_extent->start,
711 async_extent->ram_size,
712 ins.objectid,
713 ins.offset, async_extent->pages,
714 async_extent->nr_pages);
Chris Mason771ed682008-11-06 22:02:51 -0500715
716 BUG_ON(ret);
Chris Mason771ed682008-11-06 22:02:51 -0500717 alloc_hint = ins.objectid + ins.offset;
718 kfree(async_extent);
719 cond_resched();
720 }
721
Chris Mason771ed682008-11-06 22:02:51 -0500722 return 0;
723}
724
Josef Bacik4b46fce2010-05-23 11:00:55 -0400725static u64 get_extent_allocation_hint(struct inode *inode, u64 start,
726 u64 num_bytes)
727{
728 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
729 struct extent_map *em;
730 u64 alloc_hint = 0;
731
732 read_lock(&em_tree->lock);
733 em = search_extent_mapping(em_tree, start, num_bytes);
734 if (em) {
735 /*
736 * if block start isn't an actual block number then find the
737 * first block in this inode and use that as a hint. If that
738 * block is also bogus then just don't worry about it.
739 */
740 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
741 free_extent_map(em);
742 em = search_extent_mapping(em_tree, 0, 0);
743 if (em && em->block_start < EXTENT_MAP_LAST_BYTE)
744 alloc_hint = em->block_start;
745 if (em)
746 free_extent_map(em);
747 } else {
748 alloc_hint = em->block_start;
749 free_extent_map(em);
750 }
751 }
752 read_unlock(&em_tree->lock);
753
754 return alloc_hint;
755}
756
Chris Mason771ed682008-11-06 22:02:51 -0500757/*
758 * when extent_io.c finds a delayed allocation range in the file,
759 * the call backs end up in this code. The basic idea is to
760 * allocate extents on disk for the range, and create ordered data structs
761 * in ram to track those extents.
762 *
763 * locked_page is the page that writepage had locked already. We use
764 * it to make sure we don't do extra locks or unlocks.
765 *
766 * *page_started is set to one if we unlock locked_page and do everything
767 * required to start IO on it. It may be clean and already done with
768 * IO when we return.
769 */
770static noinline int cow_file_range(struct inode *inode,
771 struct page *locked_page,
772 u64 start, u64 end, int *page_started,
773 unsigned long *nr_written,
774 int unlock)
775{
776 struct btrfs_root *root = BTRFS_I(inode)->root;
777 struct btrfs_trans_handle *trans;
778 u64 alloc_hint = 0;
779 u64 num_bytes;
780 unsigned long ram_size;
781 u64 disk_num_bytes;
782 u64 cur_alloc_size;
783 u64 blocksize = root->sectorsize;
Chris Mason771ed682008-11-06 22:02:51 -0500784 struct btrfs_key ins;
785 struct extent_map *em;
786 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
787 int ret = 0;
788
Chris Mason2cf85722011-07-26 15:35:09 -0400789 BUG_ON(btrfs_is_free_space_inode(root, inode));
Josef Bacik7a7eaa42011-04-13 12:54:33 -0400790 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +0000791 BUG_ON(IS_ERR(trans));
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400792 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason771ed682008-11-06 22:02:51 -0500793
Chris Mason771ed682008-11-06 22:02:51 -0500794 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
795 num_bytes = max(blocksize, num_bytes);
796 disk_num_bytes = num_bytes;
797 ret = 0;
798
Chris Mason4cb53002011-05-24 15:35:30 -0400799 /* if this is a small write inside eof, kick off defrag */
800 if (end <= BTRFS_I(inode)->disk_i_size && num_bytes < 64 * 1024)
801 btrfs_add_inode_defrag(trans, inode);
802
Chris Mason771ed682008-11-06 22:02:51 -0500803 if (start == 0) {
804 /* lets try to make an inline extent */
805 ret = cow_file_range_inline(trans, root, inode,
Li Zefanfe3f5662011-03-28 08:30:38 +0000806 start, end, 0, 0, NULL);
Chris Mason771ed682008-11-06 22:02:51 -0500807 if (ret == 0) {
808 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400809 &BTRFS_I(inode)->io_tree,
810 start, end, NULL,
811 EXTENT_CLEAR_UNLOCK_PAGE |
812 EXTENT_CLEAR_UNLOCK |
813 EXTENT_CLEAR_DELALLOC |
814 EXTENT_CLEAR_DIRTY |
815 EXTENT_SET_WRITEBACK |
816 EXTENT_END_WRITEBACK);
Yan, Zhengc2167752009-11-12 09:34:21 +0000817
Chris Mason771ed682008-11-06 22:02:51 -0500818 *nr_written = *nr_written +
819 (end - start + PAGE_CACHE_SIZE) / PAGE_CACHE_SIZE;
820 *page_started = 1;
821 ret = 0;
822 goto out;
823 }
824 }
Chris Masonc8b97812008-10-29 14:49:59 -0400825
826 BUG_ON(disk_num_bytes >
827 btrfs_super_total_bytes(&root->fs_info->super_copy));
828
Josef Bacik4b46fce2010-05-23 11:00:55 -0400829 alloc_hint = get_extent_allocation_hint(inode, start, num_bytes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400830 btrfs_drop_extent_cache(inode, start, start + num_bytes - 1, 0);
Chris Mason3b951512008-04-17 11:29:12 -0400831
Chris Masond3977122009-01-05 21:25:51 -0500832 while (disk_num_bytes > 0) {
Chris Masona791e352009-10-08 11:27:10 -0400833 unsigned long op;
834
Josef Bacik287a0ab2010-03-19 18:07:23 +0000835 cur_alloc_size = disk_num_bytes;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400836 ret = btrfs_reserve_extent(trans, root, cur_alloc_size,
Chris Mason771ed682008-11-06 22:02:51 -0500837 root->sectorsize, 0, alloc_hint,
Chris Masone6dcd2d2008-07-17 12:53:50 -0400838 (u64)-1, &ins, 1);
Chris Masond3977122009-01-05 21:25:51 -0500839 BUG_ON(ret);
840
David Sterba172ddd62011-04-21 00:48:27 +0200841 em = alloc_extent_map();
Tsutomu Itohc26a9202011-02-14 00:45:29 +0000842 BUG_ON(!em);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400843 em->start = start;
Chris Mason445a6942008-11-10 11:53:33 -0500844 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500845 ram_size = ins.offset;
846 em->len = ins.offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400847
Chris Masone6dcd2d2008-07-17 12:53:50 -0400848 em->block_start = ins.objectid;
Chris Masonc8b97812008-10-29 14:49:59 -0400849 em->block_len = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400850 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -0400851 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -0400852
Chris Masond3977122009-01-05 21:25:51 -0500853 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400854 write_lock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400855 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400856 write_unlock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400857 if (ret != -EEXIST) {
858 free_extent_map(em);
859 break;
860 }
861 btrfs_drop_extent_cache(inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -0400862 start + ram_size - 1, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400863 }
864
Chris Mason98d20f62008-04-14 09:46:10 -0400865 cur_alloc_size = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400866 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
Chris Mason771ed682008-11-06 22:02:51 -0500867 ram_size, cur_alloc_size, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400868 BUG_ON(ret);
Chris Masonc8b97812008-10-29 14:49:59 -0400869
Yan Zheng17d217f2008-12-12 10:03:38 -0500870 if (root->root_key.objectid ==
871 BTRFS_DATA_RELOC_TREE_OBJECTID) {
872 ret = btrfs_reloc_clone_csums(inode, start,
873 cur_alloc_size);
874 BUG_ON(ret);
875 }
876
Chris Masond3977122009-01-05 21:25:51 -0500877 if (disk_num_bytes < cur_alloc_size)
Chris Mason3b951512008-04-17 11:29:12 -0400878 break;
Chris Masond3977122009-01-05 21:25:51 -0500879
Chris Masonc8b97812008-10-29 14:49:59 -0400880 /* we're not doing compressed IO, don't unlock the first
881 * page (which the caller expects to stay locked), don't
882 * clear any dirty bits and don't set any writeback bits
Chris Mason8b62b722009-09-02 16:53:46 -0400883 *
884 * Do set the Private2 bit so we know this page was properly
885 * setup for writepage
Chris Masonc8b97812008-10-29 14:49:59 -0400886 */
Chris Masona791e352009-10-08 11:27:10 -0400887 op = unlock ? EXTENT_CLEAR_UNLOCK_PAGE : 0;
888 op |= EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
889 EXTENT_SET_PRIVATE2;
890
Chris Masonc8b97812008-10-29 14:49:59 -0400891 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
892 start, start + ram_size - 1,
Chris Masona791e352009-10-08 11:27:10 -0400893 locked_page, op);
Chris Masonc8b97812008-10-29 14:49:59 -0400894 disk_num_bytes -= cur_alloc_size;
Chris Masonc59f8952007-12-17 20:14:04 -0500895 num_bytes -= cur_alloc_size;
896 alloc_hint = ins.objectid + ins.offset;
897 start += cur_alloc_size;
Chris Masonb888db22007-08-27 16:49:44 -0400898 }
Chris Masonb888db22007-08-27 16:49:44 -0400899out:
Chris Mason771ed682008-11-06 22:02:51 -0500900 ret = 0;
Chris Masonb888db22007-08-27 16:49:44 -0400901 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400902
Chris Masonbe20aa92007-12-17 20:14:01 -0500903 return ret;
Chris Mason771ed682008-11-06 22:02:51 -0500904}
Chris Masonc8b97812008-10-29 14:49:59 -0400905
Chris Mason771ed682008-11-06 22:02:51 -0500906/*
907 * work queue call back to started compression on a file and pages
908 */
909static noinline void async_cow_start(struct btrfs_work *work)
910{
911 struct async_cow *async_cow;
912 int num_added = 0;
913 async_cow = container_of(work, struct async_cow, work);
914
915 compress_file_range(async_cow->inode, async_cow->locked_page,
916 async_cow->start, async_cow->end, async_cow,
917 &num_added);
918 if (num_added == 0)
919 async_cow->inode = NULL;
920}
921
922/*
923 * work queue call back to submit previously compressed pages
924 */
925static noinline void async_cow_submit(struct btrfs_work *work)
926{
927 struct async_cow *async_cow;
928 struct btrfs_root *root;
929 unsigned long nr_pages;
930
931 async_cow = container_of(work, struct async_cow, work);
932
933 root = async_cow->root;
934 nr_pages = (async_cow->end - async_cow->start + PAGE_CACHE_SIZE) >>
935 PAGE_CACHE_SHIFT;
936
937 atomic_sub(nr_pages, &root->fs_info->async_delalloc_pages);
938
939 if (atomic_read(&root->fs_info->async_delalloc_pages) <
940 5 * 1042 * 1024 &&
941 waitqueue_active(&root->fs_info->async_submit_wait))
942 wake_up(&root->fs_info->async_submit_wait);
943
Chris Masond3977122009-01-05 21:25:51 -0500944 if (async_cow->inode)
Chris Mason771ed682008-11-06 22:02:51 -0500945 submit_compressed_extents(async_cow->inode, async_cow);
Chris Mason771ed682008-11-06 22:02:51 -0500946}
Chris Masonc8b97812008-10-29 14:49:59 -0400947
Chris Mason771ed682008-11-06 22:02:51 -0500948static noinline void async_cow_free(struct btrfs_work *work)
949{
950 struct async_cow *async_cow;
951 async_cow = container_of(work, struct async_cow, work);
952 kfree(async_cow);
953}
954
955static int cow_file_range_async(struct inode *inode, struct page *locked_page,
956 u64 start, u64 end, int *page_started,
957 unsigned long *nr_written)
958{
959 struct async_cow *async_cow;
960 struct btrfs_root *root = BTRFS_I(inode)->root;
961 unsigned long nr_pages;
962 u64 cur_end;
963 int limit = 10 * 1024 * 1042;
964
Chris Masona3429ab2009-10-08 12:30:20 -0400965 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED,
966 1, 0, NULL, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -0500967 while (start < end) {
Chris Mason771ed682008-11-06 22:02:51 -0500968 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
Tsutomu Itoh8d413712011-04-25 19:43:52 -0400969 BUG_ON(!async_cow);
Chris Mason771ed682008-11-06 22:02:51 -0500970 async_cow->inode = inode;
971 async_cow->root = root;
972 async_cow->locked_page = locked_page;
973 async_cow->start = start;
974
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200975 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS)
Chris Mason771ed682008-11-06 22:02:51 -0500976 cur_end = end;
977 else
978 cur_end = min(end, start + 512 * 1024 - 1);
979
980 async_cow->end = cur_end;
981 INIT_LIST_HEAD(&async_cow->extents);
982
983 async_cow->work.func = async_cow_start;
984 async_cow->work.ordered_func = async_cow_submit;
985 async_cow->work.ordered_free = async_cow_free;
986 async_cow->work.flags = 0;
987
Chris Mason771ed682008-11-06 22:02:51 -0500988 nr_pages = (cur_end - start + PAGE_CACHE_SIZE) >>
989 PAGE_CACHE_SHIFT;
990 atomic_add(nr_pages, &root->fs_info->async_delalloc_pages);
991
992 btrfs_queue_worker(&root->fs_info->delalloc_workers,
993 &async_cow->work);
994
995 if (atomic_read(&root->fs_info->async_delalloc_pages) > limit) {
996 wait_event(root->fs_info->async_submit_wait,
997 (atomic_read(&root->fs_info->async_delalloc_pages) <
998 limit));
999 }
1000
Chris Masond3977122009-01-05 21:25:51 -05001001 while (atomic_read(&root->fs_info->async_submit_draining) &&
Chris Mason771ed682008-11-06 22:02:51 -05001002 atomic_read(&root->fs_info->async_delalloc_pages)) {
1003 wait_event(root->fs_info->async_submit_wait,
1004 (atomic_read(&root->fs_info->async_delalloc_pages) ==
1005 0));
1006 }
1007
1008 *nr_written += nr_pages;
1009 start = cur_end + 1;
1010 }
1011 *page_started = 1;
1012 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001013}
1014
Chris Masond3977122009-01-05 21:25:51 -05001015static noinline int csum_exist_in_range(struct btrfs_root *root,
Yan Zheng17d217f2008-12-12 10:03:38 -05001016 u64 bytenr, u64 num_bytes)
1017{
1018 int ret;
1019 struct btrfs_ordered_sum *sums;
1020 LIST_HEAD(list);
1021
Yan Zheng07d400a2009-01-06 11:42:00 -05001022 ret = btrfs_lookup_csums_range(root->fs_info->csum_root, bytenr,
Arne Jansena2de7332011-03-08 14:14:00 +01001023 bytenr + num_bytes - 1, &list, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -05001024 if (ret == 0 && list_empty(&list))
1025 return 0;
1026
1027 while (!list_empty(&list)) {
1028 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
1029 list_del(&sums->list);
1030 kfree(sums);
1031 }
1032 return 1;
1033}
1034
Chris Masond352ac62008-09-29 15:18:18 -04001035/*
1036 * when nowcow writeback call back. This checks for snapshots or COW copies
1037 * of the extents that exist in the file, and COWs the file as required.
1038 *
1039 * If no cow copies or snapshots exist, we write directly to the existing
1040 * blocks on disk
1041 */
Chris Mason7f366cf2009-03-12 20:12:45 -04001042static noinline int run_delalloc_nocow(struct inode *inode,
1043 struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001044 u64 start, u64 end, int *page_started, int force,
1045 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001046{
Chris Masonbe20aa92007-12-17 20:14:01 -05001047 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001048 struct btrfs_trans_handle *trans;
Chris Masonbe20aa92007-12-17 20:14:01 -05001049 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -05001050 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -04001051 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -05001052 struct btrfs_key found_key;
Yan Zheng80ff3852008-10-30 14:20:02 -04001053 u64 cow_start;
1054 u64 cur_offset;
1055 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001056 u64 extent_offset;
Yan Zheng80ff3852008-10-30 14:20:02 -04001057 u64 disk_bytenr;
1058 u64 num_bytes;
1059 int extent_type;
1060 int ret;
Yan Zhengd899e052008-10-30 14:25:28 -04001061 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -04001062 int nocow;
1063 int check_prev = 1;
Li Zefan82d59022011-04-20 10:33:24 +08001064 bool nolock;
Li Zefan33345d012011-04-20 10:31:50 +08001065 u64 ino = btrfs_ino(inode);
Chris Masonbe20aa92007-12-17 20:14:01 -05001066
1067 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07001068 if (!path)
1069 return -ENOMEM;
Li Zefan82d59022011-04-20 10:33:24 +08001070
Chris Mason2cf85722011-07-26 15:35:09 -04001071 nolock = btrfs_is_free_space_inode(root, inode);
Li Zefan82d59022011-04-20 10:33:24 +08001072
1073 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001074 trans = btrfs_join_transaction_nolock(root);
Li Zefan82d59022011-04-20 10:33:24 +08001075 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001076 trans = btrfs_join_transaction(root);
Chris Masonff5714c2011-05-28 07:00:39 -04001077
Tsutomu Itoh3612b492011-01-25 02:51:38 +00001078 BUG_ON(IS_ERR(trans));
Josef Bacik74b21072011-04-13 12:02:53 -04001079 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Masonbe20aa92007-12-17 20:14:01 -05001080
Yan Zheng80ff3852008-10-30 14:20:02 -04001081 cow_start = (u64)-1;
1082 cur_offset = start;
1083 while (1) {
Li Zefan33345d012011-04-20 10:31:50 +08001084 ret = btrfs_lookup_file_extent(trans, root, path, ino,
Yan Zheng80ff3852008-10-30 14:20:02 -04001085 cur_offset, 0);
1086 BUG_ON(ret < 0);
1087 if (ret > 0 && path->slots[0] > 0 && check_prev) {
1088 leaf = path->nodes[0];
1089 btrfs_item_key_to_cpu(leaf, &found_key,
1090 path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +08001091 if (found_key.objectid == ino &&
Yan Zheng80ff3852008-10-30 14:20:02 -04001092 found_key.type == BTRFS_EXTENT_DATA_KEY)
1093 path->slots[0]--;
1094 }
1095 check_prev = 0;
1096next_slot:
1097 leaf = path->nodes[0];
1098 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1099 ret = btrfs_next_leaf(root, path);
1100 if (ret < 0)
1101 BUG_ON(1);
1102 if (ret > 0)
1103 break;
1104 leaf = path->nodes[0];
1105 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001106
Yan Zheng80ff3852008-10-30 14:20:02 -04001107 nocow = 0;
1108 disk_bytenr = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -05001109 num_bytes = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001110 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05001111
Li Zefan33345d012011-04-20 10:31:50 +08001112 if (found_key.objectid > ino ||
Yan Zheng80ff3852008-10-30 14:20:02 -04001113 found_key.type > BTRFS_EXTENT_DATA_KEY ||
1114 found_key.offset > end)
1115 break;
Chris Masonbe20aa92007-12-17 20:14:01 -05001116
Yan Zheng80ff3852008-10-30 14:20:02 -04001117 if (found_key.offset > cur_offset) {
1118 extent_end = found_key.offset;
Chris Masone9061e22009-10-09 09:57:45 -04001119 extent_type = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001120 goto out_check;
1121 }
Chris Masonc31f8832008-01-08 15:46:31 -05001122
Yan Zheng80ff3852008-10-30 14:20:02 -04001123 fi = btrfs_item_ptr(leaf, path->slots[0],
1124 struct btrfs_file_extent_item);
1125 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -05001126
Yan Zhengd899e052008-10-30 14:25:28 -04001127 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1128 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001129 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001130 extent_offset = btrfs_file_extent_offset(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001131 extent_end = found_key.offset +
1132 btrfs_file_extent_num_bytes(leaf, fi);
1133 if (extent_end <= start) {
1134 path->slots[0]++;
1135 goto next_slot;
1136 }
Yan Zheng17d217f2008-12-12 10:03:38 -05001137 if (disk_bytenr == 0)
1138 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001139 if (btrfs_file_extent_compression(leaf, fi) ||
1140 btrfs_file_extent_encryption(leaf, fi) ||
1141 btrfs_file_extent_other_encoding(leaf, fi))
1142 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001143 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1144 goto out_check;
Yan Zhengd2fb3432008-12-11 16:30:39 -05001145 if (btrfs_extent_readonly(root, disk_bytenr))
Yan Zheng80ff3852008-10-30 14:20:02 -04001146 goto out_check;
Li Zefan33345d012011-04-20 10:31:50 +08001147 if (btrfs_cross_ref_exist(trans, root, ino,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001148 found_key.offset -
1149 extent_offset, disk_bytenr))
Yan Zheng17d217f2008-12-12 10:03:38 -05001150 goto out_check;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001151 disk_bytenr += extent_offset;
Yan Zheng17d217f2008-12-12 10:03:38 -05001152 disk_bytenr += cur_offset - found_key.offset;
1153 num_bytes = min(end + 1, extent_end) - cur_offset;
1154 /*
1155 * force cow if csum exists in the range.
1156 * this ensure that csum for a given extent are
1157 * either valid or do not exist.
1158 */
1159 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
1160 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001161 nocow = 1;
1162 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1163 extent_end = found_key.offset +
1164 btrfs_file_extent_inline_len(leaf, fi);
1165 extent_end = ALIGN(extent_end, root->sectorsize);
1166 } else {
1167 BUG_ON(1);
1168 }
1169out_check:
1170 if (extent_end <= start) {
1171 path->slots[0]++;
1172 goto next_slot;
1173 }
1174 if (!nocow) {
1175 if (cow_start == (u64)-1)
1176 cow_start = cur_offset;
1177 cur_offset = extent_end;
1178 if (cur_offset > end)
1179 break;
1180 path->slots[0]++;
1181 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001182 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001183
David Sterbab3b4aa72011-04-21 01:20:15 +02001184 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001185 if (cow_start != (u64)-1) {
1186 ret = cow_file_range(inode, locked_page, cow_start,
Chris Mason771ed682008-11-06 22:02:51 -05001187 found_key.offset - 1, page_started,
1188 nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001189 BUG_ON(ret);
1190 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001191 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001192
Yan Zhengd899e052008-10-30 14:25:28 -04001193 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1194 struct extent_map *em;
1195 struct extent_map_tree *em_tree;
1196 em_tree = &BTRFS_I(inode)->extent_tree;
David Sterba172ddd62011-04-21 00:48:27 +02001197 em = alloc_extent_map();
Tsutomu Itohc26a9202011-02-14 00:45:29 +00001198 BUG_ON(!em);
Yan Zhengd899e052008-10-30 14:25:28 -04001199 em->start = cur_offset;
Chris Mason445a6942008-11-10 11:53:33 -05001200 em->orig_start = em->start;
Yan Zhengd899e052008-10-30 14:25:28 -04001201 em->len = num_bytes;
1202 em->block_len = num_bytes;
1203 em->block_start = disk_bytenr;
1204 em->bdev = root->fs_info->fs_devices->latest_bdev;
1205 set_bit(EXTENT_FLAG_PINNED, &em->flags);
1206 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04001207 write_lock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001208 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04001209 write_unlock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001210 if (ret != -EEXIST) {
1211 free_extent_map(em);
1212 break;
1213 }
1214 btrfs_drop_extent_cache(inode, em->start,
1215 em->start + em->len - 1, 0);
1216 }
1217 type = BTRFS_ORDERED_PREALLOC;
1218 } else {
1219 type = BTRFS_ORDERED_NOCOW;
1220 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001221
1222 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001223 num_bytes, num_bytes, type);
1224 BUG_ON(ret);
Chris Mason771ed682008-11-06 22:02:51 -05001225
Yan, Zhengefa56462010-05-16 10:49:59 -04001226 if (root->root_key.objectid ==
1227 BTRFS_DATA_RELOC_TREE_OBJECTID) {
1228 ret = btrfs_reloc_clone_csums(inode, cur_offset,
1229 num_bytes);
1230 BUG_ON(ret);
1231 }
1232
Yan Zhengd899e052008-10-30 14:25:28 -04001233 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
Chris Masona791e352009-10-08 11:27:10 -04001234 cur_offset, cur_offset + num_bytes - 1,
1235 locked_page, EXTENT_CLEAR_UNLOCK_PAGE |
1236 EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
1237 EXTENT_SET_PRIVATE2);
Yan Zheng80ff3852008-10-30 14:20:02 -04001238 cur_offset = extent_end;
1239 if (cur_offset > end)
1240 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001241 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001242 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001243
1244 if (cur_offset <= end && cow_start == (u64)-1)
1245 cow_start = cur_offset;
1246 if (cow_start != (u64)-1) {
1247 ret = cow_file_range(inode, locked_page, cow_start, end,
Chris Mason771ed682008-11-06 22:02:51 -05001248 page_started, nr_written, 1);
Yan Zheng80ff3852008-10-30 14:20:02 -04001249 BUG_ON(ret);
1250 }
1251
Josef Bacik0cb59c92010-07-02 12:14:14 -04001252 if (nolock) {
1253 ret = btrfs_end_transaction_nolock(trans, root);
1254 BUG_ON(ret);
1255 } else {
1256 ret = btrfs_end_transaction(trans, root);
1257 BUG_ON(ret);
1258 }
Yan Zheng7ea394f2008-08-05 13:05:02 -04001259 btrfs_free_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001260 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001261}
1262
Chris Masond352ac62008-09-29 15:18:18 -04001263/*
1264 * extent_io.c call back to do delayed allocation processing
1265 */
Chris Masonc8b97812008-10-29 14:49:59 -04001266static int run_delalloc_range(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001267 u64 start, u64 end, int *page_started,
1268 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001269{
Chris Masonbe20aa92007-12-17 20:14:01 -05001270 int ret;
Chris Mason7f366cf2009-03-12 20:12:45 -04001271 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masona2135012008-06-25 16:01:30 -04001272
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001273 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW)
Chris Masonc8b97812008-10-29 14:49:59 -04001274 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001275 page_started, 1, nr_written);
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001276 else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC)
Yan Zhengd899e052008-10-30 14:25:28 -04001277 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001278 page_started, 0, nr_written);
Chris Mason1e701a32010-03-11 09:42:04 -05001279 else if (!btrfs_test_opt(root, COMPRESS) &&
Liu Bo75e7cb72011-03-22 10:12:20 +00001280 !(BTRFS_I(inode)->force_compress) &&
1281 !(BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS))
Chris Mason7f366cf2009-03-12 20:12:45 -04001282 ret = cow_file_range(inode, locked_page, start, end,
1283 page_started, nr_written, 1);
Chris Masonbe20aa92007-12-17 20:14:01 -05001284 else
Chris Mason771ed682008-11-06 22:02:51 -05001285 ret = cow_file_range_async(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001286 page_started, nr_written);
Chris Masonb888db22007-08-27 16:49:44 -04001287 return ret;
1288}
1289
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001290static void btrfs_split_extent_hook(struct inode *inode,
1291 struct extent_state *orig, u64 split)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001292{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001293 /* not delalloc, ignore it */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001294 if (!(orig->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001295 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001296
Josef Bacik9e0baf62011-07-15 15:16:44 +00001297 spin_lock(&BTRFS_I(inode)->lock);
1298 BTRFS_I(inode)->outstanding_extents++;
1299 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001300}
1301
1302/*
1303 * extent_io.c merge_extent_hook, used to track merged delayed allocation
1304 * extents so we can keep track of new extents that are just merged onto old
1305 * extents, such as when we are doing sequential writes, so we can properly
1306 * account for the metadata space we'll need.
1307 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001308static void btrfs_merge_extent_hook(struct inode *inode,
1309 struct extent_state *new,
1310 struct extent_state *other)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001311{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001312 /* not delalloc, ignore it */
1313 if (!(other->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001314 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001315
Josef Bacik9e0baf62011-07-15 15:16:44 +00001316 spin_lock(&BTRFS_I(inode)->lock);
1317 BTRFS_I(inode)->outstanding_extents--;
1318 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001319}
1320
Chris Masond352ac62008-09-29 15:18:18 -04001321/*
1322 * extent_io.c set_bit_hook, used to track delayed allocation
1323 * bytes in this file, and to maintain the list of inodes that
1324 * have pending delalloc work to be done.
1325 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001326static void btrfs_set_bit_hook(struct inode *inode,
1327 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001328{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001329
Chris Mason75eff682008-12-15 15:54:40 -05001330 /*
1331 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001332 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001333 * bit, which is only set or cleared with irqs on
1334 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001335 if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001336 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001337 u64 len = state->end + 1 - state->start;
Chris Mason2cf85722011-07-26 15:35:09 -04001338 bool do_list = !btrfs_is_free_space_inode(root, inode);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001339
Josef Bacik9e0baf62011-07-15 15:16:44 +00001340 if (*bits & EXTENT_FIRST_DELALLOC) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001341 *bits &= ~EXTENT_FIRST_DELALLOC;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001342 } else {
1343 spin_lock(&BTRFS_I(inode)->lock);
1344 BTRFS_I(inode)->outstanding_extents++;
1345 spin_unlock(&BTRFS_I(inode)->lock);
1346 }
Josef Bacik287a0ab2010-03-19 18:07:23 +00001347
Chris Mason75eff682008-12-15 15:54:40 -05001348 spin_lock(&root->fs_info->delalloc_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001349 BTRFS_I(inode)->delalloc_bytes += len;
1350 root->fs_info->delalloc_bytes += len;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001351 if (do_list && list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
Chris Masonea8c2812008-08-04 23:17:27 -04001352 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1353 &root->fs_info->delalloc_inodes);
1354 }
Chris Mason75eff682008-12-15 15:54:40 -05001355 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001356 }
Chris Mason291d6732008-01-29 15:55:23 -05001357}
1358
Chris Masond352ac62008-09-29 15:18:18 -04001359/*
1360 * extent_io.c clear_bit_hook, see set_bit_hook for why
1361 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001362static void btrfs_clear_bit_hook(struct inode *inode,
1363 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001364{
Chris Mason75eff682008-12-15 15:54:40 -05001365 /*
1366 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001367 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001368 * bit, which is only set or cleared with irqs on
1369 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001370 if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001371 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001372 u64 len = state->end + 1 - state->start;
Chris Mason2cf85722011-07-26 15:35:09 -04001373 bool do_list = !btrfs_is_free_space_inode(root, inode);
Chris Masonbcbfce82008-04-22 13:26:47 -04001374
Josef Bacik9e0baf62011-07-15 15:16:44 +00001375 if (*bits & EXTENT_FIRST_DELALLOC) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001376 *bits &= ~EXTENT_FIRST_DELALLOC;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001377 } else if (!(*bits & EXTENT_DO_ACCOUNTING)) {
1378 spin_lock(&BTRFS_I(inode)->lock);
1379 BTRFS_I(inode)->outstanding_extents--;
1380 spin_unlock(&BTRFS_I(inode)->lock);
1381 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001382
1383 if (*bits & EXTENT_DO_ACCOUNTING)
1384 btrfs_delalloc_release_metadata(inode, len);
1385
Josef Bacik0cb59c92010-07-02 12:14:14 -04001386 if (root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID
1387 && do_list)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001388 btrfs_free_reserved_data_space(inode, len);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001389
Chris Mason75eff682008-12-15 15:54:40 -05001390 spin_lock(&root->fs_info->delalloc_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001391 root->fs_info->delalloc_bytes -= len;
1392 BTRFS_I(inode)->delalloc_bytes -= len;
1393
Josef Bacik0cb59c92010-07-02 12:14:14 -04001394 if (do_list && BTRFS_I(inode)->delalloc_bytes == 0 &&
Chris Masonea8c2812008-08-04 23:17:27 -04001395 !list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1396 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
1397 }
Chris Mason75eff682008-12-15 15:54:40 -05001398 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001399 }
Chris Mason291d6732008-01-29 15:55:23 -05001400}
1401
Chris Masond352ac62008-09-29 15:18:18 -04001402/*
1403 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1404 * we don't create bios that span stripes or chunks
1405 */
Chris Mason239b14b2008-03-24 15:02:07 -04001406int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001407 size_t size, struct bio *bio,
1408 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001409{
1410 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
1411 struct btrfs_mapping_tree *map_tree;
Chris Masona62b9402008-10-03 16:31:08 -04001412 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001413 u64 length = 0;
1414 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001415 int ret;
1416
Chris Mason771ed682008-11-06 22:02:51 -05001417 if (bio_flags & EXTENT_BIO_COMPRESSED)
1418 return 0;
1419
Chris Masonf2d8d742008-04-21 10:03:05 -04001420 length = bio->bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001421 map_tree = &root->fs_info->mapping_tree;
1422 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04001423 ret = btrfs_map_block(map_tree, READ, logical,
Chris Masonf1885912008-04-09 16:28:12 -04001424 &map_length, NULL, 0);
Chris Masoncea9e442008-04-09 16:28:12 -04001425
Chris Masond3977122009-01-05 21:25:51 -05001426 if (map_length < length + size)
Chris Mason239b14b2008-03-24 15:02:07 -04001427 return 1;
Andi Kleen411fc6b2010-10-29 15:14:31 -04001428 return ret;
Chris Mason239b14b2008-03-24 15:02:07 -04001429}
1430
Chris Masond352ac62008-09-29 15:18:18 -04001431/*
1432 * in order to insert checksums into the metadata in large chunks,
1433 * we wait until bio submission time. All the pages in the bio are
1434 * checksummed and sums are attached onto the ordered extent record.
1435 *
1436 * At IO completion time the cums attached on the ordered extent record
1437 * are inserted into the btree
1438 */
Chris Masond3977122009-01-05 21:25:51 -05001439static int __btrfs_submit_bio_start(struct inode *inode, int rw,
1440 struct bio *bio, int mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001441 unsigned long bio_flags,
1442 u64 bio_offset)
Chris Mason065631f2008-02-20 12:07:25 -05001443{
Chris Mason065631f2008-02-20 12:07:25 -05001444 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason065631f2008-02-20 12:07:25 -05001445 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001446
Chris Masond20f7042008-12-08 16:58:54 -05001447 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
Chris Mason44b8bd72008-04-16 11:14:51 -04001448 BUG_ON(ret);
Chris Mason4a69a412008-11-06 22:03:00 -05001449 return 0;
1450}
Chris Masone0156402008-04-16 11:15:20 -04001451
Chris Mason4a69a412008-11-06 22:03:00 -05001452/*
1453 * in order to insert checksums into the metadata in large chunks,
1454 * we wait until bio submission time. All the pages in the bio are
1455 * checksummed and sums are attached onto the ordered extent record.
1456 *
1457 * At IO completion time the cums attached on the ordered extent record
1458 * are inserted into the btree
1459 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001460static int __btrfs_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001461 int mirror_num, unsigned long bio_flags,
1462 u64 bio_offset)
Chris Mason4a69a412008-11-06 22:03:00 -05001463{
1464 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason8b712842008-06-11 16:50:36 -04001465 return btrfs_map_bio(root, rw, bio, mirror_num, 1);
Chris Mason44b8bd72008-04-16 11:14:51 -04001466}
1467
Chris Masond352ac62008-09-29 15:18:18 -04001468/*
Chris Masoncad321a2008-12-17 14:51:42 -05001469 * extent_io.c submission hook. This does the right thing for csum calculation
1470 * on write, or reading the csums from the tree before a read
Chris Masond352ac62008-09-29 15:18:18 -04001471 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001472static int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001473 int mirror_num, unsigned long bio_flags,
1474 u64 bio_offset)
Chris Mason44b8bd72008-04-16 11:14:51 -04001475{
1476 struct btrfs_root *root = BTRFS_I(inode)->root;
1477 int ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001478 int skip_sum;
Chris Mason44b8bd72008-04-16 11:14:51 -04001479
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001480 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masoncad321a2008-12-17 14:51:42 -05001481
Chris Mason2cf85722011-07-26 15:35:09 -04001482 if (btrfs_is_free_space_inode(root, inode))
Josef Bacik0cb59c92010-07-02 12:14:14 -04001483 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 2);
1484 else
1485 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001486 BUG_ON(ret);
Chris Mason065631f2008-02-20 12:07:25 -05001487
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001488 if (!(rw & REQ_WRITE)) {
Chris Masond20f7042008-12-08 16:58:54 -05001489 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Chris Masonc8b97812008-10-29 14:49:59 -04001490 return btrfs_submit_compressed_read(inode, bio,
1491 mirror_num, bio_flags);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001492 } else if (!skip_sum) {
1493 ret = btrfs_lookup_bio_sums(root, inode, bio, NULL);
1494 if (ret)
1495 return ret;
1496 }
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001497 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001498 } else if (!skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001499 /* csum items have already been cloned */
1500 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1501 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001502 /* we're doing a write, do the async checksumming */
1503 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
Chris Mason44b8bd72008-04-16 11:14:51 -04001504 inode, rw, bio, mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001505 bio_flags, bio_offset,
1506 __btrfs_submit_bio_start,
Chris Mason4a69a412008-11-06 22:03:00 -05001507 __btrfs_submit_bio_done);
Chris Mason19b9bdb2008-10-30 14:23:13 -04001508 }
1509
Chris Mason0b86a832008-03-24 15:01:56 -04001510mapit:
Chris Mason8b712842008-06-11 16:50:36 -04001511 return btrfs_map_bio(root, rw, bio, mirror_num, 0);
Chris Mason065631f2008-02-20 12:07:25 -05001512}
Chris Mason6885f302008-02-20 16:11:05 -05001513
Chris Masond352ac62008-09-29 15:18:18 -04001514/*
1515 * given a list of ordered sums record them in the inode. This happens
1516 * at IO completion time based on sums calculated at bio submission time.
1517 */
Chris Masonba1da2f2008-07-17 12:54:15 -04001518static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -04001519 struct inode *inode, u64 file_offset,
1520 struct list_head *list)
1521{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001522 struct btrfs_ordered_sum *sum;
1523
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001524 list_for_each_entry(sum, list, list) {
Chris Masond20f7042008-12-08 16:58:54 -05001525 btrfs_csum_file_blocks(trans,
1526 BTRFS_I(inode)->root->fs_info->csum_root, sum);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001527 }
1528 return 0;
1529}
1530
Josef Bacik2ac55d42010-02-03 19:33:23 +00001531int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end,
1532 struct extent_state **cached_state)
Chris Masonea8c2812008-08-04 23:17:27 -04001533{
Chris Masond3977122009-01-05 21:25:51 -05001534 if ((end & (PAGE_CACHE_SIZE - 1)) == 0)
Chris Mason771ed682008-11-06 22:02:51 -05001535 WARN_ON(1);
Chris Masonea8c2812008-08-04 23:17:27 -04001536 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001537 cached_state, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04001538}
1539
Chris Masond352ac62008-09-29 15:18:18 -04001540/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04001541struct btrfs_writepage_fixup {
1542 struct page *page;
1543 struct btrfs_work work;
1544};
1545
Christoph Hellwigb2950862008-12-02 09:54:17 -05001546static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04001547{
1548 struct btrfs_writepage_fixup *fixup;
1549 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001550 struct extent_state *cached_state = NULL;
Chris Mason247e7432008-07-17 12:53:51 -04001551 struct page *page;
1552 struct inode *inode;
1553 u64 page_start;
1554 u64 page_end;
1555
1556 fixup = container_of(work, struct btrfs_writepage_fixup, work);
1557 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04001558again:
Chris Mason247e7432008-07-17 12:53:51 -04001559 lock_page(page);
1560 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
1561 ClearPageChecked(page);
1562 goto out_page;
1563 }
1564
1565 inode = page->mapping->host;
1566 page_start = page_offset(page);
1567 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
1568
Josef Bacik2ac55d42010-02-03 19:33:23 +00001569 lock_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end, 0,
1570 &cached_state, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001571
1572 /* already ordered? We're done */
Chris Mason8b62b722009-09-02 16:53:46 -04001573 if (PagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001574 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04001575
1576 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1577 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00001578 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start,
1579 page_end, &cached_state, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001580 unlock_page(page);
1581 btrfs_start_ordered_extent(inode, ordered, 1);
1582 goto again;
1583 }
Chris Mason247e7432008-07-17 12:53:51 -04001584
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001585 BUG();
Josef Bacik2ac55d42010-02-03 19:33:23 +00001586 btrfs_set_extent_delalloc(inode, page_start, page_end, &cached_state);
Chris Mason247e7432008-07-17 12:53:51 -04001587 ClearPageChecked(page);
1588out:
Josef Bacik2ac55d42010-02-03 19:33:23 +00001589 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, page_end,
1590 &cached_state, GFP_NOFS);
Chris Mason247e7432008-07-17 12:53:51 -04001591out_page:
1592 unlock_page(page);
1593 page_cache_release(page);
Miao Xieb897abe2011-01-26 16:19:22 +08001594 kfree(fixup);
Chris Mason247e7432008-07-17 12:53:51 -04001595}
1596
1597/*
1598 * There are a few paths in the higher layers of the kernel that directly
1599 * set the page dirty bit without asking the filesystem if it is a
1600 * good idea. This causes problems because we want to make sure COW
1601 * properly happens and the data=ordered rules are followed.
1602 *
Chris Masonc8b97812008-10-29 14:49:59 -04001603 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04001604 * hasn't been properly setup for IO. We kick off an async process
1605 * to fix it up. The async helper will wait for ordered extents, set
1606 * the delalloc bit and make it safe to write the page.
1607 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001608static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04001609{
1610 struct inode *inode = page->mapping->host;
1611 struct btrfs_writepage_fixup *fixup;
1612 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason247e7432008-07-17 12:53:51 -04001613
Chris Mason8b62b722009-09-02 16:53:46 -04001614 /* this page is properly in the ordered list */
1615 if (TestClearPagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001616 return 0;
1617
1618 if (PageChecked(page))
1619 return -EAGAIN;
1620
1621 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
1622 if (!fixup)
1623 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04001624
Chris Mason247e7432008-07-17 12:53:51 -04001625 SetPageChecked(page);
1626 page_cache_get(page);
1627 fixup->work.func = btrfs_writepage_fixup_worker;
1628 fixup->page = page;
1629 btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work);
1630 return -EAGAIN;
1631}
1632
Yan Zhengd899e052008-10-30 14:25:28 -04001633static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
1634 struct inode *inode, u64 file_pos,
1635 u64 disk_bytenr, u64 disk_num_bytes,
1636 u64 num_bytes, u64 ram_bytes,
1637 u8 compression, u8 encryption,
1638 u16 other_encoding, int extent_type)
1639{
1640 struct btrfs_root *root = BTRFS_I(inode)->root;
1641 struct btrfs_file_extent_item *fi;
1642 struct btrfs_path *path;
1643 struct extent_buffer *leaf;
1644 struct btrfs_key ins;
1645 u64 hint;
1646 int ret;
1647
1648 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07001649 if (!path)
1650 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -04001651
Chris Masonb9473432009-03-13 11:00:37 -04001652 path->leave_spinning = 1;
Chris Masona1ed8352009-09-11 12:27:37 -04001653
1654 /*
1655 * we may be replacing one extent in the tree with another.
1656 * The new extent is pinned in the extent map, and we don't want
1657 * to drop it from the cache until it is completely in the btree.
1658 *
1659 * So, tell btrfs_drop_extents to leave this extent in the cache.
1660 * the caller is expected to unpin it and allow it to be merged
1661 * with the others.
1662 */
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001663 ret = btrfs_drop_extents(trans, inode, file_pos, file_pos + num_bytes,
1664 &hint, 0);
Yan Zhengd899e052008-10-30 14:25:28 -04001665 BUG_ON(ret);
1666
Li Zefan33345d012011-04-20 10:31:50 +08001667 ins.objectid = btrfs_ino(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04001668 ins.offset = file_pos;
1669 ins.type = BTRFS_EXTENT_DATA_KEY;
1670 ret = btrfs_insert_empty_item(trans, root, path, &ins, sizeof(*fi));
1671 BUG_ON(ret);
1672 leaf = path->nodes[0];
1673 fi = btrfs_item_ptr(leaf, path->slots[0],
1674 struct btrfs_file_extent_item);
1675 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
1676 btrfs_set_file_extent_type(leaf, fi, extent_type);
1677 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
1678 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
1679 btrfs_set_file_extent_offset(leaf, fi, 0);
1680 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
1681 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
1682 btrfs_set_file_extent_compression(leaf, fi, compression);
1683 btrfs_set_file_extent_encryption(leaf, fi, encryption);
1684 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
Chris Masonb9473432009-03-13 11:00:37 -04001685
1686 btrfs_unlock_up_safe(path, 1);
1687 btrfs_set_lock_blocking(leaf);
1688
Yan Zhengd899e052008-10-30 14:25:28 -04001689 btrfs_mark_buffer_dirty(leaf);
1690
1691 inode_add_bytes(inode, num_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -04001692
1693 ins.objectid = disk_bytenr;
1694 ins.offset = disk_num_bytes;
1695 ins.type = BTRFS_EXTENT_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001696 ret = btrfs_alloc_reserved_file_extent(trans, root,
1697 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08001698 btrfs_ino(inode), file_pos, &ins);
Yan Zhengd899e052008-10-30 14:25:28 -04001699 BUG_ON(ret);
Yan Zhengd899e052008-10-30 14:25:28 -04001700 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04001701
Yan Zhengd899e052008-10-30 14:25:28 -04001702 return 0;
1703}
1704
Chris Mason5d13a982009-03-13 11:41:46 -04001705/*
1706 * helper function for btrfs_finish_ordered_io, this
1707 * just reads in some of the csum leaves to prime them into ram
1708 * before we start the transaction. It limits the amount of btree
1709 * reads required while inside the transaction.
1710 */
Chris Masond352ac62008-09-29 15:18:18 -04001711/* as ordered data IO finishes, this gets called so we can finish
1712 * an ordered extent if the range of bytes in the file it covers are
1713 * fully written.
1714 */
Chris Mason211f90e2008-07-18 11:56:15 -04001715static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001716{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001717 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001718 struct btrfs_trans_handle *trans = NULL;
Chris Mason5d13a982009-03-13 11:41:46 -04001719 struct btrfs_ordered_extent *ordered_extent = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001720 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001721 struct extent_state *cached_state = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08001722 int compress_type = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001723 int ret;
Li Zefan82d59022011-04-20 10:33:24 +08001724 bool nolock;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001725
Josef Bacik5a1a3df2010-02-02 20:51:14 +00001726 ret = btrfs_dec_test_ordered_pending(inode, &ordered_extent, start,
1727 end - start + 1);
Chris Masonba1da2f2008-07-17 12:54:15 -04001728 if (!ret)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001729 return 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001730 BUG_ON(!ordered_extent);
Josef Bacikefd049f2010-02-02 20:50:10 +00001731
Chris Mason2cf85722011-07-26 15:35:09 -04001732 nolock = btrfs_is_free_space_inode(root, inode);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001733
Yan, Zhengc2167752009-11-12 09:34:21 +00001734 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
1735 BUG_ON(!list_empty(&ordered_extent->list));
1736 ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent);
1737 if (!ret) {
Josef Bacik0cb59c92010-07-02 12:14:14 -04001738 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001739 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001740 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001741 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00001742 BUG_ON(IS_ERR(trans));
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001743 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Yan, Zhengc2167752009-11-12 09:34:21 +00001744 ret = btrfs_update_inode(trans, root, inode);
1745 BUG_ON(ret);
Yan, Zhengc2167752009-11-12 09:34:21 +00001746 }
1747 goto out;
1748 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001749
Josef Bacik2ac55d42010-02-03 19:33:23 +00001750 lock_extent_bits(io_tree, ordered_extent->file_offset,
1751 ordered_extent->file_offset + ordered_extent->len - 1,
1752 0, &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001753
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;
Yan, Zhengc2167752009-11-12 09:34:21 +00001760
Chris Masonc8b97812008-10-29 14:49:59 -04001761 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Li Zefan261507a02010-12-17 14:21:50 +08001762 compress_type = ordered_extent->compress_type;
Yan Zhengd899e052008-10-30 14:25:28 -04001763 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Li Zefan261507a02010-12-17 14:21:50 +08001764 BUG_ON(compress_type);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001765 ret = btrfs_mark_extent_written(trans, inode,
Yan Zhengd899e052008-10-30 14:25:28 -04001766 ordered_extent->file_offset,
1767 ordered_extent->file_offset +
1768 ordered_extent->len);
1769 BUG_ON(ret);
1770 } else {
Josef Bacik0af3d002010-06-21 14:48:16 -04001771 BUG_ON(root == root->fs_info->tree_root);
Yan Zhengd899e052008-10-30 14:25:28 -04001772 ret = insert_reserved_file_extent(trans, inode,
1773 ordered_extent->file_offset,
1774 ordered_extent->start,
1775 ordered_extent->disk_len,
1776 ordered_extent->len,
1777 ordered_extent->len,
Li Zefan261507a02010-12-17 14:21:50 +08001778 compress_type, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04001779 BTRFS_FILE_EXTENT_REG);
Chris Masona1ed8352009-09-11 12:27:37 -04001780 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
1781 ordered_extent->file_offset,
1782 ordered_extent->len);
Yan Zhengd899e052008-10-30 14:25:28 -04001783 BUG_ON(ret);
1784 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00001785 unlock_extent_cached(io_tree, ordered_extent->file_offset,
1786 ordered_extent->file_offset +
1787 ordered_extent->len - 1, &cached_state, GFP_NOFS);
1788
Chris Masone6dcd2d2008-07-17 12:53:50 -04001789 add_pending_csums(trans, inode, ordered_extent->file_offset,
1790 &ordered_extent->list);
1791
Josef Bacik1ef30be2011-04-05 19:25:36 -04001792 ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent);
Miao Xiea39f7522011-09-11 10:52:25 -04001793 if (!ret || !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Josef Bacik1ef30be2011-04-05 19:25:36 -04001794 ret = btrfs_update_inode(trans, root, inode);
1795 BUG_ON(ret);
1796 }
1797 ret = 0;
Yan, Zhengc2167752009-11-12 09:34:21 +00001798out:
Josef Bacik5b0e95b2011-10-06 08:58:24 -04001799 if (root != root->fs_info->tree_root)
1800 btrfs_delalloc_release_metadata(inode, ordered_extent->len);
1801 if (trans) {
1802 if (nolock)
Josef Bacik0cb59c92010-07-02 12:14:14 -04001803 btrfs_end_transaction_nolock(trans, root);
Josef Bacik5b0e95b2011-10-06 08:58:24 -04001804 else
Josef Bacik0cb59c92010-07-02 12:14:14 -04001805 btrfs_end_transaction(trans, root);
1806 }
1807
Chris Masone6dcd2d2008-07-17 12:53:50 -04001808 /* once for us */
1809 btrfs_put_ordered_extent(ordered_extent);
1810 /* once for the tree */
1811 btrfs_put_ordered_extent(ordered_extent);
1812
Chris Masone6dcd2d2008-07-17 12:53:50 -04001813 return 0;
1814}
1815
Christoph Hellwigb2950862008-12-02 09:54:17 -05001816static int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04001817 struct extent_state *state, int uptodate)
1818{
liubo1abe9b82011-03-24 11:18:59 +00001819 trace_btrfs_writepage_end_io_hook(page, start, end, uptodate);
1820
Chris Mason8b62b722009-09-02 16:53:46 -04001821 ClearPagePrivate2(page);
Chris Mason211f90e2008-07-18 11:56:15 -04001822 return btrfs_finish_ordered_io(page->mapping->host, start, end);
1823}
1824
Chris Masond352ac62008-09-29 15:18:18 -04001825/*
1826 * When IO fails, either with EIO or csum verification fails, we
1827 * try other mirrors that might have a good copy of the data. This
1828 * io_failure_record is used to record state as we go through all the
1829 * mirrors. If another mirror has good data, the page is set up to date
1830 * and things continue. If a good mirror can't be found, the original
1831 * bio end_io callback is called to indicate things have failed.
1832 */
Chris Mason7e383262008-04-09 16:28:12 -04001833struct io_failure_record {
1834 struct page *page;
1835 u64 start;
1836 u64 len;
1837 u64 logical;
Chris Masond20f7042008-12-08 16:58:54 -05001838 unsigned long bio_flags;
Chris Mason7e383262008-04-09 16:28:12 -04001839 int last_mirror;
1840};
1841
Christoph Hellwigb2950862008-12-02 09:54:17 -05001842static int btrfs_io_failed_hook(struct bio *failed_bio,
Chris Mason1259ab72008-05-12 13:39:03 -04001843 struct page *page, u64 start, u64 end,
1844 struct extent_state *state)
Chris Mason7e383262008-04-09 16:28:12 -04001845{
1846 struct io_failure_record *failrec = NULL;
1847 u64 private;
1848 struct extent_map *em;
1849 struct inode *inode = page->mapping->host;
1850 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Chris Mason3b951512008-04-17 11:29:12 -04001851 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason7e383262008-04-09 16:28:12 -04001852 struct bio *bio;
1853 int num_copies;
1854 int ret;
Chris Mason1259ab72008-05-12 13:39:03 -04001855 int rw;
Chris Mason7e383262008-04-09 16:28:12 -04001856 u64 logical;
1857
1858 ret = get_state_private(failure_tree, start, &private);
1859 if (ret) {
Chris Mason7e383262008-04-09 16:28:12 -04001860 failrec = kmalloc(sizeof(*failrec), GFP_NOFS);
1861 if (!failrec)
1862 return -ENOMEM;
1863 failrec->start = start;
1864 failrec->len = end - start + 1;
1865 failrec->last_mirror = 0;
Chris Masond20f7042008-12-08 16:58:54 -05001866 failrec->bio_flags = 0;
Chris Mason7e383262008-04-09 16:28:12 -04001867
Chris Mason890871b2009-09-02 16:24:52 -04001868 read_lock(&em_tree->lock);
Chris Mason3b951512008-04-17 11:29:12 -04001869 em = lookup_extent_mapping(em_tree, start, failrec->len);
1870 if (em->start > start || em->start + em->len < start) {
1871 free_extent_map(em);
1872 em = NULL;
1873 }
Chris Mason890871b2009-09-02 16:24:52 -04001874 read_unlock(&em_tree->lock);
Chris Mason7e383262008-04-09 16:28:12 -04001875
David Sterbac7040052011-04-19 18:00:01 +02001876 if (IS_ERR_OR_NULL(em)) {
Chris Mason7e383262008-04-09 16:28:12 -04001877 kfree(failrec);
1878 return -EIO;
1879 }
1880 logical = start - em->start;
1881 logical = em->block_start + logical;
Chris Masond20f7042008-12-08 16:58:54 -05001882 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
1883 logical = em->block_start;
1884 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08001885 extent_set_compress_type(&failrec->bio_flags,
1886 em->compress_type);
Chris Masond20f7042008-12-08 16:58:54 -05001887 }
Chris Mason7e383262008-04-09 16:28:12 -04001888 failrec->logical = logical;
1889 free_extent_map(em);
1890 set_extent_bits(failure_tree, start, end, EXTENT_LOCKED |
1891 EXTENT_DIRTY, GFP_NOFS);
Chris Mason587f7702008-04-11 12:16:46 -04001892 set_state_private(failure_tree, start,
1893 (u64)(unsigned long)failrec);
Chris Mason7e383262008-04-09 16:28:12 -04001894 } else {
Chris Mason587f7702008-04-11 12:16:46 -04001895 failrec = (struct io_failure_record *)(unsigned long)private;
Chris Mason7e383262008-04-09 16:28:12 -04001896 }
1897 num_copies = btrfs_num_copies(
1898 &BTRFS_I(inode)->root->fs_info->mapping_tree,
1899 failrec->logical, failrec->len);
1900 failrec->last_mirror++;
1901 if (!state) {
Chris Masoncad321a2008-12-17 14:51:42 -05001902 spin_lock(&BTRFS_I(inode)->io_tree.lock);
Chris Mason7e383262008-04-09 16:28:12 -04001903 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
1904 failrec->start,
1905 EXTENT_LOCKED);
1906 if (state && state->start != failrec->start)
1907 state = NULL;
Chris Masoncad321a2008-12-17 14:51:42 -05001908 spin_unlock(&BTRFS_I(inode)->io_tree.lock);
Chris Mason7e383262008-04-09 16:28:12 -04001909 }
1910 if (!state || failrec->last_mirror > num_copies) {
1911 set_state_private(failure_tree, failrec->start, 0);
1912 clear_extent_bits(failure_tree, failrec->start,
1913 failrec->start + failrec->len - 1,
1914 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
1915 kfree(failrec);
1916 return -EIO;
1917 }
1918 bio = bio_alloc(GFP_NOFS, 1);
1919 bio->bi_private = state;
1920 bio->bi_end_io = failed_bio->bi_end_io;
1921 bio->bi_sector = failrec->logical >> 9;
1922 bio->bi_bdev = failed_bio->bi_bdev;
Chris Masone1c4b742008-04-22 13:26:46 -04001923 bio->bi_size = 0;
Chris Masond20f7042008-12-08 16:58:54 -05001924
Chris Mason7e383262008-04-09 16:28:12 -04001925 bio_add_page(bio, page, failrec->len, start - page_offset(page));
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001926 if (failed_bio->bi_rw & REQ_WRITE)
Chris Mason1259ab72008-05-12 13:39:03 -04001927 rw = WRITE;
1928 else
1929 rw = READ;
1930
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001931 ret = BTRFS_I(inode)->io_tree.ops->submit_bio_hook(inode, rw, bio,
Chris Masonc8b97812008-10-29 14:49:59 -04001932 failrec->last_mirror,
Chris Masoneaf25d92010-05-25 09:48:28 -04001933 failrec->bio_flags, 0);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001934 return ret;
Chris Mason1259ab72008-05-12 13:39:03 -04001935}
1936
Chris Masond352ac62008-09-29 15:18:18 -04001937/*
1938 * each time an IO finishes, we do a fast check in the IO failure tree
1939 * to see if we need to process or clean up an io_failure_record
1940 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001941static int btrfs_clean_io_failures(struct inode *inode, u64 start)
Chris Mason1259ab72008-05-12 13:39:03 -04001942{
1943 u64 private;
1944 u64 private_failure;
1945 struct io_failure_record *failure;
1946 int ret;
1947
1948 private = 0;
1949 if (count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
Chris Masonec29ed52011-02-23 16:23:20 -05001950 (u64)-1, 1, EXTENT_DIRTY, 0)) {
Chris Mason1259ab72008-05-12 13:39:03 -04001951 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree,
1952 start, &private_failure);
1953 if (ret == 0) {
1954 failure = (struct io_failure_record *)(unsigned long)
1955 private_failure;
1956 set_state_private(&BTRFS_I(inode)->io_failure_tree,
1957 failure->start, 0);
1958 clear_extent_bits(&BTRFS_I(inode)->io_failure_tree,
1959 failure->start,
1960 failure->start + failure->len - 1,
1961 EXTENT_DIRTY | EXTENT_LOCKED,
1962 GFP_NOFS);
1963 kfree(failure);
1964 }
1965 }
Chris Mason7e383262008-04-09 16:28:12 -04001966 return 0;
1967}
1968
Chris Masond352ac62008-09-29 15:18:18 -04001969/*
1970 * when reads are done, we need to check csums to verify the data is correct
1971 * if there's a match, we allow the bio to finish. If not, we go through
1972 * the io_failure_record routines to find good copies
1973 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001974static int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason70dec802008-01-29 09:59:12 -05001975 struct extent_state *state)
Chris Mason07157aa2007-08-30 08:50:51 -04001976{
Chris Mason35ebb932007-10-30 16:56:53 -04001977 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -04001978 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05001979 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -04001980 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -05001981 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -04001982 int ret;
Chris Masonff79f812007-10-15 16:22:25 -04001983 struct btrfs_root *root = BTRFS_I(inode)->root;
1984 u32 csum = ~(u32)0;
Chris Masond1310b22008-01-24 16:13:08 -05001985
Chris Masond20f7042008-12-08 16:58:54 -05001986 if (PageChecked(page)) {
1987 ClearPageChecked(page);
1988 goto good;
1989 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001990
1991 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Jan Schmidt08d2f342011-05-04 16:18:50 +02001992 goto good;
Chris Masond20f7042008-12-08 16:58:54 -05001993
Yan Zheng17d217f2008-12-12 10:03:38 -05001994 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04001995 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001996 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM,
1997 GFP_NOFS);
1998 return 0;
1999 }
2000
Yanc2e639f2008-02-04 08:57:25 -05002001 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -05002002 private = state->private;
2003 ret = 0;
2004 } else {
2005 ret = get_state_private(io_tree, start, &private);
2006 }
Chris Mason9ab86c82009-01-07 09:48:51 -05002007 kaddr = kmap_atomic(page, KM_USER0);
Chris Masond3977122009-01-05 21:25:51 -05002008 if (ret)
Chris Mason07157aa2007-08-30 08:50:51 -04002009 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05002010
Chris Masonff79f812007-10-15 16:22:25 -04002011 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
2012 btrfs_csum_final(csum, (char *)&csum);
Chris Masond3977122009-01-05 21:25:51 -05002013 if (csum != private)
Chris Mason07157aa2007-08-30 08:50:51 -04002014 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05002015
Chris Mason9ab86c82009-01-07 09:48:51 -05002016 kunmap_atomic(kaddr, KM_USER0);
Chris Masond20f7042008-12-08 16:58:54 -05002017good:
Chris Mason7e383262008-04-09 16:28:12 -04002018 /* if the io failure tree for this inode is non-empty,
2019 * check to see if we've recovered from a failed IO
2020 */
Chris Mason1259ab72008-05-12 13:39:03 -04002021 btrfs_clean_io_failures(inode, start);
Chris Mason07157aa2007-08-30 08:50:51 -04002022 return 0;
2023
2024zeroit:
Chris Mason945d8962011-05-22 12:33:42 -04002025 printk_ratelimited(KERN_INFO "btrfs csum failed ino %llu off %llu csum %u "
Li Zefan33345d012011-04-20 10:31:50 +08002026 "private %llu\n",
2027 (unsigned long long)btrfs_ino(page->mapping->host),
Chris Mason193f2842009-04-27 07:29:05 -04002028 (unsigned long long)start, csum,
2029 (unsigned long long)private);
Chris Masondb945352007-10-15 16:15:53 -04002030 memset(kaddr + offset, 1, end - start + 1);
2031 flush_dcache_page(page);
Chris Mason9ab86c82009-01-07 09:48:51 -05002032 kunmap_atomic(kaddr, KM_USER0);
Chris Mason3b951512008-04-17 11:29:12 -04002033 if (private == 0)
2034 return 0;
Chris Mason7e383262008-04-09 16:28:12 -04002035 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -04002036}
Chris Masonb888db22007-08-27 16:49:44 -04002037
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002038struct delayed_iput {
2039 struct list_head list;
2040 struct inode *inode;
2041};
2042
2043void btrfs_add_delayed_iput(struct inode *inode)
2044{
2045 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2046 struct delayed_iput *delayed;
2047
2048 if (atomic_add_unless(&inode->i_count, -1, 1))
2049 return;
2050
2051 delayed = kmalloc(sizeof(*delayed), GFP_NOFS | __GFP_NOFAIL);
2052 delayed->inode = inode;
2053
2054 spin_lock(&fs_info->delayed_iput_lock);
2055 list_add_tail(&delayed->list, &fs_info->delayed_iputs);
2056 spin_unlock(&fs_info->delayed_iput_lock);
2057}
2058
2059void btrfs_run_delayed_iputs(struct btrfs_root *root)
2060{
2061 LIST_HEAD(list);
2062 struct btrfs_fs_info *fs_info = root->fs_info;
2063 struct delayed_iput *delayed;
2064 int empty;
2065
2066 spin_lock(&fs_info->delayed_iput_lock);
2067 empty = list_empty(&fs_info->delayed_iputs);
2068 spin_unlock(&fs_info->delayed_iput_lock);
2069 if (empty)
2070 return;
2071
2072 down_read(&root->fs_info->cleanup_work_sem);
2073 spin_lock(&fs_info->delayed_iput_lock);
2074 list_splice_init(&fs_info->delayed_iputs, &list);
2075 spin_unlock(&fs_info->delayed_iput_lock);
2076
2077 while (!list_empty(&list)) {
2078 delayed = list_entry(list.next, struct delayed_iput, list);
2079 list_del(&delayed->list);
2080 iput(delayed->inode);
2081 kfree(delayed);
2082 }
2083 up_read(&root->fs_info->cleanup_work_sem);
2084}
2085
Yan, Zhengd68fc572010-05-16 10:49:58 -04002086enum btrfs_orphan_cleanup_state {
2087 ORPHAN_CLEANUP_STARTED = 1,
2088 ORPHAN_CLEANUP_DONE = 2,
2089};
2090
2091/*
2092 * This is called in transaction commmit time. If there are no orphan
2093 * files in the subvolume, it removes orphan item and frees block_rsv
2094 * structure.
2095 */
2096void btrfs_orphan_commit_root(struct btrfs_trans_handle *trans,
2097 struct btrfs_root *root)
2098{
2099 int ret;
2100
2101 if (!list_empty(&root->orphan_list) ||
2102 root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE)
2103 return;
2104
2105 if (root->orphan_item_inserted &&
2106 btrfs_root_refs(&root->root_item) > 0) {
2107 ret = btrfs_del_orphan_item(trans, root->fs_info->tree_root,
2108 root->root_key.objectid);
2109 BUG_ON(ret);
2110 root->orphan_item_inserted = 0;
2111 }
2112
2113 if (root->orphan_block_rsv) {
2114 WARN_ON(root->orphan_block_rsv->size > 0);
2115 btrfs_free_block_rsv(root, root->orphan_block_rsv);
2116 root->orphan_block_rsv = NULL;
2117 }
2118}
2119
2120/*
Josef Bacik7b128762008-07-24 12:17:14 -04002121 * This creates an orphan entry for the given inode in case something goes
2122 * wrong in the middle of an unlink/truncate.
Yan, Zhengd68fc572010-05-16 10:49:58 -04002123 *
2124 * NOTE: caller of this function should reserve 5 units of metadata for
2125 * this function.
Josef Bacik7b128762008-07-24 12:17:14 -04002126 */
2127int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
2128{
2129 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002130 struct btrfs_block_rsv *block_rsv = NULL;
2131 int reserve = 0;
2132 int insert = 0;
2133 int ret;
Josef Bacik7b128762008-07-24 12:17:14 -04002134
Yan, Zhengd68fc572010-05-16 10:49:58 -04002135 if (!root->orphan_block_rsv) {
2136 block_rsv = btrfs_alloc_block_rsv(root);
Tsutomu Itohb5324022011-07-19 07:27:20 +00002137 if (!block_rsv)
2138 return -ENOMEM;
Josef Bacik7b128762008-07-24 12:17:14 -04002139 }
2140
Yan, Zhengd68fc572010-05-16 10:49:58 -04002141 spin_lock(&root->orphan_lock);
2142 if (!root->orphan_block_rsv) {
2143 root->orphan_block_rsv = block_rsv;
2144 } else if (block_rsv) {
2145 btrfs_free_block_rsv(root, block_rsv);
2146 block_rsv = NULL;
2147 }
Josef Bacik7b128762008-07-24 12:17:14 -04002148
Yan, Zhengd68fc572010-05-16 10:49:58 -04002149 if (list_empty(&BTRFS_I(inode)->i_orphan)) {
2150 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
2151#if 0
2152 /*
2153 * For proper ENOSPC handling, we should do orphan
2154 * cleanup when mounting. But this introduces backward
2155 * compatibility issue.
2156 */
2157 if (!xchg(&root->orphan_item_inserted, 1))
2158 insert = 2;
2159 else
2160 insert = 1;
2161#endif
2162 insert = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002163 }
Josef Bacik7b128762008-07-24 12:17:14 -04002164
Yan, Zhengd68fc572010-05-16 10:49:58 -04002165 if (!BTRFS_I(inode)->orphan_meta_reserved) {
2166 BTRFS_I(inode)->orphan_meta_reserved = 1;
2167 reserve = 1;
2168 }
2169 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002170
Yan, Zhengd68fc572010-05-16 10:49:58 -04002171 /* grab metadata reservation from transaction handle */
2172 if (reserve) {
2173 ret = btrfs_orphan_reserve_metadata(trans, inode);
2174 BUG_ON(ret);
2175 }
2176
2177 /* insert an orphan item to track this unlinked/truncated file */
2178 if (insert >= 1) {
Li Zefan33345d012011-04-20 10:31:50 +08002179 ret = btrfs_insert_orphan_item(trans, root, btrfs_ino(inode));
Yan, Zhengd68fc572010-05-16 10:49:58 -04002180 BUG_ON(ret);
2181 }
2182
2183 /* insert an orphan item to track subvolume contains orphan files */
2184 if (insert >= 2) {
2185 ret = btrfs_insert_orphan_item(trans, root->fs_info->tree_root,
2186 root->root_key.objectid);
2187 BUG_ON(ret);
2188 }
2189 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002190}
2191
2192/*
2193 * We have done the truncate/delete so we can go ahead and remove the orphan
2194 * item for this particular inode.
2195 */
2196int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode)
2197{
2198 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002199 int delete_item = 0;
2200 int release_rsv = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002201 int ret = 0;
2202
Yan, Zhengd68fc572010-05-16 10:49:58 -04002203 spin_lock(&root->orphan_lock);
2204 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
2205 list_del_init(&BTRFS_I(inode)->i_orphan);
2206 delete_item = 1;
Josef Bacik7b128762008-07-24 12:17:14 -04002207 }
2208
Yan, Zhengd68fc572010-05-16 10:49:58 -04002209 if (BTRFS_I(inode)->orphan_meta_reserved) {
2210 BTRFS_I(inode)->orphan_meta_reserved = 0;
2211 release_rsv = 1;
2212 }
2213 spin_unlock(&root->orphan_lock);
2214
2215 if (trans && delete_item) {
Li Zefan33345d012011-04-20 10:31:50 +08002216 ret = btrfs_del_orphan_item(trans, root, btrfs_ino(inode));
Yan, Zhengd68fc572010-05-16 10:49:58 -04002217 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04002218 }
2219
Yan, Zhengd68fc572010-05-16 10:49:58 -04002220 if (release_rsv)
2221 btrfs_orphan_release_metadata(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04002222
Yan, Zhengd68fc572010-05-16 10:49:58 -04002223 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002224}
2225
2226/*
2227 * this cleans up any orphans that may be left on the list from the last use
2228 * of this root.
2229 */
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002230int btrfs_orphan_cleanup(struct btrfs_root *root)
Josef Bacik7b128762008-07-24 12:17:14 -04002231{
2232 struct btrfs_path *path;
2233 struct extent_buffer *leaf;
Josef Bacik7b128762008-07-24 12:17:14 -04002234 struct btrfs_key key, found_key;
2235 struct btrfs_trans_handle *trans;
2236 struct inode *inode;
Josef Bacik8f6d7f42011-09-26 15:55:20 -04002237 u64 last_objectid = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002238 int ret = 0, nr_unlink = 0, nr_truncate = 0;
2239
Yan, Zhengd68fc572010-05-16 10:49:58 -04002240 if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002241 return 0;
Yan, Zhengc71bf092009-11-12 09:34:40 +00002242
2243 path = btrfs_alloc_path();
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002244 if (!path) {
2245 ret = -ENOMEM;
2246 goto out;
2247 }
Josef Bacik7b128762008-07-24 12:17:14 -04002248 path->reada = -1;
2249
2250 key.objectid = BTRFS_ORPHAN_OBJECTID;
2251 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
2252 key.offset = (u64)-1;
2253
Josef Bacik7b128762008-07-24 12:17:14 -04002254 while (1) {
2255 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002256 if (ret < 0)
2257 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04002258
2259 /*
2260 * if ret == 0 means we found what we were searching for, which
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002261 * is weird, but possible, so only screw with path if we didn't
Josef Bacik7b128762008-07-24 12:17:14 -04002262 * find the key and see if we have stuff that matches
2263 */
2264 if (ret > 0) {
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002265 ret = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002266 if (path->slots[0] == 0)
2267 break;
2268 path->slots[0]--;
2269 }
2270
2271 /* pull out the item */
2272 leaf = path->nodes[0];
Josef Bacik7b128762008-07-24 12:17:14 -04002273 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2274
2275 /* make sure the item matches what we want */
2276 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
2277 break;
2278 if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY)
2279 break;
2280
2281 /* release the path since we're done with it */
David Sterbab3b4aa72011-04-21 01:20:15 +02002282 btrfs_release_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04002283
2284 /*
2285 * this is where we are basically btrfs_lookup, without the
2286 * crossing root thing. we store the inode number in the
2287 * offset of the orphan item.
2288 */
Josef Bacik8f6d7f42011-09-26 15:55:20 -04002289
2290 if (found_key.offset == last_objectid) {
2291 printk(KERN_ERR "btrfs: Error removing orphan entry, "
2292 "stopping orphan cleanup\n");
2293 ret = -EINVAL;
2294 goto out;
2295 }
2296
2297 last_objectid = found_key.offset;
2298
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002299 found_key.objectid = found_key.offset;
2300 found_key.type = BTRFS_INODE_ITEM_KEY;
2301 found_key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +00002302 inode = btrfs_iget(root->fs_info->sb, &found_key, root, NULL);
Josef Bacika8c9e572011-09-21 16:55:59 -04002303 ret = PTR_RET(inode);
2304 if (ret && ret != -ESTALE)
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002305 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04002306
2307 /*
2308 * Inode is already gone but the orphan item is still there,
2309 * kill the orphan item.
2310 */
2311 if (ret == -ESTALE) {
2312 trans = btrfs_start_transaction(root, 1);
2313 if (IS_ERR(trans)) {
2314 ret = PTR_ERR(trans);
2315 goto out;
2316 }
2317 ret = btrfs_del_orphan_item(trans, root,
2318 found_key.objectid);
2319 BUG_ON(ret);
2320 btrfs_end_transaction(trans, root);
2321 continue;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002322 }
Josef Bacik7b128762008-07-24 12:17:14 -04002323
Josef Bacik7b128762008-07-24 12:17:14 -04002324 /*
2325 * add this inode to the orphan list so btrfs_orphan_del does
2326 * the proper thing when we hit it
2327 */
Yan, Zhengd68fc572010-05-16 10:49:58 -04002328 spin_lock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002329 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002330 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002331
Josef Bacik7b128762008-07-24 12:17:14 -04002332 /* if we have links, this was a truncate, lets do that */
2333 if (inode->i_nlink) {
Josef Bacika41ad392011-01-31 15:30:16 -05002334 if (!S_ISREG(inode->i_mode)) {
2335 WARN_ON(1);
2336 iput(inode);
2337 continue;
2338 }
Josef Bacik7b128762008-07-24 12:17:14 -04002339 nr_truncate++;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002340 ret = btrfs_truncate(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04002341 } else {
2342 nr_unlink++;
2343 }
2344
2345 /* this will do delete_inode and everything for us */
2346 iput(inode);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002347 if (ret)
2348 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04002349 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002350 root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE;
2351
2352 if (root->orphan_block_rsv)
2353 btrfs_block_rsv_release(root, root->orphan_block_rsv,
2354 (u64)-1);
2355
2356 if (root->orphan_block_rsv || root->orphan_item_inserted) {
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002357 trans = btrfs_join_transaction(root);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002358 if (!IS_ERR(trans))
2359 btrfs_end_transaction(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002360 }
Josef Bacik7b128762008-07-24 12:17:14 -04002361
2362 if (nr_unlink)
2363 printk(KERN_INFO "btrfs: unlinked %d orphans\n", nr_unlink);
2364 if (nr_truncate)
2365 printk(KERN_INFO "btrfs: truncated %d orphans\n", nr_truncate);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002366
2367out:
2368 if (ret)
2369 printk(KERN_CRIT "btrfs: could not do orphan cleanup %d\n", ret);
2370 btrfs_free_path(path);
2371 return ret;
Josef Bacik7b128762008-07-24 12:17:14 -04002372}
2373
Chris Masond352ac62008-09-29 15:18:18 -04002374/*
Chris Mason46a53cc2009-04-27 11:47:50 -04002375 * very simple check to peek ahead in the leaf looking for xattrs. If we
2376 * don't find any xattrs, we know there can't be any acls.
2377 *
2378 * slot is the slot the inode is in, objectid is the objectid of the inode
2379 */
2380static noinline int acls_after_inode_item(struct extent_buffer *leaf,
2381 int slot, u64 objectid)
2382{
2383 u32 nritems = btrfs_header_nritems(leaf);
2384 struct btrfs_key found_key;
2385 int scanned = 0;
2386
2387 slot++;
2388 while (slot < nritems) {
2389 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2390
2391 /* we found a different objectid, there must not be acls */
2392 if (found_key.objectid != objectid)
2393 return 0;
2394
2395 /* we found an xattr, assume we've got an acl */
2396 if (found_key.type == BTRFS_XATTR_ITEM_KEY)
2397 return 1;
2398
2399 /*
2400 * we found a key greater than an xattr key, there can't
2401 * be any acls later on
2402 */
2403 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
2404 return 0;
2405
2406 slot++;
2407 scanned++;
2408
2409 /*
2410 * it goes inode, inode backrefs, xattrs, extents,
2411 * so if there are a ton of hard links to an inode there can
2412 * be a lot of backrefs. Don't waste time searching too hard,
2413 * this is just an optimization
2414 */
2415 if (scanned >= 8)
2416 break;
2417 }
2418 /* we hit the end of the leaf before we found an xattr or
2419 * something larger than an xattr. We have to assume the inode
2420 * has acls
2421 */
2422 return 1;
2423}
2424
2425/*
Chris Masond352ac62008-09-29 15:18:18 -04002426 * read an inode from the btree into the in-memory inode
2427 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002428static void btrfs_read_locked_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002429{
2430 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002431 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002432 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -04002433 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -04002434 struct btrfs_root *root = BTRFS_I(inode)->root;
2435 struct btrfs_key location;
Chris Mason46a53cc2009-04-27 11:47:50 -04002436 int maybe_acls;
Josef Bacik618e21d2007-07-11 10:18:17 -04002437 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04002438 int ret;
Miao Xie2f7e33d2011-06-23 07:27:13 +00002439 bool filled = false;
2440
2441 ret = btrfs_fill_inode(inode, &rdev);
2442 if (!ret)
2443 filled = true;
Chris Mason39279cc2007-06-12 06:35:45 -04002444
2445 path = btrfs_alloc_path();
Mark Fasheh1748f842011-07-12 11:25:31 -07002446 if (!path)
2447 goto make_bad;
2448
Josef Bacikd90c7322011-05-17 09:50:54 -04002449 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002450 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05002451
Chris Mason39279cc2007-06-12 06:35:45 -04002452 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002453 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04002454 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -04002455
Chris Mason5f39d392007-10-15 16:14:19 -04002456 leaf = path->nodes[0];
Miao Xie2f7e33d2011-06-23 07:27:13 +00002457
2458 if (filled)
2459 goto cache_acl;
2460
Chris Mason5f39d392007-10-15 16:14:19 -04002461 inode_item = btrfs_item_ptr(leaf, path->slots[0],
2462 struct btrfs_inode_item);
Chris Mason5f39d392007-10-15 16:14:19 -04002463 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
2464 inode->i_nlink = btrfs_inode_nlink(leaf, inode_item);
2465 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
2466 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
Chris Masondbe674a2008-07-17 12:54:05 -04002467 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002468
2469 tspec = btrfs_inode_atime(inode_item);
2470 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2471 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2472
2473 tspec = btrfs_inode_mtime(inode_item);
2474 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2475 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2476
2477 tspec = btrfs_inode_ctime(inode_item);
2478 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2479 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2480
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002481 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04002482 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Chris Masonc3027eb2008-12-08 16:40:21 -05002483 BTRFS_I(inode)->sequence = btrfs_inode_sequence(leaf, inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04002484 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04002485 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002486 rdev = btrfs_inode_rdev(leaf, inode_item);
2487
Josef Bacikaec74772008-07-24 12:12:38 -04002488 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05002489 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Miao Xie2f7e33d2011-06-23 07:27:13 +00002490cache_acl:
Chris Mason46a53cc2009-04-27 11:47:50 -04002491 /*
2492 * try to precache a NULL acl entry for files that don't have
2493 * any xattrs or acls
2494 */
Li Zefan33345d012011-04-20 10:31:50 +08002495 maybe_acls = acls_after_inode_item(leaf, path->slots[0],
2496 btrfs_ino(inode));
Al Viro72c04902009-06-24 16:58:48 -04002497 if (!maybe_acls)
2498 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04002499
Chris Mason39279cc2007-06-12 06:35:45 -04002500 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002501
Chris Mason39279cc2007-06-12 06:35:45 -04002502 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04002503 case S_IFREG:
2504 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04002505 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05002506 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04002507 inode->i_fop = &btrfs_file_operations;
2508 inode->i_op = &btrfs_file_inode_operations;
2509 break;
2510 case S_IFDIR:
2511 inode->i_fop = &btrfs_dir_file_operations;
2512 if (root == root->fs_info->tree_root)
2513 inode->i_op = &btrfs_dir_ro_inode_operations;
2514 else
2515 inode->i_op = &btrfs_dir_inode_operations;
2516 break;
2517 case S_IFLNK:
2518 inode->i_op = &btrfs_symlink_inode_operations;
2519 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04002520 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04002521 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04002522 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05002523 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04002524 init_special_inode(inode, inode->i_mode, rdev);
2525 break;
Chris Mason39279cc2007-06-12 06:35:45 -04002526 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002527
2528 btrfs_update_iflags(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002529 return;
2530
2531make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04002532 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002533 make_bad_inode(inode);
2534}
2535
Chris Masond352ac62008-09-29 15:18:18 -04002536/*
2537 * given a leaf and an inode, copy the inode fields into the leaf
2538 */
Chris Masone02119d2008-09-05 16:13:11 -04002539static void fill_inode_item(struct btrfs_trans_handle *trans,
2540 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04002541 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04002542 struct inode *inode)
2543{
Chris Mason5f39d392007-10-15 16:14:19 -04002544 btrfs_set_inode_uid(leaf, item, inode->i_uid);
2545 btrfs_set_inode_gid(leaf, item, inode->i_gid);
Chris Masondbe674a2008-07-17 12:54:05 -04002546 btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size);
Chris Mason5f39d392007-10-15 16:14:19 -04002547 btrfs_set_inode_mode(leaf, item, inode->i_mode);
2548 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
2549
2550 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
2551 inode->i_atime.tv_sec);
2552 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
2553 inode->i_atime.tv_nsec);
2554
2555 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
2556 inode->i_mtime.tv_sec);
2557 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
2558 inode->i_mtime.tv_nsec);
2559
2560 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
2561 inode->i_ctime.tv_sec);
2562 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
2563 inode->i_ctime.tv_nsec);
2564
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002565 btrfs_set_inode_nbytes(leaf, item, inode_get_bytes(inode));
Chris Masone02119d2008-09-05 16:13:11 -04002566 btrfs_set_inode_generation(leaf, item, BTRFS_I(inode)->generation);
Chris Masonc3027eb2008-12-08 16:40:21 -05002567 btrfs_set_inode_sequence(leaf, item, BTRFS_I(inode)->sequence);
Chris Masone02119d2008-09-05 16:13:11 -04002568 btrfs_set_inode_transid(leaf, item, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002569 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -05002570 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Josef Bacikd82a6f12011-05-11 15:26:06 -04002571 btrfs_set_inode_block_group(leaf, item, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002572}
2573
Chris Masond352ac62008-09-29 15:18:18 -04002574/*
2575 * copy everything in the in-memory inode into the btree.
2576 */
Chris Masond3977122009-01-05 21:25:51 -05002577noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
2578 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002579{
2580 struct btrfs_inode_item *inode_item;
2581 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002582 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002583 int ret;
2584
Miao Xie16cdcec2011-04-22 18:12:22 +08002585 /*
Miao Xie149e2d72011-07-06 18:51:53 -04002586 * If the inode is a free space inode, we can deadlock during commit
2587 * if we put it into the delayed code.
2588 *
2589 * The data relocation inode should also be directly updated
2590 * without delay
Miao Xie16cdcec2011-04-22 18:12:22 +08002591 */
Chris Mason2cf85722011-07-26 15:35:09 -04002592 if (!btrfs_is_free_space_inode(root, inode)
Miao Xie149e2d72011-07-06 18:51:53 -04002593 && root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID) {
Miao Xie16cdcec2011-04-22 18:12:22 +08002594 ret = btrfs_delayed_update_inode(trans, root, inode);
2595 if (!ret)
2596 btrfs_set_inode_last_trans(trans, inode);
2597 return ret;
2598 }
2599
Chris Mason39279cc2007-06-12 06:35:45 -04002600 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08002601 if (!path)
2602 return -ENOMEM;
2603
Chris Masonb9473432009-03-13 11:00:37 -04002604 path->leave_spinning = 1;
Miao Xie16cdcec2011-04-22 18:12:22 +08002605 ret = btrfs_lookup_inode(trans, root, path, &BTRFS_I(inode)->location,
2606 1);
Chris Mason39279cc2007-06-12 06:35:45 -04002607 if (ret) {
2608 if (ret > 0)
2609 ret = -ENOENT;
2610 goto failed;
2611 }
2612
Chris Masonb4ce94d2009-02-04 09:25:08 -05002613 btrfs_unlock_up_safe(path, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002614 leaf = path->nodes[0];
2615 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Miao Xie16cdcec2011-04-22 18:12:22 +08002616 struct btrfs_inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -04002617
Chris Masone02119d2008-09-05 16:13:11 -04002618 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002619 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002620 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002621 ret = 0;
2622failed:
Chris Mason39279cc2007-06-12 06:35:45 -04002623 btrfs_free_path(path);
2624 return ret;
2625}
2626
Chris Masond352ac62008-09-29 15:18:18 -04002627/*
2628 * unlink helper that gets used here in inode.c and in the tree logging
2629 * recovery code. It remove a link in a directory with a given name, and
2630 * also drops the back refs in the inode to the directory
2631 */
Al Viro92986792011-03-04 17:14:37 +00002632static int __btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2633 struct btrfs_root *root,
2634 struct inode *dir, struct inode *inode,
2635 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04002636{
2637 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04002638 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002639 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002640 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04002641 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04002642 u64 index;
Li Zefan33345d012011-04-20 10:31:50 +08002643 u64 ino = btrfs_ino(inode);
2644 u64 dir_ino = btrfs_ino(dir);
Chris Mason39279cc2007-06-12 06:35:45 -04002645
2646 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002647 if (!path) {
2648 ret = -ENOMEM;
Tsutomu Itoh554233a2011-02-03 03:16:25 +00002649 goto out;
Chris Mason54aa1f42007-06-22 14:16:25 -04002650 }
2651
Chris Masonb9473432009-03-13 11:00:37 -04002652 path->leave_spinning = 1;
Li Zefan33345d012011-04-20 10:31:50 +08002653 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Chris Mason39279cc2007-06-12 06:35:45 -04002654 name, name_len, -1);
2655 if (IS_ERR(di)) {
2656 ret = PTR_ERR(di);
2657 goto err;
2658 }
2659 if (!di) {
2660 ret = -ENOENT;
2661 goto err;
2662 }
Chris Mason5f39d392007-10-15 16:14:19 -04002663 leaf = path->nodes[0];
2664 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04002665 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04002666 if (ret)
2667 goto err;
David Sterbab3b4aa72011-04-21 01:20:15 +02002668 btrfs_release_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002669
Li Zefan33345d012011-04-20 10:31:50 +08002670 ret = btrfs_del_inode_ref(trans, root, name, name_len, ino,
2671 dir_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04002672 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05002673 printk(KERN_INFO "btrfs failed to delete reference to %.*s, "
Li Zefan33345d012011-04-20 10:31:50 +08002674 "inode %llu parent %llu\n", name_len, name,
2675 (unsigned long long)ino, (unsigned long long)dir_ino);
Josef Bacikaec74772008-07-24 12:12:38 -04002676 goto err;
2677 }
2678
Miao Xie16cdcec2011-04-22 18:12:22 +08002679 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
2680 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04002681 goto err;
Chris Mason39279cc2007-06-12 06:35:45 -04002682
Chris Masone02119d2008-09-05 16:13:11 -04002683 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
Li Zefan33345d012011-04-20 10:31:50 +08002684 inode, dir_ino);
Chris Mason49eb7e42008-09-11 15:53:12 -04002685 BUG_ON(ret != 0 && ret != -ENOENT);
Chris Masone02119d2008-09-05 16:13:11 -04002686
2687 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
2688 dir, index);
Chris Mason6418c962010-10-30 07:34:24 -04002689 if (ret == -ENOENT)
2690 ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002691err:
2692 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002693 if (ret)
2694 goto out;
2695
2696 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
2697 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
2698 btrfs_update_inode(trans, root, dir);
Chris Masone02119d2008-09-05 16:13:11 -04002699out:
Chris Mason39279cc2007-06-12 06:35:45 -04002700 return ret;
2701}
2702
Al Viro92986792011-03-04 17:14:37 +00002703int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2704 struct btrfs_root *root,
2705 struct inode *dir, struct inode *inode,
2706 const char *name, int name_len)
2707{
2708 int ret;
2709 ret = __btrfs_unlink_inode(trans, root, dir, inode, name, name_len);
2710 if (!ret) {
2711 btrfs_drop_nlink(inode);
2712 ret = btrfs_update_inode(trans, root, inode);
2713 }
2714 return ret;
2715}
2716
2717
Yan, Zhenga22285a2010-05-16 10:48:46 -04002718/* helper to check if there is any shared block in the path */
2719static int check_path_shared(struct btrfs_root *root,
2720 struct btrfs_path *path)
2721{
2722 struct extent_buffer *eb;
2723 int level;
Dan Carpenter0e4dcbe2010-06-01 08:23:11 +00002724 u64 refs = 1;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002725
2726 for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
Josef Bacikdedefd72011-01-24 21:43:18 +00002727 int ret;
2728
Yan, Zhenga22285a2010-05-16 10:48:46 -04002729 if (!path->nodes[level])
2730 break;
2731 eb = path->nodes[level];
2732 if (!btrfs_block_can_be_shared(root, eb))
2733 continue;
2734 ret = btrfs_lookup_extent_info(NULL, root, eb->start, eb->len,
2735 &refs, NULL);
2736 if (refs > 1)
2737 return 1;
2738 }
Josef Bacikdedefd72011-01-24 21:43:18 +00002739 return 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002740}
2741
2742/*
2743 * helper to start transaction for unlink and rmdir.
2744 *
2745 * unlink and rmdir are special in btrfs, they do not always free space.
2746 * so in enospc case, we should make sure they will free space before
2747 * allowing them to use the global metadata reservation.
2748 */
2749static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir,
2750 struct dentry *dentry)
2751{
2752 struct btrfs_trans_handle *trans;
2753 struct btrfs_root *root = BTRFS_I(dir)->root;
2754 struct btrfs_path *path;
2755 struct btrfs_inode_ref *ref;
2756 struct btrfs_dir_item *di;
2757 struct inode *inode = dentry->d_inode;
2758 u64 index;
2759 int check_link = 1;
2760 int err = -ENOSPC;
2761 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08002762 u64 ino = btrfs_ino(inode);
2763 u64 dir_ino = btrfs_ino(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002764
Josef Bacike70bea52011-10-11 14:18:24 -04002765 /*
2766 * 1 for the possible orphan item
2767 * 1 for the dir item
2768 * 1 for the dir index
2769 * 1 for the inode ref
2770 * 1 for the inode ref in the tree log
2771 * 2 for the dir entries in the log
2772 * 1 for the inode
2773 */
2774 trans = btrfs_start_transaction(root, 8);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002775 if (!IS_ERR(trans) || PTR_ERR(trans) != -ENOSPC)
2776 return trans;
2777
Li Zefan33345d012011-04-20 10:31:50 +08002778 if (ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhenga22285a2010-05-16 10:48:46 -04002779 return ERR_PTR(-ENOSPC);
2780
2781 /* check if there is someone else holds reference */
2782 if (S_ISDIR(inode->i_mode) && atomic_read(&inode->i_count) > 1)
2783 return ERR_PTR(-ENOSPC);
2784
2785 if (atomic_read(&inode->i_count) > 2)
2786 return ERR_PTR(-ENOSPC);
2787
2788 if (xchg(&root->fs_info->enospc_unlink, 1))
2789 return ERR_PTR(-ENOSPC);
2790
2791 path = btrfs_alloc_path();
2792 if (!path) {
2793 root->fs_info->enospc_unlink = 0;
2794 return ERR_PTR(-ENOMEM);
2795 }
2796
Josef Bacik3880a1b2011-10-14 14:46:51 -04002797 /* 1 for the orphan item */
2798 trans = btrfs_start_transaction(root, 1);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002799 if (IS_ERR(trans)) {
2800 btrfs_free_path(path);
2801 root->fs_info->enospc_unlink = 0;
2802 return trans;
2803 }
2804
2805 path->skip_locking = 1;
2806 path->search_commit_root = 1;
2807
2808 ret = btrfs_lookup_inode(trans, root, path,
2809 &BTRFS_I(dir)->location, 0);
2810 if (ret < 0) {
2811 err = ret;
2812 goto out;
2813 }
2814 if (ret == 0) {
2815 if (check_path_shared(root, path))
2816 goto out;
2817 } else {
2818 check_link = 0;
2819 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002820 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002821
2822 ret = btrfs_lookup_inode(trans, root, path,
2823 &BTRFS_I(inode)->location, 0);
2824 if (ret < 0) {
2825 err = ret;
2826 goto out;
2827 }
2828 if (ret == 0) {
2829 if (check_path_shared(root, path))
2830 goto out;
2831 } else {
2832 check_link = 0;
2833 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002834 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002835
2836 if (ret == 0 && S_ISREG(inode->i_mode)) {
2837 ret = btrfs_lookup_file_extent(trans, root, path,
Li Zefan33345d012011-04-20 10:31:50 +08002838 ino, (u64)-1, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002839 if (ret < 0) {
2840 err = ret;
2841 goto out;
2842 }
2843 BUG_ON(ret == 0);
2844 if (check_path_shared(root, path))
2845 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +02002846 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002847 }
2848
2849 if (!check_link) {
2850 err = 0;
2851 goto out;
2852 }
2853
Li Zefan33345d012011-04-20 10:31:50 +08002854 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zhenga22285a2010-05-16 10:48:46 -04002855 dentry->d_name.name, dentry->d_name.len, 0);
2856 if (IS_ERR(di)) {
2857 err = PTR_ERR(di);
2858 goto out;
2859 }
2860 if (di) {
2861 if (check_path_shared(root, path))
2862 goto out;
2863 } else {
2864 err = 0;
2865 goto out;
2866 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002867 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002868
2869 ref = btrfs_lookup_inode_ref(trans, root, path,
2870 dentry->d_name.name, dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08002871 ino, dir_ino, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002872 if (IS_ERR(ref)) {
2873 err = PTR_ERR(ref);
2874 goto out;
2875 }
2876 BUG_ON(!ref);
2877 if (check_path_shared(root, path))
2878 goto out;
2879 index = btrfs_inode_ref_index(path->nodes[0], ref);
David Sterbab3b4aa72011-04-21 01:20:15 +02002880 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002881
Miao Xie16cdcec2011-04-22 18:12:22 +08002882 /*
2883 * This is a commit root search, if we can lookup inode item and other
2884 * relative items in the commit root, it means the transaction of
2885 * dir/file creation has been committed, and the dir index item that we
2886 * delay to insert has also been inserted into the commit root. So
2887 * we needn't worry about the delayed insertion of the dir index item
2888 * here.
2889 */
Li Zefan33345d012011-04-20 10:31:50 +08002890 di = btrfs_lookup_dir_index_item(trans, root, path, dir_ino, index,
Yan, Zhenga22285a2010-05-16 10:48:46 -04002891 dentry->d_name.name, dentry->d_name.len, 0);
2892 if (IS_ERR(di)) {
2893 err = PTR_ERR(di);
2894 goto out;
2895 }
2896 BUG_ON(ret == -ENOENT);
2897 if (check_path_shared(root, path))
2898 goto out;
2899
2900 err = 0;
2901out:
2902 btrfs_free_path(path);
Josef Bacik3880a1b2011-10-14 14:46:51 -04002903 /* Migrate the orphan reservation over */
2904 if (!err)
2905 err = btrfs_block_rsv_migrate(trans->block_rsv,
2906 &root->fs_info->global_block_rsv,
2907 btrfs_calc_trans_metadata_size(root, 1));
2908
Yan, Zhenga22285a2010-05-16 10:48:46 -04002909 if (err) {
2910 btrfs_end_transaction(trans, root);
2911 root->fs_info->enospc_unlink = 0;
2912 return ERR_PTR(err);
2913 }
2914
2915 trans->block_rsv = &root->fs_info->global_block_rsv;
2916 return trans;
2917}
2918
2919static void __unlink_end_trans(struct btrfs_trans_handle *trans,
2920 struct btrfs_root *root)
2921{
2922 if (trans->block_rsv == &root->fs_info->global_block_rsv) {
2923 BUG_ON(!root->fs_info->enospc_unlink);
2924 root->fs_info->enospc_unlink = 0;
2925 }
2926 btrfs_end_transaction_throttle(trans, root);
2927}
2928
Chris Mason39279cc2007-06-12 06:35:45 -04002929static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
2930{
Yan, Zhenga22285a2010-05-16 10:48:46 -04002931 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002932 struct btrfs_trans_handle *trans;
Josef Bacik7b128762008-07-24 12:17:14 -04002933 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002934 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05002935 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002936
Yan, Zhenga22285a2010-05-16 10:48:46 -04002937 trans = __unlink_start_trans(dir, dentry);
2938 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05002939 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04002940
Chris Mason12fcfd22009-03-24 10:24:20 -04002941 btrfs_record_unlink_dir(trans, dir, dentry->d_inode, 0);
2942
Chris Masone02119d2008-09-05 16:13:11 -04002943 ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
2944 dentry->d_name.name, dentry->d_name.len);
Tsutomu Itohb5324022011-07-19 07:27:20 +00002945 if (ret)
2946 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04002947
Yan, Zhenga22285a2010-05-16 10:48:46 -04002948 if (inode->i_nlink == 0) {
Josef Bacik7b128762008-07-24 12:17:14 -04002949 ret = btrfs_orphan_add(trans, inode);
Tsutomu Itohb5324022011-07-19 07:27:20 +00002950 if (ret)
2951 goto out;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002952 }
Josef Bacik7b128762008-07-24 12:17:14 -04002953
Tsutomu Itohb5324022011-07-19 07:27:20 +00002954out:
Chris Masond3c2fdc2007-09-17 10:58:06 -04002955 nr = trans->blocks_used;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002956 __unlink_end_trans(trans, root);
Chris Masond3c2fdc2007-09-17 10:58:06 -04002957 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002958 return ret;
2959}
2960
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002961int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
2962 struct btrfs_root *root,
2963 struct inode *dir, u64 objectid,
2964 const char *name, int name_len)
2965{
2966 struct btrfs_path *path;
2967 struct extent_buffer *leaf;
2968 struct btrfs_dir_item *di;
2969 struct btrfs_key key;
2970 u64 index;
2971 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08002972 u64 dir_ino = btrfs_ino(dir);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002973
2974 path = btrfs_alloc_path();
2975 if (!path)
2976 return -ENOMEM;
2977
Li Zefan33345d012011-04-20 10:31:50 +08002978 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002979 name, name_len, -1);
David Sterbac7040052011-04-19 18:00:01 +02002980 BUG_ON(IS_ERR_OR_NULL(di));
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002981
2982 leaf = path->nodes[0];
2983 btrfs_dir_item_key_to_cpu(leaf, di, &key);
2984 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
2985 ret = btrfs_delete_one_dir_name(trans, root, path, di);
2986 BUG_ON(ret);
David Sterbab3b4aa72011-04-21 01:20:15 +02002987 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002988
2989 ret = btrfs_del_root_ref(trans, root->fs_info->tree_root,
2990 objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08002991 dir_ino, &index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002992 if (ret < 0) {
2993 BUG_ON(ret != -ENOENT);
Li Zefan33345d012011-04-20 10:31:50 +08002994 di = btrfs_search_dir_index_item(root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002995 name, name_len);
David Sterbac7040052011-04-19 18:00:01 +02002996 BUG_ON(IS_ERR_OR_NULL(di));
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04002997
2998 leaf = path->nodes[0];
2999 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02003000 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003001 index = key.offset;
3002 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003003 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003004
Miao Xie16cdcec2011-04-22 18:12:22 +08003005 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
3006 BUG_ON(ret);
3007
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003008 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
3009 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
3010 ret = btrfs_update_inode(trans, root, dir);
3011 BUG_ON(ret);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003012
Josef Bacik71d7aed2011-06-14 14:24:32 -04003013 btrfs_free_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003014 return 0;
3015}
3016
Chris Mason39279cc2007-06-12 06:35:45 -04003017static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
3018{
3019 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05003020 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003021 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003022 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -05003023 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003024
Chris Mason3394e162008-11-17 20:42:26 -05003025 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE ||
Li Zefan33345d012011-04-20 10:31:50 +08003026 btrfs_ino(inode) == BTRFS_FIRST_FREE_OBJECTID)
Yan134d4512007-10-25 15:49:25 -04003027 return -ENOTEMPTY;
3028
Yan, Zhenga22285a2010-05-16 10:48:46 -04003029 trans = __unlink_start_trans(dir, dentry);
3030 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003031 return PTR_ERR(trans);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003032
Li Zefan33345d012011-04-20 10:31:50 +08003033 if (unlikely(btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003034 err = btrfs_unlink_subvol(trans, root, dir,
3035 BTRFS_I(inode)->location.objectid,
3036 dentry->d_name.name,
3037 dentry->d_name.len);
3038 goto out;
3039 }
3040
Josef Bacik7b128762008-07-24 12:17:14 -04003041 err = btrfs_orphan_add(trans, inode);
3042 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003043 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003044
Chris Mason39279cc2007-06-12 06:35:45 -04003045 /* now the directory is empty */
Chris Masone02119d2008-09-05 16:13:11 -04003046 err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
3047 dentry->d_name.name, dentry->d_name.len);
Chris Masond3977122009-01-05 21:25:51 -05003048 if (!err)
Chris Masondbe674a2008-07-17 12:54:05 -04003049 btrfs_i_size_write(inode, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003050out:
Chris Masond3c2fdc2007-09-17 10:58:06 -04003051 nr = trans->blocks_used;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003052 __unlink_end_trans(trans, root);
Chris Masond3c2fdc2007-09-17 10:58:06 -04003053 btrfs_btree_balance_dirty(root, nr);
Chris Mason39544012007-12-12 14:38:19 -05003054
Chris Mason39279cc2007-06-12 06:35:45 -04003055 return err;
3056}
3057
Chris Mason323ac952008-10-01 19:05:46 -04003058/*
Chris Mason39279cc2007-06-12 06:35:45 -04003059 * this can truncate away extent items, csum items and directory items.
3060 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04003061 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04003062 *
3063 * csum items that cross the new i_size are truncated to the new size
3064 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04003065 *
3066 * min_type is the minimum key type to truncate down to. If set to 0, this
3067 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04003068 */
Yan, Zheng80825102009-11-12 09:35:36 +00003069int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
3070 struct btrfs_root *root,
3071 struct inode *inode,
3072 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003073{
Chris Mason39279cc2007-06-12 06:35:45 -04003074 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003075 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003076 struct btrfs_file_extent_item *fi;
Yan, Zheng80825102009-11-12 09:35:36 +00003077 struct btrfs_key key;
3078 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04003079 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04003080 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003081 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003082 u64 item_end = 0;
Yan, Zheng80825102009-11-12 09:35:36 +00003083 u64 mask = root->sectorsize - 1;
3084 u32 found_type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -04003085 int found_extent;
3086 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05003087 int pending_del_nr = 0;
3088 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04003089 int extent_type = -1;
Chris Mason771ed682008-11-06 22:02:51 -05003090 int encoding;
Yan, Zheng80825102009-11-12 09:35:36 +00003091 int ret;
3092 int err = 0;
Li Zefan33345d012011-04-20 10:31:50 +08003093 u64 ino = btrfs_ino(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003094
3095 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04003096
Mark Fasheh0eb0e192011-07-12 16:44:10 -07003097 path = btrfs_alloc_path();
3098 if (!path)
3099 return -ENOMEM;
3100 path->reada = -1;
3101
Josef Bacik0af3d002010-06-21 14:48:16 -04003102 if (root->ref_cows || root == root->fs_info->tree_root)
Zheng Yan5b21f2e2008-09-26 10:05:38 -04003103 btrfs_drop_extent_cache(inode, new_size & (~mask), (u64)-1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003104
Miao Xie16cdcec2011-04-22 18:12:22 +08003105 /*
3106 * This function is also used to drop the items in the log tree before
3107 * we relog the inode, so if root != BTRFS_I(inode)->root, it means
3108 * it is used to drop the loged items. So we shouldn't kill the delayed
3109 * items.
3110 */
3111 if (min_type == 0 && root == BTRFS_I(inode)->root)
3112 btrfs_kill_delayed_inode_items(inode);
3113
Li Zefan33345d012011-04-20 10:31:50 +08003114 key.objectid = ino;
Chris Mason39279cc2007-06-12 06:35:45 -04003115 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04003116 key.type = (u8)-1;
3117
Chris Mason85e21ba2008-01-29 15:11:36 -05003118search_again:
Chris Masonb9473432009-03-13 11:00:37 -04003119 path->leave_spinning = 1;
Chris Mason85e21ba2008-01-29 15:11:36 -05003120 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Yan, Zheng80825102009-11-12 09:35:36 +00003121 if (ret < 0) {
3122 err = ret;
3123 goto out;
3124 }
Chris Masond3977122009-01-05 21:25:51 -05003125
Chris Mason85e21ba2008-01-29 15:11:36 -05003126 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003127 /* there are no items in the tree for us to truncate, we're
3128 * done
3129 */
Yan, Zheng80825102009-11-12 09:35:36 +00003130 if (path->slots[0] == 0)
3131 goto out;
Chris Mason85e21ba2008-01-29 15:11:36 -05003132 path->slots[0]--;
3133 }
3134
Chris Masond3977122009-01-05 21:25:51 -05003135 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04003136 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04003137 leaf = path->nodes[0];
3138 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3139 found_type = btrfs_key_type(&found_key);
Chris Mason771ed682008-11-06 22:02:51 -05003140 encoding = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003141
Li Zefan33345d012011-04-20 10:31:50 +08003142 if (found_key.objectid != ino)
Chris Mason39279cc2007-06-12 06:35:45 -04003143 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003144
Chris Mason85e21ba2008-01-29 15:11:36 -05003145 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003146 break;
3147
Chris Mason5f39d392007-10-15 16:14:19 -04003148 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04003149 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04003150 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04003151 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04003152 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05003153 encoding = btrfs_file_extent_compression(leaf, fi);
3154 encoding |= btrfs_file_extent_encryption(leaf, fi);
3155 encoding |= btrfs_file_extent_other_encoding(leaf, fi);
3156
Chris Mason179e29e2007-11-01 11:28:41 -04003157 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04003158 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04003159 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04003160 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04003161 item_end += btrfs_file_extent_inline_len(leaf,
Chris Masonc8b97812008-10-29 14:49:59 -04003162 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003163 }
Yan008630c2007-11-07 13:31:09 -05003164 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04003165 }
Yan, Zheng80825102009-11-12 09:35:36 +00003166 if (found_type > min_type) {
Chris Mason39279cc2007-06-12 06:35:45 -04003167 del_item = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00003168 } else {
3169 if (item_end < new_size)
3170 break;
3171 if (found_key.offset >= new_size)
3172 del_item = 1;
3173 else
3174 del_item = 0;
3175 }
Chris Mason39279cc2007-06-12 06:35:45 -04003176 found_extent = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003177 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04003178 if (found_type != BTRFS_EXTENT_DATA_KEY)
3179 goto delete;
3180
3181 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04003182 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04003183 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Chris Mason771ed682008-11-06 22:02:51 -05003184 if (!del_item && !encoding) {
Chris Masondb945352007-10-15 16:15:53 -04003185 u64 orig_num_bytes =
3186 btrfs_file_extent_num_bytes(leaf, fi);
Chris Masone02119d2008-09-05 16:13:11 -04003187 extent_num_bytes = new_size -
Chris Mason5f39d392007-10-15 16:14:19 -04003188 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -05003189 extent_num_bytes = extent_num_bytes &
3190 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04003191 btrfs_set_file_extent_num_bytes(leaf, fi,
3192 extent_num_bytes);
3193 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05003194 extent_num_bytes);
Chris Masone02119d2008-09-05 16:13:11 -04003195 if (root->ref_cows && extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003196 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04003197 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003198 } else {
Chris Masondb945352007-10-15 16:15:53 -04003199 extent_num_bytes =
3200 btrfs_file_extent_disk_num_bytes(leaf,
3201 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003202 extent_offset = found_key.offset -
3203 btrfs_file_extent_offset(leaf, fi);
3204
Chris Mason39279cc2007-06-12 06:35:45 -04003205 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05003206 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003207 if (extent_start != 0) {
3208 found_extent = 1;
Chris Masone02119d2008-09-05 16:13:11 -04003209 if (root->ref_cows)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003210 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04003211 }
3212 }
Chris Mason90692182008-02-08 13:49:28 -05003213 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003214 /*
3215 * we can't truncate inline items that have had
3216 * special encodings
3217 */
3218 if (!del_item &&
3219 btrfs_file_extent_compression(leaf, fi) == 0 &&
3220 btrfs_file_extent_encryption(leaf, fi) == 0 &&
3221 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003222 u32 size = new_size - found_key.offset;
3223
3224 if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003225 inode_sub_bytes(inode, item_end + 1 -
3226 new_size);
Chris Masone02119d2008-09-05 16:13:11 -04003227 }
3228 size =
3229 btrfs_file_extent_calc_inline_size(size);
Chris Mason90692182008-02-08 13:49:28 -05003230 ret = btrfs_truncate_item(trans, root, path,
Chris Masone02119d2008-09-05 16:13:11 -04003231 size, 1);
Chris Masone02119d2008-09-05 16:13:11 -04003232 } else if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003233 inode_sub_bytes(inode, item_end + 1 -
3234 found_key.offset);
Chris Mason90692182008-02-08 13:49:28 -05003235 }
Chris Mason39279cc2007-06-12 06:35:45 -04003236 }
Chris Mason179e29e2007-11-01 11:28:41 -04003237delete:
Chris Mason39279cc2007-06-12 06:35:45 -04003238 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05003239 if (!pending_del_nr) {
3240 /* no pending yet, add ourselves */
3241 pending_del_slot = path->slots[0];
3242 pending_del_nr = 1;
3243 } else if (pending_del_nr &&
3244 path->slots[0] + 1 == pending_del_slot) {
3245 /* hop on the pending chunk */
3246 pending_del_nr++;
3247 pending_del_slot = path->slots[0];
3248 } else {
Chris Masond3977122009-01-05 21:25:51 -05003249 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05003250 }
Chris Mason39279cc2007-06-12 06:35:45 -04003251 } else {
3252 break;
3253 }
Josef Bacik0af3d002010-06-21 14:48:16 -04003254 if (found_extent && (root->ref_cows ||
3255 root == root->fs_info->tree_root)) {
Chris Masonb9473432009-03-13 11:00:37 -04003256 btrfs_set_path_blocking(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003257 ret = btrfs_free_extent(trans, root, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003258 extent_num_bytes, 0,
3259 btrfs_header_owner(leaf),
Li Zefan33345d012011-04-20 10:31:50 +08003260 ino, extent_offset);
Chris Mason39279cc2007-06-12 06:35:45 -04003261 BUG_ON(ret);
3262 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003263
Yan, Zheng80825102009-11-12 09:35:36 +00003264 if (found_type == BTRFS_INODE_ITEM_KEY)
3265 break;
3266
3267 if (path->slots[0] == 0 ||
3268 path->slots[0] != pending_del_slot) {
Li Zefan82d59022011-04-20 10:33:24 +08003269 if (root->ref_cows &&
3270 BTRFS_I(inode)->location.objectid !=
3271 BTRFS_FREE_INO_OBJECTID) {
Yan, Zheng80825102009-11-12 09:35:36 +00003272 err = -EAGAIN;
3273 goto out;
3274 }
3275 if (pending_del_nr) {
3276 ret = btrfs_del_items(trans, root, path,
3277 pending_del_slot,
3278 pending_del_nr);
3279 BUG_ON(ret);
3280 pending_del_nr = 0;
3281 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003282 btrfs_release_path(path);
Chris Mason85e21ba2008-01-29 15:11:36 -05003283 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00003284 } else {
3285 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05003286 }
Chris Mason39279cc2007-06-12 06:35:45 -04003287 }
Yan, Zheng80825102009-11-12 09:35:36 +00003288out:
Chris Mason85e21ba2008-01-29 15:11:36 -05003289 if (pending_del_nr) {
3290 ret = btrfs_del_items(trans, root, path, pending_del_slot,
3291 pending_del_nr);
Yan, Zhengd68fc572010-05-16 10:49:58 -04003292 BUG_ON(ret);
Chris Mason85e21ba2008-01-29 15:11:36 -05003293 }
Chris Mason39279cc2007-06-12 06:35:45 -04003294 btrfs_free_path(path);
Yan, Zheng80825102009-11-12 09:35:36 +00003295 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003296}
3297
Chris Masona52d9a82007-08-27 16:49:44 -04003298/*
3299 * taken from block_truncate_page, but does cow as it zeros out
3300 * any bytes left in the last page in the file.
3301 */
3302static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
3303{
3304 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -04003305 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003306 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
3307 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003308 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003309 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04003310 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04003311 pgoff_t index = from >> PAGE_CACHE_SHIFT;
3312 unsigned offset = from & (PAGE_CACHE_SIZE-1);
3313 struct page *page;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04003314 gfp_t mask = btrfs_alloc_write_mask(mapping);
Chris Masona52d9a82007-08-27 16:49:44 -04003315 int ret = 0;
3316 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003317 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04003318
3319 if ((offset & (blocksize - 1)) == 0)
3320 goto out;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003321 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003322 if (ret)
3323 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003324
3325 ret = -ENOMEM;
Chris Mason211c17f2008-05-15 09:13:45 -04003326again:
Josef Bacik3b16a4e2011-09-21 15:05:58 -04003327 page = find_or_create_page(mapping, index, mask);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003328 if (!page) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003329 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Masona52d9a82007-08-27 16:49:44 -04003330 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04003331 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003332
3333 page_start = page_offset(page);
3334 page_end = page_start + PAGE_CACHE_SIZE - 1;
3335
Chris Masona52d9a82007-08-27 16:49:44 -04003336 if (!PageUptodate(page)) {
3337 ret = btrfs_readpage(NULL, page);
3338 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04003339 if (page->mapping != mapping) {
3340 unlock_page(page);
3341 page_cache_release(page);
3342 goto again;
3343 }
Chris Masona52d9a82007-08-27 16:49:44 -04003344 if (!PageUptodate(page)) {
3345 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04003346 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04003347 }
3348 }
Chris Mason211c17f2008-05-15 09:13:45 -04003349 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003350
Josef Bacik2ac55d42010-02-03 19:33:23 +00003351 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state,
3352 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003353 set_page_extent_mapped(page);
3354
3355 ordered = btrfs_lookup_ordered_extent(inode, page_start);
3356 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003357 unlock_extent_cached(io_tree, page_start, page_end,
3358 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003359 unlock_page(page);
3360 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04003361 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003362 btrfs_put_ordered_extent(ordered);
3363 goto again;
3364 }
3365
Josef Bacik2ac55d42010-02-03 19:33:23 +00003366 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Josef Bacik5d5e1032009-10-13 16:46:49 -04003367 EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003368 0, 0, &cached_state, GFP_NOFS);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003369
Josef Bacik2ac55d42010-02-03 19:33:23 +00003370 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
3371 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003372 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003373 unlock_extent_cached(io_tree, page_start, page_end,
3374 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003375 goto out_unlock;
3376 }
3377
Chris Masone6dcd2d2008-07-17 12:53:50 -04003378 ret = 0;
3379 if (offset != PAGE_CACHE_SIZE) {
3380 kaddr = kmap(page);
3381 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
3382 flush_dcache_page(page);
3383 kunmap(page);
3384 }
Chris Mason247e7432008-07-17 12:53:51 -04003385 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003386 set_page_dirty(page);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003387 unlock_extent_cached(io_tree, page_start, page_end, &cached_state,
3388 GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04003389
Chris Mason89642222008-07-24 09:41:53 -04003390out_unlock:
Josef Bacik5d5e1032009-10-13 16:46:49 -04003391 if (ret)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003392 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason39279cc2007-06-12 06:35:45 -04003393 unlock_page(page);
3394 page_cache_release(page);
3395out:
3396 return ret;
3397}
3398
Josef Bacik695a0d02011-03-04 15:46:53 -05003399/*
3400 * This function puts in dummy file extents for the area we're creating a hole
3401 * for. So if we are truncating this file to a larger size we need to insert
3402 * these file extents so that btrfs_get_extent will return a EXTENT_MAP_HOLE for
3403 * the range between oldsize and size
3404 */
Josef Bacika41ad392011-01-31 15:30:16 -05003405int btrfs_cont_expand(struct inode *inode, loff_t oldsize, loff_t size)
Yan Zheng9036c102008-10-30 14:19:41 -04003406{
3407 struct btrfs_trans_handle *trans;
3408 struct btrfs_root *root = BTRFS_I(inode)->root;
3409 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003410 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003411 struct extent_state *cached_state = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04003412 u64 mask = root->sectorsize - 1;
Josef Bacika41ad392011-01-31 15:30:16 -05003413 u64 hole_start = (oldsize + mask) & ~mask;
Yan Zheng9036c102008-10-30 14:19:41 -04003414 u64 block_end = (size + mask) & ~mask;
3415 u64 last_byte;
3416 u64 cur_offset;
3417 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003418 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003419
3420 if (size <= hole_start)
3421 return 0;
3422
Yan Zheng9036c102008-10-30 14:19:41 -04003423 while (1) {
3424 struct btrfs_ordered_extent *ordered;
3425 btrfs_wait_ordered_range(inode, hole_start,
3426 block_end - hole_start);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003427 lock_extent_bits(io_tree, hole_start, block_end - 1, 0,
3428 &cached_state, GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003429 ordered = btrfs_lookup_ordered_extent(inode, hole_start);
3430 if (!ordered)
3431 break;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003432 unlock_extent_cached(io_tree, hole_start, block_end - 1,
3433 &cached_state, GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003434 btrfs_put_ordered_extent(ordered);
3435 }
3436
Yan Zheng9036c102008-10-30 14:19:41 -04003437 cur_offset = hole_start;
3438 while (1) {
3439 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
3440 block_end - cur_offset, 0);
David Sterbac7040052011-04-19 18:00:01 +02003441 BUG_ON(IS_ERR_OR_NULL(em));
Yan Zheng9036c102008-10-30 14:19:41 -04003442 last_byte = min(extent_map_end(em), block_end);
3443 last_byte = (last_byte + mask) & ~mask;
Yan, Zheng80825102009-11-12 09:35:36 +00003444 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Chris Mason771ed682008-11-06 22:02:51 -05003445 u64 hint_byte = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003446 hole_size = last_byte - cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00003447
Yan, Zhenga22285a2010-05-16 10:48:46 -04003448 trans = btrfs_start_transaction(root, 2);
3449 if (IS_ERR(trans)) {
3450 err = PTR_ERR(trans);
Chris Mason771ed682008-11-06 22:02:51 -05003451 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003452 }
Yan, Zheng80825102009-11-12 09:35:36 +00003453
3454 err = btrfs_drop_extents(trans, inode, cur_offset,
3455 cur_offset + hole_size,
3456 &hint_byte, 1);
Miao Xie5b397372011-09-11 10:52:24 -04003457 if (err) {
3458 btrfs_end_transaction(trans, root);
Josef Bacik3893e332011-01-31 16:03:11 -05003459 break;
Miao Xie5b397372011-09-11 10:52:24 -04003460 }
Josef Bacik9ed74f22009-09-11 16:12:44 -04003461
Yan Zheng9036c102008-10-30 14:19:41 -04003462 err = btrfs_insert_file_extent(trans, root,
Li Zefan33345d012011-04-20 10:31:50 +08003463 btrfs_ino(inode), cur_offset, 0,
Yan Zheng9036c102008-10-30 14:19:41 -04003464 0, hole_size, 0, hole_size,
3465 0, 0, 0);
Miao Xie5b397372011-09-11 10:52:24 -04003466 if (err) {
3467 btrfs_end_transaction(trans, root);
Josef Bacik3893e332011-01-31 16:03:11 -05003468 break;
Miao Xie5b397372011-09-11 10:52:24 -04003469 }
Yan, Zheng80825102009-11-12 09:35:36 +00003470
Yan Zheng9036c102008-10-30 14:19:41 -04003471 btrfs_drop_extent_cache(inode, hole_start,
3472 last_byte - 1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003473
3474 btrfs_end_transaction(trans, root);
Yan Zheng9036c102008-10-30 14:19:41 -04003475 }
3476 free_extent_map(em);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003477 em = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04003478 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00003479 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04003480 break;
3481 }
3482
Yan, Zhenga22285a2010-05-16 10:48:46 -04003483 free_extent_map(em);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003484 unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state,
3485 GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003486 return err;
3487}
3488
Josef Bacika41ad392011-01-31 15:30:16 -05003489static int btrfs_setsize(struct inode *inode, loff_t newsize)
Yan, Zheng80825102009-11-12 09:35:36 +00003490{
Josef Bacika41ad392011-01-31 15:30:16 -05003491 loff_t oldsize = i_size_read(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003492 int ret;
3493
Josef Bacika41ad392011-01-31 15:30:16 -05003494 if (newsize == oldsize)
Yan, Zheng80825102009-11-12 09:35:36 +00003495 return 0;
3496
Josef Bacika41ad392011-01-31 15:30:16 -05003497 if (newsize > oldsize) {
3498 i_size_write(inode, newsize);
3499 btrfs_ordered_update_i_size(inode, i_size_read(inode), NULL);
3500 truncate_pagecache(inode, oldsize, newsize);
3501 ret = btrfs_cont_expand(inode, oldsize, newsize);
Yan, Zheng80825102009-11-12 09:35:36 +00003502 if (ret) {
Josef Bacika41ad392011-01-31 15:30:16 -05003503 btrfs_setsize(inode, oldsize);
Yan, Zheng80825102009-11-12 09:35:36 +00003504 return ret;
3505 }
3506
Josef Bacik930f0282011-03-04 14:41:41 -05003507 mark_inode_dirty(inode);
Josef Bacika41ad392011-01-31 15:30:16 -05003508 } else {
Yan, Zheng80825102009-11-12 09:35:36 +00003509
Josef Bacika41ad392011-01-31 15:30:16 -05003510 /*
3511 * We're truncating a file that used to have good data down to
3512 * zero. Make sure it gets into the ordered flush list so that
3513 * any new writes get down to disk quickly.
3514 */
3515 if (newsize == 0)
3516 BTRFS_I(inode)->ordered_data_close = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00003517
Josef Bacika41ad392011-01-31 15:30:16 -05003518 /* we don't support swapfiles, so vmtruncate shouldn't fail */
3519 truncate_setsize(inode, newsize);
3520 ret = btrfs_truncate(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003521 }
3522
Josef Bacika41ad392011-01-31 15:30:16 -05003523 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00003524}
3525
Chris Mason39279cc2007-06-12 06:35:45 -04003526static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
3527{
3528 struct inode *inode = dentry->d_inode;
Li Zefanb83cc962010-12-20 16:04:08 +08003529 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003530 int err;
3531
Li Zefanb83cc962010-12-20 16:04:08 +08003532 if (btrfs_root_readonly(root))
3533 return -EROFS;
3534
Chris Mason39279cc2007-06-12 06:35:45 -04003535 err = inode_change_ok(inode, attr);
3536 if (err)
3537 return err;
3538
Chris Mason5a3f23d2009-03-31 13:27:11 -04003539 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Josef Bacika41ad392011-01-31 15:30:16 -05003540 err = btrfs_setsize(inode, attr->ia_size);
Yan, Zheng80825102009-11-12 09:35:36 +00003541 if (err)
3542 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003543 }
Yan Zheng9036c102008-10-30 14:19:41 -04003544
Christoph Hellwig10257742010-06-04 11:30:02 +02003545 if (attr->ia_valid) {
3546 setattr_copy(inode, attr);
3547 mark_inode_dirty(inode);
Josef Bacik33268ea2008-07-24 12:16:36 -04003548
Christoph Hellwig10257742010-06-04 11:30:02 +02003549 if (attr->ia_valid & ATTR_MODE)
3550 err = btrfs_acl_chmod(inode);
3551 }
3552
Chris Mason39279cc2007-06-12 06:35:45 -04003553 return err;
3554}
Chris Mason61295eb2008-01-14 16:24:38 -05003555
Al Virobd555972010-06-07 11:35:40 -04003556void btrfs_evict_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003557{
3558 struct btrfs_trans_handle *trans;
3559 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik726c35f2011-09-26 15:46:06 -04003560 struct btrfs_block_rsv *rsv, *global_rsv;
Josef Bacik07127182011-08-19 10:29:59 -04003561 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
Chris Masond3c2fdc2007-09-17 10:58:06 -04003562 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04003563 int ret;
3564
liubo1abe9b82011-03-24 11:18:59 +00003565 trace_btrfs_inode_evict(inode);
3566
Chris Mason39279cc2007-06-12 06:35:45 -04003567 truncate_inode_pages(&inode->i_data, 0);
Josef Bacik0af3d002010-06-21 14:48:16 -04003568 if (inode->i_nlink && (btrfs_root_refs(&root->root_item) != 0 ||
Chris Mason2cf85722011-07-26 15:35:09 -04003569 btrfs_is_free_space_inode(root, inode)))
Al Virobd555972010-06-07 11:35:40 -04003570 goto no_delete;
3571
Chris Mason39279cc2007-06-12 06:35:45 -04003572 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04003573 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003574 goto no_delete;
3575 }
Al Virobd555972010-06-07 11:35:40 -04003576 /* do we really want it for ->i_nlink > 0 and zero btrfs_root_refs? */
Chris Mason4a096752008-07-21 10:29:44 -04003577 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04003578
Yan, Zhengc71bf092009-11-12 09:34:40 +00003579 if (root->fs_info->log_root_recovering) {
3580 BUG_ON(!list_empty(&BTRFS_I(inode)->i_orphan));
3581 goto no_delete;
3582 }
3583
Yan, Zheng76dda932009-09-21 16:00:26 -04003584 if (inode->i_nlink > 0) {
3585 BUG_ON(btrfs_root_refs(&root->root_item) != 0);
3586 goto no_delete;
3587 }
3588
Josef Bacik4289a662011-08-05 13:22:24 -04003589 rsv = btrfs_alloc_block_rsv(root);
3590 if (!rsv) {
3591 btrfs_orphan_del(NULL, inode);
3592 goto no_delete;
3593 }
Josef Bacik4a338542011-08-29 11:01:31 -04003594 rsv->size = min_size;
Josef Bacik726c35f2011-09-26 15:46:06 -04003595 global_rsv = &root->fs_info->global_block_rsv;
Josef Bacik4289a662011-08-05 13:22:24 -04003596
Chris Masondbe674a2008-07-17 12:54:05 -04003597 btrfs_i_size_write(inode, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003598
Josef Bacik4289a662011-08-05 13:22:24 -04003599 /*
3600 * This is a bit simpler than btrfs_truncate since
3601 *
3602 * 1) We've already reserved our space for our orphan item in the
3603 * unlink.
3604 * 2) We're going to delete the inode item, so we don't need to update
3605 * it at all.
3606 *
3607 * So we just need to reserve some slack space in case we add bytes when
3608 * doing the truncate.
3609 */
Yan, Zheng80825102009-11-12 09:35:36 +00003610 while (1) {
Josef Bacik36ba0222011-10-18 12:15:48 -04003611 ret = btrfs_block_rsv_refill(root, rsv, min_size);
Josef Bacik726c35f2011-09-26 15:46:06 -04003612
3613 /*
3614 * Try and steal from the global reserve since we will
3615 * likely not use this space anyway, we want to try as
3616 * hard as possible to get this to work.
3617 */
3618 if (ret)
3619 ret = btrfs_block_rsv_migrate(global_rsv, rsv, min_size);
3620
Yan, Zhengd68fc572010-05-16 10:49:58 -04003621 if (ret) {
Josef Bacik4289a662011-08-05 13:22:24 -04003622 printk(KERN_WARNING "Could not get space for a "
Josef Bacik482e6dc2011-08-19 10:31:56 -04003623 "delete, will truncate on mount %d\n", ret);
Josef Bacik4289a662011-08-05 13:22:24 -04003624 btrfs_orphan_del(NULL, inode);
3625 btrfs_free_block_rsv(root, rsv);
3626 goto no_delete;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003627 }
3628
Josef Bacik4289a662011-08-05 13:22:24 -04003629 trans = btrfs_start_transaction(root, 0);
3630 if (IS_ERR(trans)) {
3631 btrfs_orphan_del(NULL, inode);
3632 btrfs_free_block_rsv(root, rsv);
3633 goto no_delete;
3634 }
3635
3636 trans->block_rsv = rsv;
3637
Yan, Zhengd68fc572010-05-16 10:49:58 -04003638 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003639 if (ret != -EAGAIN)
3640 break;
3641
3642 nr = trans->blocks_used;
3643 btrfs_end_transaction(trans, root);
3644 trans = NULL;
3645 btrfs_btree_balance_dirty(root, nr);
Josef Bacik7b128762008-07-24 12:17:14 -04003646 }
3647
Josef Bacik4289a662011-08-05 13:22:24 -04003648 btrfs_free_block_rsv(root, rsv);
3649
Yan, Zheng80825102009-11-12 09:35:36 +00003650 if (ret == 0) {
Josef Bacik4289a662011-08-05 13:22:24 -04003651 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00003652 ret = btrfs_orphan_del(trans, inode);
3653 BUG_ON(ret);
3654 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003655
Josef Bacik4289a662011-08-05 13:22:24 -04003656 trans->block_rsv = &root->fs_info->trans_block_rsv;
Li Zefan581bb052011-04-20 10:06:11 +08003657 if (!(root == root->fs_info->tree_root ||
3658 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID))
Li Zefan33345d012011-04-20 10:31:50 +08003659 btrfs_return_ino(root, btrfs_ino(inode));
Li Zefan581bb052011-04-20 10:06:11 +08003660
Chris Masond3c2fdc2007-09-17 10:58:06 -04003661 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04003662 btrfs_end_transaction(trans, root);
Chris Masond3c2fdc2007-09-17 10:58:06 -04003663 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003664no_delete:
Al Virobd555972010-06-07 11:35:40 -04003665 end_writeback(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003666 return;
Chris Mason39279cc2007-06-12 06:35:45 -04003667}
3668
3669/*
3670 * this returns the key found in the dir entry in the location pointer.
3671 * If no dir entries were found, location->objectid is 0.
3672 */
3673static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
3674 struct btrfs_key *location)
3675{
3676 const char *name = dentry->d_name.name;
3677 int namelen = dentry->d_name.len;
3678 struct btrfs_dir_item *di;
3679 struct btrfs_path *path;
3680 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04003681 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003682
3683 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07003684 if (!path)
3685 return -ENOMEM;
Chris Mason39544012007-12-12 14:38:19 -05003686
Li Zefan33345d012011-04-20 10:31:50 +08003687 di = btrfs_lookup_dir_item(NULL, root, path, btrfs_ino(dir), name,
Chris Mason39279cc2007-06-12 06:35:45 -04003688 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04003689 if (IS_ERR(di))
3690 ret = PTR_ERR(di);
Chris Masond3977122009-01-05 21:25:51 -05003691
David Sterbac7040052011-04-19 18:00:01 +02003692 if (IS_ERR_OR_NULL(di))
Chris Mason39544012007-12-12 14:38:19 -05003693 goto out_err;
Chris Masond3977122009-01-05 21:25:51 -05003694
Chris Mason5f39d392007-10-15 16:14:19 -04003695 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04003696out:
Chris Mason39279cc2007-06-12 06:35:45 -04003697 btrfs_free_path(path);
3698 return ret;
Chris Mason39544012007-12-12 14:38:19 -05003699out_err:
3700 location->objectid = 0;
3701 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04003702}
3703
3704/*
3705 * when we hit a tree root in a directory, the btrfs part of the inode
3706 * needs to be changed to reflect the root directory of the tree root. This
3707 * is kind of like crossing a mount point.
3708 */
3709static int fixup_tree_root_location(struct btrfs_root *root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003710 struct inode *dir,
3711 struct dentry *dentry,
3712 struct btrfs_key *location,
3713 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04003714{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003715 struct btrfs_path *path;
3716 struct btrfs_root *new_root;
3717 struct btrfs_root_ref *ref;
3718 struct extent_buffer *leaf;
3719 int ret;
3720 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003721
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003722 path = btrfs_alloc_path();
3723 if (!path) {
3724 err = -ENOMEM;
3725 goto out;
3726 }
Chris Mason39279cc2007-06-12 06:35:45 -04003727
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003728 err = -ENOENT;
3729 ret = btrfs_find_root_ref(root->fs_info->tree_root, path,
3730 BTRFS_I(dir)->root->root_key.objectid,
3731 location->objectid);
3732 if (ret) {
3733 if (ret < 0)
3734 err = ret;
3735 goto out;
3736 }
Chris Mason39279cc2007-06-12 06:35:45 -04003737
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003738 leaf = path->nodes[0];
3739 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
Li Zefan33345d012011-04-20 10:31:50 +08003740 if (btrfs_root_ref_dirid(leaf, ref) != btrfs_ino(dir) ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003741 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
3742 goto out;
3743
3744 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
3745 (unsigned long)(ref + 1),
3746 dentry->d_name.len);
3747 if (ret)
3748 goto out;
3749
David Sterbab3b4aa72011-04-21 01:20:15 +02003750 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003751
3752 new_root = btrfs_read_fs_root_no_name(root->fs_info, location);
3753 if (IS_ERR(new_root)) {
3754 err = PTR_ERR(new_root);
3755 goto out;
3756 }
3757
3758 if (btrfs_root_refs(&new_root->root_item) == 0) {
3759 err = -ENOENT;
3760 goto out;
3761 }
3762
3763 *sub_root = new_root;
3764 location->objectid = btrfs_root_dirid(&new_root->root_item);
3765 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04003766 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003767 err = 0;
3768out:
3769 btrfs_free_path(path);
3770 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003771}
3772
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003773static void inode_tree_add(struct inode *inode)
3774{
3775 struct btrfs_root *root = BTRFS_I(inode)->root;
3776 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003777 struct rb_node **p;
3778 struct rb_node *parent;
Li Zefan33345d012011-04-20 10:31:50 +08003779 u64 ino = btrfs_ino(inode);
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003780again:
3781 p = &root->inode_tree.rb_node;
3782 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003783
Al Viro1d3382c2010-10-23 15:19:20 -04003784 if (inode_unhashed(inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04003785 return;
3786
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003787 spin_lock(&root->inode_lock);
3788 while (*p) {
3789 parent = *p;
3790 entry = rb_entry(parent, struct btrfs_inode, rb_node);
3791
Li Zefan33345d012011-04-20 10:31:50 +08003792 if (ino < btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003793 p = &parent->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08003794 else if (ino > btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003795 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003796 else {
3797 WARN_ON(!(entry->vfs_inode.i_state &
Al Viroa4ffdde2010-06-02 17:38:30 -04003798 (I_WILL_FREE | I_FREEING)));
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003799 rb_erase(parent, &root->inode_tree);
3800 RB_CLEAR_NODE(parent);
3801 spin_unlock(&root->inode_lock);
3802 goto again;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003803 }
3804 }
3805 rb_link_node(&BTRFS_I(inode)->rb_node, parent, p);
3806 rb_insert_color(&BTRFS_I(inode)->rb_node, &root->inode_tree);
3807 spin_unlock(&root->inode_lock);
3808}
3809
3810static void inode_tree_del(struct inode *inode)
3811{
3812 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04003813 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003814
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003815 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003816 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003817 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003818 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04003819 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003820 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003821 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04003822
Josef Bacik0af3d002010-06-21 14:48:16 -04003823 /*
3824 * Free space cache has inodes in the tree root, but the tree root has a
3825 * root_refs of 0, so this could end up dropping the tree root as a
3826 * snapshot, so we need the extra !root->fs_info->tree_root check to
3827 * make sure we don't drop it.
3828 */
3829 if (empty && btrfs_root_refs(&root->root_item) == 0 &&
3830 root != root->fs_info->tree_root) {
Yan, Zheng76dda932009-09-21 16:00:26 -04003831 synchronize_srcu(&root->fs_info->subvol_srcu);
3832 spin_lock(&root->inode_lock);
3833 empty = RB_EMPTY_ROOT(&root->inode_tree);
3834 spin_unlock(&root->inode_lock);
3835 if (empty)
3836 btrfs_add_dead_root(root);
3837 }
3838}
3839
3840int btrfs_invalidate_inodes(struct btrfs_root *root)
3841{
3842 struct rb_node *node;
3843 struct rb_node *prev;
3844 struct btrfs_inode *entry;
3845 struct inode *inode;
3846 u64 objectid = 0;
3847
3848 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
3849
3850 spin_lock(&root->inode_lock);
3851again:
3852 node = root->inode_tree.rb_node;
3853 prev = NULL;
3854 while (node) {
3855 prev = node;
3856 entry = rb_entry(node, struct btrfs_inode, rb_node);
3857
Li Zefan33345d012011-04-20 10:31:50 +08003858 if (objectid < btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04003859 node = node->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08003860 else if (objectid > btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04003861 node = node->rb_right;
3862 else
3863 break;
3864 }
3865 if (!node) {
3866 while (prev) {
3867 entry = rb_entry(prev, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08003868 if (objectid <= btrfs_ino(&entry->vfs_inode)) {
Yan, Zheng76dda932009-09-21 16:00:26 -04003869 node = prev;
3870 break;
3871 }
3872 prev = rb_next(prev);
3873 }
3874 }
3875 while (node) {
3876 entry = rb_entry(node, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08003877 objectid = btrfs_ino(&entry->vfs_inode) + 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04003878 inode = igrab(&entry->vfs_inode);
3879 if (inode) {
3880 spin_unlock(&root->inode_lock);
3881 if (atomic_read(&inode->i_count) > 1)
3882 d_prune_aliases(inode);
3883 /*
Al Viro45321ac2010-06-07 13:43:19 -04003884 * btrfs_drop_inode will have it removed from
Yan, Zheng76dda932009-09-21 16:00:26 -04003885 * the inode cache when its usage count
3886 * hits zero.
3887 */
3888 iput(inode);
3889 cond_resched();
3890 spin_lock(&root->inode_lock);
3891 goto again;
3892 }
3893
3894 if (cond_resched_lock(&root->inode_lock))
3895 goto again;
3896
3897 node = rb_next(node);
3898 }
3899 spin_unlock(&root->inode_lock);
3900 return 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003901}
3902
Chris Masone02119d2008-09-05 16:13:11 -04003903static int btrfs_init_locked_inode(struct inode *inode, void *p)
3904{
3905 struct btrfs_iget_args *args = p;
3906 inode->i_ino = args->ino;
Chris Masone02119d2008-09-05 16:13:11 -04003907 BTRFS_I(inode)->root = args->root;
Josef Bacik6a632092009-02-20 11:00:09 -05003908 btrfs_set_inode_space_info(args->root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003909 return 0;
3910}
3911
3912static int btrfs_find_actor(struct inode *inode, void *opaque)
3913{
3914 struct btrfs_iget_args *args = opaque;
Li Zefan33345d012011-04-20 10:31:50 +08003915 return args->ino == btrfs_ino(inode) &&
Chris Masond3977122009-01-05 21:25:51 -05003916 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003917}
3918
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003919static struct inode *btrfs_iget_locked(struct super_block *s,
3920 u64 objectid,
3921 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04003922{
3923 struct inode *inode;
3924 struct btrfs_iget_args args;
3925 args.ino = objectid;
3926 args.root = root;
3927
3928 inode = iget5_locked(s, objectid, btrfs_find_actor,
3929 btrfs_init_locked_inode,
3930 (void *)&args);
3931 return inode;
3932}
3933
Balaji Rao1a54ef82008-07-21 02:01:04 +05303934/* Get an inode object given its location and corresponding root.
3935 * Returns in *is_new if the inode was read from disk
3936 */
3937struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
Josef Bacik73f73412009-12-04 17:38:27 +00003938 struct btrfs_root *root, int *new)
Balaji Rao1a54ef82008-07-21 02:01:04 +05303939{
3940 struct inode *inode;
3941
3942 inode = btrfs_iget_locked(s, location->objectid, root);
3943 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003944 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05303945
3946 if (inode->i_state & I_NEW) {
3947 BTRFS_I(inode)->root = root;
3948 memcpy(&BTRFS_I(inode)->location, location, sizeof(*location));
3949 btrfs_read_locked_inode(inode);
Mark Fasheh1748f842011-07-12 11:25:31 -07003950 if (!is_bad_inode(inode)) {
3951 inode_tree_add(inode);
3952 unlock_new_inode(inode);
3953 if (new)
3954 *new = 1;
3955 } else {
Sergei Trofimoviche0b6d652011-09-11 10:52:24 -04003956 unlock_new_inode(inode);
3957 iput(inode);
3958 inode = ERR_PTR(-ESTALE);
Mark Fasheh1748f842011-07-12 11:25:31 -07003959 }
3960 }
3961
Balaji Rao1a54ef82008-07-21 02:01:04 +05303962 return inode;
3963}
3964
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003965static struct inode *new_simple_dir(struct super_block *s,
3966 struct btrfs_key *key,
3967 struct btrfs_root *root)
3968{
3969 struct inode *inode = new_inode(s);
3970
3971 if (!inode)
3972 return ERR_PTR(-ENOMEM);
3973
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003974 BTRFS_I(inode)->root = root;
3975 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
3976 BTRFS_I(inode)->dummy_inode = 1;
3977
3978 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
3979 inode->i_op = &simple_dir_inode_operations;
3980 inode->i_fop = &simple_dir_operations;
3981 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
3982 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
3983
3984 return inode;
3985}
3986
Chris Mason3de45862008-11-17 21:02:50 -05003987struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04003988{
Chris Masond3977122009-01-05 21:25:51 -05003989 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003990 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003991 struct btrfs_root *sub_root = root;
3992 struct btrfs_key location;
Yan, Zheng76dda932009-09-21 16:00:26 -04003993 int index;
Josef Bacikb4aff1f2011-06-28 16:18:59 -04003994 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003995
3996 if (dentry->d_name.len > BTRFS_NAME_LEN)
3997 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04003998
Josef Bacikb4aff1f2011-06-28 16:18:59 -04003999 if (unlikely(d_need_lookup(dentry))) {
4000 memcpy(&location, dentry->d_fsdata, sizeof(struct btrfs_key));
4001 kfree(dentry->d_fsdata);
4002 dentry->d_fsdata = NULL;
Josef Bacika66e7cc2011-09-18 10:34:03 -04004003 /* This thing is hashed, drop it for now */
4004 d_drop(dentry);
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004005 } else {
4006 ret = btrfs_inode_by_name(dir, dentry, &location);
4007 }
Chris Mason5f39d392007-10-15 16:14:19 -04004008
Chris Mason39279cc2007-06-12 06:35:45 -04004009 if (ret < 0)
4010 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04004011
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004012 if (location.objectid == 0)
4013 return NULL;
4014
4015 if (location.type == BTRFS_INODE_ITEM_KEY) {
Josef Bacik73f73412009-12-04 17:38:27 +00004016 inode = btrfs_iget(dir->i_sb, &location, root, NULL);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004017 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004018 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004019
4020 BUG_ON(location.type != BTRFS_ROOT_ITEM_KEY);
4021
Yan, Zheng76dda932009-09-21 16:00:26 -04004022 index = srcu_read_lock(&root->fs_info->subvol_srcu);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004023 ret = fixup_tree_root_location(root, dir, dentry,
4024 &location, &sub_root);
4025 if (ret < 0) {
4026 if (ret != -ENOENT)
4027 inode = ERR_PTR(ret);
4028 else
4029 inode = new_simple_dir(dir->i_sb, &location, sub_root);
4030 } else {
Josef Bacik73f73412009-12-04 17:38:27 +00004031 inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004032 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004033 srcu_read_unlock(&root->fs_info->subvol_srcu, index);
4034
Julia Lawall34d19ba2011-01-24 19:55:19 +00004035 if (!IS_ERR(inode) && root != sub_root) {
Yan, Zhengc71bf092009-11-12 09:34:40 +00004036 down_read(&root->fs_info->cleanup_work_sem);
4037 if (!(inode->i_sb->s_flags & MS_RDONLY))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05004038 ret = btrfs_orphan_cleanup(sub_root);
Yan, Zhengc71bf092009-11-12 09:34:40 +00004039 up_read(&root->fs_info->cleanup_work_sem);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05004040 if (ret)
4041 inode = ERR_PTR(ret);
Yan, Zhengc71bf092009-11-12 09:34:40 +00004042 }
4043
Chris Mason3de45862008-11-17 21:02:50 -05004044 return inode;
4045}
4046
Nick Pigginfe15ce42011-01-07 17:49:23 +11004047static int btrfs_dentry_delete(const struct dentry *dentry)
Yan, Zheng76dda932009-09-21 16:00:26 -04004048{
4049 struct btrfs_root *root;
4050
Yan, Zhengefefb142009-10-09 09:25:16 -04004051 if (!dentry->d_inode && !IS_ROOT(dentry))
4052 dentry = dentry->d_parent;
Yan, Zheng76dda932009-09-21 16:00:26 -04004053
Yan, Zhengefefb142009-10-09 09:25:16 -04004054 if (dentry->d_inode) {
4055 root = BTRFS_I(dentry->d_inode)->root;
4056 if (btrfs_root_refs(&root->root_item) == 0)
4057 return 1;
4058 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004059 return 0;
4060}
4061
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004062static void btrfs_dentry_release(struct dentry *dentry)
4063{
4064 if (dentry->d_fsdata)
4065 kfree(dentry->d_fsdata);
4066}
4067
Chris Mason3de45862008-11-17 21:02:50 -05004068static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
4069 struct nameidata *nd)
4070{
Josef Bacika66e7cc2011-09-18 10:34:03 -04004071 struct dentry *ret;
4072
4073 ret = d_splice_alias(btrfs_lookup_dentry(dir, dentry), dentry);
4074 if (unlikely(d_need_lookup(dentry))) {
4075 spin_lock(&dentry->d_lock);
4076 dentry->d_flags &= ~DCACHE_NEED_LOOKUP;
4077 spin_unlock(&dentry->d_lock);
4078 }
4079 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004080}
4081
Miao Xie16cdcec2011-04-22 18:12:22 +08004082unsigned char btrfs_filetype_table[] = {
Chris Mason39279cc2007-06-12 06:35:45 -04004083 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
4084};
4085
David Woodhousecbdf5a22008-08-06 19:42:33 +01004086static int btrfs_real_readdir(struct file *filp, void *dirent,
4087 filldir_t filldir)
Chris Mason39279cc2007-06-12 06:35:45 -04004088{
Chris Mason6da6aba2007-12-18 16:15:09 -05004089 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004090 struct btrfs_root *root = BTRFS_I(inode)->root;
4091 struct btrfs_item *item;
4092 struct btrfs_dir_item *di;
4093 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04004094 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04004095 struct btrfs_path *path;
Miao Xie16cdcec2011-04-22 18:12:22 +08004096 struct list_head ins_list;
4097 struct list_head del_list;
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004098 struct qstr q;
Chris Mason39279cc2007-06-12 06:35:45 -04004099 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04004100 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04004101 int slot;
Chris Mason39279cc2007-06-12 06:35:45 -04004102 unsigned char d_type;
4103 int over = 0;
4104 u32 di_cur;
4105 u32 di_total;
4106 u32 di_len;
4107 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004108 char tmp_name[32];
4109 char *name_ptr;
4110 int name_len;
Miao Xie16cdcec2011-04-22 18:12:22 +08004111 int is_curr = 0; /* filp->f_pos points to the current index? */
Chris Mason39279cc2007-06-12 06:35:45 -04004112
4113 /* FIXME, use a real flag for deciding about the key type */
4114 if (root->fs_info->tree_root == root)
4115 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004116
Chris Mason39544012007-12-12 14:38:19 -05004117 /* special case for "." */
4118 if (filp->f_pos == 0) {
Hidetoshi Seto3765fef2011-09-18 10:20:46 -04004119 over = filldir(dirent, ".", 1,
4120 filp->f_pos, btrfs_ino(inode), DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05004121 if (over)
4122 return 0;
4123 filp->f_pos = 1;
4124 }
Chris Mason39544012007-12-12 14:38:19 -05004125 /* special case for .., just use the back ref */
4126 if (filp->f_pos == 1) {
David Woodhouse5ecc7e52008-08-17 15:14:48 +01004127 u64 pino = parent_ino(filp->f_path.dentry);
Chris Mason39544012007-12-12 14:38:19 -05004128 over = filldir(dirent, "..", 2,
Hidetoshi Seto3765fef2011-09-18 10:20:46 -04004129 filp->f_pos, pino, DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05004130 if (over)
David Woodhouse49593bf2008-08-17 17:08:36 +01004131 return 0;
Chris Mason39544012007-12-12 14:38:19 -05004132 filp->f_pos = 2;
4133 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004134 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08004135 if (!path)
4136 return -ENOMEM;
Chris Masonff5714c2011-05-28 07:00:39 -04004137
Josef Bacik026fd312011-05-13 10:32:11 -04004138 path->reada = 1;
David Woodhouse49593bf2008-08-17 17:08:36 +01004139
Miao Xie16cdcec2011-04-22 18:12:22 +08004140 if (key_type == BTRFS_DIR_INDEX_KEY) {
4141 INIT_LIST_HEAD(&ins_list);
4142 INIT_LIST_HEAD(&del_list);
4143 btrfs_get_delayed_items(inode, &ins_list, &del_list);
4144 }
4145
Chris Mason39279cc2007-06-12 06:35:45 -04004146 btrfs_set_key_type(&key, key_type);
4147 key.offset = filp->f_pos;
Li Zefan33345d012011-04-20 10:31:50 +08004148 key.objectid = btrfs_ino(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004149
Chris Mason39279cc2007-06-12 06:35:45 -04004150 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4151 if (ret < 0)
4152 goto err;
David Woodhouse49593bf2008-08-17 17:08:36 +01004153
4154 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04004155 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -04004156 slot = path->slots[0];
Li Zefanb9e03af2011-03-23 10:43:58 +08004157 if (slot >= btrfs_header_nritems(leaf)) {
4158 ret = btrfs_next_leaf(root, path);
4159 if (ret < 0)
4160 goto err;
4161 else if (ret > 0)
4162 break;
4163 continue;
Chris Mason39279cc2007-06-12 06:35:45 -04004164 }
Chris Mason3de45862008-11-17 21:02:50 -05004165
Chris Mason5f39d392007-10-15 16:14:19 -04004166 item = btrfs_item_nr(leaf, slot);
4167 btrfs_item_key_to_cpu(leaf, &found_key, slot);
4168
4169 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04004170 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004171 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004172 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004173 if (found_key.offset < filp->f_pos)
Li Zefanb9e03af2011-03-23 10:43:58 +08004174 goto next;
Miao Xie16cdcec2011-04-22 18:12:22 +08004175 if (key_type == BTRFS_DIR_INDEX_KEY &&
4176 btrfs_should_delete_dir_index(&del_list,
4177 found_key.offset))
4178 goto next;
Chris Mason5f39d392007-10-15 16:14:19 -04004179
4180 filp->f_pos = found_key.offset;
Miao Xie16cdcec2011-04-22 18:12:22 +08004181 is_curr = 1;
David Woodhouse49593bf2008-08-17 17:08:36 +01004182
Chris Mason39279cc2007-06-12 06:35:45 -04004183 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
4184 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04004185 di_total = btrfs_item_size(leaf, item);
David Woodhouse49593bf2008-08-17 17:08:36 +01004186
4187 while (di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04004188 struct btrfs_key location;
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004189 struct dentry *tmp;
Chris Mason5f39d392007-10-15 16:14:19 -04004190
Josef Bacik22a94d42011-03-16 16:47:17 -04004191 if (verify_dir_item(root, leaf, di))
4192 break;
4193
Chris Mason5f39d392007-10-15 16:14:19 -04004194 name_len = btrfs_dir_name_len(leaf, di);
David Woodhouse49593bf2008-08-17 17:08:36 +01004195 if (name_len <= sizeof(tmp_name)) {
Chris Mason5f39d392007-10-15 16:14:19 -04004196 name_ptr = tmp_name;
4197 } else {
4198 name_ptr = kmalloc(name_len, GFP_NOFS);
David Woodhouse49593bf2008-08-17 17:08:36 +01004199 if (!name_ptr) {
4200 ret = -ENOMEM;
4201 goto err;
4202 }
Chris Mason5f39d392007-10-15 16:14:19 -04004203 }
4204 read_extent_buffer(leaf, name_ptr,
4205 (unsigned long)(di + 1), name_len);
4206
4207 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
4208 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason3de45862008-11-17 21:02:50 -05004209
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004210 q.name = name_ptr;
4211 q.len = name_len;
4212 q.hash = full_name_hash(q.name, q.len);
4213 tmp = d_lookup(filp->f_dentry, &q);
4214 if (!tmp) {
4215 struct btrfs_key *newkey;
4216
4217 newkey = kzalloc(sizeof(struct btrfs_key),
4218 GFP_NOFS);
4219 if (!newkey)
4220 goto no_dentry;
4221 tmp = d_alloc(filp->f_dentry, &q);
4222 if (!tmp) {
4223 kfree(newkey);
4224 dput(tmp);
4225 goto no_dentry;
4226 }
4227 memcpy(newkey, &location,
4228 sizeof(struct btrfs_key));
4229 tmp->d_fsdata = newkey;
4230 tmp->d_flags |= DCACHE_NEED_LOOKUP;
4231 d_rehash(tmp);
4232 dput(tmp);
4233 } else {
4234 dput(tmp);
4235 }
4236no_dentry:
Chris Mason3de45862008-11-17 21:02:50 -05004237 /* is this a reference to our own snapshot? If so
4238 * skip it
4239 */
4240 if (location.type == BTRFS_ROOT_ITEM_KEY &&
4241 location.objectid == root->root_key.objectid) {
4242 over = 0;
4243 goto skip;
4244 }
Chris Mason5f39d392007-10-15 16:14:19 -04004245 over = filldir(dirent, name_ptr, name_len,
David Woodhouse49593bf2008-08-17 17:08:36 +01004246 found_key.offset, location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04004247 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04004248
Chris Mason3de45862008-11-17 21:02:50 -05004249skip:
Chris Mason5f39d392007-10-15 16:14:19 -04004250 if (name_ptr != tmp_name)
4251 kfree(name_ptr);
4252
Chris Mason39279cc2007-06-12 06:35:45 -04004253 if (over)
4254 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05004255 di_len = btrfs_dir_name_len(leaf, di) +
David Woodhouse49593bf2008-08-17 17:08:36 +01004256 btrfs_dir_data_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04004257 di_cur += di_len;
4258 di = (struct btrfs_dir_item *)((char *)di + di_len);
4259 }
Li Zefanb9e03af2011-03-23 10:43:58 +08004260next:
4261 path->slots[0]++;
Chris Mason39279cc2007-06-12 06:35:45 -04004262 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004263
Miao Xie16cdcec2011-04-22 18:12:22 +08004264 if (key_type == BTRFS_DIR_INDEX_KEY) {
4265 if (is_curr)
4266 filp->f_pos++;
4267 ret = btrfs_readdir_delayed_dir_index(filp, dirent, filldir,
4268 &ins_list);
4269 if (ret)
4270 goto nopos;
4271 }
4272
David Woodhouse49593bf2008-08-17 17:08:36 +01004273 /* Reached end of directory/root. Bump pos past the last item. */
Yan Zheng5e591a02008-02-19 11:41:02 -05004274 if (key_type == BTRFS_DIR_INDEX_KEY)
Jan Engelhardt406266a2009-12-09 22:00:38 +00004275 /*
4276 * 32-bit glibc will use getdents64, but then strtol -
4277 * so the last number we can serve is this.
4278 */
4279 filp->f_pos = 0x7fffffff;
Yan Zheng5e591a02008-02-19 11:41:02 -05004280 else
4281 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04004282nopos:
4283 ret = 0;
4284err:
Miao Xie16cdcec2011-04-22 18:12:22 +08004285 if (key_type == BTRFS_DIR_INDEX_KEY)
4286 btrfs_put_delayed_items(&ins_list, &del_list);
Chris Mason39279cc2007-06-12 06:35:45 -04004287 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004288 return ret;
4289}
4290
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004291int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc)
Chris Mason39279cc2007-06-12 06:35:45 -04004292{
4293 struct btrfs_root *root = BTRFS_I(inode)->root;
4294 struct btrfs_trans_handle *trans;
4295 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04004296 bool nolock = false;
Chris Mason39279cc2007-06-12 06:35:45 -04004297
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004298 if (BTRFS_I(inode)->dummy_inode)
Chris Mason4ca8b412008-08-05 13:30:48 -04004299 return 0;
4300
Chris Mason2cf85722011-07-26 15:35:09 -04004301 if (btrfs_fs_closing(root->fs_info) && btrfs_is_free_space_inode(root, inode))
Li Zefan82d59022011-04-20 10:33:24 +08004302 nolock = true;
Josef Bacik0af3d002010-06-21 14:48:16 -04004303
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004304 if (wbc->sync_mode == WB_SYNC_ALL) {
Josef Bacik0af3d002010-06-21 14:48:16 -04004305 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004306 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0af3d002010-06-21 14:48:16 -04004307 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004308 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00004309 if (IS_ERR(trans))
4310 return PTR_ERR(trans);
Josef Bacik0af3d002010-06-21 14:48:16 -04004311 if (nolock)
4312 ret = btrfs_end_transaction_nolock(trans, root);
4313 else
4314 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004315 }
4316 return ret;
4317}
4318
4319/*
Chris Mason54aa1f42007-06-22 14:16:25 -04004320 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04004321 * inode changes. But, it is most likely to find the inode in cache.
4322 * FIXME, needs more benchmarking...there are no reasons other than performance
4323 * to keep or drop this code.
4324 */
Christoph Hellwigaa385722011-05-27 06:53:02 -04004325void btrfs_dirty_inode(struct inode *inode, int flags)
Chris Mason39279cc2007-06-12 06:35:45 -04004326{
4327 struct btrfs_root *root = BTRFS_I(inode)->root;
4328 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004329 int ret;
4330
4331 if (BTRFS_I(inode)->dummy_inode)
4332 return;
Chris Mason39279cc2007-06-12 06:35:45 -04004333
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004334 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00004335 BUG_ON(IS_ERR(trans));
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004336
4337 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04004338 if (ret && ret == -ENOSPC) {
4339 /* whoops, lets try again with the full transaction */
4340 btrfs_end_transaction(trans, root);
4341 trans = btrfs_start_transaction(root, 1);
Chris Mason9aeead72010-05-27 10:23:00 -04004342 if (IS_ERR(trans)) {
David Sterba7a36dde2011-05-06 15:33:15 +02004343 printk_ratelimited(KERN_ERR "btrfs: fail to "
Li Zefan33345d012011-04-20 10:31:50 +08004344 "dirty inode %llu error %ld\n",
4345 (unsigned long long)btrfs_ino(inode),
4346 PTR_ERR(trans));
Chris Mason9aeead72010-05-27 10:23:00 -04004347 return;
4348 }
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004349
Chris Mason94b60442010-05-26 11:02:00 -04004350 ret = btrfs_update_inode(trans, root, inode);
4351 if (ret) {
David Sterba7a36dde2011-05-06 15:33:15 +02004352 printk_ratelimited(KERN_ERR "btrfs: fail to "
Li Zefan33345d012011-04-20 10:31:50 +08004353 "dirty inode %llu error %d\n",
4354 (unsigned long long)btrfs_ino(inode),
4355 ret);
Chris Mason94b60442010-05-26 11:02:00 -04004356 }
4357 }
Chris Mason39279cc2007-06-12 06:35:45 -04004358 btrfs_end_transaction(trans, root);
Miao Xie16cdcec2011-04-22 18:12:22 +08004359 if (BTRFS_I(inode)->delayed_node)
4360 btrfs_balance_delayed_items(root);
Chris Mason39279cc2007-06-12 06:35:45 -04004361}
4362
Chris Masond352ac62008-09-29 15:18:18 -04004363/*
4364 * find the highest existing sequence number in a directory
4365 * and then set the in-memory index_cnt variable to reflect
4366 * free sequence numbers
4367 */
Josef Bacikaec74772008-07-24 12:12:38 -04004368static int btrfs_set_inode_index_count(struct inode *inode)
4369{
4370 struct btrfs_root *root = BTRFS_I(inode)->root;
4371 struct btrfs_key key, found_key;
4372 struct btrfs_path *path;
4373 struct extent_buffer *leaf;
4374 int ret;
4375
Li Zefan33345d012011-04-20 10:31:50 +08004376 key.objectid = btrfs_ino(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004377 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
4378 key.offset = (u64)-1;
4379
4380 path = btrfs_alloc_path();
4381 if (!path)
4382 return -ENOMEM;
4383
4384 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4385 if (ret < 0)
4386 goto out;
4387 /* FIXME: we should be able to handle this */
4388 if (ret == 0)
4389 goto out;
4390 ret = 0;
4391
4392 /*
4393 * MAGIC NUMBER EXPLANATION:
4394 * since we search a directory based on f_pos we have to start at 2
4395 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
4396 * else has to start at 2
4397 */
4398 if (path->slots[0] == 0) {
4399 BTRFS_I(inode)->index_cnt = 2;
4400 goto out;
4401 }
4402
4403 path->slots[0]--;
4404
4405 leaf = path->nodes[0];
4406 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4407
Li Zefan33345d012011-04-20 10:31:50 +08004408 if (found_key.objectid != btrfs_ino(inode) ||
Josef Bacikaec74772008-07-24 12:12:38 -04004409 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
4410 BTRFS_I(inode)->index_cnt = 2;
4411 goto out;
4412 }
4413
4414 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
4415out:
4416 btrfs_free_path(path);
4417 return ret;
4418}
4419
Chris Masond352ac62008-09-29 15:18:18 -04004420/*
4421 * helper to find a free sequence number in a given directory. This current
4422 * code is very simple, later versions will do smarter things in the btree
4423 */
Chris Mason3de45862008-11-17 21:02:50 -05004424int btrfs_set_inode_index(struct inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04004425{
4426 int ret = 0;
4427
4428 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
Miao Xie16cdcec2011-04-22 18:12:22 +08004429 ret = btrfs_inode_delayed_dir_index_count(dir);
4430 if (ret) {
4431 ret = btrfs_set_inode_index_count(dir);
4432 if (ret)
4433 return ret;
4434 }
Josef Bacikaec74772008-07-24 12:12:38 -04004435 }
4436
Chris Mason00e4e6b2008-08-05 11:18:09 -04004437 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04004438 BTRFS_I(dir)->index_cnt++;
4439
4440 return ret;
4441}
4442
Chris Mason39279cc2007-06-12 06:35:45 -04004443static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
4444 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04004445 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05004446 const char *name, int name_len,
Josef Bacikd82a6f12011-05-11 15:26:06 -04004447 u64 ref_objectid, u64 objectid, int mode,
4448 u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04004449{
4450 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004451 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04004452 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04004453 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05004454 struct btrfs_inode_ref *ref;
4455 struct btrfs_key key[2];
4456 u32 sizes[2];
4457 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04004458 int ret;
4459 int owner;
4460
Chris Mason5f39d392007-10-15 16:14:19 -04004461 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07004462 if (!path)
4463 return ERR_PTR(-ENOMEM);
Chris Mason5f39d392007-10-15 16:14:19 -04004464
Chris Mason39279cc2007-06-12 06:35:45 -04004465 inode = new_inode(root->fs_info->sb);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004466 if (!inode) {
4467 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004468 return ERR_PTR(-ENOMEM);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004469 }
Chris Mason39279cc2007-06-12 06:35:45 -04004470
Li Zefan581bb052011-04-20 10:06:11 +08004471 /*
4472 * we have to initialize this early, so we can reclaim the inode
4473 * number if we fail afterwards in this function.
4474 */
4475 inode->i_ino = objectid;
4476
Josef Bacikaec74772008-07-24 12:12:38 -04004477 if (dir) {
liubo1abe9b82011-03-24 11:18:59 +00004478 trace_btrfs_inode_request(dir);
4479
Chris Mason3de45862008-11-17 21:02:50 -05004480 ret = btrfs_set_inode_index(dir, index);
Shen Feng09771432009-04-02 16:46:06 -04004481 if (ret) {
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004482 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004483 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004484 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04004485 }
Josef Bacikaec74772008-07-24 12:12:38 -04004486 }
4487 /*
4488 * index_cnt is ignored for everything but a dir,
4489 * btrfs_get_inode_index_count has an explanation for the magic
4490 * number
4491 */
4492 BTRFS_I(inode)->index_cnt = 2;
Chris Mason39279cc2007-06-12 06:35:45 -04004493 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04004494 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik76195852010-11-19 02:18:02 +00004495 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik6a632092009-02-20 11:00:09 -05004496 btrfs_set_inode_space_info(root, inode);
Chris Masonb888db22007-08-27 16:49:44 -04004497
Al Viro569254b2011-07-24 17:08:40 -04004498 if (S_ISDIR(mode))
Chris Mason39279cc2007-06-12 06:35:45 -04004499 owner = 0;
4500 else
4501 owner = 1;
Chris Mason9c583092008-01-29 15:15:18 -05004502
4503 key[0].objectid = objectid;
4504 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
4505 key[0].offset = 0;
4506
4507 key[1].objectid = objectid;
4508 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
4509 key[1].offset = ref_objectid;
4510
4511 sizes[0] = sizeof(struct btrfs_inode_item);
4512 sizes[1] = name_len + sizeof(*ref);
4513
Chris Masonb9473432009-03-13 11:00:37 -04004514 path->leave_spinning = 1;
Chris Mason9c583092008-01-29 15:15:18 -05004515 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
4516 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04004517 goto fail;
4518
Dmitry Monakhovecc11fab2010-03-04 17:31:47 +03004519 inode_init_owner(inode, dir, mode);
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004520 inode_set_bytes(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004521 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04004522 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
4523 struct btrfs_inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04004524 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05004525
4526 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
4527 struct btrfs_inode_ref);
4528 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004529 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
Chris Mason9c583092008-01-29 15:15:18 -05004530 ptr = (unsigned long)(ref + 1);
4531 write_extent_buffer(path->nodes[0], name, ptr, name_len);
4532
Chris Mason5f39d392007-10-15 16:14:19 -04004533 btrfs_mark_buffer_dirty(path->nodes[0]);
4534 btrfs_free_path(path);
4535
Chris Mason39279cc2007-06-12 06:35:45 -04004536 location = &BTRFS_I(inode)->location;
4537 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04004538 location->offset = 0;
4539 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
4540
Christoph Hellwig6cbff002009-04-17 10:37:41 +02004541 btrfs_inherit_iflags(inode, dir);
4542
Al Viro569254b2011-07-24 17:08:40 -04004543 if (S_ISREG(mode)) {
Chris Mason94272162009-07-02 12:26:06 -04004544 if (btrfs_test_opt(root, NODATASUM))
4545 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
Liu Bo75e7cb72011-03-22 10:12:20 +00004546 if (btrfs_test_opt(root, NODATACOW) ||
4547 (BTRFS_I(dir)->flags & BTRFS_INODE_NODATACOW))
Chris Mason94272162009-07-02 12:26:06 -04004548 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
4549 }
4550
Chris Mason39279cc2007-06-12 06:35:45 -04004551 insert_inode_hash(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004552 inode_tree_add(inode);
liubo1abe9b82011-03-24 11:18:59 +00004553
4554 trace_btrfs_inode_new(inode);
Chris Mason1973f0f2011-06-24 13:13:29 -04004555 btrfs_set_inode_last_trans(trans, inode);
liubo1abe9b82011-03-24 11:18:59 +00004556
Chris Mason39279cc2007-06-12 06:35:45 -04004557 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004558fail:
Josef Bacikaec74772008-07-24 12:12:38 -04004559 if (dir)
4560 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04004561 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004562 iput(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004563 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004564}
4565
4566static inline u8 btrfs_inode_type(struct inode *inode)
4567{
4568 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
4569}
4570
Chris Masond352ac62008-09-29 15:18:18 -04004571/*
4572 * utility function to add 'inode' into 'parent_inode' with
4573 * a give name and a given sequence number.
4574 * if 'add_backref' is true, also insert a backref from the
4575 * inode to the parent directory.
4576 */
Chris Masone02119d2008-09-05 16:13:11 -04004577int btrfs_add_link(struct btrfs_trans_handle *trans,
4578 struct inode *parent_inode, struct inode *inode,
4579 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004580{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004581 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004582 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04004583 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Li Zefan33345d012011-04-20 10:31:50 +08004584 u64 ino = btrfs_ino(inode);
4585 u64 parent_ino = btrfs_ino(parent_inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004586
Li Zefan33345d012011-04-20 10:31:50 +08004587 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004588 memcpy(&key, &BTRFS_I(inode)->root->root_key, sizeof(key));
4589 } else {
Li Zefan33345d012011-04-20 10:31:50 +08004590 key.objectid = ino;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004591 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
4592 key.offset = 0;
4593 }
Chris Mason39279cc2007-06-12 06:35:45 -04004594
Li Zefan33345d012011-04-20 10:31:50 +08004595 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004596 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
4597 key.objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08004598 parent_ino, index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004599 } else if (add_backref) {
Li Zefan33345d012011-04-20 10:31:50 +08004600 ret = btrfs_insert_inode_ref(trans, root, name, name_len, ino,
4601 parent_ino, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004602 }
4603
Chris Mason39279cc2007-06-12 06:35:45 -04004604 if (ret == 0) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004605 ret = btrfs_insert_dir_item(trans, root, name, name_len,
Miao Xie16cdcec2011-04-22 18:12:22 +08004606 parent_inode, &key,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004607 btrfs_inode_type(inode), index);
4608 BUG_ON(ret);
4609
Chris Masondbe674a2008-07-17 12:54:05 -04004610 btrfs_i_size_write(parent_inode, parent_inode->i_size +
Chris Masone02119d2008-09-05 16:13:11 -04004611 name_len * 2);
Chris Mason79c44582007-06-25 10:09:33 -04004612 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
Chris Masone02119d2008-09-05 16:13:11 -04004613 ret = btrfs_update_inode(trans, root, parent_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004614 }
4615 return ret;
4616}
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) {
4626 d_instantiate(dentry, inode);
4627 return 0;
4628 }
4629 if (err > 0)
4630 err = -EEXIST;
4631 return err;
4632}
4633
Josef Bacik618e21d2007-07-11 10:18:17 -04004634static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
4635 int mode, dev_t rdev)
4636{
4637 struct btrfs_trans_handle *trans;
4638 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004639 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04004640 int err;
4641 int drop_inode = 0;
4642 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05004643 unsigned long nr = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004644 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04004645
4646 if (!new_valid_dev(rdev))
4647 return -EINVAL;
4648
Josef Bacik9ed74f22009-09-11 16:12:44 -04004649 /*
4650 * 2 for inode item and ref
4651 * 2 for dir items
4652 * 1 for xattr if selinux is on
4653 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004654 trans = btrfs_start_transaction(root, 5);
4655 if (IS_ERR(trans))
4656 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05004657
Li Zefan581bb052011-04-20 10:06:11 +08004658 err = btrfs_find_free_ino(root, &objectid);
4659 if (err)
4660 goto out_unlock;
4661
Josef Bacikaec74772008-07-24 12:12:38 -04004662 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08004663 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04004664 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004665 if (IS_ERR(inode)) {
4666 err = PTR_ERR(inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04004667 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004668 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004669
Eric Paris2a7dba32011-02-01 11:05:39 -05004670 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04004671 if (err) {
4672 drop_inode = 1;
4673 goto out_unlock;
4674 }
4675
Josef Bacika1b075d2010-11-19 20:36:11 +00004676 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Josef Bacik618e21d2007-07-11 10:18:17 -04004677 if (err)
4678 drop_inode = 1;
4679 else {
4680 inode->i_op = &btrfs_special_inode_operations;
4681 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04004682 btrfs_update_inode(trans, root, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04004683 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004684out_unlock:
Chris Masond3c2fdc2007-09-17 10:58:06 -04004685 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04004686 btrfs_end_transaction_throttle(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004687 btrfs_btree_balance_dirty(root, nr);
Josef Bacik618e21d2007-07-11 10:18:17 -04004688 if (drop_inode) {
4689 inode_dec_link_count(inode);
4690 iput(inode);
4691 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004692 return err;
4693}
4694
Chris Mason39279cc2007-06-12 06:35:45 -04004695static int btrfs_create(struct inode *dir, struct dentry *dentry,
4696 int mode, struct nameidata *nd)
4697{
4698 struct btrfs_trans_handle *trans;
4699 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004700 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004701 int drop_inode = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004702 int err;
Chris Mason1832a6d2007-12-21 16:27:21 -05004703 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004704 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004705 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004706
Josef Bacik9ed74f22009-09-11 16:12:44 -04004707 /*
4708 * 2 for inode item and ref
4709 * 2 for dir items
4710 * 1 for xattr if selinux is on
4711 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004712 trans = btrfs_start_transaction(root, 5);
4713 if (IS_ERR(trans))
4714 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004715
Li Zefan581bb052011-04-20 10:06:11 +08004716 err = btrfs_find_free_ino(root, &objectid);
4717 if (err)
4718 goto out_unlock;
4719
Josef Bacikaec74772008-07-24 12:12:38 -04004720 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08004721 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04004722 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004723 if (IS_ERR(inode)) {
4724 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004725 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004726 }
Chris Mason39279cc2007-06-12 06:35:45 -04004727
Eric Paris2a7dba32011-02-01 11:05:39 -05004728 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04004729 if (err) {
4730 drop_inode = 1;
4731 goto out_unlock;
4732 }
4733
Josef Bacika1b075d2010-11-19 20:36:11 +00004734 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004735 if (err)
4736 drop_inode = 1;
4737 else {
4738 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04004739 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04004740 inode->i_fop = &btrfs_file_operations;
4741 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05004742 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04004743 }
Chris Mason39279cc2007-06-12 06:35:45 -04004744out_unlock:
Chris Masond3c2fdc2007-09-17 10:58:06 -04004745 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004746 btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004747 if (drop_inode) {
4748 inode_dec_link_count(inode);
4749 iput(inode);
4750 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04004751 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004752 return err;
4753}
4754
4755static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
4756 struct dentry *dentry)
4757{
4758 struct btrfs_trans_handle *trans;
4759 struct btrfs_root *root = BTRFS_I(dir)->root;
4760 struct inode *inode = old_dentry->d_inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004761 u64 index;
Chris Mason1832a6d2007-12-21 16:27:21 -05004762 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004763 int err;
4764 int drop_inode = 0;
4765
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00004766 /* do not allow sys_link's with other subvols of the same device */
4767 if (root->objectid != BTRFS_I(inode)->root->objectid)
Mark Fasheh3ab35642011-03-22 17:20:26 +00004768 return -EXDEV;
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00004769
Al Viroc055e992011-03-04 17:15:18 +00004770 if (inode->i_nlink == ~0U)
4771 return -EMLINK;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004772
Chris Mason3de45862008-11-17 21:02:50 -05004773 err = btrfs_set_inode_index(dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04004774 if (err)
4775 goto fail;
4776
Yan, Zhenga22285a2010-05-16 10:48:46 -04004777 /*
Miao Xie7e6b6462011-02-18 09:21:17 +00004778 * 2 items for inode and inode ref
Yan, Zhenga22285a2010-05-16 10:48:46 -04004779 * 2 items for dir items
Miao Xie7e6b6462011-02-18 09:21:17 +00004780 * 1 item for parent inode
Yan, Zhenga22285a2010-05-16 10:48:46 -04004781 */
Miao Xie7e6b6462011-02-18 09:21:17 +00004782 trans = btrfs_start_transaction(root, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004783 if (IS_ERR(trans)) {
4784 err = PTR_ERR(trans);
4785 goto fail;
4786 }
Chris Mason5f39d392007-10-15 16:14:19 -04004787
Miao Xie31534952011-04-13 13:19:21 +08004788 btrfs_inc_nlink(inode);
4789 inode->i_ctime = CURRENT_TIME;
Al Viro7de9c6e2010-10-23 11:11:40 -04004790 ihold(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004791
Josef Bacika1b075d2010-11-19 20:36:11 +00004792 err = btrfs_add_nondir(trans, dir, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04004793
Yan, Zhenga5719522009-09-24 09:17:31 -04004794 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04004795 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04004796 } else {
Al Viro10d9f302011-07-16 23:09:10 -04004797 struct dentry *parent = dentry->d_parent;
Yan, Zhenga5719522009-09-24 09:17:31 -04004798 err = btrfs_update_inode(trans, root, inode);
4799 BUG_ON(err);
Josef Bacik6a912212010-11-20 09:48:00 +00004800 btrfs_log_new_name(trans, inode, NULL, parent);
Yan, Zhenga5719522009-09-24 09:17:31 -04004801 }
Chris Mason39279cc2007-06-12 06:35:45 -04004802
Chris Masond3c2fdc2007-09-17 10:58:06 -04004803 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004804 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05004805fail:
Chris Mason39279cc2007-06-12 06:35:45 -04004806 if (drop_inode) {
4807 inode_dec_link_count(inode);
4808 iput(inode);
4809 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04004810 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004811 return err;
4812}
4813
Chris Mason39279cc2007-06-12 06:35:45 -04004814static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
4815{
Chris Masonb9d86662008-05-02 16:13:49 -04004816 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004817 struct btrfs_trans_handle *trans;
4818 struct btrfs_root *root = BTRFS_I(dir)->root;
4819 int err = 0;
4820 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04004821 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004822 u64 index = 0;
Chris Masond3c2fdc2007-09-17 10:58:06 -04004823 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04004824
Josef Bacik9ed74f22009-09-11 16:12:44 -04004825 /*
4826 * 2 items for inode and ref
4827 * 2 items for dir items
4828 * 1 for xattr if selinux is on
4829 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004830 trans = btrfs_start_transaction(root, 5);
4831 if (IS_ERR(trans))
4832 return PTR_ERR(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04004833
Li Zefan581bb052011-04-20 10:06:11 +08004834 err = btrfs_find_free_ino(root, &objectid);
4835 if (err)
4836 goto out_fail;
4837
Josef Bacikaec74772008-07-24 12:12:38 -04004838 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08004839 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04004840 S_IFDIR | mode, &index);
Chris Mason39279cc2007-06-12 06:35:45 -04004841 if (IS_ERR(inode)) {
4842 err = PTR_ERR(inode);
4843 goto out_fail;
4844 }
Chris Mason5f39d392007-10-15 16:14:19 -04004845
Chris Mason39279cc2007-06-12 06:35:45 -04004846 drop_on_err = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -04004847
Eric Paris2a7dba32011-02-01 11:05:39 -05004848 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04004849 if (err)
4850 goto out_fail;
4851
Chris Mason39279cc2007-06-12 06:35:45 -04004852 inode->i_op = &btrfs_dir_inode_operations;
4853 inode->i_fop = &btrfs_dir_file_operations;
Chris Mason39279cc2007-06-12 06:35:45 -04004854
Chris Masondbe674a2008-07-17 12:54:05 -04004855 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004856 err = btrfs_update_inode(trans, root, inode);
4857 if (err)
4858 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04004859
Josef Bacika1b075d2010-11-19 20:36:11 +00004860 err = btrfs_add_link(trans, dir, inode, dentry->d_name.name,
4861 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004862 if (err)
4863 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04004864
Chris Mason39279cc2007-06-12 06:35:45 -04004865 d_instantiate(dentry, inode);
4866 drop_on_err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004867
4868out_fail:
Chris Masond3c2fdc2007-09-17 10:58:06 -04004869 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04004870 btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004871 if (drop_on_err)
4872 iput(inode);
Chris Masond3c2fdc2007-09-17 10:58:06 -04004873 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004874 return err;
4875}
4876
Chris Masond352ac62008-09-29 15:18:18 -04004877/* helper for btfs_get_extent. Given an existing extent in the tree,
4878 * and an extent that you want to insert, deal with overlap and insert
4879 * the new extent into the tree.
4880 */
Chris Mason3b951512008-04-17 11:29:12 -04004881static int merge_extent_mapping(struct extent_map_tree *em_tree,
4882 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04004883 struct extent_map *em,
4884 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04004885{
4886 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04004887
Chris Masone6dcd2d2008-07-17 12:53:50 -04004888 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
4889 start_diff = map_start - em->start;
4890 em->start = map_start;
4891 em->len = map_len;
Chris Masonc8b97812008-10-29 14:49:59 -04004892 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
4893 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04004894 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04004895 em->block_len -= start_diff;
4896 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004897 return add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04004898}
4899
Chris Masonc8b97812008-10-29 14:49:59 -04004900static noinline int uncompress_inline(struct btrfs_path *path,
4901 struct inode *inode, struct page *page,
4902 size_t pg_offset, u64 extent_offset,
4903 struct btrfs_file_extent_item *item)
4904{
4905 int ret;
4906 struct extent_buffer *leaf = path->nodes[0];
4907 char *tmp;
4908 size_t max_size;
4909 unsigned long inline_size;
4910 unsigned long ptr;
Li Zefan261507a02010-12-17 14:21:50 +08004911 int compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04004912
4913 WARN_ON(pg_offset != 0);
Li Zefan261507a02010-12-17 14:21:50 +08004914 compress_type = btrfs_file_extent_compression(leaf, item);
Chris Masonc8b97812008-10-29 14:49:59 -04004915 max_size = btrfs_file_extent_ram_bytes(leaf, item);
4916 inline_size = btrfs_file_extent_inline_item_len(leaf,
4917 btrfs_item_nr(leaf, path->slots[0]));
4918 tmp = kmalloc(inline_size, GFP_NOFS);
Tsutomu Itoh8d413712011-04-25 19:43:52 -04004919 if (!tmp)
4920 return -ENOMEM;
Chris Masonc8b97812008-10-29 14:49:59 -04004921 ptr = btrfs_file_extent_inline_start(item);
4922
4923 read_extent_buffer(leaf, tmp, ptr, inline_size);
4924
Chris Mason5b050f02008-11-11 09:34:41 -05004925 max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size);
Li Zefan261507a02010-12-17 14:21:50 +08004926 ret = btrfs_decompress(compress_type, tmp, page,
4927 extent_offset, inline_size, max_size);
Chris Masonc8b97812008-10-29 14:49:59 -04004928 if (ret) {
4929 char *kaddr = kmap_atomic(page, KM_USER0);
4930 unsigned long copy_size = min_t(u64,
4931 PAGE_CACHE_SIZE - pg_offset,
4932 max_size - extent_offset);
4933 memset(kaddr + pg_offset, 0, copy_size);
4934 kunmap_atomic(kaddr, KM_USER0);
4935 }
4936 kfree(tmp);
4937 return 0;
4938}
4939
Chris Masond352ac62008-09-29 15:18:18 -04004940/*
4941 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05004942 * the ugly parts come from merging extents from the disk with the in-ram
4943 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04004944 * where the in-ram extents might be locked pending data=ordered completion.
4945 *
4946 * This also copies inline extents directly into the page.
4947 */
Chris Masond3977122009-01-05 21:25:51 -05004948
Chris Masona52d9a82007-08-27 16:49:44 -04004949struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05004950 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04004951 int create)
4952{
4953 int ret;
4954 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04004955 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04004956 u64 extent_start = 0;
4957 u64 extent_end = 0;
Li Zefan33345d012011-04-20 10:31:50 +08004958 u64 objectid = btrfs_ino(inode);
Chris Masona52d9a82007-08-27 16:49:44 -04004959 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04004960 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04004961 struct btrfs_root *root = BTRFS_I(inode)->root;
4962 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04004963 struct extent_buffer *leaf;
4964 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04004965 struct extent_map *em = NULL;
4966 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05004967 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04004968 struct btrfs_trans_handle *trans = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08004969 int compress_type;
Chris Masona52d9a82007-08-27 16:49:44 -04004970
Chris Masona52d9a82007-08-27 16:49:44 -04004971again:
Chris Mason890871b2009-09-02 16:24:52 -04004972 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05004973 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04004974 if (em)
4975 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04004976 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05004977
Chris Masona52d9a82007-08-27 16:49:44 -04004978 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04004979 if (em->start > start || em->start + em->len <= start)
4980 free_extent_map(em);
4981 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05004982 free_extent_map(em);
4983 else
4984 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004985 }
David Sterba172ddd62011-04-21 00:48:27 +02004986 em = alloc_extent_map();
Chris Masona52d9a82007-08-27 16:49:44 -04004987 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05004988 err = -ENOMEM;
4989 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04004990 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004991 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05004992 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05004993 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05004994 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04004995 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04004996
4997 if (!path) {
4998 path = btrfs_alloc_path();
Josef Bacik026fd312011-05-13 10:32:11 -04004999 if (!path) {
5000 err = -ENOMEM;
5001 goto out;
5002 }
5003 /*
5004 * Chances are we'll be called again, so go ahead and do
5005 * readahead
5006 */
5007 path->reada = 1;
Chris Masonf4219502008-07-22 11:18:09 -04005008 }
5009
Chris Mason179e29e2007-11-01 11:28:41 -04005010 ret = btrfs_lookup_file_extent(trans, root, path,
5011 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04005012 if (ret < 0) {
5013 err = ret;
5014 goto out;
5015 }
5016
5017 if (ret != 0) {
5018 if (path->slots[0] == 0)
5019 goto not_found;
5020 path->slots[0]--;
5021 }
5022
Chris Mason5f39d392007-10-15 16:14:19 -04005023 leaf = path->nodes[0];
5024 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04005025 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04005026 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04005027 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5028 found_type = btrfs_key_type(&found_key);
5029 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04005030 found_type != BTRFS_EXTENT_DATA_KEY) {
5031 goto not_found;
5032 }
5033
Chris Mason5f39d392007-10-15 16:14:19 -04005034 found_type = btrfs_file_extent_type(leaf, item);
5035 extent_start = found_key.offset;
Li Zefan261507a02010-12-17 14:21:50 +08005036 compress_type = btrfs_file_extent_compression(leaf, item);
Yan Zhengd899e052008-10-30 14:25:28 -04005037 if (found_type == BTRFS_FILE_EXTENT_REG ||
5038 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04005039 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04005040 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04005041 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
5042 size_t size;
5043 size = btrfs_file_extent_inline_len(leaf, item);
5044 extent_end = (extent_start + size + root->sectorsize - 1) &
5045 ~((u64)root->sectorsize - 1);
5046 }
5047
5048 if (start >= extent_end) {
5049 path->slots[0]++;
5050 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
5051 ret = btrfs_next_leaf(root, path);
5052 if (ret < 0) {
5053 err = ret;
5054 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005055 }
Yan Zheng9036c102008-10-30 14:19:41 -04005056 if (ret > 0)
5057 goto not_found;
5058 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04005059 }
Yan Zheng9036c102008-10-30 14:19:41 -04005060 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5061 if (found_key.objectid != objectid ||
5062 found_key.type != BTRFS_EXTENT_DATA_KEY)
5063 goto not_found;
5064 if (start + len <= found_key.offset)
5065 goto not_found;
5066 em->start = start;
5067 em->len = found_key.offset - start;
5068 goto not_found_em;
5069 }
5070
Yan Zhengd899e052008-10-30 14:25:28 -04005071 if (found_type == BTRFS_FILE_EXTENT_REG ||
5072 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng9036c102008-10-30 14:19:41 -04005073 em->start = extent_start;
5074 em->len = extent_end - extent_start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005075 em->orig_start = extent_start -
5076 btrfs_file_extent_offset(leaf, item);
Chris Masondb945352007-10-15 16:15:53 -04005077 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
5078 if (bytenr == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04005079 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04005080 goto insert;
5081 }
Li Zefan261507a02010-12-17 14:21:50 +08005082 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04005083 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08005084 em->compress_type = compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04005085 em->block_start = bytenr;
5086 em->block_len = btrfs_file_extent_disk_num_bytes(leaf,
5087 item);
5088 } else {
5089 bytenr += btrfs_file_extent_offset(leaf, item);
5090 em->block_start = bytenr;
5091 em->block_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04005092 if (found_type == BTRFS_FILE_EXTENT_PREALLOC)
5093 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -04005094 }
Chris Masona52d9a82007-08-27 16:49:44 -04005095 goto insert;
5096 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04005097 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04005098 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04005099 size_t size;
5100 size_t extent_offset;
5101 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04005102
Chris Masona52d9a82007-08-27 16:49:44 -04005103 em->block_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04005104 if (!page || create) {
Yan689f9342007-10-29 11:41:07 -04005105 em->start = extent_start;
Yan Zheng9036c102008-10-30 14:19:41 -04005106 em->len = extent_end - extent_start;
Yan689f9342007-10-29 11:41:07 -04005107 goto out;
5108 }
5109
Yan Zheng9036c102008-10-30 14:19:41 -04005110 size = btrfs_file_extent_inline_len(leaf, item);
5111 extent_offset = page_offset(page) + pg_offset - extent_start;
Chris Mason70dec802008-01-29 09:59:12 -05005112 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04005113 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04005114 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05005115 em->len = (copy_size + root->sectorsize - 1) &
5116 ~((u64)root->sectorsize - 1);
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005117 em->orig_start = EXTENT_MAP_INLINE;
Li Zefan261507a02010-12-17 14:21:50 +08005118 if (compress_type) {
Chris Masonc8b97812008-10-29 14:49:59 -04005119 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08005120 em->compress_type = compress_type;
5121 }
Yan689f9342007-10-29 11:41:07 -04005122 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04005123 if (create == 0 && !PageUptodate(page)) {
Li Zefan261507a02010-12-17 14:21:50 +08005124 if (btrfs_file_extent_compression(leaf, item) !=
5125 BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04005126 ret = uncompress_inline(path, inode, page,
5127 pg_offset,
5128 extent_offset, item);
5129 BUG_ON(ret);
5130 } else {
5131 map = kmap(page);
5132 read_extent_buffer(leaf, map + pg_offset, ptr,
5133 copy_size);
Chris Mason93c82d52009-09-11 12:36:29 -04005134 if (pg_offset + copy_size < PAGE_CACHE_SIZE) {
5135 memset(map + pg_offset + copy_size, 0,
5136 PAGE_CACHE_SIZE - pg_offset -
5137 copy_size);
5138 }
Chris Masonc8b97812008-10-29 14:49:59 -04005139 kunmap(page);
5140 }
Chris Mason179e29e2007-11-01 11:28:41 -04005141 flush_dcache_page(page);
5142 } else if (create && PageUptodate(page)) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005143 WARN_ON(1);
Chris Mason179e29e2007-11-01 11:28:41 -04005144 if (!trans) {
5145 kunmap(page);
5146 free_extent_map(em);
5147 em = NULL;
Chris Masonff5714c2011-05-28 07:00:39 -04005148
David Sterbab3b4aa72011-04-21 01:20:15 +02005149 btrfs_release_path(path);
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005150 trans = btrfs_join_transaction(root);
Chris Masonff5714c2011-05-28 07:00:39 -04005151
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005152 if (IS_ERR(trans))
5153 return ERR_CAST(trans);
Chris Mason179e29e2007-11-01 11:28:41 -04005154 goto again;
5155 }
Chris Masonc8b97812008-10-29 14:49:59 -04005156 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05005157 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04005158 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04005159 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04005160 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04005161 }
Chris Masond1310b22008-01-24 16:13:08 -05005162 set_extent_uptodate(io_tree, em->start,
Arne Jansen507903b2011-04-06 10:02:20 +00005163 extent_map_end(em) - 1, NULL, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04005164 goto insert;
5165 } else {
Chris Masond3977122009-01-05 21:25:51 -05005166 printk(KERN_ERR "btrfs unknown found_type %d\n", found_type);
Chris Masona52d9a82007-08-27 16:49:44 -04005167 WARN_ON(1);
5168 }
5169not_found:
5170 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05005171 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04005172not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04005173 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04005174 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04005175insert:
David Sterbab3b4aa72011-04-21 01:20:15 +02005176 btrfs_release_path(path);
Chris Masond1310b22008-01-24 16:13:08 -05005177 if (em->start > start || extent_map_end(em) <= start) {
Chris Masond3977122009-01-05 21:25:51 -05005178 printk(KERN_ERR "Btrfs: bad extent! em: [%llu %llu] passed "
5179 "[%llu %llu]\n", (unsigned long long)em->start,
5180 (unsigned long long)em->len,
5181 (unsigned long long)start,
5182 (unsigned long long)len);
Chris Masona52d9a82007-08-27 16:49:44 -04005183 err = -EIO;
5184 goto out;
5185 }
Chris Masond1310b22008-01-24 16:13:08 -05005186
5187 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04005188 write_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005189 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04005190 /* it is possible that someone inserted the extent into the tree
5191 * while we had the lock dropped. It is also possible that
5192 * an overlapping map exists in the tree
5193 */
Chris Masona52d9a82007-08-27 16:49:44 -04005194 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04005195 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005196
5197 ret = 0;
5198
Chris Mason3b951512008-04-17 11:29:12 -04005199 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04005200 if (existing && (existing->start > start ||
5201 existing->start + existing->len <= start)) {
5202 free_extent_map(existing);
5203 existing = NULL;
5204 }
Chris Mason3b951512008-04-17 11:29:12 -04005205 if (!existing) {
5206 existing = lookup_extent_mapping(em_tree, em->start,
5207 em->len);
5208 if (existing) {
5209 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005210 em, start,
5211 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04005212 free_extent_map(existing);
5213 if (err) {
5214 free_extent_map(em);
5215 em = NULL;
5216 }
5217 } else {
5218 err = -EIO;
Chris Mason3b951512008-04-17 11:29:12 -04005219 free_extent_map(em);
5220 em = NULL;
5221 }
5222 } else {
5223 free_extent_map(em);
5224 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005225 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04005226 }
Chris Masona52d9a82007-08-27 16:49:44 -04005227 }
Chris Mason890871b2009-09-02 16:24:52 -04005228 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005229out:
liubo1abe9b82011-03-24 11:18:59 +00005230
5231 trace_btrfs_get_extent(root, em);
5232
Chris Masonf4219502008-07-22 11:18:09 -04005233 if (path)
5234 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04005235 if (trans) {
5236 ret = btrfs_end_transaction(trans, root);
Chris Masond3977122009-01-05 21:25:51 -05005237 if (!err)
Chris Masona52d9a82007-08-27 16:49:44 -04005238 err = ret;
5239 }
Chris Masona52d9a82007-08-27 16:49:44 -04005240 if (err) {
5241 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04005242 return ERR_PTR(err);
5243 }
5244 return em;
5245}
5246
Chris Masonec29ed52011-02-23 16:23:20 -05005247struct extent_map *btrfs_get_extent_fiemap(struct inode *inode, struct page *page,
5248 size_t pg_offset, u64 start, u64 len,
5249 int create)
5250{
5251 struct extent_map *em;
5252 struct extent_map *hole_em = NULL;
5253 u64 range_start = start;
5254 u64 end;
5255 u64 found;
5256 u64 found_end;
5257 int err = 0;
5258
5259 em = btrfs_get_extent(inode, page, pg_offset, start, len, create);
5260 if (IS_ERR(em))
5261 return em;
5262 if (em) {
5263 /*
5264 * if our em maps to a hole, there might
5265 * actually be delalloc bytes behind it
5266 */
5267 if (em->block_start != EXTENT_MAP_HOLE)
5268 return em;
5269 else
5270 hole_em = em;
5271 }
5272
5273 /* check to see if we've wrapped (len == -1 or similar) */
5274 end = start + len;
5275 if (end < start)
5276 end = (u64)-1;
5277 else
5278 end -= 1;
5279
5280 em = NULL;
5281
5282 /* ok, we didn't find anything, lets look for delalloc */
5283 found = count_range_bits(&BTRFS_I(inode)->io_tree, &range_start,
5284 end, len, EXTENT_DELALLOC, 1);
5285 found_end = range_start + found;
5286 if (found_end < range_start)
5287 found_end = (u64)-1;
5288
5289 /*
5290 * we didn't find anything useful, return
5291 * the original results from get_extent()
5292 */
5293 if (range_start > end || found_end <= start) {
5294 em = hole_em;
5295 hole_em = NULL;
5296 goto out;
5297 }
5298
5299 /* adjust the range_start to make sure it doesn't
5300 * go backwards from the start they passed in
5301 */
5302 range_start = max(start,range_start);
5303 found = found_end - range_start;
5304
5305 if (found > 0) {
5306 u64 hole_start = start;
5307 u64 hole_len = len;
5308
David Sterba172ddd62011-04-21 00:48:27 +02005309 em = alloc_extent_map();
Chris Masonec29ed52011-02-23 16:23:20 -05005310 if (!em) {
5311 err = -ENOMEM;
5312 goto out;
5313 }
5314 /*
5315 * when btrfs_get_extent can't find anything it
5316 * returns one huge hole
5317 *
5318 * make sure what it found really fits our range, and
5319 * adjust to make sure it is based on the start from
5320 * the caller
5321 */
5322 if (hole_em) {
5323 u64 calc_end = extent_map_end(hole_em);
5324
5325 if (calc_end <= start || (hole_em->start > end)) {
5326 free_extent_map(hole_em);
5327 hole_em = NULL;
5328 } else {
5329 hole_start = max(hole_em->start, start);
5330 hole_len = calc_end - hole_start;
5331 }
5332 }
5333 em->bdev = NULL;
5334 if (hole_em && range_start > hole_start) {
5335 /* our hole starts before our delalloc, so we
5336 * have to return just the parts of the hole
5337 * that go until the delalloc starts
5338 */
5339 em->len = min(hole_len,
5340 range_start - hole_start);
5341 em->start = hole_start;
5342 em->orig_start = hole_start;
5343 /*
5344 * don't adjust block start at all,
5345 * it is fixed at EXTENT_MAP_HOLE
5346 */
5347 em->block_start = hole_em->block_start;
5348 em->block_len = hole_len;
5349 } else {
5350 em->start = range_start;
5351 em->len = found;
5352 em->orig_start = range_start;
5353 em->block_start = EXTENT_MAP_DELALLOC;
5354 em->block_len = found;
5355 }
5356 } else if (hole_em) {
5357 return hole_em;
5358 }
5359out:
5360
5361 free_extent_map(hole_em);
5362 if (err) {
5363 free_extent_map(em);
5364 return ERR_PTR(err);
5365 }
5366 return em;
5367}
5368
Josef Bacik4b46fce2010-05-23 11:00:55 -04005369static struct extent_map *btrfs_new_extent_direct(struct inode *inode,
Josef Bacik16d299a2011-04-06 14:53:07 -04005370 struct extent_map *em,
Josef Bacik4b46fce2010-05-23 11:00:55 -04005371 u64 start, u64 len)
5372{
5373 struct btrfs_root *root = BTRFS_I(inode)->root;
5374 struct btrfs_trans_handle *trans;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005375 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
5376 struct btrfs_key ins;
5377 u64 alloc_hint;
5378 int ret;
Josef Bacik16d299a2011-04-06 14:53:07 -04005379 bool insert = false;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005380
Josef Bacik16d299a2011-04-06 14:53:07 -04005381 /*
5382 * Ok if the extent map we looked up is a hole and is for the exact
5383 * range we want, there is no reason to allocate a new one, however if
5384 * it is not right then we need to free this one and drop the cache for
5385 * our range.
5386 */
5387 if (em->block_start != EXTENT_MAP_HOLE || em->start != start ||
5388 em->len != len) {
5389 free_extent_map(em);
5390 em = NULL;
5391 insert = true;
5392 btrfs_drop_extent_cache(inode, start, start + len - 1, 0);
5393 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005394
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005395 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005396 if (IS_ERR(trans))
5397 return ERR_CAST(trans);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005398
Chris Mason4cb53002011-05-24 15:35:30 -04005399 if (start <= BTRFS_I(inode)->disk_i_size && len < 64 * 1024)
5400 btrfs_add_inode_defrag(trans, inode);
5401
Josef Bacik4b46fce2010-05-23 11:00:55 -04005402 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
5403
5404 alloc_hint = get_extent_allocation_hint(inode, start, len);
5405 ret = btrfs_reserve_extent(trans, root, len, root->sectorsize, 0,
5406 alloc_hint, (u64)-1, &ins, 1);
5407 if (ret) {
5408 em = ERR_PTR(ret);
5409 goto out;
5410 }
5411
Josef Bacik4b46fce2010-05-23 11:00:55 -04005412 if (!em) {
David Sterba172ddd62011-04-21 00:48:27 +02005413 em = alloc_extent_map();
Josef Bacik16d299a2011-04-06 14:53:07 -04005414 if (!em) {
5415 em = ERR_PTR(-ENOMEM);
5416 goto out;
5417 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005418 }
5419
5420 em->start = start;
5421 em->orig_start = em->start;
5422 em->len = ins.offset;
5423
5424 em->block_start = ins.objectid;
5425 em->block_len = ins.offset;
5426 em->bdev = root->fs_info->fs_devices->latest_bdev;
Josef Bacik16d299a2011-04-06 14:53:07 -04005427
5428 /*
5429 * We need to do this because if we're using the original em we searched
5430 * for, we could have EXTENT_FLAG_VACANCY set, and we don't want that.
5431 */
5432 em->flags = 0;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005433 set_bit(EXTENT_FLAG_PINNED, &em->flags);
5434
Josef Bacik16d299a2011-04-06 14:53:07 -04005435 while (insert) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04005436 write_lock(&em_tree->lock);
5437 ret = add_extent_mapping(em_tree, em);
5438 write_unlock(&em_tree->lock);
5439 if (ret != -EEXIST)
5440 break;
5441 btrfs_drop_extent_cache(inode, start, start + em->len - 1, 0);
5442 }
5443
5444 ret = btrfs_add_ordered_extent_dio(inode, start, ins.objectid,
5445 ins.offset, ins.offset, 0);
5446 if (ret) {
5447 btrfs_free_reserved_extent(root, ins.objectid, ins.offset);
5448 em = ERR_PTR(ret);
5449 }
5450out:
5451 btrfs_end_transaction(trans, root);
5452 return em;
5453}
5454
Chris Mason46bfbb52010-05-26 11:04:10 -04005455/*
5456 * returns 1 when the nocow is safe, < 1 on error, 0 if the
5457 * block must be cow'd
5458 */
5459static noinline int can_nocow_odirect(struct btrfs_trans_handle *trans,
5460 struct inode *inode, u64 offset, u64 len)
5461{
5462 struct btrfs_path *path;
5463 int ret;
5464 struct extent_buffer *leaf;
5465 struct btrfs_root *root = BTRFS_I(inode)->root;
5466 struct btrfs_file_extent_item *fi;
5467 struct btrfs_key key;
5468 u64 disk_bytenr;
5469 u64 backref_offset;
5470 u64 extent_end;
5471 u64 num_bytes;
5472 int slot;
5473 int found_type;
5474
5475 path = btrfs_alloc_path();
5476 if (!path)
5477 return -ENOMEM;
5478
Li Zefan33345d012011-04-20 10:31:50 +08005479 ret = btrfs_lookup_file_extent(trans, root, path, btrfs_ino(inode),
Chris Mason46bfbb52010-05-26 11:04:10 -04005480 offset, 0);
5481 if (ret < 0)
5482 goto out;
5483
5484 slot = path->slots[0];
5485 if (ret == 1) {
5486 if (slot == 0) {
5487 /* can't find the item, must cow */
5488 ret = 0;
5489 goto out;
5490 }
5491 slot--;
5492 }
5493 ret = 0;
5494 leaf = path->nodes[0];
5495 btrfs_item_key_to_cpu(leaf, &key, slot);
Li Zefan33345d012011-04-20 10:31:50 +08005496 if (key.objectid != btrfs_ino(inode) ||
Chris Mason46bfbb52010-05-26 11:04:10 -04005497 key.type != BTRFS_EXTENT_DATA_KEY) {
5498 /* not our file or wrong item type, must cow */
5499 goto out;
5500 }
5501
5502 if (key.offset > offset) {
5503 /* Wrong offset, must cow */
5504 goto out;
5505 }
5506
5507 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
5508 found_type = btrfs_file_extent_type(leaf, fi);
5509 if (found_type != BTRFS_FILE_EXTENT_REG &&
5510 found_type != BTRFS_FILE_EXTENT_PREALLOC) {
5511 /* not a regular extent, must cow */
5512 goto out;
5513 }
5514 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
5515 backref_offset = btrfs_file_extent_offset(leaf, fi);
5516
5517 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
5518 if (extent_end < offset + len) {
5519 /* extent doesn't include our full range, must cow */
5520 goto out;
5521 }
5522
5523 if (btrfs_extent_readonly(root, disk_bytenr))
5524 goto out;
5525
5526 /*
5527 * look for other files referencing this extent, if we
5528 * find any we must cow
5529 */
Li Zefan33345d012011-04-20 10:31:50 +08005530 if (btrfs_cross_ref_exist(trans, root, btrfs_ino(inode),
Chris Mason46bfbb52010-05-26 11:04:10 -04005531 key.offset - backref_offset, disk_bytenr))
5532 goto out;
5533
5534 /*
5535 * adjust disk_bytenr and num_bytes to cover just the bytes
5536 * in this extent we are about to write. If there
5537 * are any csums in that range we have to cow in order
5538 * to keep the csums correct
5539 */
5540 disk_bytenr += backref_offset;
5541 disk_bytenr += offset - key.offset;
5542 num_bytes = min(offset + len, extent_end) - offset;
5543 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
5544 goto out;
5545 /*
5546 * all of the above have passed, it is safe to overwrite this extent
5547 * without cow
5548 */
5549 ret = 1;
5550out:
5551 btrfs_free_path(path);
5552 return ret;
5553}
5554
Josef Bacik4b46fce2010-05-23 11:00:55 -04005555static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock,
5556 struct buffer_head *bh_result, int create)
5557{
5558 struct extent_map *em;
5559 struct btrfs_root *root = BTRFS_I(inode)->root;
5560 u64 start = iblock << inode->i_blkbits;
5561 u64 len = bh_result->b_size;
Chris Mason46bfbb52010-05-26 11:04:10 -04005562 struct btrfs_trans_handle *trans;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005563
5564 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
5565 if (IS_ERR(em))
5566 return PTR_ERR(em);
5567
5568 /*
5569 * Ok for INLINE and COMPRESSED extents we need to fallback on buffered
5570 * io. INLINE is special, and we could probably kludge it in here, but
5571 * it's still buffered so for safety lets just fall back to the generic
5572 * buffered path.
5573 *
5574 * For COMPRESSED we _have_ to read the entire extent in so we can
5575 * decompress it, so there will be buffering required no matter what we
5576 * do, so go ahead and fallback to buffered.
5577 *
5578 * We return -ENOTBLK because thats what makes DIO go ahead and go back
5579 * to buffered IO. Don't blame me, this is the price we pay for using
5580 * the generic code.
5581 */
5582 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) ||
5583 em->block_start == EXTENT_MAP_INLINE) {
5584 free_extent_map(em);
5585 return -ENOTBLK;
5586 }
5587
5588 /* Just a good old fashioned hole, return */
5589 if (!create && (em->block_start == EXTENT_MAP_HOLE ||
5590 test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
5591 free_extent_map(em);
5592 /* DIO will do one hole at a time, so just unlock a sector */
5593 unlock_extent(&BTRFS_I(inode)->io_tree, start,
5594 start + root->sectorsize - 1, GFP_NOFS);
5595 return 0;
5596 }
5597
5598 /*
5599 * We don't allocate a new extent in the following cases
5600 *
5601 * 1) The inode is marked as NODATACOW. In this case we'll just use the
5602 * existing extent.
5603 * 2) The extent is marked as PREALLOC. We're good to go here and can
5604 * just use the extent.
5605 *
5606 */
Chris Mason46bfbb52010-05-26 11:04:10 -04005607 if (!create) {
5608 len = em->len - (start - em->start);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005609 goto map;
Chris Mason46bfbb52010-05-26 11:04:10 -04005610 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005611
5612 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
5613 ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
5614 em->block_start != EXTENT_MAP_HOLE)) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04005615 int type;
5616 int ret;
Chris Mason46bfbb52010-05-26 11:04:10 -04005617 u64 block_start;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005618
5619 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
5620 type = BTRFS_ORDERED_PREALLOC;
5621 else
5622 type = BTRFS_ORDERED_NOCOW;
Chris Mason46bfbb52010-05-26 11:04:10 -04005623 len = min(len, em->len - (start - em->start));
Josef Bacik4b46fce2010-05-23 11:00:55 -04005624 block_start = em->block_start + (start - em->start);
Chris Mason46bfbb52010-05-26 11:04:10 -04005625
5626 /*
5627 * we're not going to log anything, but we do need
5628 * to make sure the current transaction stays open
5629 * while we look for nocow cross refs
5630 */
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005631 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005632 if (IS_ERR(trans))
Chris Mason46bfbb52010-05-26 11:04:10 -04005633 goto must_cow;
5634
5635 if (can_nocow_odirect(trans, inode, start, len) == 1) {
5636 ret = btrfs_add_ordered_extent_dio(inode, start,
5637 block_start, len, len, type);
5638 btrfs_end_transaction(trans, root);
5639 if (ret) {
5640 free_extent_map(em);
5641 return ret;
5642 }
5643 goto unlock;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005644 }
Chris Mason46bfbb52010-05-26 11:04:10 -04005645 btrfs_end_transaction(trans, root);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005646 }
Chris Mason46bfbb52010-05-26 11:04:10 -04005647must_cow:
5648 /*
5649 * this will cow the extent, reset the len in case we changed
5650 * it above
5651 */
5652 len = bh_result->b_size;
Josef Bacik16d299a2011-04-06 14:53:07 -04005653 em = btrfs_new_extent_direct(inode, em, start, len);
Chris Mason46bfbb52010-05-26 11:04:10 -04005654 if (IS_ERR(em))
5655 return PTR_ERR(em);
5656 len = min(len, em->len - (start - em->start));
5657unlock:
Chris Mason4845e442010-05-25 20:56:50 -04005658 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, start + len - 1,
5659 EXTENT_LOCKED | EXTENT_DELALLOC | EXTENT_DIRTY, 1,
5660 0, NULL, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005661map:
5662 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
5663 inode->i_blkbits;
Chris Mason46bfbb52010-05-26 11:04:10 -04005664 bh_result->b_size = len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005665 bh_result->b_bdev = em->bdev;
5666 set_buffer_mapped(bh_result);
5667 if (create && !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
5668 set_buffer_new(bh_result);
5669
5670 free_extent_map(em);
5671
5672 return 0;
5673}
5674
5675struct btrfs_dio_private {
5676 struct inode *inode;
5677 u64 logical_offset;
5678 u64 disk_bytenr;
5679 u64 bytes;
5680 u32 *csums;
5681 void *private;
Miao Xiee65e1532010-11-22 03:04:43 +00005682
5683 /* number of bios pending for this dio */
5684 atomic_t pending_bios;
5685
5686 /* IO errors */
5687 int errors;
5688
5689 struct bio *orig_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005690};
5691
5692static void btrfs_endio_direct_read(struct bio *bio, int err)
5693{
Miao Xiee65e1532010-11-22 03:04:43 +00005694 struct btrfs_dio_private *dip = bio->bi_private;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005695 struct bio_vec *bvec_end = bio->bi_io_vec + bio->bi_vcnt - 1;
5696 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005697 struct inode *inode = dip->inode;
5698 struct btrfs_root *root = BTRFS_I(inode)->root;
5699 u64 start;
5700 u32 *private = dip->csums;
5701
5702 start = dip->logical_offset;
5703 do {
5704 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)) {
5705 struct page *page = bvec->bv_page;
5706 char *kaddr;
5707 u32 csum = ~(u32)0;
5708 unsigned long flags;
5709
5710 local_irq_save(flags);
5711 kaddr = kmap_atomic(page, KM_IRQ0);
5712 csum = btrfs_csum_data(root, kaddr + bvec->bv_offset,
5713 csum, bvec->bv_len);
5714 btrfs_csum_final(csum, (char *)&csum);
5715 kunmap_atomic(kaddr, KM_IRQ0);
5716 local_irq_restore(flags);
5717
5718 flush_dcache_page(bvec->bv_page);
5719 if (csum != *private) {
Li Zefan33345d012011-04-20 10:31:50 +08005720 printk(KERN_ERR "btrfs csum failed ino %llu off"
Josef Bacik4b46fce2010-05-23 11:00:55 -04005721 " %llu csum %u private %u\n",
Li Zefan33345d012011-04-20 10:31:50 +08005722 (unsigned long long)btrfs_ino(inode),
5723 (unsigned long long)start,
Josef Bacik4b46fce2010-05-23 11:00:55 -04005724 csum, *private);
5725 err = -EIO;
5726 }
5727 }
5728
5729 start += bvec->bv_len;
5730 private++;
5731 bvec++;
5732 } while (bvec <= bvec_end);
5733
5734 unlock_extent(&BTRFS_I(inode)->io_tree, dip->logical_offset,
5735 dip->logical_offset + dip->bytes - 1, GFP_NOFS);
5736 bio->bi_private = dip->private;
5737
5738 kfree(dip->csums);
5739 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04005740
5741 /* If we had a csum failure make sure to clear the uptodate flag */
5742 if (err)
5743 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005744 dio_end_io(bio, err);
5745}
5746
5747static void btrfs_endio_direct_write(struct bio *bio, int err)
5748{
5749 struct btrfs_dio_private *dip = bio->bi_private;
5750 struct inode *inode = dip->inode;
5751 struct btrfs_root *root = BTRFS_I(inode)->root;
5752 struct btrfs_trans_handle *trans;
5753 struct btrfs_ordered_extent *ordered = NULL;
5754 struct extent_state *cached_state = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05005755 u64 ordered_offset = dip->logical_offset;
5756 u64 ordered_bytes = dip->bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005757 int ret;
5758
5759 if (err)
5760 goto out_done;
Chris Mason163cf092010-11-28 19:56:33 -05005761again:
5762 ret = btrfs_dec_test_first_ordered_pending(inode, &ordered,
5763 &ordered_offset,
5764 ordered_bytes);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005765 if (!ret)
Chris Mason163cf092010-11-28 19:56:33 -05005766 goto out_test;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005767
5768 BUG_ON(!ordered);
5769
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005770 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005771 if (IS_ERR(trans)) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04005772 err = -ENOMEM;
5773 goto out;
5774 }
5775 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
5776
5777 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags)) {
5778 ret = btrfs_ordered_update_i_size(inode, 0, ordered);
5779 if (!ret)
Li Zefanf0dd9592011-09-08 10:26:51 +08005780 err = btrfs_update_inode(trans, root, inode);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005781 goto out;
5782 }
5783
5784 lock_extent_bits(&BTRFS_I(inode)->io_tree, ordered->file_offset,
5785 ordered->file_offset + ordered->len - 1, 0,
5786 &cached_state, GFP_NOFS);
5787
5788 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags)) {
5789 ret = btrfs_mark_extent_written(trans, inode,
5790 ordered->file_offset,
5791 ordered->file_offset +
5792 ordered->len);
5793 if (ret) {
5794 err = ret;
5795 goto out_unlock;
5796 }
5797 } else {
5798 ret = insert_reserved_file_extent(trans, inode,
5799 ordered->file_offset,
5800 ordered->start,
5801 ordered->disk_len,
5802 ordered->len,
5803 ordered->len,
5804 0, 0, 0,
5805 BTRFS_FILE_EXTENT_REG);
5806 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
5807 ordered->file_offset, ordered->len);
5808 if (ret) {
5809 err = ret;
5810 WARN_ON(1);
5811 goto out_unlock;
5812 }
5813 }
5814
5815 add_pending_csums(trans, inode, ordered->file_offset, &ordered->list);
Josef Bacik1ef30be2011-04-05 19:25:36 -04005816 ret = btrfs_ordered_update_i_size(inode, 0, ordered);
Miao Xiea39f7522011-09-11 10:52:25 -04005817 if (!ret || !test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags))
Josef Bacik1ef30be2011-04-05 19:25:36 -04005818 btrfs_update_inode(trans, root, inode);
5819 ret = 0;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005820out_unlock:
5821 unlock_extent_cached(&BTRFS_I(inode)->io_tree, ordered->file_offset,
5822 ordered->file_offset + ordered->len - 1,
5823 &cached_state, GFP_NOFS);
5824out:
5825 btrfs_delalloc_release_metadata(inode, ordered->len);
5826 btrfs_end_transaction(trans, root);
Chris Mason163cf092010-11-28 19:56:33 -05005827 ordered_offset = ordered->file_offset + ordered->len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005828 btrfs_put_ordered_extent(ordered);
5829 btrfs_put_ordered_extent(ordered);
Chris Mason163cf092010-11-28 19:56:33 -05005830
5831out_test:
5832 /*
5833 * our bio might span multiple ordered extents. If we haven't
5834 * completed the accounting for the whole dio, go back and try again
5835 */
5836 if (ordered_offset < dip->logical_offset + dip->bytes) {
5837 ordered_bytes = dip->logical_offset + dip->bytes -
5838 ordered_offset;
5839 goto again;
5840 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005841out_done:
5842 bio->bi_private = dip->private;
5843
5844 kfree(dip->csums);
5845 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04005846
5847 /* If we had an error make sure to clear the uptodate flag */
5848 if (err)
5849 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005850 dio_end_io(bio, err);
5851}
5852
Chris Masoneaf25d92010-05-25 09:48:28 -04005853static int __btrfs_submit_bio_start_direct_io(struct inode *inode, int rw,
5854 struct bio *bio, int mirror_num,
5855 unsigned long bio_flags, u64 offset)
5856{
5857 int ret;
5858 struct btrfs_root *root = BTRFS_I(inode)->root;
5859 ret = btrfs_csum_one_bio(root, inode, bio, offset, 1);
5860 BUG_ON(ret);
5861 return 0;
5862}
5863
Miao Xiee65e1532010-11-22 03:04:43 +00005864static void btrfs_end_dio_bio(struct bio *bio, int err)
5865{
5866 struct btrfs_dio_private *dip = bio->bi_private;
5867
5868 if (err) {
Li Zefan33345d012011-04-20 10:31:50 +08005869 printk(KERN_ERR "btrfs direct IO failed ino %llu rw %lu "
Jan Beulich3dd14622010-12-07 14:54:09 +00005870 "sector %#Lx len %u err no %d\n",
Li Zefan33345d012011-04-20 10:31:50 +08005871 (unsigned long long)btrfs_ino(dip->inode), bio->bi_rw,
Jan Beulich3dd14622010-12-07 14:54:09 +00005872 (unsigned long long)bio->bi_sector, bio->bi_size, err);
Miao Xiee65e1532010-11-22 03:04:43 +00005873 dip->errors = 1;
5874
5875 /*
5876 * before atomic variable goto zero, we must make sure
5877 * dip->errors is perceived to be set.
5878 */
5879 smp_mb__before_atomic_dec();
5880 }
5881
5882 /* if there are more bios still pending for this dio, just exit */
5883 if (!atomic_dec_and_test(&dip->pending_bios))
5884 goto out;
5885
5886 if (dip->errors)
5887 bio_io_error(dip->orig_bio);
5888 else {
5889 set_bit(BIO_UPTODATE, &dip->orig_bio->bi_flags);
5890 bio_endio(dip->orig_bio, 0);
5891 }
5892out:
5893 bio_put(bio);
5894}
5895
5896static struct bio *btrfs_dio_bio_alloc(struct block_device *bdev,
5897 u64 first_sector, gfp_t gfp_flags)
5898{
5899 int nr_vecs = bio_get_nr_vecs(bdev);
5900 return btrfs_bio_alloc(bdev, first_sector, nr_vecs, gfp_flags);
5901}
5902
5903static inline int __btrfs_submit_dio_bio(struct bio *bio, struct inode *inode,
5904 int rw, u64 file_offset, int skip_sum,
Josef Bacik1ae39932011-04-06 14:41:34 -04005905 u32 *csums, int async_submit)
Miao Xiee65e1532010-11-22 03:04:43 +00005906{
5907 int write = rw & REQ_WRITE;
5908 struct btrfs_root *root = BTRFS_I(inode)->root;
5909 int ret;
5910
5911 bio_get(bio);
5912 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
5913 if (ret)
5914 goto err;
5915
Josef Bacik1ae39932011-04-06 14:41:34 -04005916 if (skip_sum)
5917 goto map;
5918
5919 if (write && async_submit) {
Miao Xiee65e1532010-11-22 03:04:43 +00005920 ret = btrfs_wq_submit_bio(root->fs_info,
5921 inode, rw, bio, 0, 0,
5922 file_offset,
5923 __btrfs_submit_bio_start_direct_io,
5924 __btrfs_submit_bio_done);
5925 goto err;
Josef Bacik1ae39932011-04-06 14:41:34 -04005926 } else if (write) {
5927 /*
5928 * If we aren't doing async submit, calculate the csum of the
5929 * bio now.
5930 */
5931 ret = btrfs_csum_one_bio(root, inode, bio, file_offset, 1);
5932 if (ret)
5933 goto err;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00005934 } else if (!skip_sum) {
5935 ret = btrfs_lookup_bio_sums_dio(root, inode, bio,
Miao Xiee65e1532010-11-22 03:04:43 +00005936 file_offset, csums);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00005937 if (ret)
5938 goto err;
5939 }
Miao Xiee65e1532010-11-22 03:04:43 +00005940
Josef Bacik1ae39932011-04-06 14:41:34 -04005941map:
5942 ret = btrfs_map_bio(root, rw, bio, 0, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00005943err:
5944 bio_put(bio);
5945 return ret;
5946}
5947
5948static int btrfs_submit_direct_hook(int rw, struct btrfs_dio_private *dip,
5949 int skip_sum)
5950{
5951 struct inode *inode = dip->inode;
5952 struct btrfs_root *root = BTRFS_I(inode)->root;
5953 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
5954 struct bio *bio;
5955 struct bio *orig_bio = dip->orig_bio;
5956 struct bio_vec *bvec = orig_bio->bi_io_vec;
5957 u64 start_sector = orig_bio->bi_sector;
5958 u64 file_offset = dip->logical_offset;
5959 u64 submit_len = 0;
5960 u64 map_length;
5961 int nr_pages = 0;
5962 u32 *csums = dip->csums;
5963 int ret = 0;
Josef Bacik1ae39932011-04-06 14:41:34 -04005964 int async_submit = 0;
Josef Bacik98bc3142011-03-22 11:00:46 -04005965 int write = rw & REQ_WRITE;
Miao Xiee65e1532010-11-22 03:04:43 +00005966
Miao Xiee65e1532010-11-22 03:04:43 +00005967 map_length = orig_bio->bi_size;
5968 ret = btrfs_map_block(map_tree, READ, start_sector << 9,
5969 &map_length, NULL, 0);
5970 if (ret) {
Josef Bacik64728bb2011-04-25 19:43:52 -04005971 bio_put(orig_bio);
Miao Xiee65e1532010-11-22 03:04:43 +00005972 return -EIO;
5973 }
5974
Josef Bacik02f57c72011-04-06 14:25:44 -04005975 if (map_length >= orig_bio->bi_size) {
5976 bio = orig_bio;
5977 goto submit;
5978 }
5979
Josef Bacik1ae39932011-04-06 14:41:34 -04005980 async_submit = 1;
Josef Bacik02f57c72011-04-06 14:25:44 -04005981 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev, start_sector, GFP_NOFS);
5982 if (!bio)
5983 return -ENOMEM;
5984 bio->bi_private = dip;
5985 bio->bi_end_io = btrfs_end_dio_bio;
5986 atomic_inc(&dip->pending_bios);
5987
Miao Xiee65e1532010-11-22 03:04:43 +00005988 while (bvec <= (orig_bio->bi_io_vec + orig_bio->bi_vcnt - 1)) {
5989 if (unlikely(map_length < submit_len + bvec->bv_len ||
5990 bio_add_page(bio, bvec->bv_page, bvec->bv_len,
5991 bvec->bv_offset) < bvec->bv_len)) {
5992 /*
5993 * inc the count before we submit the bio so
5994 * we know the end IO handler won't happen before
5995 * we inc the count. Otherwise, the dip might get freed
5996 * before we're done setting it up
5997 */
5998 atomic_inc(&dip->pending_bios);
5999 ret = __btrfs_submit_dio_bio(bio, inode, rw,
6000 file_offset, skip_sum,
Josef Bacik1ae39932011-04-06 14:41:34 -04006001 csums, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00006002 if (ret) {
6003 bio_put(bio);
6004 atomic_dec(&dip->pending_bios);
6005 goto out_err;
6006 }
6007
Josef Bacik98bc3142011-03-22 11:00:46 -04006008 /* Write's use the ordered csums */
6009 if (!write && !skip_sum)
Miao Xiee65e1532010-11-22 03:04:43 +00006010 csums = csums + nr_pages;
6011 start_sector += submit_len >> 9;
6012 file_offset += submit_len;
6013
6014 submit_len = 0;
6015 nr_pages = 0;
6016
6017 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev,
6018 start_sector, GFP_NOFS);
6019 if (!bio)
6020 goto out_err;
6021 bio->bi_private = dip;
6022 bio->bi_end_io = btrfs_end_dio_bio;
6023
6024 map_length = orig_bio->bi_size;
6025 ret = btrfs_map_block(map_tree, READ, start_sector << 9,
6026 &map_length, NULL, 0);
6027 if (ret) {
6028 bio_put(bio);
6029 goto out_err;
6030 }
6031 } else {
6032 submit_len += bvec->bv_len;
6033 nr_pages ++;
6034 bvec++;
6035 }
6036 }
6037
Josef Bacik02f57c72011-04-06 14:25:44 -04006038submit:
Miao Xiee65e1532010-11-22 03:04:43 +00006039 ret = __btrfs_submit_dio_bio(bio, inode, rw, file_offset, skip_sum,
Josef Bacik1ae39932011-04-06 14:41:34 -04006040 csums, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00006041 if (!ret)
6042 return 0;
6043
6044 bio_put(bio);
6045out_err:
6046 dip->errors = 1;
6047 /*
6048 * before atomic variable goto zero, we must
6049 * make sure dip->errors is perceived to be set.
6050 */
6051 smp_mb__before_atomic_dec();
6052 if (atomic_dec_and_test(&dip->pending_bios))
6053 bio_io_error(dip->orig_bio);
6054
6055 /* bio_end_io() will handle error, so we needn't return it */
6056 return 0;
6057}
6058
Josef Bacik4b46fce2010-05-23 11:00:55 -04006059static void btrfs_submit_direct(int rw, struct bio *bio, struct inode *inode,
6060 loff_t file_offset)
6061{
6062 struct btrfs_root *root = BTRFS_I(inode)->root;
6063 struct btrfs_dio_private *dip;
6064 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006065 int skip_sum;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02006066 int write = rw & REQ_WRITE;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006067 int ret = 0;
6068
6069 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
6070
6071 dip = kmalloc(sizeof(*dip), GFP_NOFS);
6072 if (!dip) {
6073 ret = -ENOMEM;
6074 goto free_ordered;
6075 }
6076 dip->csums = NULL;
6077
Josef Bacik98bc3142011-03-22 11:00:46 -04006078 /* Write's use the ordered csum stuff, so we don't need dip->csums */
6079 if (!write && !skip_sum) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04006080 dip->csums = kmalloc(sizeof(u32) * bio->bi_vcnt, GFP_NOFS);
6081 if (!dip->csums) {
Daniel J Bluemanb4966b72011-03-09 16:46:42 +00006082 kfree(dip);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006083 ret = -ENOMEM;
6084 goto free_ordered;
6085 }
6086 }
6087
6088 dip->private = bio->bi_private;
6089 dip->inode = inode;
6090 dip->logical_offset = file_offset;
6091
Josef Bacik4b46fce2010-05-23 11:00:55 -04006092 dip->bytes = 0;
6093 do {
6094 dip->bytes += bvec->bv_len;
6095 bvec++;
6096 } while (bvec <= (bio->bi_io_vec + bio->bi_vcnt - 1));
6097
Chris Mason46bfbb52010-05-26 11:04:10 -04006098 dip->disk_bytenr = (u64)bio->bi_sector << 9;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006099 bio->bi_private = dip;
Miao Xiee65e1532010-11-22 03:04:43 +00006100 dip->errors = 0;
6101 dip->orig_bio = bio;
6102 atomic_set(&dip->pending_bios, 0);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006103
6104 if (write)
6105 bio->bi_end_io = btrfs_endio_direct_write;
6106 else
6107 bio->bi_end_io = btrfs_endio_direct_read;
6108
Miao Xiee65e1532010-11-22 03:04:43 +00006109 ret = btrfs_submit_direct_hook(rw, dip, skip_sum);
6110 if (!ret)
Chris Masoneaf25d92010-05-25 09:48:28 -04006111 return;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006112free_ordered:
6113 /*
6114 * If this is a write, we need to clean up the reserved space and kill
6115 * the ordered extent.
6116 */
6117 if (write) {
6118 struct btrfs_ordered_extent *ordered;
Josef Bacik955256f2010-11-19 09:41:10 -05006119 ordered = btrfs_lookup_ordered_extent(inode, file_offset);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006120 if (!test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags) &&
6121 !test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags))
6122 btrfs_free_reserved_extent(root, ordered->start,
6123 ordered->disk_len);
6124 btrfs_put_ordered_extent(ordered);
6125 btrfs_put_ordered_extent(ordered);
6126 }
6127 bio_endio(bio, ret);
6128}
6129
Chris Mason5a5f79b2010-05-26 21:33:37 -04006130static ssize_t check_direct_IO(struct btrfs_root *root, int rw, struct kiocb *iocb,
6131 const struct iovec *iov, loff_t offset,
6132 unsigned long nr_segs)
6133{
6134 int seg;
Josef Bacika1b75f72011-04-08 15:51:18 +00006135 int i;
Chris Mason5a5f79b2010-05-26 21:33:37 -04006136 size_t size;
6137 unsigned long addr;
6138 unsigned blocksize_mask = root->sectorsize - 1;
6139 ssize_t retval = -EINVAL;
6140 loff_t end = offset;
6141
6142 if (offset & blocksize_mask)
6143 goto out;
6144
6145 /* Check the memory alignment. Blocks cannot straddle pages */
6146 for (seg = 0; seg < nr_segs; seg++) {
6147 addr = (unsigned long)iov[seg].iov_base;
6148 size = iov[seg].iov_len;
6149 end += size;
Josef Bacika1b75f72011-04-08 15:51:18 +00006150 if ((addr & blocksize_mask) || (size & blocksize_mask))
Chris Mason5a5f79b2010-05-26 21:33:37 -04006151 goto out;
Josef Bacika1b75f72011-04-08 15:51:18 +00006152
6153 /* If this is a write we don't need to check anymore */
6154 if (rw & WRITE)
6155 continue;
6156
6157 /*
6158 * Check to make sure we don't have duplicate iov_base's in this
6159 * iovec, if so return EINVAL, otherwise we'll get csum errors
6160 * when reading back.
6161 */
6162 for (i = seg + 1; i < nr_segs; i++) {
6163 if (iov[seg].iov_base == iov[i].iov_base)
6164 goto out;
6165 }
Chris Mason5a5f79b2010-05-26 21:33:37 -04006166 }
6167 retval = 0;
6168out:
6169 return retval;
6170}
Chris Mason16432982008-04-10 10:23:21 -04006171static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
6172 const struct iovec *iov, loff_t offset,
6173 unsigned long nr_segs)
6174{
Josef Bacik4b46fce2010-05-23 11:00:55 -04006175 struct file *file = iocb->ki_filp;
6176 struct inode *inode = file->f_mapping->host;
6177 struct btrfs_ordered_extent *ordered;
Chris Mason4845e442010-05-25 20:56:50 -04006178 struct extent_state *cached_state = NULL;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006179 u64 lockstart, lockend;
6180 ssize_t ret;
Chris Mason4845e442010-05-25 20:56:50 -04006181 int writing = rw & WRITE;
6182 int write_bits = 0;
Chris Mason3f7c5792010-05-26 10:59:53 -04006183 size_t count = iov_length(iov, nr_segs);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006184
Chris Mason5a5f79b2010-05-26 21:33:37 -04006185 if (check_direct_IO(BTRFS_I(inode)->root, rw, iocb, iov,
6186 offset, nr_segs)) {
6187 return 0;
6188 }
6189
Josef Bacik4b46fce2010-05-23 11:00:55 -04006190 lockstart = offset;
Chris Mason3f7c5792010-05-26 10:59:53 -04006191 lockend = offset + count - 1;
6192
6193 if (writing) {
6194 ret = btrfs_delalloc_reserve_space(inode, count);
6195 if (ret)
6196 goto out;
6197 }
Chris Mason4845e442010-05-25 20:56:50 -04006198
Josef Bacik4b46fce2010-05-23 11:00:55 -04006199 while (1) {
Chris Mason4845e442010-05-25 20:56:50 -04006200 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6201 0, &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006202 /*
6203 * We're concerned with the entire range that we're going to be
6204 * doing DIO to, so we need to make sure theres no ordered
6205 * extents in this range.
6206 */
6207 ordered = btrfs_lookup_ordered_range(inode, lockstart,
6208 lockend - lockstart + 1);
6209 if (!ordered)
6210 break;
Chris Mason4845e442010-05-25 20:56:50 -04006211 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6212 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006213 btrfs_start_ordered_extent(inode, ordered, 1);
6214 btrfs_put_ordered_extent(ordered);
6215 cond_resched();
6216 }
6217
Chris Mason4845e442010-05-25 20:56:50 -04006218 /*
6219 * we don't use btrfs_set_extent_delalloc because we don't want
6220 * the dirty or uptodate bits
6221 */
6222 if (writing) {
6223 write_bits = EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING;
6224 ret = set_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6225 EXTENT_DELALLOC, 0, NULL, &cached_state,
6226 GFP_NOFS);
6227 if (ret) {
6228 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
6229 lockend, EXTENT_LOCKED | write_bits,
6230 1, 0, &cached_state, GFP_NOFS);
6231 goto out;
6232 }
6233 }
6234
6235 free_extent_state(cached_state);
6236 cached_state = NULL;
6237
Chris Mason5a5f79b2010-05-26 21:33:37 -04006238 ret = __blockdev_direct_IO(rw, iocb, inode,
6239 BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev,
6240 iov, offset, nr_segs, btrfs_get_blocks_direct, NULL,
6241 btrfs_submit_direct, 0);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006242
6243 if (ret < 0 && ret != -EIOCBQUEUED) {
Chris Mason4845e442010-05-25 20:56:50 -04006244 clear_extent_bit(&BTRFS_I(inode)->io_tree, offset,
6245 offset + iov_length(iov, nr_segs) - 1,
6246 EXTENT_LOCKED | write_bits, 1, 0,
6247 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006248 } else if (ret >= 0 && ret < iov_length(iov, nr_segs)) {
6249 /*
6250 * We're falling back to buffered, unlock the section we didn't
6251 * do IO on.
6252 */
Chris Mason4845e442010-05-25 20:56:50 -04006253 clear_extent_bit(&BTRFS_I(inode)->io_tree, offset + ret,
6254 offset + iov_length(iov, nr_segs) - 1,
6255 EXTENT_LOCKED | write_bits, 1, 0,
6256 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006257 }
Chris Mason4845e442010-05-25 20:56:50 -04006258out:
6259 free_extent_state(cached_state);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006260 return ret;
Chris Mason16432982008-04-10 10:23:21 -04006261}
6262
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006263static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
6264 __u64 start, __u64 len)
6265{
Chris Masonec29ed52011-02-23 16:23:20 -05006266 return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent_fiemap);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006267}
6268
Chris Mason9ebefb182007-06-15 13:50:00 -04006269int btrfs_readpage(struct file *file, struct page *page)
6270{
Chris Masond1310b22008-01-24 16:13:08 -05006271 struct extent_io_tree *tree;
6272 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04006273 return extent_read_full_page(tree, page, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04006274}
Chris Mason1832a6d2007-12-21 16:27:21 -05006275
Chris Mason39279cc2007-06-12 06:35:45 -04006276static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
6277{
Chris Masond1310b22008-01-24 16:13:08 -05006278 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04006279
6280
6281 if (current->flags & PF_MEMALLOC) {
6282 redirty_page_for_writepage(wbc, page);
6283 unlock_page(page);
6284 return 0;
6285 }
Chris Masond1310b22008-01-24 16:13:08 -05006286 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04006287 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
6288}
Chris Mason39279cc2007-06-12 06:35:45 -04006289
Chris Masonf4219502008-07-22 11:18:09 -04006290int btrfs_writepages(struct address_space *mapping,
6291 struct writeback_control *wbc)
Chris Masonb293f022007-11-01 19:45:34 -04006292{
Chris Masond1310b22008-01-24 16:13:08 -05006293 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05006294
Chris Masond1310b22008-01-24 16:13:08 -05006295 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04006296 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
6297}
6298
Chris Mason3ab2fb52007-11-08 10:59:22 -05006299static int
6300btrfs_readpages(struct file *file, struct address_space *mapping,
6301 struct list_head *pages, unsigned nr_pages)
6302{
Chris Masond1310b22008-01-24 16:13:08 -05006303 struct extent_io_tree *tree;
6304 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05006305 return extent_readpages(tree, mapping, pages, nr_pages,
6306 btrfs_get_extent);
6307}
Chris Masone6dcd2d2008-07-17 12:53:50 -04006308static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04006309{
Chris Masond1310b22008-01-24 16:13:08 -05006310 struct extent_io_tree *tree;
6311 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04006312 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006313
Chris Masond1310b22008-01-24 16:13:08 -05006314 tree = &BTRFS_I(page->mapping->host)->io_tree;
6315 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05006316 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04006317 if (ret == 1) {
6318 ClearPagePrivate(page);
6319 set_page_private(page, 0);
6320 page_cache_release(page);
6321 }
6322 return ret;
6323}
Chris Mason39279cc2007-06-12 06:35:45 -04006324
Chris Masone6dcd2d2008-07-17 12:53:50 -04006325static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
6326{
Chris Mason98509cf2008-09-11 15:51:43 -04006327 if (PageWriteback(page) || PageDirty(page))
6328 return 0;
Yan Zhengb335b002009-02-12 10:06:04 -05006329 return __btrfs_releasepage(page, gfp_flags & GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006330}
6331
Chris Masona52d9a82007-08-27 16:49:44 -04006332static void btrfs_invalidatepage(struct page *page, unsigned long offset)
6333{
Chris Masond1310b22008-01-24 16:13:08 -05006334 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006335 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006336 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006337 u64 page_start = page_offset(page);
6338 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006339
Chris Mason8b62b722009-09-02 16:53:46 -04006340
6341 /*
6342 * we have the page locked, so new writeback can't start,
6343 * and the dirty bit won't be cleared while we are here.
6344 *
6345 * Wait for IO on this page so that we can safely clear
6346 * the PagePrivate2 bit and do ordered accounting
6347 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006348 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04006349
Chris Masond1310b22008-01-24 16:13:08 -05006350 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006351 if (offset) {
6352 btrfs_releasepage(page, GFP_NOFS);
6353 return;
6354 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00006355 lock_extent_bits(tree, page_start, page_end, 0, &cached_state,
6356 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006357 ordered = btrfs_lookup_ordered_extent(page->mapping->host,
6358 page_offset(page));
6359 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04006360 /*
6361 * IO on this page will never be started, so we need
6362 * to account for any ordered extents now
6363 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006364 clear_extent_bit(tree, page_start, page_end,
6365 EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik32c00af2009-10-08 13:34:05 -04006366 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING, 1, 0,
Josef Bacik2ac55d42010-02-03 19:33:23 +00006367 &cached_state, GFP_NOFS);
Chris Mason8b62b722009-09-02 16:53:46 -04006368 /*
6369 * whoever cleared the private bit is responsible
6370 * for the finish_ordered_io
6371 */
6372 if (TestClearPagePrivate2(page)) {
6373 btrfs_finish_ordered_io(page->mapping->host,
6374 page_start, page_end);
6375 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006376 btrfs_put_ordered_extent(ordered);
Josef Bacik2ac55d42010-02-03 19:33:23 +00006377 cached_state = NULL;
6378 lock_extent_bits(tree, page_start, page_end, 0, &cached_state,
6379 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006380 }
6381 clear_extent_bit(tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04006382 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik2ac55d42010-02-03 19:33:23 +00006383 EXTENT_DO_ACCOUNTING, 1, 1, &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006384 __btrfs_releasepage(page, GFP_NOFS);
6385
Chris Mason4a096752008-07-21 10:29:44 -04006386 ClearPageChecked(page);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04006387 if (PagePrivate(page)) {
Chris Mason9ad6b7b2008-04-18 16:11:30 -04006388 ClearPagePrivate(page);
6389 set_page_private(page, 0);
6390 page_cache_release(page);
6391 }
Chris Mason39279cc2007-06-12 06:35:45 -04006392}
6393
Chris Mason9ebefb182007-06-15 13:50:00 -04006394/*
6395 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
6396 * called from a page fault handler when a page is first dirtied. Hence we must
6397 * be careful to check for EOF conditions here. We set the page up correctly
6398 * for a written page which means we get ENOSPC checking when writing into
6399 * holes and correct delalloc and unwritten extent mapping on filesystems that
6400 * support these features.
6401 *
6402 * We are not allowed to take the i_mutex here so we have to play games to
6403 * protect against truncate races as the page could now be beyond EOF. Because
6404 * vmtruncate() writes the inode size before removing pages, once we have the
6405 * page lock we can determine safely if the page is beyond EOF. If it is not
6406 * beyond EOF, then the page is guaranteed safe against truncation until we
6407 * unlock the page.
6408 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07006409int btrfs_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04006410{
Nick Pigginc2ec1752009-03-31 15:23:21 -07006411 struct page *page = vmf->page;
Chris Mason6da6aba2007-12-18 16:15:09 -05006412 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05006413 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006414 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
6415 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006416 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006417 char *kaddr;
6418 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04006419 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05006420 int ret;
Chris Masona52d9a82007-08-27 16:49:44 -04006421 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006422 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04006423
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006424 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Nick Piggin56a76f82009-03-31 15:23:23 -07006425 if (ret) {
6426 if (ret == -ENOMEM)
6427 ret = VM_FAULT_OOM;
6428 else /* -ENOSPC, -EIO, etc */
6429 ret = VM_FAULT_SIGBUS;
Chris Mason1832a6d2007-12-21 16:27:21 -05006430 goto out;
Nick Piggin56a76f82009-03-31 15:23:23 -07006431 }
Chris Mason1832a6d2007-12-21 16:27:21 -05006432
Nick Piggin56a76f82009-03-31 15:23:23 -07006433 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006434again:
Chris Mason9ebefb182007-06-15 13:50:00 -04006435 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04006436 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006437 page_start = page_offset(page);
6438 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006439
Chris Mason9ebefb182007-06-15 13:50:00 -04006440 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04006441 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04006442 /* page got truncated out from underneath us */
6443 goto out_unlock;
6444 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006445 wait_on_page_writeback(page);
6446
Josef Bacik2ac55d42010-02-03 19:33:23 +00006447 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state,
6448 GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006449 set_page_extent_mapped(page);
6450
Chris Masoneb84ae02008-07-17 13:53:27 -04006451 /*
6452 * we can't set the delalloc bits if there are pending ordered
6453 * extents. Drop our locks and wait for them to finish
6454 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006455 ordered = btrfs_lookup_ordered_extent(inode, page_start);
6456 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006457 unlock_extent_cached(io_tree, page_start, page_end,
6458 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006459 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04006460 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006461 btrfs_put_ordered_extent(ordered);
6462 goto again;
6463 }
6464
Josef Bacikfbf19082009-10-01 17:10:23 -04006465 /*
6466 * XXX - page_mkwrite gets called every time the page is dirtied, even
6467 * if it was already dirty, so for space accounting reasons we need to
6468 * clear any delalloc bits for the range we are fixing to save. There
6469 * is probably a better way to do this, but for now keep consistent with
6470 * prepare_pages in the normal write path.
6471 */
Josef Bacik2ac55d42010-02-03 19:33:23 +00006472 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04006473 EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00006474 0, 0, &cached_state, GFP_NOFS);
Josef Bacikfbf19082009-10-01 17:10:23 -04006475
Josef Bacik2ac55d42010-02-03 19:33:23 +00006476 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
6477 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006478 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006479 unlock_extent_cached(io_tree, page_start, page_end,
6480 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006481 ret = VM_FAULT_SIGBUS;
6482 goto out_unlock;
6483 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006484 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04006485
6486 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04006487 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04006488 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04006489 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04006490 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04006491
Chris Masone6dcd2d2008-07-17 12:53:50 -04006492 if (zero_start != PAGE_CACHE_SIZE) {
6493 kaddr = kmap(page);
6494 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
6495 flush_dcache_page(page);
6496 kunmap(page);
6497 }
Chris Mason247e7432008-07-17 12:53:51 -04006498 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006499 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04006500 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04006501
Chris Mason257c62e2009-10-13 13:21:08 -04006502 BTRFS_I(inode)->last_trans = root->fs_info->generation;
6503 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
6504
Josef Bacik2ac55d42010-02-03 19:33:23 +00006505 unlock_extent_cached(io_tree, page_start, page_end, &cached_state, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04006506
6507out_unlock:
Chris Mason50a9b212009-09-11 12:33:12 -04006508 if (!ret)
6509 return VM_FAULT_LOCKED;
Chris Mason9ebefb182007-06-15 13:50:00 -04006510 unlock_page(page);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006511 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason1832a6d2007-12-21 16:27:21 -05006512out:
Chris Mason9ebefb182007-06-15 13:50:00 -04006513 return ret;
6514}
6515
Josef Bacika41ad392011-01-31 15:30:16 -05006516static int btrfs_truncate(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04006517{
6518 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikfcb80c22011-05-03 10:40:22 -04006519 struct btrfs_block_rsv *rsv;
Chris Mason39279cc2007-06-12 06:35:45 -04006520 int ret;
Josef Bacik3893e332011-01-31 16:03:11 -05006521 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006522 struct btrfs_trans_handle *trans;
Chris Masond3c2fdc2007-09-17 10:58:06 -04006523 unsigned long nr;
Chris Masondbe674a2008-07-17 12:54:05 -04006524 u64 mask = root->sectorsize - 1;
Josef Bacik07127182011-08-19 10:29:59 -04006525 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04006526
Josef Bacik5d5e1032009-10-13 16:46:49 -04006527 ret = btrfs_truncate_page(inode->i_mapping, inode->i_size);
6528 if (ret)
Josef Bacika41ad392011-01-31 15:30:16 -05006529 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00006530
Chris Mason4a096752008-07-21 10:29:44 -04006531 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
Yan, Zheng80825102009-11-12 09:35:36 +00006532 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006533
Josef Bacikfcb80c22011-05-03 10:40:22 -04006534 /*
6535 * Yes ladies and gentelment, this is indeed ugly. The fact is we have
6536 * 3 things going on here
6537 *
6538 * 1) We need to reserve space for our orphan item and the space to
6539 * delete our orphan item. Lord knows we don't want to have a dangling
6540 * orphan item because we didn't reserve space to remove it.
6541 *
6542 * 2) We need to reserve space to update our inode.
6543 *
6544 * 3) We need to have something to cache all the space that is going to
6545 * be free'd up by the truncate operation, but also have some slack
6546 * space reserved in case it uses space during the truncate (thank you
6547 * very much snapshotting).
6548 *
6549 * And we need these to all be seperate. The fact is we can use alot of
6550 * space doing the truncate, and we have no earthly idea how much space
6551 * we will use, so we need the truncate reservation to be seperate so it
6552 * doesn't end up using space reserved for updating the inode or
6553 * removing the orphan item. We also need to be able to stop the
6554 * transaction and start a new one, which means we need to be able to
6555 * update the inode several times, and we have no idea of knowing how
6556 * many times that will be, so we can't just reserve 1 item for the
6557 * entirety of the opration, so that has to be done seperately as well.
6558 * Then there is the orphan item, which does indeed need to be held on
6559 * to for the whole operation, and we need nobody to touch this reserved
6560 * space except the orphan code.
6561 *
6562 * So that leaves us with
6563 *
6564 * 1) root->orphan_block_rsv - for the orphan deletion.
6565 * 2) rsv - for the truncate reservation, which we will steal from the
6566 * transaction reservation.
6567 * 3) fs_info->trans_block_rsv - this will have 1 items worth left for
6568 * updating the inode.
6569 */
6570 rsv = btrfs_alloc_block_rsv(root);
6571 if (!rsv)
6572 return -ENOMEM;
Josef Bacik4a338542011-08-29 11:01:31 -04006573 rsv->size = min_size;
Josef Bacikf0cd8462011-03-04 14:37:08 -05006574
Josef Bacik907cbce2011-08-08 13:46:15 -04006575 /*
Josef Bacik07127182011-08-19 10:29:59 -04006576 * 1 for the truncate slack space
Josef Bacik907cbce2011-08-08 13:46:15 -04006577 * 1 for the orphan item we're going to add
6578 * 1 for the orphan item deletion
6579 * 1 for updating the inode.
6580 */
Josef Bacik07127182011-08-19 10:29:59 -04006581 trans = btrfs_start_transaction(root, 4);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006582 if (IS_ERR(trans)) {
6583 err = PTR_ERR(trans);
6584 goto out;
6585 }
Josef Bacikf0cd8462011-03-04 14:37:08 -05006586
Josef Bacik907cbce2011-08-08 13:46:15 -04006587 /* Migrate the slack space for the truncate to our reserve */
6588 ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv, rsv,
6589 min_size);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006590 BUG_ON(ret);
Josef Bacikf0cd8462011-03-04 14:37:08 -05006591
6592 ret = btrfs_orphan_add(trans, inode);
6593 if (ret) {
6594 btrfs_end_transaction(trans, root);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006595 goto out;
Josef Bacikf0cd8462011-03-04 14:37:08 -05006596 }
6597
Chris Mason5a3f23d2009-03-31 13:27:11 -04006598 /*
6599 * setattr is responsible for setting the ordered_data_close flag,
6600 * but that is only tested during the last file release. That
6601 * could happen well after the next commit, leaving a great big
6602 * window where new writes may get lost if someone chooses to write
6603 * to this file after truncating to zero
6604 *
6605 * The inode doesn't have any dirty data here, and so if we commit
6606 * this is a noop. If someone immediately starts writing to the inode
6607 * it is very likely we'll catch some of their writes in this
6608 * transaction, and the commit will find this file on the ordered
6609 * data list with good things to send down.
6610 *
6611 * This is a best effort solution, there is still a window where
6612 * using truncate to replace the contents of the file will
6613 * end up with a zero length file after a crash.
6614 */
6615 if (inode->i_size == 0 && BTRFS_I(inode)->ordered_data_close)
6616 btrfs_add_ordered_operation(trans, root, inode);
6617
Yan, Zheng80825102009-11-12 09:35:36 +00006618 while (1) {
Josef Bacik36ba0222011-10-18 12:15:48 -04006619 ret = btrfs_block_rsv_refill(root, rsv, min_size);
Josef Bacik907cbce2011-08-08 13:46:15 -04006620 if (ret) {
6621 /*
6622 * This can only happen with the original transaction we
6623 * started above, every other time we shouldn't have a
6624 * transaction started yet.
6625 */
6626 if (ret == -EAGAIN)
6627 goto end_trans;
6628 err = ret;
6629 break;
6630 }
6631
Yan, Zhengd68fc572010-05-16 10:49:58 -04006632 if (!trans) {
Josef Bacik907cbce2011-08-08 13:46:15 -04006633 /* Just need the 1 for updating the inode */
6634 trans = btrfs_start_transaction(root, 1);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006635 if (IS_ERR(trans)) {
6636 err = PTR_ERR(trans);
6637 goto out;
6638 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04006639 }
6640
Josef Bacik907cbce2011-08-08 13:46:15 -04006641 trans->block_rsv = rsv;
6642
Yan, Zheng80825102009-11-12 09:35:36 +00006643 ret = btrfs_truncate_inode_items(trans, root, inode,
6644 inode->i_size,
6645 BTRFS_EXTENT_DATA_KEY);
Josef Bacik3893e332011-01-31 16:03:11 -05006646 if (ret != -EAGAIN) {
6647 err = ret;
Yan, Zheng80825102009-11-12 09:35:36 +00006648 break;
Josef Bacik3893e332011-01-31 16:03:11 -05006649 }
Chris Mason39279cc2007-06-12 06:35:45 -04006650
Josef Bacikfcb80c22011-05-03 10:40:22 -04006651 trans->block_rsv = &root->fs_info->trans_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00006652 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05006653 if (ret) {
6654 err = ret;
6655 break;
6656 }
Josef Bacik907cbce2011-08-08 13:46:15 -04006657end_trans:
Yan, Zheng80825102009-11-12 09:35:36 +00006658 nr = trans->blocks_used;
6659 btrfs_end_transaction(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -04006660 trans = NULL;
Yan, Zheng80825102009-11-12 09:35:36 +00006661 btrfs_btree_balance_dirty(root, nr);
Yan, Zheng80825102009-11-12 09:35:36 +00006662 }
6663
6664 if (ret == 0 && inode->i_nlink > 0) {
Josef Bacikfcb80c22011-05-03 10:40:22 -04006665 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00006666 ret = btrfs_orphan_del(trans, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05006667 if (ret)
6668 err = ret;
Josef Bacikded5db92011-03-04 14:09:46 -05006669 } else if (ret && inode->i_nlink > 0) {
6670 /*
6671 * Failed to do the truncate, remove us from the in memory
6672 * orphan list.
6673 */
6674 ret = btrfs_orphan_del(NULL, inode);
Yan, Zheng80825102009-11-12 09:35:36 +00006675 }
6676
Josef Bacikfcb80c22011-05-03 10:40:22 -04006677 trans->block_rsv = &root->fs_info->trans_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00006678 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05006679 if (ret && !err)
6680 err = ret;
Josef Bacik7b128762008-07-24 12:17:14 -04006681
Josef Bacik7b128762008-07-24 12:17:14 -04006682 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04006683 ret = btrfs_end_transaction_throttle(trans, root);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006684 btrfs_btree_balance_dirty(root, nr);
6685
6686out:
6687 btrfs_free_block_rsv(root, rsv);
6688
Josef Bacik3893e332011-01-31 16:03:11 -05006689 if (ret && !err)
6690 err = ret;
Josef Bacika41ad392011-01-31 15:30:16 -05006691
Josef Bacik3893e332011-01-31 16:03:11 -05006692 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04006693}
6694
Sven Wegener3b963622008-06-09 21:57:42 -04006695/*
Chris Masond352ac62008-09-29 15:18:18 -04006696 * create a new subvolume directory/inode (helper for the ioctl).
6697 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05006698int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Josef Bacikd82a6f12011-05-11 15:26:06 -04006699 struct btrfs_root *new_root, u64 new_dirid)
Chris Mason39279cc2007-06-12 06:35:45 -04006700{
Chris Mason39279cc2007-06-12 06:35:45 -04006701 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04006702 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006703 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006704
Josef Bacikaec74772008-07-24 12:12:38 -04006705 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2, new_dirid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04006706 new_dirid, S_IFDIR | 0700, &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04006707 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04006708 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006709 inode->i_op = &btrfs_dir_inode_operations;
6710 inode->i_fop = &btrfs_dir_file_operations;
6711
Chris Mason39279cc2007-06-12 06:35:45 -04006712 inode->i_nlink = 1;
Chris Masondbe674a2008-07-17 12:54:05 -04006713 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04006714
Yan, Zheng76dda932009-09-21 16:00:26 -04006715 err = btrfs_update_inode(trans, new_root, inode);
6716 BUG_ON(err);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04006717
Yan, Zheng76dda932009-09-21 16:00:26 -04006718 iput(inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04006719 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006720}
6721
Chris Mason39279cc2007-06-12 06:35:45 -04006722struct inode *btrfs_alloc_inode(struct super_block *sb)
6723{
6724 struct btrfs_inode *ei;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006725 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04006726
6727 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
6728 if (!ei)
6729 return NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006730
6731 ei->root = NULL;
6732 ei->space_info = NULL;
6733 ei->generation = 0;
6734 ei->sequence = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04006735 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04006736 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04006737 ei->logged_trans = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006738 ei->delalloc_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006739 ei->disk_i_size = 0;
6740 ei->flags = 0;
Josef Bacik7709cde2011-08-04 10:25:02 -04006741 ei->csum_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006742 ei->index_cnt = (u64)-1;
6743 ei->last_unlink_trans = 0;
6744
Josef Bacik9e0baf62011-07-15 15:16:44 +00006745 spin_lock_init(&ei->lock);
6746 ei->outstanding_extents = 0;
6747 ei->reserved_extents = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006748
6749 ei->ordered_data_close = 0;
Yan, Zhengd68fc572010-05-16 10:49:58 -04006750 ei->orphan_meta_reserved = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006751 ei->dummy_inode = 0;
Chris Mason4cb53002011-05-24 15:35:30 -04006752 ei->in_defrag = 0;
Li Zefan261507a02010-12-17 14:21:50 +08006753 ei->force_compress = BTRFS_COMPRESS_NONE;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006754
Miao Xie16cdcec2011-04-22 18:12:22 +08006755 ei->delayed_node = NULL;
6756
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006757 inode = &ei->vfs_inode;
David Sterbaa8067e02011-04-21 00:34:43 +02006758 extent_map_tree_init(&ei->extent_tree);
David Sterbaf993c882011-04-20 23:35:57 +02006759 extent_io_tree_init(&ei->io_tree, &inode->i_data);
6760 extent_io_tree_init(&ei->io_failure_tree, &inode->i_data);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006761 mutex_init(&ei->log_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006762 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Josef Bacik7b128762008-07-24 12:17:14 -04006763 INIT_LIST_HEAD(&ei->i_orphan);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006764 INIT_LIST_HEAD(&ei->delalloc_inodes);
Chris Mason5a3f23d2009-03-31 13:27:11 -04006765 INIT_LIST_HEAD(&ei->ordered_operations);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006766 RB_CLEAR_NODE(&ei->rb_node);
6767
6768 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04006769}
6770
Nick Pigginfa0d7e32011-01-07 17:49:49 +11006771static void btrfs_i_callback(struct rcu_head *head)
6772{
6773 struct inode *inode = container_of(head, struct inode, i_rcu);
6774 INIT_LIST_HEAD(&inode->i_dentry);
6775 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
6776}
6777
Chris Mason39279cc2007-06-12 06:35:45 -04006778void btrfs_destroy_inode(struct inode *inode)
6779{
Chris Masone6dcd2d2008-07-17 12:53:50 -04006780 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006781 struct btrfs_root *root = BTRFS_I(inode)->root;
6782
Chris Mason39279cc2007-06-12 06:35:45 -04006783 WARN_ON(!list_empty(&inode->i_dentry));
6784 WARN_ON(inode->i_data.nrpages);
Josef Bacik9e0baf62011-07-15 15:16:44 +00006785 WARN_ON(BTRFS_I(inode)->outstanding_extents);
6786 WARN_ON(BTRFS_I(inode)->reserved_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04006787 WARN_ON(BTRFS_I(inode)->delalloc_bytes);
6788 WARN_ON(BTRFS_I(inode)->csum_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -04006789
Chris Mason5a3f23d2009-03-31 13:27:11 -04006790 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05006791 * This can happen where we create an inode, but somebody else also
6792 * created the same inode and we need to destroy the one we already
6793 * created.
6794 */
6795 if (!root)
6796 goto free;
6797
6798 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04006799 * Make sure we're properly removed from the ordered operation
6800 * lists.
6801 */
6802 smp_mb();
6803 if (!list_empty(&BTRFS_I(inode)->ordered_operations)) {
6804 spin_lock(&root->fs_info->ordered_extent_lock);
6805 list_del_init(&BTRFS_I(inode)->ordered_operations);
6806 spin_unlock(&root->fs_info->ordered_extent_lock);
6807 }
6808
Yan, Zhengd68fc572010-05-16 10:49:58 -04006809 spin_lock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04006810 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
Li Zefan33345d012011-04-20 10:31:50 +08006811 printk(KERN_INFO "BTRFS: inode %llu still on the orphan list\n",
6812 (unsigned long long)btrfs_ino(inode));
Yan, Zheng80825102009-11-12 09:35:36 +00006813 list_del_init(&BTRFS_I(inode)->i_orphan);
Josef Bacik7b128762008-07-24 12:17:14 -04006814 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04006815 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04006816
Chris Masond3977122009-01-05 21:25:51 -05006817 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04006818 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
6819 if (!ordered)
6820 break;
6821 else {
Chris Masond3977122009-01-05 21:25:51 -05006822 printk(KERN_ERR "btrfs found ordered "
6823 "extent %llu %llu on inode cleanup\n",
6824 (unsigned long long)ordered->file_offset,
6825 (unsigned long long)ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006826 btrfs_remove_ordered_extent(inode, ordered);
6827 btrfs_put_ordered_extent(ordered);
6828 btrfs_put_ordered_extent(ordered);
6829 }
6830 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006831 inode_tree_del(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04006832 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
Josef Bacika6dbd422009-11-11 15:53:34 -05006833free:
Miao Xie16cdcec2011-04-22 18:12:22 +08006834 btrfs_remove_delayed_node(inode);
Nick Pigginfa0d7e32011-01-07 17:49:49 +11006835 call_rcu(&inode->i_rcu, btrfs_i_callback);
Chris Mason39279cc2007-06-12 06:35:45 -04006836}
6837
Al Viro45321ac2010-06-07 13:43:19 -04006838int btrfs_drop_inode(struct inode *inode)
Yan, Zheng76dda932009-09-21 16:00:26 -04006839{
6840 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro45321ac2010-06-07 13:43:19 -04006841
Josef Bacik0af3d002010-06-21 14:48:16 -04006842 if (btrfs_root_refs(&root->root_item) == 0 &&
Chris Mason2cf85722011-07-26 15:35:09 -04006843 !btrfs_is_free_space_inode(root, inode))
Al Viro45321ac2010-06-07 13:43:19 -04006844 return 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04006845 else
Al Viro45321ac2010-06-07 13:43:19 -04006846 return generic_drop_inode(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04006847}
6848
Sven Wegener0ee0fda2008-07-30 16:54:26 -04006849static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04006850{
6851 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
6852
6853 inode_init_once(&ei->vfs_inode);
6854}
6855
6856void btrfs_destroy_cachep(void)
6857{
6858 if (btrfs_inode_cachep)
6859 kmem_cache_destroy(btrfs_inode_cachep);
6860 if (btrfs_trans_handle_cachep)
6861 kmem_cache_destroy(btrfs_trans_handle_cachep);
6862 if (btrfs_transaction_cachep)
6863 kmem_cache_destroy(btrfs_transaction_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04006864 if (btrfs_path_cachep)
6865 kmem_cache_destroy(btrfs_path_cachep);
Josef Bacikdc89e982011-01-28 17:05:48 -05006866 if (btrfs_free_space_cachep)
6867 kmem_cache_destroy(btrfs_free_space_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04006868}
6869
6870int btrfs_init_cachep(void)
6871{
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006872 btrfs_inode_cachep = kmem_cache_create("btrfs_inode_cache",
6873 sizeof(struct btrfs_inode), 0,
6874 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04006875 if (!btrfs_inode_cachep)
6876 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006877
6878 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle_cache",
6879 sizeof(struct btrfs_trans_handle), 0,
6880 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006881 if (!btrfs_trans_handle_cachep)
6882 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006883
6884 btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction_cache",
6885 sizeof(struct btrfs_transaction), 0,
6886 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006887 if (!btrfs_transaction_cachep)
6888 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006889
6890 btrfs_path_cachep = kmem_cache_create("btrfs_path_cache",
6891 sizeof(struct btrfs_path), 0,
6892 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006893 if (!btrfs_path_cachep)
6894 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02006895
Josef Bacikdc89e982011-01-28 17:05:48 -05006896 btrfs_free_space_cachep = kmem_cache_create("btrfs_free_space_cache",
6897 sizeof(struct btrfs_free_space), 0,
6898 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
6899 if (!btrfs_free_space_cachep)
6900 goto fail;
6901
Chris Mason39279cc2007-06-12 06:35:45 -04006902 return 0;
6903fail:
6904 btrfs_destroy_cachep();
6905 return -ENOMEM;
6906}
6907
6908static int btrfs_getattr(struct vfsmount *mnt,
6909 struct dentry *dentry, struct kstat *stat)
6910{
6911 struct inode *inode = dentry->d_inode;
6912 generic_fillattr(inode, stat);
Al Viro0ee5dc62011-07-07 15:44:25 -04006913 stat->dev = BTRFS_I(inode)->root->anon_dev;
Chris Masond6667462008-01-03 14:51:00 -05006914 stat->blksize = PAGE_CACHE_SIZE;
Yan Zhenga76a3cd2008-10-09 11:46:29 -04006915 stat->blocks = (inode_get_bytes(inode) +
6916 BTRFS_I(inode)->delalloc_bytes) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04006917 return 0;
6918}
6919
Liu Bo75e7cb72011-03-22 10:12:20 +00006920/*
6921 * If a file is moved, it will inherit the cow and compression flags of the new
6922 * directory.
6923 */
6924static void fixup_inode_flags(struct inode *dir, struct inode *inode)
6925{
6926 struct btrfs_inode *b_dir = BTRFS_I(dir);
6927 struct btrfs_inode *b_inode = BTRFS_I(inode);
6928
6929 if (b_dir->flags & BTRFS_INODE_NODATACOW)
6930 b_inode->flags |= BTRFS_INODE_NODATACOW;
6931 else
6932 b_inode->flags &= ~BTRFS_INODE_NODATACOW;
6933
6934 if (b_dir->flags & BTRFS_INODE_COMPRESS)
6935 b_inode->flags |= BTRFS_INODE_COMPRESS;
6936 else
6937 b_inode->flags &= ~BTRFS_INODE_COMPRESS;
6938}
6939
Chris Masond3977122009-01-05 21:25:51 -05006940static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
6941 struct inode *new_dir, struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04006942{
6943 struct btrfs_trans_handle *trans;
6944 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006945 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04006946 struct inode *new_inode = new_dentry->d_inode;
6947 struct inode *old_inode = old_dentry->d_inode;
6948 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006949 u64 index = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006950 u64 root_objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04006951 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08006952 u64 old_ino = btrfs_ino(old_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006953
Li Zefan33345d012011-04-20 10:31:50 +08006954 if (btrfs_ino(new_dir) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhengf679a842009-09-24 09:17:31 -04006955 return -EPERM;
6956
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006957 /* we only allow rename subvolume link between subvolumes */
Li Zefan33345d012011-04-20 10:31:50 +08006958 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05006959 return -EXDEV;
6960
Li Zefan33345d012011-04-20 10:31:50 +08006961 if (old_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
6962 (new_inode && btrfs_ino(new_inode) == BTRFS_FIRST_FREE_OBJECTID))
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006963 return -ENOTEMPTY;
6964
Chris Mason39279cc2007-06-12 06:35:45 -04006965 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006966 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04006967 return -ENOTEMPTY;
Chris Mason5a3f23d2009-03-31 13:27:11 -04006968 /*
6969 * we're using rename to replace one file with another.
6970 * and the replacement file is large. Start IO on it now so
6971 * we don't add too much work to the end of the transaction
6972 */
Bartlomiej Zolnierkiewicz4baf8c92009-08-07 13:47:08 -04006973 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size &&
Chris Mason5a3f23d2009-03-31 13:27:11 -04006974 old_inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
6975 filemap_flush(old_inode->i_mapping);
6976
Yan, Zheng76dda932009-09-21 16:00:26 -04006977 /* close the racy window with snapshot create/destroy ioctl */
Li Zefan33345d012011-04-20 10:31:50 +08006978 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04006979 down_read(&root->fs_info->subvol_sem);
Yan, Zhenga22285a2010-05-16 10:48:46 -04006980 /*
6981 * We want to reserve the absolute worst case amount of items. So if
6982 * both inodes are subvols and we need to unlink them then that would
6983 * require 4 item modifications, but if they are both normal inodes it
6984 * would require 5 item modifications, so we'll assume their normal
6985 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
6986 * should cover the worst case number of items we'll modify.
6987 */
6988 trans = btrfs_start_transaction(root, 20);
Johann Lombardib44c59a2011-03-31 13:23:47 +00006989 if (IS_ERR(trans)) {
6990 ret = PTR_ERR(trans);
6991 goto out_notrans;
6992 }
Chris Mason5f39d392007-10-15 16:14:19 -04006993
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04006994 if (dest != root)
6995 btrfs_record_root_in_trans(trans, dest);
6996
Yan, Zhenga5719522009-09-24 09:17:31 -04006997 ret = btrfs_set_inode_index(new_dir, &index);
6998 if (ret)
6999 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04007000
Li Zefan33345d012011-04-20 10:31:50 +08007001 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007002 /* force full log commit if subvolume involved. */
7003 root->fs_info->last_trans_log_full_commit = trans->transid;
7004 } else {
Yan, Zhenga5719522009-09-24 09:17:31 -04007005 ret = btrfs_insert_inode_ref(trans, dest,
7006 new_dentry->d_name.name,
7007 new_dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08007008 old_ino,
7009 btrfs_ino(new_dir), index);
Yan, Zhenga5719522009-09-24 09:17:31 -04007010 if (ret)
7011 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007012 /*
7013 * this is an ugly little race, but the rename is required
7014 * to make sure that if we crash, the inode is either at the
7015 * old name or the new one. pinning the log transaction lets
7016 * us make sure we don't allow a log commit to come in after
7017 * we unlink the name but before we add the new name back in.
7018 */
7019 btrfs_pin_log_trans(root);
7020 }
Chris Mason12fcfd22009-03-24 10:24:20 -04007021 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04007022 * make sure the inode gets flushed if it is replacing
7023 * something.
7024 */
Li Zefan33345d012011-04-20 10:31:50 +08007025 if (new_inode && new_inode->i_size && S_ISREG(old_inode->i_mode))
Chris Mason5a3f23d2009-03-31 13:27:11 -04007026 btrfs_add_ordered_operation(trans, root, old_inode);
Chris Mason5a3f23d2009-03-31 13:27:11 -04007027
Chris Mason39279cc2007-06-12 06:35:45 -04007028 old_dir->i_ctime = old_dir->i_mtime = ctime;
7029 new_dir->i_ctime = new_dir->i_mtime = ctime;
7030 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04007031
Chris Mason12fcfd22009-03-24 10:24:20 -04007032 if (old_dentry->d_parent != new_dentry->d_parent)
7033 btrfs_record_unlink_dir(trans, old_dir, old_inode, 1);
7034
Li Zefan33345d012011-04-20 10:31:50 +08007035 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007036 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
7037 ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid,
7038 old_dentry->d_name.name,
7039 old_dentry->d_name.len);
7040 } else {
Al Viro92986792011-03-04 17:14:37 +00007041 ret = __btrfs_unlink_inode(trans, root, old_dir,
7042 old_dentry->d_inode,
7043 old_dentry->d_name.name,
7044 old_dentry->d_name.len);
7045 if (!ret)
7046 ret = btrfs_update_inode(trans, root, old_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007047 }
7048 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04007049
7050 if (new_inode) {
7051 new_inode->i_ctime = CURRENT_TIME;
Li Zefan33345d012011-04-20 10:31:50 +08007052 if (unlikely(btrfs_ino(new_inode) ==
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007053 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
7054 root_objectid = BTRFS_I(new_inode)->location.objectid;
7055 ret = btrfs_unlink_subvol(trans, dest, new_dir,
7056 root_objectid,
7057 new_dentry->d_name.name,
7058 new_dentry->d_name.len);
7059 BUG_ON(new_inode->i_nlink == 0);
7060 } else {
7061 ret = btrfs_unlink_inode(trans, dest, new_dir,
7062 new_dentry->d_inode,
7063 new_dentry->d_name.name,
7064 new_dentry->d_name.len);
7065 }
7066 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04007067 if (new_inode->i_nlink == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04007068 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007069 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04007070 }
Chris Mason39279cc2007-06-12 06:35:45 -04007071 }
Josef Bacikaec74772008-07-24 12:12:38 -04007072
Liu Bo75e7cb72011-03-22 10:12:20 +00007073 fixup_inode_flags(new_dir, old_inode);
7074
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007075 ret = btrfs_add_link(trans, new_dir, old_inode,
7076 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04007077 new_dentry->d_name.len, 0, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007078 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04007079
Li Zefan33345d012011-04-20 10:31:50 +08007080 if (old_ino != BTRFS_FIRST_FREE_OBJECTID) {
Al Viro10d9f302011-07-16 23:09:10 -04007081 struct dentry *parent = new_dentry->d_parent;
Josef Bacik6a912212010-11-20 09:48:00 +00007082 btrfs_log_new_name(trans, old_inode, old_dir, parent);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007083 btrfs_end_log_trans(root);
7084 }
Chris Mason39279cc2007-06-12 06:35:45 -04007085out_fail:
Chris Masonab78c842008-07-29 16:15:18 -04007086 btrfs_end_transaction_throttle(trans, root);
Johann Lombardib44c59a2011-03-31 13:23:47 +00007087out_notrans:
Li Zefan33345d012011-04-20 10:31:50 +08007088 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04007089 up_read(&root->fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04007090
Chris Mason39279cc2007-06-12 06:35:45 -04007091 return ret;
7092}
7093
Chris Masond352ac62008-09-29 15:18:18 -04007094/*
7095 * some fairly slow code that needs optimization. This walks the list
7096 * of all the inodes with pending delalloc and forces them to disk.
7097 */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00007098int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput)
Chris Masonea8c2812008-08-04 23:17:27 -04007099{
7100 struct list_head *head = &root->fs_info->delalloc_inodes;
7101 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007102 struct inode *inode;
Chris Masonea8c2812008-08-04 23:17:27 -04007103
Yan Zhengc146afa2008-11-12 14:34:12 -05007104 if (root->fs_info->sb->s_flags & MS_RDONLY)
7105 return -EROFS;
7106
Chris Mason75eff682008-12-15 15:54:40 -05007107 spin_lock(&root->fs_info->delalloc_lock);
Chris Masond3977122009-01-05 21:25:51 -05007108 while (!list_empty(head)) {
Chris Masonea8c2812008-08-04 23:17:27 -04007109 binode = list_entry(head->next, struct btrfs_inode,
7110 delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007111 inode = igrab(&binode->vfs_inode);
7112 if (!inode)
7113 list_del_init(&binode->delalloc_inodes);
Chris Mason75eff682008-12-15 15:54:40 -05007114 spin_unlock(&root->fs_info->delalloc_lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007115 if (inode) {
Chris Mason8c8bee12008-09-29 11:19:10 -04007116 filemap_flush(inode->i_mapping);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00007117 if (delay_iput)
7118 btrfs_add_delayed_iput(inode);
7119 else
7120 iput(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007121 }
7122 cond_resched();
Chris Mason75eff682008-12-15 15:54:40 -05007123 spin_lock(&root->fs_info->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04007124 }
Chris Mason75eff682008-12-15 15:54:40 -05007125 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason8c8bee12008-09-29 11:19:10 -04007126
7127 /* the filemap_flush will queue IO into the worker threads, but
7128 * we have to make sure the IO is actually started and that
7129 * ordered extents get created before we return
7130 */
7131 atomic_inc(&root->fs_info->async_submit_draining);
Chris Masond3977122009-01-05 21:25:51 -05007132 while (atomic_read(&root->fs_info->nr_async_submits) ||
Chris Mason771ed682008-11-06 22:02:51 -05007133 atomic_read(&root->fs_info->async_delalloc_pages)) {
Chris Mason8c8bee12008-09-29 11:19:10 -04007134 wait_event(root->fs_info->async_submit_wait,
Chris Mason771ed682008-11-06 22:02:51 -05007135 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
7136 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee12008-09-29 11:19:10 -04007137 }
7138 atomic_dec(&root->fs_info->async_submit_draining);
Chris Masonea8c2812008-08-04 23:17:27 -04007139 return 0;
7140}
7141
Chris Mason39279cc2007-06-12 06:35:45 -04007142static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
7143 const char *symname)
7144{
7145 struct btrfs_trans_handle *trans;
7146 struct btrfs_root *root = BTRFS_I(dir)->root;
7147 struct btrfs_path *path;
7148 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05007149 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04007150 int err;
7151 int drop_inode = 0;
7152 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04007153 u64 index = 0 ;
Chris Mason39279cc2007-06-12 06:35:45 -04007154 int name_len;
7155 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04007156 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04007157 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04007158 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05007159 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007160
7161 name_len = strlen(symname) + 1;
7162 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
7163 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05007164
Josef Bacik9ed74f22009-09-11 16:12:44 -04007165 /*
7166 * 2 items for inode item and ref
7167 * 2 items for dir items
7168 * 1 item for xattr if selinux is on
7169 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04007170 trans = btrfs_start_transaction(root, 5);
7171 if (IS_ERR(trans))
7172 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05007173
Li Zefan581bb052011-04-20 10:06:11 +08007174 err = btrfs_find_free_ino(root, &objectid);
7175 if (err)
7176 goto out_unlock;
7177
Josef Bacikaec74772008-07-24 12:12:38 -04007178 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08007179 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04007180 S_IFLNK|S_IRWXUGO, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04007181 if (IS_ERR(inode)) {
7182 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007183 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04007184 }
Chris Mason39279cc2007-06-12 06:35:45 -04007185
Eric Paris2a7dba32011-02-01 11:05:39 -05007186 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04007187 if (err) {
7188 drop_inode = 1;
7189 goto out_unlock;
7190 }
7191
Josef Bacika1b075d2010-11-19 20:36:11 +00007192 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04007193 if (err)
7194 drop_inode = 1;
7195 else {
7196 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04007197 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04007198 inode->i_fop = &btrfs_file_operations;
7199 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05007200 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04007201 }
Chris Mason39279cc2007-06-12 06:35:45 -04007202 if (drop_inode)
7203 goto out_unlock;
7204
7205 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07007206 if (!path) {
7207 err = -ENOMEM;
7208 drop_inode = 1;
7209 goto out_unlock;
7210 }
Li Zefan33345d012011-04-20 10:31:50 +08007211 key.objectid = btrfs_ino(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007212 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007213 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
7214 datasize = btrfs_file_extent_calc_inline_size(name_len);
7215 err = btrfs_insert_empty_item(trans, root, path, &key,
7216 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04007217 if (err) {
7218 drop_inode = 1;
Julia Lawallb0839162011-05-14 07:10:51 +00007219 btrfs_free_path(path);
Chris Mason54aa1f42007-06-22 14:16:25 -04007220 goto out_unlock;
7221 }
Chris Mason5f39d392007-10-15 16:14:19 -04007222 leaf = path->nodes[0];
7223 ei = btrfs_item_ptr(leaf, path->slots[0],
7224 struct btrfs_file_extent_item);
7225 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
7226 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04007227 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -04007228 btrfs_set_file_extent_encryption(leaf, ei, 0);
7229 btrfs_set_file_extent_compression(leaf, ei, 0);
7230 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
7231 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
7232
Chris Mason39279cc2007-06-12 06:35:45 -04007233 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04007234 write_extent_buffer(leaf, symname, ptr, name_len);
7235 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04007236 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04007237
Chris Mason39279cc2007-06-12 06:35:45 -04007238 inode->i_op = &btrfs_symlink_inode_operations;
7239 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04007240 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Yan Zhengd899e052008-10-30 14:25:28 -04007241 inode_set_bytes(inode, name_len);
Chris Masondbe674a2008-07-17 12:54:05 -04007242 btrfs_i_size_write(inode, name_len - 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04007243 err = btrfs_update_inode(trans, root, inode);
7244 if (err)
7245 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04007246
7247out_unlock:
Chris Masond3c2fdc2007-09-17 10:58:06 -04007248 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04007249 btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04007250 if (drop_inode) {
7251 inode_dec_link_count(inode);
7252 iput(inode);
7253 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04007254 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04007255 return err;
7256}
Chris Mason16432982008-04-10 10:23:21 -04007257
Josef Bacik0af3d002010-06-21 14:48:16 -04007258static int __btrfs_prealloc_file_range(struct inode *inode, int mode,
7259 u64 start, u64 num_bytes, u64 min_size,
7260 loff_t actual_len, u64 *alloc_hint,
7261 struct btrfs_trans_handle *trans)
Yan Zhengd899e052008-10-30 14:25:28 -04007262{
Yan Zhengd899e052008-10-30 14:25:28 -04007263 struct btrfs_root *root = BTRFS_I(inode)->root;
7264 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -04007265 u64 cur_offset = start;
Josef Bacik55a61d12010-11-22 18:50:32 +00007266 u64 i_size;
Yan Zhengd899e052008-10-30 14:25:28 -04007267 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04007268 bool own_trans = true;
Yan Zhengd899e052008-10-30 14:25:28 -04007269
Josef Bacik0af3d002010-06-21 14:48:16 -04007270 if (trans)
7271 own_trans = false;
Yan Zhengd899e052008-10-30 14:25:28 -04007272 while (num_bytes > 0) {
Josef Bacik0af3d002010-06-21 14:48:16 -04007273 if (own_trans) {
7274 trans = btrfs_start_transaction(root, 3);
7275 if (IS_ERR(trans)) {
7276 ret = PTR_ERR(trans);
7277 break;
7278 }
Yan Zhengd899e052008-10-30 14:25:28 -04007279 }
Yan, Zheng5a303d52009-11-12 09:34:52 +00007280
Yan, Zhengefa56462010-05-16 10:49:59 -04007281 ret = btrfs_reserve_extent(trans, root, num_bytes, min_size,
7282 0, *alloc_hint, (u64)-1, &ins, 1);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007283 if (ret) {
Josef Bacik0af3d002010-06-21 14:48:16 -04007284 if (own_trans)
7285 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04007286 break;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007287 }
7288
Yan Zhengd899e052008-10-30 14:25:28 -04007289 ret = insert_reserved_file_extent(trans, inode,
7290 cur_offset, ins.objectid,
7291 ins.offset, ins.offset,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00007292 ins.offset, 0, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04007293 BTRFS_FILE_EXTENT_PREALLOC);
7294 BUG_ON(ret);
Chris Masona1ed8352009-09-11 12:27:37 -04007295 btrfs_drop_extent_cache(inode, cur_offset,
7296 cur_offset + ins.offset -1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007297
Yan Zhengd899e052008-10-30 14:25:28 -04007298 num_bytes -= ins.offset;
7299 cur_offset += ins.offset;
Yan, Zhengefa56462010-05-16 10:49:59 -04007300 *alloc_hint = ins.objectid + ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007301
Yan Zhengd899e052008-10-30 14:25:28 -04007302 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +02007303 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -04007304 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
Yan, Zhengefa56462010-05-16 10:49:59 -04007305 (actual_len > inode->i_size) &&
7306 (cur_offset > inode->i_size)) {
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00007307 if (cur_offset > actual_len)
Josef Bacik55a61d12010-11-22 18:50:32 +00007308 i_size = actual_len;
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00007309 else
Josef Bacik55a61d12010-11-22 18:50:32 +00007310 i_size = cur_offset;
7311 i_size_write(inode, i_size);
7312 btrfs_ordered_update_i_size(inode, i_size, NULL);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007313 }
7314
Yan Zhengd899e052008-10-30 14:25:28 -04007315 ret = btrfs_update_inode(trans, root, inode);
7316 BUG_ON(ret);
Yan Zhengd899e052008-10-30 14:25:28 -04007317
Josef Bacik0af3d002010-06-21 14:48:16 -04007318 if (own_trans)
7319 btrfs_end_transaction(trans, root);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007320 }
Yan Zhengd899e052008-10-30 14:25:28 -04007321 return ret;
7322}
7323
Josef Bacik0af3d002010-06-21 14:48:16 -04007324int btrfs_prealloc_file_range(struct inode *inode, int mode,
7325 u64 start, u64 num_bytes, u64 min_size,
7326 loff_t actual_len, u64 *alloc_hint)
7327{
7328 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
7329 min_size, actual_len, alloc_hint,
7330 NULL);
7331}
7332
7333int btrfs_prealloc_file_range_trans(struct inode *inode,
7334 struct btrfs_trans_handle *trans, int mode,
7335 u64 start, u64 num_bytes, u64 min_size,
7336 loff_t actual_len, u64 *alloc_hint)
7337{
7338 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
7339 min_size, actual_len, alloc_hint, trans);
7340}
7341
Chris Masone6dcd2d2008-07-17 12:53:50 -04007342static int btrfs_set_page_dirty(struct page *page)
7343{
Chris Masone6dcd2d2008-07-17 12:53:50 -04007344 return __set_page_dirty_nobuffers(page);
7345}
7346
Al Viro10556cb2011-06-20 19:28:19 -04007347static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -05007348{
Li Zefanb83cc962010-12-20 16:04:08 +08007349 struct btrfs_root *root = BTRFS_I(inode)->root;
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +00007350 umode_t mode = inode->i_mode;
Li Zefanb83cc962010-12-20 16:04:08 +08007351
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +00007352 if (mask & MAY_WRITE &&
7353 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) {
7354 if (btrfs_root_readonly(root))
7355 return -EROFS;
7356 if (BTRFS_I(inode)->flags & BTRFS_INODE_READONLY)
7357 return -EACCES;
7358 }
Al Viro2830ba72011-06-20 19:16:29 -04007359 return generic_permission(inode, mask);
Yanfdebe2b2008-01-14 13:26:08 -05007360}
Chris Mason39279cc2007-06-12 06:35:45 -04007361
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007362static const struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -05007363 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -04007364 .lookup = btrfs_lookup,
7365 .create = btrfs_create,
7366 .unlink = btrfs_unlink,
7367 .link = btrfs_link,
7368 .mkdir = btrfs_mkdir,
7369 .rmdir = btrfs_rmdir,
7370 .rename = btrfs_rename,
7371 .symlink = btrfs_symlink,
7372 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04007373 .mknod = btrfs_mknod,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007374 .setxattr = btrfs_setxattr,
7375 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05007376 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007377 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05007378 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007379 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04007380};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007381static const struct inode_operations btrfs_dir_ro_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007382 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05007383 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007384 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04007385};
Yan, Zheng76dda932009-09-21 16:00:26 -04007386
Alexey Dobriyan828c0952009-10-01 15:43:56 -07007387static const struct file_operations btrfs_dir_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007388 .llseek = generic_file_llseek,
7389 .read = generic_read_dir,
David Woodhousecbdf5a22008-08-06 19:42:33 +01007390 .readdir = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04007391 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04007392#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04007393 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04007394#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04007395 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -04007396 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -04007397};
7398
Chris Masond1310b22008-01-24 16:13:08 -05007399static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04007400 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05007401 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04007402 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04007403 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04007404 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04007405 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Mason1259ab72008-05-12 13:39:03 -04007406 .readpage_io_failed_hook = btrfs_io_failed_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05007407 .set_bit_hook = btrfs_set_bit_hook,
7408 .clear_bit_hook = btrfs_clear_bit_hook,
Josef Bacik9ed74f22009-09-11 16:12:44 -04007409 .merge_extent_hook = btrfs_merge_extent_hook,
7410 .split_extent_hook = btrfs_split_extent_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04007411};
7412
Chris Mason35054392009-01-21 13:11:13 -05007413/*
7414 * btrfs doesn't support the bmap operation because swapfiles
7415 * use bmap to make a mapping of extents in the file. They assume
7416 * these extents won't change over the life of the file and they
7417 * use the bmap result to do IO directly to the drive.
7418 *
7419 * the btrfs bmap call would return logical addresses that aren't
7420 * suitable for IO and they also will change frequently as COW
7421 * operations happen. So, swapfile + btrfs == corruption.
7422 *
7423 * For now we're avoiding this by dropping bmap.
7424 */
Alexey Dobriyan7f094102009-09-21 17:01:10 -07007425static const struct address_space_operations btrfs_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04007426 .readpage = btrfs_readpage,
7427 .writepage = btrfs_writepage,
Chris Masonb293f022007-11-01 19:45:34 -04007428 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05007429 .readpages = btrfs_readpages,
Chris Mason16432982008-04-10 10:23:21 -04007430 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04007431 .invalidatepage = btrfs_invalidatepage,
7432 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04007433 .set_page_dirty = btrfs_set_page_dirty,
Andi Kleen465fdd92009-09-16 11:50:18 +02007434 .error_remove_page = generic_error_remove_page,
Chris Mason39279cc2007-06-12 06:35:45 -04007435};
7436
Alexey Dobriyan7f094102009-09-21 17:01:10 -07007437static const struct address_space_operations btrfs_symlink_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04007438 .readpage = btrfs_readpage,
7439 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04007440 .invalidatepage = btrfs_invalidatepage,
7441 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04007442};
7443
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007444static const struct inode_operations btrfs_file_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007445 .getattr = btrfs_getattr,
7446 .setattr = btrfs_setattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007447 .setxattr = btrfs_setxattr,
7448 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05007449 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007450 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05007451 .permission = btrfs_permission,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05007452 .fiemap = btrfs_fiemap,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007453 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04007454};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007455static const struct inode_operations btrfs_special_inode_operations = {
Josef Bacik618e21d2007-07-11 10:18:17 -04007456 .getattr = btrfs_getattr,
7457 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05007458 .permission = btrfs_permission,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007459 .setxattr = btrfs_setxattr,
7460 .getxattr = btrfs_getxattr,
Josef Bacik33268ea2008-07-24 12:16:36 -04007461 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007462 .removexattr = btrfs_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007463 .get_acl = btrfs_get_acl,
Josef Bacik618e21d2007-07-11 10:18:17 -04007464};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007465static const struct inode_operations btrfs_symlink_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007466 .readlink = generic_readlink,
7467 .follow_link = page_follow_link_light,
7468 .put_link = page_put_link,
Li Zefanf2095612010-11-19 02:05:24 +00007469 .getattr = btrfs_getattr,
Yanfdebe2b2008-01-14 13:26:08 -05007470 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -05007471 .setxattr = btrfs_setxattr,
7472 .getxattr = btrfs_getxattr,
7473 .listxattr = btrfs_listxattr,
7474 .removexattr = btrfs_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007475 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04007476};
Yan, Zheng76dda932009-09-21 16:00:26 -04007477
Alexey Dobriyan82d339d2009-10-09 09:54:36 -04007478const struct dentry_operations btrfs_dentry_operations = {
Yan, Zheng76dda932009-09-21 16:00:26 -04007479 .d_delete = btrfs_dentry_delete,
Josef Bacikb4aff1f2011-06-28 16:18:59 -04007480 .d_release = btrfs_dentry_release,
Yan, Zheng76dda932009-09-21 16:00:26 -04007481};