blob: 6e8f416773d4b221713c30079eb1de1f732e5ded [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Chris Mason8f18cf12008-04-25 16:53:30 -040019#include <linux/kernel.h>
Chris Mason065631f2008-02-20 12:07:25 -050020#include <linux/bio.h>
Chris Mason39279cc2007-06-12 06:35:45 -040021#include <linux/buffer_head.h>
Sage Weilf2eb0a22008-05-02 14:43:14 -040022#include <linux/file.h>
Chris Mason39279cc2007-06-12 06:35:45 -040023#include <linux/fs.h>
24#include <linux/pagemap.h>
25#include <linux/highmem.h>
26#include <linux/time.h>
27#include <linux/init.h>
28#include <linux/string.h>
Chris Mason39279cc2007-06-12 06:35:45 -040029#include <linux/backing-dev.h>
30#include <linux/mpage.h>
31#include <linux/swap.h>
32#include <linux/writeback.h>
33#include <linux/statfs.h>
34#include <linux/compat.h>
Chris Mason9ebefb182007-06-15 13:50:00 -040035#include <linux/bit_spinlock.h>
Josef Bacik5103e942007-11-16 11:45:54 -050036#include <linux/xattr.h>
Josef Bacik33268ea2008-07-24 12:16:36 -040037#include <linux/posix_acl.h>
Yan Zhengd899e052008-10-30 14:25:28 -040038#include <linux/falloc.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090039#include <linux/slab.h>
David Sterba7a36dde2011-05-06 15:33:15 +020040#include <linux/ratelimit.h>
Josef Bacik22c44fe2011-11-30 10:45:38 -050041#include <linux/mount.h>
Chris Mason4b4e25f2008-11-20 10:22:27 -050042#include "compat.h"
Chris Mason39279cc2007-06-12 06:35:45 -040043#include "ctree.h"
44#include "disk-io.h"
45#include "transaction.h"
46#include "btrfs_inode.h"
47#include "ioctl.h"
48#include "print-tree.h"
Chris Masone6dcd2d2008-07-17 12:53:50 -040049#include "ordered-data.h"
Christoph Hellwig95819c02008-08-28 06:21:17 -040050#include "xattr.h"
Chris Masone02119d2008-09-05 16:13:11 -040051#include "tree-log.h"
Jan Schmidt4a54c8c2011-07-22 15:41:52 +020052#include "volumes.h"
Chris Masonc8b97812008-10-29 14:49:59 -040053#include "compression.h"
Chris Masonb4ce94d2009-02-04 09:25:08 -050054#include "locking.h"
Josef Bacikdc89e982011-01-28 17:05:48 -050055#include "free-space-cache.h"
Li Zefan581bb052011-04-20 10:06:11 +080056#include "inode-map.h"
Chris Mason39279cc2007-06-12 06:35:45 -040057
58struct btrfs_iget_args {
59 u64 ino;
60 struct btrfs_root *root;
61};
62
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -070063static const struct inode_operations btrfs_dir_inode_operations;
64static const struct inode_operations btrfs_symlink_inode_operations;
65static const struct inode_operations btrfs_dir_ro_inode_operations;
66static const struct inode_operations btrfs_special_inode_operations;
67static const struct inode_operations btrfs_file_inode_operations;
Alexey Dobriyan7f094102009-09-21 17:01:10 -070068static const struct address_space_operations btrfs_aops;
69static const struct address_space_operations btrfs_symlink_aops;
Alexey Dobriyan828c0952009-10-01 15:43:56 -070070static const struct file_operations btrfs_dir_file_operations;
Chris Masond1310b22008-01-24 16:13:08 -050071static struct extent_io_ops btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -040072
73static struct kmem_cache *btrfs_inode_cachep;
74struct kmem_cache *btrfs_trans_handle_cachep;
75struct kmem_cache *btrfs_transaction_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040076struct kmem_cache *btrfs_path_cachep;
Josef Bacikdc89e982011-01-28 17:05:48 -050077struct kmem_cache *btrfs_free_space_cachep;
Chris Mason39279cc2007-06-12 06:35:45 -040078
79#define S_SHIFT 12
80static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
81 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
82 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
83 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
84 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
85 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
86 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
87 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
88};
89
Josef Bacika41ad392011-01-31 15:30:16 -050090static int btrfs_setsize(struct inode *inode, loff_t newsize);
91static int btrfs_truncate(struct inode *inode);
Josef Bacik5fd02042012-05-02 14:00:54 -040092static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent);
Chris Mason771ed682008-11-06 22:02:51 -050093static noinline int cow_file_range(struct inode *inode,
94 struct page *locked_page,
95 u64 start, u64 end, int *page_started,
96 unsigned long *nr_written, int unlock);
Chris Mason21151332011-11-10 20:39:08 -050097static noinline int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans,
98 struct btrfs_root *root, struct inode *inode);
Josef Bacik7b128762008-07-24 12:17:14 -040099
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000100static int btrfs_init_inode_security(struct btrfs_trans_handle *trans,
Eric Paris2a7dba32011-02-01 11:05:39 -0500101 struct inode *inode, struct inode *dir,
102 const struct qstr *qstr)
Jim Owens0279b4c2009-02-04 09:29:13 -0500103{
104 int err;
105
Yan, Zhengf34f57a2009-11-12 09:35:27 +0000106 err = btrfs_init_acl(trans, inode, dir);
Jim Owens0279b4c2009-02-04 09:29:13 -0500107 if (!err)
Eric Paris2a7dba32011-02-01 11:05:39 -0500108 err = btrfs_xattr_security_init(trans, inode, dir, qstr);
Jim Owens0279b4c2009-02-04 09:29:13 -0500109 return err;
110}
111
Chris Masond352ac62008-09-29 15:18:18 -0400112/*
Chris Masonc8b97812008-10-29 14:49:59 -0400113 * this does all the hard work for inserting an inline extent into
114 * the btree. The caller should have done a btrfs_drop_extents so that
115 * no overlapping inline items exist in the btree
116 */
Chris Masond3977122009-01-05 21:25:51 -0500117static noinline int insert_inline_extent(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400118 struct btrfs_root *root, struct inode *inode,
119 u64 start, size_t size, size_t compressed_size,
Li Zefanfe3f5662011-03-28 08:30:38 +0000120 int compress_type,
Chris Masonc8b97812008-10-29 14:49:59 -0400121 struct page **compressed_pages)
122{
123 struct btrfs_key key;
124 struct btrfs_path *path;
125 struct extent_buffer *leaf;
126 struct page *page = NULL;
127 char *kaddr;
128 unsigned long ptr;
129 struct btrfs_file_extent_item *ei;
130 int err = 0;
131 int ret;
132 size_t cur_size = size;
133 size_t datasize;
134 unsigned long offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400135
Li Zefanfe3f5662011-03-28 08:30:38 +0000136 if (compressed_size && compressed_pages)
Chris Masonc8b97812008-10-29 14:49:59 -0400137 cur_size = compressed_size;
Chris Masonc8b97812008-10-29 14:49:59 -0400138
Chris Masond3977122009-01-05 21:25:51 -0500139 path = btrfs_alloc_path();
140 if (!path)
Chris Masonc8b97812008-10-29 14:49:59 -0400141 return -ENOMEM;
142
Chris Masonb9473432009-03-13 11:00:37 -0400143 path->leave_spinning = 1;
Chris Masonc8b97812008-10-29 14:49:59 -0400144
Li Zefan33345d012011-04-20 10:31:50 +0800145 key.objectid = btrfs_ino(inode);
Chris Masonc8b97812008-10-29 14:49:59 -0400146 key.offset = start;
147 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
Chris Masonc8b97812008-10-29 14:49:59 -0400148 datasize = btrfs_file_extent_calc_inline_size(cur_size);
149
150 inode_add_bytes(inode, size);
151 ret = btrfs_insert_empty_item(trans, root, path, &key,
152 datasize);
Chris Masonc8b97812008-10-29 14:49:59 -0400153 if (ret) {
154 err = ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400155 goto fail;
156 }
157 leaf = path->nodes[0];
158 ei = btrfs_item_ptr(leaf, path->slots[0],
159 struct btrfs_file_extent_item);
160 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
161 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
162 btrfs_set_file_extent_encryption(leaf, ei, 0);
163 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
164 btrfs_set_file_extent_ram_bytes(leaf, ei, size);
165 ptr = btrfs_file_extent_inline_start(ei);
166
Li Zefan261507a02010-12-17 14:21:50 +0800167 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -0400168 struct page *cpage;
169 int i = 0;
Chris Masond3977122009-01-05 21:25:51 -0500170 while (compressed_size > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -0400171 cpage = compressed_pages[i];
Chris Mason5b050f02008-11-11 09:34:41 -0500172 cur_size = min_t(unsigned long, compressed_size,
Chris Masonc8b97812008-10-29 14:49:59 -0400173 PAGE_CACHE_SIZE);
174
Cong Wang7ac687d2011-11-25 23:14:28 +0800175 kaddr = kmap_atomic(cpage);
Chris Masonc8b97812008-10-29 14:49:59 -0400176 write_extent_buffer(leaf, kaddr, ptr, cur_size);
Cong Wang7ac687d2011-11-25 23:14:28 +0800177 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400178
179 i++;
180 ptr += cur_size;
181 compressed_size -= cur_size;
182 }
183 btrfs_set_file_extent_compression(leaf, ei,
Li Zefan261507a02010-12-17 14:21:50 +0800184 compress_type);
Chris Masonc8b97812008-10-29 14:49:59 -0400185 } else {
186 page = find_get_page(inode->i_mapping,
187 start >> PAGE_CACHE_SHIFT);
188 btrfs_set_file_extent_compression(leaf, ei, 0);
Cong Wang7ac687d2011-11-25 23:14:28 +0800189 kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -0400190 offset = start & (PAGE_CACHE_SIZE - 1);
191 write_extent_buffer(leaf, kaddr + offset, ptr, size);
Cong Wang7ac687d2011-11-25 23:14:28 +0800192 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400193 page_cache_release(page);
194 }
195 btrfs_mark_buffer_dirty(leaf);
196 btrfs_free_path(path);
197
Yan, Zhengc2167752009-11-12 09:34:21 +0000198 /*
199 * we're an inline extent, so nobody can
200 * extend the file past i_size without locking
201 * a page we already have locked.
202 *
203 * We must do any isize and inode updates
204 * before we unlock the pages. Otherwise we
205 * could end up racing with unlink.
206 */
Chris Masonc8b97812008-10-29 14:49:59 -0400207 BTRFS_I(inode)->disk_i_size = inode->i_size;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100208 ret = btrfs_update_inode(trans, root, inode);
Yan, Zhengc2167752009-11-12 09:34:21 +0000209
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100210 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400211fail:
212 btrfs_free_path(path);
213 return err;
214}
215
216
217/*
218 * conditionally insert an inline extent into the file. This
219 * does the checks required to make sure the data is small enough
220 * to fit as an inline extent.
221 */
Chris Mason7f366cf2009-03-12 20:12:45 -0400222static noinline int cow_file_range_inline(struct btrfs_trans_handle *trans,
Chris Masonc8b97812008-10-29 14:49:59 -0400223 struct btrfs_root *root,
224 struct inode *inode, u64 start, u64 end,
Li Zefanfe3f5662011-03-28 08:30:38 +0000225 size_t compressed_size, int compress_type,
Chris Masonc8b97812008-10-29 14:49:59 -0400226 struct page **compressed_pages)
227{
228 u64 isize = i_size_read(inode);
229 u64 actual_end = min(end + 1, isize);
230 u64 inline_len = actual_end - start;
231 u64 aligned_end = (end + root->sectorsize - 1) &
232 ~((u64)root->sectorsize - 1);
233 u64 hint_byte;
234 u64 data_len = inline_len;
235 int ret;
236
237 if (compressed_size)
238 data_len = compressed_size;
239
240 if (start > 0 ||
Chris Mason70b99e62008-10-31 12:46:39 -0400241 actual_end >= PAGE_CACHE_SIZE ||
Chris Masonc8b97812008-10-29 14:49:59 -0400242 data_len >= BTRFS_MAX_INLINE_DATA_SIZE(root) ||
243 (!compressed_size &&
244 (actual_end & (root->sectorsize - 1)) == 0) ||
245 end + 1 < isize ||
246 data_len > root->fs_info->max_inline) {
247 return 1;
248 }
249
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000250 ret = btrfs_drop_extents(trans, inode, start, aligned_end,
Chris Masona1ed8352009-09-11 12:27:37 -0400251 &hint_byte, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100252 if (ret)
253 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400254
255 if (isize > actual_end)
256 inline_len = min_t(u64, isize, actual_end);
257 ret = insert_inline_extent(trans, root, inode, start,
258 inline_len, compressed_size,
Li Zefanfe3f5662011-03-28 08:30:38 +0000259 compress_type, compressed_pages);
Josef Bacik2adcac12012-05-23 16:10:14 -0400260 if (ret && ret != -ENOSPC) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100261 btrfs_abort_transaction(trans, root, ret);
262 return ret;
Josef Bacik2adcac12012-05-23 16:10:14 -0400263 } else if (ret == -ENOSPC) {
264 return 1;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100265 }
Josef Bacik2adcac12012-05-23 16:10:14 -0400266
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400267 btrfs_delalloc_release_metadata(inode, end + 1 - start);
Chris Masona1ed8352009-09-11 12:27:37 -0400268 btrfs_drop_extent_cache(inode, start, aligned_end - 1, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400269 return 0;
270}
271
Chris Mason771ed682008-11-06 22:02:51 -0500272struct async_extent {
273 u64 start;
274 u64 ram_size;
275 u64 compressed_size;
276 struct page **pages;
277 unsigned long nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800278 int compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500279 struct list_head list;
280};
281
282struct async_cow {
283 struct inode *inode;
284 struct btrfs_root *root;
285 struct page *locked_page;
286 u64 start;
287 u64 end;
288 struct list_head extents;
289 struct btrfs_work work;
290};
291
292static noinline int add_async_extent(struct async_cow *cow,
293 u64 start, u64 ram_size,
294 u64 compressed_size,
295 struct page **pages,
Li Zefan261507a02010-12-17 14:21:50 +0800296 unsigned long nr_pages,
297 int compress_type)
Chris Mason771ed682008-11-06 22:02:51 -0500298{
299 struct async_extent *async_extent;
300
301 async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100302 BUG_ON(!async_extent); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -0500303 async_extent->start = start;
304 async_extent->ram_size = ram_size;
305 async_extent->compressed_size = compressed_size;
306 async_extent->pages = pages;
307 async_extent->nr_pages = nr_pages;
Li Zefan261507a02010-12-17 14:21:50 +0800308 async_extent->compress_type = compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500309 list_add_tail(&async_extent->list, &cow->extents);
310 return 0;
311}
312
Chris Masonc8b97812008-10-29 14:49:59 -0400313/*
Chris Mason771ed682008-11-06 22:02:51 -0500314 * we create compressed extents in two phases. The first
315 * phase compresses a range of pages that have already been
316 * locked (both pages and state bits are locked).
Chris Masonc8b97812008-10-29 14:49:59 -0400317 *
Chris Mason771ed682008-11-06 22:02:51 -0500318 * This is done inside an ordered work queue, and the compression
319 * is spread across many cpus. The actual IO submission is step
320 * two, and the ordered work queue takes care of making sure that
321 * happens in the same order things were put onto the queue by
322 * writepages and friends.
Chris Masonc8b97812008-10-29 14:49:59 -0400323 *
Chris Mason771ed682008-11-06 22:02:51 -0500324 * If this code finds it can't get good compression, it puts an
325 * entry onto the work queue to write the uncompressed bytes. This
326 * makes sure that both compressed inodes and uncompressed inodes
Artem Bityutskiyb2570312012-07-25 18:12:06 +0300327 * are written in the same order that the flusher thread sent them
328 * down.
Chris Masond352ac62008-09-29 15:18:18 -0400329 */
Chris Mason771ed682008-11-06 22:02:51 -0500330static noinline int compress_file_range(struct inode *inode,
331 struct page *locked_page,
332 u64 start, u64 end,
333 struct async_cow *async_cow,
334 int *num_added)
Chris Masonb888db22007-08-27 16:49:44 -0400335{
336 struct btrfs_root *root = BTRFS_I(inode)->root;
337 struct btrfs_trans_handle *trans;
Chris Masondb945352007-10-15 16:15:53 -0400338 u64 num_bytes;
Chris Masondb945352007-10-15 16:15:53 -0400339 u64 blocksize = root->sectorsize;
Chris Masonc8b97812008-10-29 14:49:59 -0400340 u64 actual_end;
Chris Mason42dc7ba2008-12-15 11:44:56 -0500341 u64 isize = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400342 int ret = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400343 struct page **pages = NULL;
344 unsigned long nr_pages;
345 unsigned long nr_pages_ret = 0;
346 unsigned long total_compressed = 0;
347 unsigned long total_in = 0;
348 unsigned long max_compressed = 128 * 1024;
Chris Mason771ed682008-11-06 22:02:51 -0500349 unsigned long max_uncompressed = 128 * 1024;
Chris Masonc8b97812008-10-29 14:49:59 -0400350 int i;
351 int will_compress;
Li Zefan261507a02010-12-17 14:21:50 +0800352 int compress_type = root->fs_info->compress_type;
Chris Masonb888db22007-08-27 16:49:44 -0400353
Liu Bo4cb13e52012-03-29 09:57:45 -0400354 /* if this is a small write inside eof, kick off a defrag */
355 if ((end - start + 1) < 16 * 1024 &&
356 (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size))
Chris Mason4cb53002011-05-24 15:35:30 -0400357 btrfs_add_inode_defrag(NULL, inode);
358
Chris Mason42dc7ba2008-12-15 11:44:56 -0500359 actual_end = min_t(u64, isize, end + 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400360again:
361 will_compress = 0;
362 nr_pages = (end >> PAGE_CACHE_SHIFT) - (start >> PAGE_CACHE_SHIFT) + 1;
363 nr_pages = min(nr_pages, (128 * 1024UL) / PAGE_CACHE_SIZE);
364
Chris Masonf03d9302009-02-04 09:31:06 -0500365 /*
366 * we don't want to send crud past the end of i_size through
367 * compression, that's just a waste of CPU time. So, if the
368 * end of the file is before the start of our current
369 * requested range of bytes, we bail out to the uncompressed
370 * cleanup code that can deal with all of this.
371 *
372 * It isn't really the fastest way to fix things, but this is a
373 * very uncommon corner.
374 */
375 if (actual_end <= start)
376 goto cleanup_and_bail_uncompressed;
377
Chris Masonc8b97812008-10-29 14:49:59 -0400378 total_compressed = actual_end - start;
379
380 /* we want to make sure that amount of ram required to uncompress
381 * an extent is reasonable, so we limit the total size in ram
Chris Mason771ed682008-11-06 22:02:51 -0500382 * of a compressed extent to 128k. This is a crucial number
383 * because it also controls how easily we can spread reads across
384 * cpus for decompression.
385 *
386 * We also want to make sure the amount of IO required to do
387 * a random read is reasonably small, so we limit the size of
388 * a compressed extent to 128k.
Chris Masonc8b97812008-10-29 14:49:59 -0400389 */
390 total_compressed = min(total_compressed, max_uncompressed);
Chris Masondb945352007-10-15 16:15:53 -0400391 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
Chris Masonbe20aa92007-12-17 20:14:01 -0500392 num_bytes = max(blocksize, num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -0400393 total_in = 0;
394 ret = 0;
Chris Masondb945352007-10-15 16:15:53 -0400395
Chris Mason771ed682008-11-06 22:02:51 -0500396 /*
397 * we do compression for mount -o compress and when the
398 * inode has not been flagged as nocompress. This flag can
399 * change at any time if we discover bad compression ratios.
Chris Masonc8b97812008-10-29 14:49:59 -0400400 */
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200401 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS) &&
Chris Mason1e701a32010-03-11 09:42:04 -0500402 (btrfs_test_opt(root, COMPRESS) ||
Liu Bo75e7cb72011-03-22 10:12:20 +0000403 (BTRFS_I(inode)->force_compress) ||
404 (BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS))) {
Chris Masonc8b97812008-10-29 14:49:59 -0400405 WARN_ON(pages);
Chris Masoncfbc2462008-10-30 13:22:14 -0400406 pages = kzalloc(sizeof(struct page *) * nr_pages, GFP_NOFS);
Li Zefan560f7d72011-09-08 10:22:01 +0800407 if (!pages) {
408 /* just bail out to the uncompressed code */
409 goto cont;
410 }
Chris Mason179e29e2007-11-01 11:28:41 -0400411
Li Zefan261507a02010-12-17 14:21:50 +0800412 if (BTRFS_I(inode)->force_compress)
413 compress_type = BTRFS_I(inode)->force_compress;
414
415 ret = btrfs_compress_pages(compress_type,
416 inode->i_mapping, start,
417 total_compressed, pages,
418 nr_pages, &nr_pages_ret,
419 &total_in,
420 &total_compressed,
421 max_compressed);
Chris Masonc8b97812008-10-29 14:49:59 -0400422
423 if (!ret) {
424 unsigned long offset = total_compressed &
425 (PAGE_CACHE_SIZE - 1);
426 struct page *page = pages[nr_pages_ret - 1];
427 char *kaddr;
428
429 /* zero the tail end of the last page, we might be
430 * sending it down to disk
431 */
432 if (offset) {
Cong Wang7ac687d2011-11-25 23:14:28 +0800433 kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -0400434 memset(kaddr + offset, 0,
435 PAGE_CACHE_SIZE - offset);
Cong Wang7ac687d2011-11-25 23:14:28 +0800436 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -0400437 }
438 will_compress = 1;
439 }
440 }
Li Zefan560f7d72011-09-08 10:22:01 +0800441cont:
Chris Masonc8b97812008-10-29 14:49:59 -0400442 if (start == 0) {
Josef Bacik7a7eaa42011-04-13 12:54:33 -0400443 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100444 if (IS_ERR(trans)) {
445 ret = PTR_ERR(trans);
446 trans = NULL;
447 goto cleanup_and_out;
448 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400449 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason771ed682008-11-06 22:02:51 -0500450
Chris Masonc8b97812008-10-29 14:49:59 -0400451 /* lets try to make an inline extent */
Chris Mason771ed682008-11-06 22:02:51 -0500452 if (ret || total_in < (actual_end - start)) {
Chris Masonc8b97812008-10-29 14:49:59 -0400453 /* we didn't compress the entire range, try
Chris Mason771ed682008-11-06 22:02:51 -0500454 * to make an uncompressed inline extent.
Chris Masonc8b97812008-10-29 14:49:59 -0400455 */
456 ret = cow_file_range_inline(trans, root, inode,
Li Zefanfe3f5662011-03-28 08:30:38 +0000457 start, end, 0, 0, NULL);
Chris Masonc8b97812008-10-29 14:49:59 -0400458 } else {
Chris Mason771ed682008-11-06 22:02:51 -0500459 /* try making a compressed inline extent */
Chris Masonc8b97812008-10-29 14:49:59 -0400460 ret = cow_file_range_inline(trans, root, inode,
461 start, end,
Li Zefanfe3f5662011-03-28 08:30:38 +0000462 total_compressed,
463 compress_type, pages);
Chris Masonc8b97812008-10-29 14:49:59 -0400464 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100465 if (ret <= 0) {
Chris Mason771ed682008-11-06 22:02:51 -0500466 /*
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100467 * inline extent creation worked or returned error,
468 * we don't need to create any more async work items.
469 * Unlock and free up our temp pages.
Chris Mason771ed682008-11-06 22:02:51 -0500470 */
Chris Masonc8b97812008-10-29 14:49:59 -0400471 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400472 &BTRFS_I(inode)->io_tree,
473 start, end, NULL,
474 EXTENT_CLEAR_UNLOCK_PAGE | EXTENT_CLEAR_DIRTY |
Chris Masona3429ab2009-10-08 12:30:20 -0400475 EXTENT_CLEAR_DELALLOC |
Chris Masona791e352009-10-08 11:27:10 -0400476 EXTENT_SET_WRITEBACK | EXTENT_END_WRITEBACK);
Yan, Zhengc2167752009-11-12 09:34:21 +0000477
478 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400479 goto free_pages_out;
480 }
Yan, Zhengc2167752009-11-12 09:34:21 +0000481 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400482 }
483
484 if (will_compress) {
485 /*
486 * we aren't doing an inline extent round the compressed size
487 * up to a block size boundary so the allocator does sane
488 * things
489 */
490 total_compressed = (total_compressed + blocksize - 1) &
491 ~(blocksize - 1);
492
493 /*
494 * one last check to make sure the compression is really a
495 * win, compare the page count read with the blocks on disk
496 */
497 total_in = (total_in + PAGE_CACHE_SIZE - 1) &
498 ~(PAGE_CACHE_SIZE - 1);
499 if (total_compressed >= total_in) {
500 will_compress = 0;
501 } else {
Chris Masonc8b97812008-10-29 14:49:59 -0400502 num_bytes = total_in;
503 }
504 }
505 if (!will_compress && pages) {
506 /*
507 * the compression code ran but failed to make things smaller,
508 * free any pages it allocated and our page pointer array
509 */
510 for (i = 0; i < nr_pages_ret; i++) {
Chris Mason70b99e62008-10-31 12:46:39 -0400511 WARN_ON(pages[i]->mapping);
Chris Masonc8b97812008-10-29 14:49:59 -0400512 page_cache_release(pages[i]);
513 }
514 kfree(pages);
515 pages = NULL;
516 total_compressed = 0;
517 nr_pages_ret = 0;
518
519 /* flag the file so we don't compress in the future */
Chris Mason1e701a32010-03-11 09:42:04 -0500520 if (!btrfs_test_opt(root, FORCE_COMPRESS) &&
521 !(BTRFS_I(inode)->force_compress)) {
Chris Masona555f812010-01-28 16:18:15 -0500522 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
Chris Mason1e701a32010-03-11 09:42:04 -0500523 }
Chris Masonc8b97812008-10-29 14:49:59 -0400524 }
Chris Mason771ed682008-11-06 22:02:51 -0500525 if (will_compress) {
526 *num_added += 1;
527
528 /* the async work queues will take care of doing actual
529 * allocation on disk for these compressed pages,
530 * and will submit them to the elevator.
531 */
532 add_async_extent(async_cow, start, num_bytes,
Li Zefan261507a02010-12-17 14:21:50 +0800533 total_compressed, pages, nr_pages_ret,
534 compress_type);
Chris Mason771ed682008-11-06 22:02:51 -0500535
Yan, Zheng24ae6362010-12-06 07:02:36 +0000536 if (start + num_bytes < end) {
Chris Mason771ed682008-11-06 22:02:51 -0500537 start += num_bytes;
538 pages = NULL;
539 cond_resched();
540 goto again;
541 }
542 } else {
Chris Masonf03d9302009-02-04 09:31:06 -0500543cleanup_and_bail_uncompressed:
Chris Mason771ed682008-11-06 22:02:51 -0500544 /*
545 * No compression, but we still need to write the pages in
546 * the file we've been given so far. redirty the locked
547 * page if it corresponds to our extent and set things up
548 * for the async work queue to run cow_file_range to do
549 * the normal delalloc dance
550 */
551 if (page_offset(locked_page) >= start &&
552 page_offset(locked_page) <= end) {
553 __set_page_dirty_nobuffers(locked_page);
554 /* unlocked later on in the async handlers */
555 }
Li Zefan261507a02010-12-17 14:21:50 +0800556 add_async_extent(async_cow, start, end - start + 1,
557 0, NULL, 0, BTRFS_COMPRESS_NONE);
Chris Mason771ed682008-11-06 22:02:51 -0500558 *num_added += 1;
559 }
560
561out:
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100562 return ret;
Chris Mason771ed682008-11-06 22:02:51 -0500563
564free_pages_out:
565 for (i = 0; i < nr_pages_ret; i++) {
566 WARN_ON(pages[i]->mapping);
567 page_cache_release(pages[i]);
568 }
Chris Masond3977122009-01-05 21:25:51 -0500569 kfree(pages);
Chris Mason771ed682008-11-06 22:02:51 -0500570
571 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100572
573cleanup_and_out:
574 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
575 start, end, NULL,
576 EXTENT_CLEAR_UNLOCK_PAGE |
577 EXTENT_CLEAR_DIRTY |
578 EXTENT_CLEAR_DELALLOC |
579 EXTENT_SET_WRITEBACK |
580 EXTENT_END_WRITEBACK);
581 if (!trans || IS_ERR(trans))
582 btrfs_error(root->fs_info, ret, "Failed to join transaction");
583 else
584 btrfs_abort_transaction(trans, root, ret);
585 goto free_pages_out;
Chris Mason771ed682008-11-06 22:02:51 -0500586}
587
588/*
589 * phase two of compressed writeback. This is the ordered portion
590 * of the code, which only gets called in the order the work was
591 * queued. We walk all the async extents created by compress_file_range
592 * and send them down to the disk.
593 */
594static noinline int submit_compressed_extents(struct inode *inode,
595 struct async_cow *async_cow)
596{
597 struct async_extent *async_extent;
598 u64 alloc_hint = 0;
599 struct btrfs_trans_handle *trans;
600 struct btrfs_key ins;
601 struct extent_map *em;
602 struct btrfs_root *root = BTRFS_I(inode)->root;
603 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
604 struct extent_io_tree *io_tree;
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500605 int ret = 0;
Chris Mason771ed682008-11-06 22:02:51 -0500606
607 if (list_empty(&async_cow->extents))
608 return 0;
609
Chris Mason771ed682008-11-06 22:02:51 -0500610
Chris Masond3977122009-01-05 21:25:51 -0500611 while (!list_empty(&async_cow->extents)) {
Chris Mason771ed682008-11-06 22:02:51 -0500612 async_extent = list_entry(async_cow->extents.next,
613 struct async_extent, list);
614 list_del(&async_extent->list);
615
616 io_tree = &BTRFS_I(inode)->io_tree;
617
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500618retry:
Chris Mason771ed682008-11-06 22:02:51 -0500619 /* did the compression code fall back to uncompressed IO? */
620 if (!async_extent->pages) {
621 int page_started = 0;
622 unsigned long nr_written = 0;
623
624 lock_extent(io_tree, async_extent->start,
Josef Bacik2ac55d42010-02-03 19:33:23 +0000625 async_extent->start +
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100626 async_extent->ram_size - 1);
Chris Mason771ed682008-11-06 22:02:51 -0500627
628 /* allocate blocks */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500629 ret = cow_file_range(inode, async_cow->locked_page,
630 async_extent->start,
631 async_extent->start +
632 async_extent->ram_size - 1,
633 &page_started, &nr_written, 0);
Chris Mason771ed682008-11-06 22:02:51 -0500634
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100635 /* JDM XXX */
636
Chris Mason771ed682008-11-06 22:02:51 -0500637 /*
638 * if page_started, cow_file_range inserted an
639 * inline extent and took care of all the unlocking
640 * and IO for us. Otherwise, we need to submit
641 * all those pages down to the drive.
642 */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500643 if (!page_started && !ret)
Chris Mason771ed682008-11-06 22:02:51 -0500644 extent_write_locked_range(io_tree,
645 inode, async_extent->start,
Chris Masond3977122009-01-05 21:25:51 -0500646 async_extent->start +
Chris Mason771ed682008-11-06 22:02:51 -0500647 async_extent->ram_size - 1,
648 btrfs_get_extent,
649 WB_SYNC_ALL);
650 kfree(async_extent);
651 cond_resched();
652 continue;
653 }
654
655 lock_extent(io_tree, async_extent->start,
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100656 async_extent->start + async_extent->ram_size - 1);
Chris Mason771ed682008-11-06 22:02:51 -0500657
Josef Bacik7a7eaa42011-04-13 12:54:33 -0400658 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100659 if (IS_ERR(trans)) {
660 ret = PTR_ERR(trans);
661 } else {
662 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
663 ret = btrfs_reserve_extent(trans, root,
Chris Mason771ed682008-11-06 22:02:51 -0500664 async_extent->compressed_size,
665 async_extent->compressed_size,
Josef Bacik81c9ad22012-01-18 10:56:06 -0500666 0, alloc_hint, &ins, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100667 if (ret)
668 btrfs_abort_transaction(trans, root, ret);
669 btrfs_end_transaction(trans, root);
670 }
Yan, Zhengc2167752009-11-12 09:34:21 +0000671
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500672 if (ret) {
673 int i;
674 for (i = 0; i < async_extent->nr_pages; i++) {
675 WARN_ON(async_extent->pages[i]->mapping);
676 page_cache_release(async_extent->pages[i]);
677 }
678 kfree(async_extent->pages);
679 async_extent->nr_pages = 0;
680 async_extent->pages = NULL;
681 unlock_extent(io_tree, async_extent->start,
682 async_extent->start +
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100683 async_extent->ram_size - 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100684 if (ret == -ENOSPC)
685 goto retry;
686 goto out_free; /* JDM: Requeue? */
Josef Bacikf5a84ee32009-11-10 21:23:48 -0500687 }
688
Yan, Zhengc2167752009-11-12 09:34:21 +0000689 /*
690 * here we're doing allocation and writeback of the
691 * compressed pages
692 */
693 btrfs_drop_extent_cache(inode, async_extent->start,
694 async_extent->start +
695 async_extent->ram_size - 1, 0);
696
David Sterba172ddd62011-04-21 00:48:27 +0200697 em = alloc_extent_map();
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100698 BUG_ON(!em); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -0500699 em->start = async_extent->start;
700 em->len = async_extent->ram_size;
Chris Mason445a6942008-11-10 11:53:33 -0500701 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500702
703 em->block_start = ins.objectid;
704 em->block_len = ins.offset;
705 em->bdev = root->fs_info->fs_devices->latest_bdev;
Li Zefan261507a02010-12-17 14:21:50 +0800706 em->compress_type = async_extent->compress_type;
Chris Mason771ed682008-11-06 22:02:51 -0500707 set_bit(EXTENT_FLAG_PINNED, &em->flags);
708 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
709
Chris Masond3977122009-01-05 21:25:51 -0500710 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400711 write_lock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500712 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400713 write_unlock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500714 if (ret != -EEXIST) {
715 free_extent_map(em);
716 break;
717 }
718 btrfs_drop_extent_cache(inode, async_extent->start,
719 async_extent->start +
720 async_extent->ram_size - 1, 0);
721 }
722
Li Zefan261507a02010-12-17 14:21:50 +0800723 ret = btrfs_add_ordered_extent_compress(inode,
724 async_extent->start,
725 ins.objectid,
726 async_extent->ram_size,
727 ins.offset,
728 BTRFS_ORDERED_COMPRESSED,
729 async_extent->compress_type);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100730 BUG_ON(ret); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -0500731
Chris Mason771ed682008-11-06 22:02:51 -0500732 /*
733 * clear dirty, set writeback and unlock the pages.
734 */
735 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400736 &BTRFS_I(inode)->io_tree,
737 async_extent->start,
738 async_extent->start +
739 async_extent->ram_size - 1,
740 NULL, EXTENT_CLEAR_UNLOCK_PAGE |
741 EXTENT_CLEAR_UNLOCK |
Chris Masona3429ab2009-10-08 12:30:20 -0400742 EXTENT_CLEAR_DELALLOC |
Chris Masona791e352009-10-08 11:27:10 -0400743 EXTENT_CLEAR_DIRTY | EXTENT_SET_WRITEBACK);
Chris Mason771ed682008-11-06 22:02:51 -0500744
745 ret = btrfs_submit_compressed_write(inode,
Chris Masond3977122009-01-05 21:25:51 -0500746 async_extent->start,
747 async_extent->ram_size,
748 ins.objectid,
749 ins.offset, async_extent->pages,
750 async_extent->nr_pages);
Chris Mason771ed682008-11-06 22:02:51 -0500751
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100752 BUG_ON(ret); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -0500753 alloc_hint = ins.objectid + ins.offset;
754 kfree(async_extent);
755 cond_resched();
756 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100757 ret = 0;
758out:
759 return ret;
760out_free:
761 kfree(async_extent);
762 goto out;
Chris Mason771ed682008-11-06 22:02:51 -0500763}
764
Josef Bacik4b46fce2010-05-23 11:00:55 -0400765static u64 get_extent_allocation_hint(struct inode *inode, u64 start,
766 u64 num_bytes)
767{
768 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
769 struct extent_map *em;
770 u64 alloc_hint = 0;
771
772 read_lock(&em_tree->lock);
773 em = search_extent_mapping(em_tree, start, num_bytes);
774 if (em) {
775 /*
776 * if block start isn't an actual block number then find the
777 * first block in this inode and use that as a hint. If that
778 * block is also bogus then just don't worry about it.
779 */
780 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
781 free_extent_map(em);
782 em = search_extent_mapping(em_tree, 0, 0);
783 if (em && em->block_start < EXTENT_MAP_LAST_BYTE)
784 alloc_hint = em->block_start;
785 if (em)
786 free_extent_map(em);
787 } else {
788 alloc_hint = em->block_start;
789 free_extent_map(em);
790 }
791 }
792 read_unlock(&em_tree->lock);
793
794 return alloc_hint;
795}
796
Chris Mason771ed682008-11-06 22:02:51 -0500797/*
798 * when extent_io.c finds a delayed allocation range in the file,
799 * the call backs end up in this code. The basic idea is to
800 * allocate extents on disk for the range, and create ordered data structs
801 * in ram to track those extents.
802 *
803 * locked_page is the page that writepage had locked already. We use
804 * it to make sure we don't do extra locks or unlocks.
805 *
806 * *page_started is set to one if we unlock locked_page and do everything
807 * required to start IO on it. It may be clean and already done with
808 * IO when we return.
809 */
810static noinline int cow_file_range(struct inode *inode,
811 struct page *locked_page,
812 u64 start, u64 end, int *page_started,
813 unsigned long *nr_written,
814 int unlock)
815{
816 struct btrfs_root *root = BTRFS_I(inode)->root;
817 struct btrfs_trans_handle *trans;
818 u64 alloc_hint = 0;
819 u64 num_bytes;
820 unsigned long ram_size;
821 u64 disk_num_bytes;
822 u64 cur_alloc_size;
823 u64 blocksize = root->sectorsize;
Chris Mason771ed682008-11-06 22:02:51 -0500824 struct btrfs_key ins;
825 struct extent_map *em;
826 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
827 int ret = 0;
828
Liu Bo83eea1f2012-07-10 05:28:39 -0600829 BUG_ON(btrfs_is_free_space_inode(inode));
Josef Bacik7a7eaa42011-04-13 12:54:33 -0400830 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100831 if (IS_ERR(trans)) {
832 extent_clear_unlock_delalloc(inode,
833 &BTRFS_I(inode)->io_tree,
Josef Bacikbeb42dd2012-05-30 15:35:17 -0400834 start, end, locked_page,
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100835 EXTENT_CLEAR_UNLOCK_PAGE |
836 EXTENT_CLEAR_UNLOCK |
837 EXTENT_CLEAR_DELALLOC |
838 EXTENT_CLEAR_DIRTY |
839 EXTENT_SET_WRITEBACK |
840 EXTENT_END_WRITEBACK);
841 return PTR_ERR(trans);
842 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400843 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason771ed682008-11-06 22:02:51 -0500844
Chris Mason771ed682008-11-06 22:02:51 -0500845 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
846 num_bytes = max(blocksize, num_bytes);
847 disk_num_bytes = num_bytes;
848 ret = 0;
849
Chris Mason4cb53002011-05-24 15:35:30 -0400850 /* if this is a small write inside eof, kick off defrag */
Liu Bo4cb13e52012-03-29 09:57:45 -0400851 if (num_bytes < 64 * 1024 &&
852 (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size))
Chris Mason4cb53002011-05-24 15:35:30 -0400853 btrfs_add_inode_defrag(trans, inode);
854
Chris Mason771ed682008-11-06 22:02:51 -0500855 if (start == 0) {
856 /* lets try to make an inline extent */
857 ret = cow_file_range_inline(trans, root, inode,
Li Zefanfe3f5662011-03-28 08:30:38 +0000858 start, end, 0, 0, NULL);
Chris Mason771ed682008-11-06 22:02:51 -0500859 if (ret == 0) {
860 extent_clear_unlock_delalloc(inode,
Chris Masona791e352009-10-08 11:27:10 -0400861 &BTRFS_I(inode)->io_tree,
862 start, end, NULL,
863 EXTENT_CLEAR_UNLOCK_PAGE |
864 EXTENT_CLEAR_UNLOCK |
865 EXTENT_CLEAR_DELALLOC |
866 EXTENT_CLEAR_DIRTY |
867 EXTENT_SET_WRITEBACK |
868 EXTENT_END_WRITEBACK);
Yan, Zhengc2167752009-11-12 09:34:21 +0000869
Chris Mason771ed682008-11-06 22:02:51 -0500870 *nr_written = *nr_written +
871 (end - start + PAGE_CACHE_SIZE) / PAGE_CACHE_SIZE;
872 *page_started = 1;
Chris Mason771ed682008-11-06 22:02:51 -0500873 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100874 } else if (ret < 0) {
875 btrfs_abort_transaction(trans, root, ret);
876 goto out_unlock;
Chris Mason771ed682008-11-06 22:02:51 -0500877 }
878 }
Chris Masonc8b97812008-10-29 14:49:59 -0400879
880 BUG_ON(disk_num_bytes >
David Sterba6c417612011-04-13 15:41:04 +0200881 btrfs_super_total_bytes(root->fs_info->super_copy));
Chris Masonc8b97812008-10-29 14:49:59 -0400882
Josef Bacik4b46fce2010-05-23 11:00:55 -0400883 alloc_hint = get_extent_allocation_hint(inode, start, num_bytes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400884 btrfs_drop_extent_cache(inode, start, start + num_bytes - 1, 0);
Chris Mason3b951512008-04-17 11:29:12 -0400885
Chris Masond3977122009-01-05 21:25:51 -0500886 while (disk_num_bytes > 0) {
Chris Masona791e352009-10-08 11:27:10 -0400887 unsigned long op;
888
Josef Bacik287a0ab2010-03-19 18:07:23 +0000889 cur_alloc_size = disk_num_bytes;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400890 ret = btrfs_reserve_extent(trans, root, cur_alloc_size,
Chris Mason771ed682008-11-06 22:02:51 -0500891 root->sectorsize, 0, alloc_hint,
Josef Bacik81c9ad22012-01-18 10:56:06 -0500892 &ins, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100893 if (ret < 0) {
894 btrfs_abort_transaction(trans, root, ret);
895 goto out_unlock;
896 }
Chris Masond3977122009-01-05 21:25:51 -0500897
David Sterba172ddd62011-04-21 00:48:27 +0200898 em = alloc_extent_map();
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100899 BUG_ON(!em); /* -ENOMEM */
Chris Masone6dcd2d2008-07-17 12:53:50 -0400900 em->start = start;
Chris Mason445a6942008-11-10 11:53:33 -0500901 em->orig_start = em->start;
Chris Mason771ed682008-11-06 22:02:51 -0500902 ram_size = ins.offset;
903 em->len = ins.offset;
Chris Masonc8b97812008-10-29 14:49:59 -0400904
Chris Masone6dcd2d2008-07-17 12:53:50 -0400905 em->block_start = ins.objectid;
Chris Masonc8b97812008-10-29 14:49:59 -0400906 em->block_len = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400907 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -0400908 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -0400909
Chris Masond3977122009-01-05 21:25:51 -0500910 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -0400911 write_lock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400912 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -0400913 write_unlock(&em_tree->lock);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400914 if (ret != -EEXIST) {
915 free_extent_map(em);
916 break;
917 }
918 btrfs_drop_extent_cache(inode, start,
Chris Masonc8b97812008-10-29 14:49:59 -0400919 start + ram_size - 1, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400920 }
921
Chris Mason98d20f62008-04-14 09:46:10 -0400922 cur_alloc_size = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400923 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
Chris Mason771ed682008-11-06 22:02:51 -0500924 ram_size, cur_alloc_size, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100925 BUG_ON(ret); /* -ENOMEM */
Chris Masonc8b97812008-10-29 14:49:59 -0400926
Yan Zheng17d217f2008-12-12 10:03:38 -0500927 if (root->root_key.objectid ==
928 BTRFS_DATA_RELOC_TREE_OBJECTID) {
929 ret = btrfs_reloc_clone_csums(inode, start,
930 cur_alloc_size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100931 if (ret) {
932 btrfs_abort_transaction(trans, root, ret);
933 goto out_unlock;
934 }
Yan Zheng17d217f2008-12-12 10:03:38 -0500935 }
936
Chris Masond3977122009-01-05 21:25:51 -0500937 if (disk_num_bytes < cur_alloc_size)
Chris Mason3b951512008-04-17 11:29:12 -0400938 break;
Chris Masond3977122009-01-05 21:25:51 -0500939
Chris Masonc8b97812008-10-29 14:49:59 -0400940 /* we're not doing compressed IO, don't unlock the first
941 * page (which the caller expects to stay locked), don't
942 * clear any dirty bits and don't set any writeback bits
Chris Mason8b62b722009-09-02 16:53:46 -0400943 *
944 * Do set the Private2 bit so we know this page was properly
945 * setup for writepage
Chris Masonc8b97812008-10-29 14:49:59 -0400946 */
Chris Masona791e352009-10-08 11:27:10 -0400947 op = unlock ? EXTENT_CLEAR_UNLOCK_PAGE : 0;
948 op |= EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
949 EXTENT_SET_PRIVATE2;
950
Chris Masonc8b97812008-10-29 14:49:59 -0400951 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
952 start, start + ram_size - 1,
Chris Masona791e352009-10-08 11:27:10 -0400953 locked_page, op);
Chris Masonc8b97812008-10-29 14:49:59 -0400954 disk_num_bytes -= cur_alloc_size;
Chris Masonc59f8952007-12-17 20:14:04 -0500955 num_bytes -= cur_alloc_size;
956 alloc_hint = ins.objectid + ins.offset;
957 start += cur_alloc_size;
Chris Masonb888db22007-08-27 16:49:44 -0400958 }
Chris Mason771ed682008-11-06 22:02:51 -0500959 ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100960out:
Chris Masonb888db22007-08-27 16:49:44 -0400961 btrfs_end_transaction(trans, root);
Chris Masonc8b97812008-10-29 14:49:59 -0400962
Chris Masonbe20aa92007-12-17 20:14:01 -0500963 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100964out_unlock:
965 extent_clear_unlock_delalloc(inode,
966 &BTRFS_I(inode)->io_tree,
Josef Bacikbeb42dd2012-05-30 15:35:17 -0400967 start, end, locked_page,
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100968 EXTENT_CLEAR_UNLOCK_PAGE |
969 EXTENT_CLEAR_UNLOCK |
970 EXTENT_CLEAR_DELALLOC |
971 EXTENT_CLEAR_DIRTY |
972 EXTENT_SET_WRITEBACK |
973 EXTENT_END_WRITEBACK);
974
975 goto out;
Chris Mason771ed682008-11-06 22:02:51 -0500976}
Chris Masonc8b97812008-10-29 14:49:59 -0400977
Chris Mason771ed682008-11-06 22:02:51 -0500978/*
979 * work queue call back to started compression on a file and pages
980 */
981static noinline void async_cow_start(struct btrfs_work *work)
982{
983 struct async_cow *async_cow;
984 int num_added = 0;
985 async_cow = container_of(work, struct async_cow, work);
986
987 compress_file_range(async_cow->inode, async_cow->locked_page,
988 async_cow->start, async_cow->end, async_cow,
989 &num_added);
Josef Bacik8180ef82012-06-08 15:16:12 -0400990 if (num_added == 0) {
Josef Bacikcb77fcd2012-06-15 12:19:48 -0600991 btrfs_add_delayed_iput(async_cow->inode);
Chris Mason771ed682008-11-06 22:02:51 -0500992 async_cow->inode = NULL;
Josef Bacik8180ef82012-06-08 15:16:12 -0400993 }
Chris Mason771ed682008-11-06 22:02:51 -0500994}
995
996/*
997 * work queue call back to submit previously compressed pages
998 */
999static noinline void async_cow_submit(struct btrfs_work *work)
1000{
1001 struct async_cow *async_cow;
1002 struct btrfs_root *root;
1003 unsigned long nr_pages;
1004
1005 async_cow = container_of(work, struct async_cow, work);
1006
1007 root = async_cow->root;
1008 nr_pages = (async_cow->end - async_cow->start + PAGE_CACHE_SIZE) >>
1009 PAGE_CACHE_SHIFT;
1010
1011 atomic_sub(nr_pages, &root->fs_info->async_delalloc_pages);
1012
1013 if (atomic_read(&root->fs_info->async_delalloc_pages) <
Liu Bo287082b2012-06-28 04:02:24 -06001014 5 * 1024 * 1024 &&
Chris Mason771ed682008-11-06 22:02:51 -05001015 waitqueue_active(&root->fs_info->async_submit_wait))
1016 wake_up(&root->fs_info->async_submit_wait);
1017
Chris Masond3977122009-01-05 21:25:51 -05001018 if (async_cow->inode)
Chris Mason771ed682008-11-06 22:02:51 -05001019 submit_compressed_extents(async_cow->inode, async_cow);
Chris Mason771ed682008-11-06 22:02:51 -05001020}
Chris Masonc8b97812008-10-29 14:49:59 -04001021
Chris Mason771ed682008-11-06 22:02:51 -05001022static noinline void async_cow_free(struct btrfs_work *work)
1023{
1024 struct async_cow *async_cow;
1025 async_cow = container_of(work, struct async_cow, work);
Josef Bacik8180ef82012-06-08 15:16:12 -04001026 if (async_cow->inode)
Josef Bacikcb77fcd2012-06-15 12:19:48 -06001027 btrfs_add_delayed_iput(async_cow->inode);
Chris Mason771ed682008-11-06 22:02:51 -05001028 kfree(async_cow);
1029}
1030
1031static int cow_file_range_async(struct inode *inode, struct page *locked_page,
1032 u64 start, u64 end, int *page_started,
1033 unsigned long *nr_written)
1034{
1035 struct async_cow *async_cow;
1036 struct btrfs_root *root = BTRFS_I(inode)->root;
1037 unsigned long nr_pages;
1038 u64 cur_end;
Liu Bo287082b2012-06-28 04:02:24 -06001039 int limit = 10 * 1024 * 1024;
Chris Mason771ed682008-11-06 22:02:51 -05001040
Chris Masona3429ab2009-10-08 12:30:20 -04001041 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED,
1042 1, 0, NULL, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -05001043 while (start < end) {
Chris Mason771ed682008-11-06 22:02:51 -05001044 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001045 BUG_ON(!async_cow); /* -ENOMEM */
Josef Bacik8180ef82012-06-08 15:16:12 -04001046 async_cow->inode = igrab(inode);
Chris Mason771ed682008-11-06 22:02:51 -05001047 async_cow->root = root;
1048 async_cow->locked_page = locked_page;
1049 async_cow->start = start;
1050
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001051 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS)
Chris Mason771ed682008-11-06 22:02:51 -05001052 cur_end = end;
1053 else
1054 cur_end = min(end, start + 512 * 1024 - 1);
1055
1056 async_cow->end = cur_end;
1057 INIT_LIST_HEAD(&async_cow->extents);
1058
1059 async_cow->work.func = async_cow_start;
1060 async_cow->work.ordered_func = async_cow_submit;
1061 async_cow->work.ordered_free = async_cow_free;
1062 async_cow->work.flags = 0;
1063
Chris Mason771ed682008-11-06 22:02:51 -05001064 nr_pages = (cur_end - start + PAGE_CACHE_SIZE) >>
1065 PAGE_CACHE_SHIFT;
1066 atomic_add(nr_pages, &root->fs_info->async_delalloc_pages);
1067
1068 btrfs_queue_worker(&root->fs_info->delalloc_workers,
1069 &async_cow->work);
1070
1071 if (atomic_read(&root->fs_info->async_delalloc_pages) > limit) {
1072 wait_event(root->fs_info->async_submit_wait,
1073 (atomic_read(&root->fs_info->async_delalloc_pages) <
1074 limit));
1075 }
1076
Chris Masond3977122009-01-05 21:25:51 -05001077 while (atomic_read(&root->fs_info->async_submit_draining) &&
Chris Mason771ed682008-11-06 22:02:51 -05001078 atomic_read(&root->fs_info->async_delalloc_pages)) {
1079 wait_event(root->fs_info->async_submit_wait,
1080 (atomic_read(&root->fs_info->async_delalloc_pages) ==
1081 0));
1082 }
1083
1084 *nr_written += nr_pages;
1085 start = cur_end + 1;
1086 }
1087 *page_started = 1;
1088 return 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05001089}
1090
Chris Masond3977122009-01-05 21:25:51 -05001091static noinline int csum_exist_in_range(struct btrfs_root *root,
Yan Zheng17d217f2008-12-12 10:03:38 -05001092 u64 bytenr, u64 num_bytes)
1093{
1094 int ret;
1095 struct btrfs_ordered_sum *sums;
1096 LIST_HEAD(list);
1097
Yan Zheng07d400a2009-01-06 11:42:00 -05001098 ret = btrfs_lookup_csums_range(root->fs_info->csum_root, bytenr,
Arne Jansena2de7332011-03-08 14:14:00 +01001099 bytenr + num_bytes - 1, &list, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -05001100 if (ret == 0 && list_empty(&list))
1101 return 0;
1102
1103 while (!list_empty(&list)) {
1104 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
1105 list_del(&sums->list);
1106 kfree(sums);
1107 }
1108 return 1;
1109}
1110
Chris Masond352ac62008-09-29 15:18:18 -04001111/*
1112 * when nowcow writeback call back. This checks for snapshots or COW copies
1113 * of the extents that exist in the file, and COWs the file as required.
1114 *
1115 * If no cow copies or snapshots exist, we write directly to the existing
1116 * blocks on disk
1117 */
Chris Mason7f366cf2009-03-12 20:12:45 -04001118static noinline int run_delalloc_nocow(struct inode *inode,
1119 struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001120 u64 start, u64 end, int *page_started, int force,
1121 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001122{
Chris Masonbe20aa92007-12-17 20:14:01 -05001123 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001124 struct btrfs_trans_handle *trans;
Chris Masonbe20aa92007-12-17 20:14:01 -05001125 struct extent_buffer *leaf;
Chris Masonbe20aa92007-12-17 20:14:01 -05001126 struct btrfs_path *path;
Yan Zheng80ff3852008-10-30 14:20:02 -04001127 struct btrfs_file_extent_item *fi;
Chris Masonbe20aa92007-12-17 20:14:01 -05001128 struct btrfs_key found_key;
Yan Zheng80ff3852008-10-30 14:20:02 -04001129 u64 cow_start;
1130 u64 cur_offset;
1131 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001132 u64 extent_offset;
Yan Zheng80ff3852008-10-30 14:20:02 -04001133 u64 disk_bytenr;
1134 u64 num_bytes;
1135 int extent_type;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001136 int ret, err;
Yan Zhengd899e052008-10-30 14:25:28 -04001137 int type;
Yan Zheng80ff3852008-10-30 14:20:02 -04001138 int nocow;
1139 int check_prev = 1;
Li Zefan82d59022011-04-20 10:33:24 +08001140 bool nolock;
Li Zefan33345d012011-04-20 10:31:50 +08001141 u64 ino = btrfs_ino(inode);
Chris Masonbe20aa92007-12-17 20:14:01 -05001142
1143 path = btrfs_alloc_path();
Josef Bacik17ca04a2012-05-31 15:58:55 -04001144 if (!path) {
1145 extent_clear_unlock_delalloc(inode,
1146 &BTRFS_I(inode)->io_tree,
1147 start, end, locked_page,
1148 EXTENT_CLEAR_UNLOCK_PAGE |
1149 EXTENT_CLEAR_UNLOCK |
1150 EXTENT_CLEAR_DELALLOC |
1151 EXTENT_CLEAR_DIRTY |
1152 EXTENT_SET_WRITEBACK |
1153 EXTENT_END_WRITEBACK);
Mark Fashehd8926bb2011-07-13 10:38:47 -07001154 return -ENOMEM;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001155 }
Li Zefan82d59022011-04-20 10:33:24 +08001156
Liu Bo83eea1f2012-07-10 05:28:39 -06001157 nolock = btrfs_is_free_space_inode(inode);
Li Zefan82d59022011-04-20 10:33:24 +08001158
1159 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001160 trans = btrfs_join_transaction_nolock(root);
Li Zefan82d59022011-04-20 10:33:24 +08001161 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001162 trans = btrfs_join_transaction(root);
Chris Masonff5714c2011-05-28 07:00:39 -04001163
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001164 if (IS_ERR(trans)) {
Josef Bacik17ca04a2012-05-31 15:58:55 -04001165 extent_clear_unlock_delalloc(inode,
1166 &BTRFS_I(inode)->io_tree,
1167 start, end, locked_page,
1168 EXTENT_CLEAR_UNLOCK_PAGE |
1169 EXTENT_CLEAR_UNLOCK |
1170 EXTENT_CLEAR_DELALLOC |
1171 EXTENT_CLEAR_DIRTY |
1172 EXTENT_SET_WRITEBACK |
1173 EXTENT_END_WRITEBACK);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001174 btrfs_free_path(path);
1175 return PTR_ERR(trans);
1176 }
1177
Josef Bacik74b21072011-04-13 12:02:53 -04001178 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Masonbe20aa92007-12-17 20:14:01 -05001179
Yan Zheng80ff3852008-10-30 14:20:02 -04001180 cow_start = (u64)-1;
1181 cur_offset = start;
1182 while (1) {
Li Zefan33345d012011-04-20 10:31:50 +08001183 ret = btrfs_lookup_file_extent(trans, root, path, ino,
Yan Zheng80ff3852008-10-30 14:20:02 -04001184 cur_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001185 if (ret < 0) {
1186 btrfs_abort_transaction(trans, root, ret);
1187 goto error;
1188 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001189 if (ret > 0 && path->slots[0] > 0 && check_prev) {
1190 leaf = path->nodes[0];
1191 btrfs_item_key_to_cpu(leaf, &found_key,
1192 path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +08001193 if (found_key.objectid == ino &&
Yan Zheng80ff3852008-10-30 14:20:02 -04001194 found_key.type == BTRFS_EXTENT_DATA_KEY)
1195 path->slots[0]--;
1196 }
1197 check_prev = 0;
1198next_slot:
1199 leaf = path->nodes[0];
1200 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1201 ret = btrfs_next_leaf(root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001202 if (ret < 0) {
1203 btrfs_abort_transaction(trans, root, ret);
1204 goto error;
1205 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001206 if (ret > 0)
1207 break;
1208 leaf = path->nodes[0];
1209 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001210
Yan Zheng80ff3852008-10-30 14:20:02 -04001211 nocow = 0;
1212 disk_bytenr = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -05001213 num_bytes = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001214 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05001215
Li Zefan33345d012011-04-20 10:31:50 +08001216 if (found_key.objectid > ino ||
Yan Zheng80ff3852008-10-30 14:20:02 -04001217 found_key.type > BTRFS_EXTENT_DATA_KEY ||
1218 found_key.offset > end)
1219 break;
Chris Masonbe20aa92007-12-17 20:14:01 -05001220
Yan Zheng80ff3852008-10-30 14:20:02 -04001221 if (found_key.offset > cur_offset) {
1222 extent_end = found_key.offset;
Chris Masone9061e22009-10-09 09:57:45 -04001223 extent_type = 0;
Yan Zheng80ff3852008-10-30 14:20:02 -04001224 goto out_check;
1225 }
Chris Masonc31f8832008-01-08 15:46:31 -05001226
Yan Zheng80ff3852008-10-30 14:20:02 -04001227 fi = btrfs_item_ptr(leaf, path->slots[0],
1228 struct btrfs_file_extent_item);
1229 extent_type = btrfs_file_extent_type(leaf, fi);
Chris Masonbe20aa92007-12-17 20:14:01 -05001230
Yan Zhengd899e052008-10-30 14:25:28 -04001231 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1232 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001233 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001234 extent_offset = btrfs_file_extent_offset(leaf, fi);
Yan Zheng80ff3852008-10-30 14:20:02 -04001235 extent_end = found_key.offset +
1236 btrfs_file_extent_num_bytes(leaf, fi);
1237 if (extent_end <= start) {
1238 path->slots[0]++;
1239 goto next_slot;
1240 }
Yan Zheng17d217f2008-12-12 10:03:38 -05001241 if (disk_bytenr == 0)
1242 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001243 if (btrfs_file_extent_compression(leaf, fi) ||
1244 btrfs_file_extent_encryption(leaf, fi) ||
1245 btrfs_file_extent_other_encoding(leaf, fi))
1246 goto out_check;
Yan Zhengd899e052008-10-30 14:25:28 -04001247 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1248 goto out_check;
Yan Zhengd2fb3432008-12-11 16:30:39 -05001249 if (btrfs_extent_readonly(root, disk_bytenr))
Yan Zheng80ff3852008-10-30 14:20:02 -04001250 goto out_check;
Li Zefan33345d012011-04-20 10:31:50 +08001251 if (btrfs_cross_ref_exist(trans, root, ino,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001252 found_key.offset -
1253 extent_offset, disk_bytenr))
Yan Zheng17d217f2008-12-12 10:03:38 -05001254 goto out_check;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001255 disk_bytenr += extent_offset;
Yan Zheng17d217f2008-12-12 10:03:38 -05001256 disk_bytenr += cur_offset - found_key.offset;
1257 num_bytes = min(end + 1, extent_end) - cur_offset;
1258 /*
1259 * force cow if csum exists in the range.
1260 * this ensure that csum for a given extent are
1261 * either valid or do not exist.
1262 */
1263 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
1264 goto out_check;
Yan Zheng80ff3852008-10-30 14:20:02 -04001265 nocow = 1;
1266 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1267 extent_end = found_key.offset +
1268 btrfs_file_extent_inline_len(leaf, fi);
1269 extent_end = ALIGN(extent_end, root->sectorsize);
1270 } else {
1271 BUG_ON(1);
1272 }
1273out_check:
1274 if (extent_end <= start) {
1275 path->slots[0]++;
1276 goto next_slot;
1277 }
1278 if (!nocow) {
1279 if (cow_start == (u64)-1)
1280 cow_start = cur_offset;
1281 cur_offset = extent_end;
1282 if (cur_offset > end)
1283 break;
1284 path->slots[0]++;
1285 goto next_slot;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001286 }
Chris Masonbe20aa92007-12-17 20:14:01 -05001287
David Sterbab3b4aa72011-04-21 01:20:15 +02001288 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001289 if (cow_start != (u64)-1) {
1290 ret = cow_file_range(inode, locked_page, cow_start,
Chris Mason771ed682008-11-06 22:02:51 -05001291 found_key.offset - 1, page_started,
1292 nr_written, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001293 if (ret) {
1294 btrfs_abort_transaction(trans, root, ret);
1295 goto error;
1296 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001297 cow_start = (u64)-1;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001298 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001299
Yan Zhengd899e052008-10-30 14:25:28 -04001300 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1301 struct extent_map *em;
1302 struct extent_map_tree *em_tree;
1303 em_tree = &BTRFS_I(inode)->extent_tree;
David Sterba172ddd62011-04-21 00:48:27 +02001304 em = alloc_extent_map();
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001305 BUG_ON(!em); /* -ENOMEM */
Yan Zhengd899e052008-10-30 14:25:28 -04001306 em->start = cur_offset;
Chris Mason445a6942008-11-10 11:53:33 -05001307 em->orig_start = em->start;
Yan Zhengd899e052008-10-30 14:25:28 -04001308 em->len = num_bytes;
1309 em->block_len = num_bytes;
1310 em->block_start = disk_bytenr;
1311 em->bdev = root->fs_info->fs_devices->latest_bdev;
1312 set_bit(EXTENT_FLAG_PINNED, &em->flags);
1313 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04001314 write_lock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001315 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04001316 write_unlock(&em_tree->lock);
Yan Zhengd899e052008-10-30 14:25:28 -04001317 if (ret != -EEXIST) {
1318 free_extent_map(em);
1319 break;
1320 }
1321 btrfs_drop_extent_cache(inode, em->start,
1322 em->start + em->len - 1, 0);
1323 }
1324 type = BTRFS_ORDERED_PREALLOC;
1325 } else {
1326 type = BTRFS_ORDERED_NOCOW;
1327 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001328
1329 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
Yan Zhengd899e052008-10-30 14:25:28 -04001330 num_bytes, num_bytes, type);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001331 BUG_ON(ret); /* -ENOMEM */
Chris Mason771ed682008-11-06 22:02:51 -05001332
Yan, Zhengefa56462010-05-16 10:49:59 -04001333 if (root->root_key.objectid ==
1334 BTRFS_DATA_RELOC_TREE_OBJECTID) {
1335 ret = btrfs_reloc_clone_csums(inode, cur_offset,
1336 num_bytes);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001337 if (ret) {
1338 btrfs_abort_transaction(trans, root, ret);
1339 goto error;
1340 }
Yan, Zhengefa56462010-05-16 10:49:59 -04001341 }
1342
Yan Zhengd899e052008-10-30 14:25:28 -04001343 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
Chris Masona791e352009-10-08 11:27:10 -04001344 cur_offset, cur_offset + num_bytes - 1,
1345 locked_page, EXTENT_CLEAR_UNLOCK_PAGE |
1346 EXTENT_CLEAR_UNLOCK | EXTENT_CLEAR_DELALLOC |
1347 EXTENT_SET_PRIVATE2);
Yan Zheng80ff3852008-10-30 14:20:02 -04001348 cur_offset = extent_end;
1349 if (cur_offset > end)
1350 break;
Yan Zheng7ea394f2008-08-05 13:05:02 -04001351 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001352 btrfs_release_path(path);
Yan Zheng80ff3852008-10-30 14:20:02 -04001353
Josef Bacik17ca04a2012-05-31 15:58:55 -04001354 if (cur_offset <= end && cow_start == (u64)-1) {
Yan Zheng80ff3852008-10-30 14:20:02 -04001355 cow_start = cur_offset;
Josef Bacik17ca04a2012-05-31 15:58:55 -04001356 cur_offset = end;
1357 }
1358
Yan Zheng80ff3852008-10-30 14:20:02 -04001359 if (cow_start != (u64)-1) {
1360 ret = cow_file_range(inode, locked_page, cow_start, end,
Chris Mason771ed682008-11-06 22:02:51 -05001361 page_started, nr_written, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001362 if (ret) {
1363 btrfs_abort_transaction(trans, root, ret);
1364 goto error;
1365 }
Yan Zheng80ff3852008-10-30 14:20:02 -04001366 }
1367
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001368error:
Josef Bacik0cb59c92010-07-02 12:14:14 -04001369 if (nolock) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001370 err = btrfs_end_transaction_nolock(trans, root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001371 } else {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001372 err = btrfs_end_transaction(trans, root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001373 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001374 if (!ret)
1375 ret = err;
1376
Josef Bacik17ca04a2012-05-31 15:58:55 -04001377 if (ret && cur_offset < end)
1378 extent_clear_unlock_delalloc(inode,
1379 &BTRFS_I(inode)->io_tree,
1380 cur_offset, end, locked_page,
1381 EXTENT_CLEAR_UNLOCK_PAGE |
1382 EXTENT_CLEAR_UNLOCK |
1383 EXTENT_CLEAR_DELALLOC |
1384 EXTENT_CLEAR_DIRTY |
1385 EXTENT_SET_WRITEBACK |
1386 EXTENT_END_WRITEBACK);
1387
Yan Zheng7ea394f2008-08-05 13:05:02 -04001388 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001389 return ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05001390}
1391
Chris Masond352ac62008-09-29 15:18:18 -04001392/*
1393 * extent_io.c call back to do delayed allocation processing
1394 */
Chris Masonc8b97812008-10-29 14:49:59 -04001395static int run_delalloc_range(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001396 u64 start, u64 end, int *page_started,
1397 unsigned long *nr_written)
Chris Masonbe20aa92007-12-17 20:14:01 -05001398{
Chris Masonbe20aa92007-12-17 20:14:01 -05001399 int ret;
Chris Mason7f366cf2009-03-12 20:12:45 -04001400 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masona2135012008-06-25 16:01:30 -04001401
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001402 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) {
Chris Masonc8b97812008-10-29 14:49:59 -04001403 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001404 page_started, 1, nr_written);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001405 } else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC) {
Yan Zhengd899e052008-10-30 14:25:28 -04001406 ret = run_delalloc_nocow(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001407 page_started, 0, nr_written);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001408 } else if (!btrfs_test_opt(root, COMPRESS) &&
1409 !(BTRFS_I(inode)->force_compress) &&
1410 !(BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS)) {
Chris Mason7f366cf2009-03-12 20:12:45 -04001411 ret = cow_file_range(inode, locked_page, start, end,
1412 page_started, nr_written, 1);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001413 } else {
1414 set_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1415 &BTRFS_I(inode)->runtime_flags);
Chris Mason771ed682008-11-06 22:02:51 -05001416 ret = cow_file_range_async(inode, locked_page, start, end,
Chris Masond3977122009-01-05 21:25:51 -05001417 page_started, nr_written);
Josef Bacik7ddf5a42012-06-08 15:26:47 -04001418 }
Chris Masonb888db22007-08-27 16:49:44 -04001419 return ret;
1420}
1421
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001422static void btrfs_split_extent_hook(struct inode *inode,
1423 struct extent_state *orig, u64 split)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001424{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001425 /* not delalloc, ignore it */
Josef Bacik9ed74f22009-09-11 16:12:44 -04001426 if (!(orig->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001427 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001428
Josef Bacik9e0baf62011-07-15 15:16:44 +00001429 spin_lock(&BTRFS_I(inode)->lock);
1430 BTRFS_I(inode)->outstanding_extents++;
1431 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001432}
1433
1434/*
1435 * extent_io.c merge_extent_hook, used to track merged delayed allocation
1436 * extents so we can keep track of new extents that are just merged onto old
1437 * extents, such as when we are doing sequential writes, so we can properly
1438 * account for the metadata space we'll need.
1439 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001440static void btrfs_merge_extent_hook(struct inode *inode,
1441 struct extent_state *new,
1442 struct extent_state *other)
Josef Bacik9ed74f22009-09-11 16:12:44 -04001443{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001444 /* not delalloc, ignore it */
1445 if (!(other->state & EXTENT_DELALLOC))
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001446 return;
Josef Bacik9ed74f22009-09-11 16:12:44 -04001447
Josef Bacik9e0baf62011-07-15 15:16:44 +00001448 spin_lock(&BTRFS_I(inode)->lock);
1449 BTRFS_I(inode)->outstanding_extents--;
1450 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001451}
1452
Chris Masond352ac62008-09-29 15:18:18 -04001453/*
1454 * extent_io.c set_bit_hook, used to track delayed allocation
1455 * bytes in this file, and to maintain the list of inodes that
1456 * have pending delalloc work to be done.
1457 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001458static void btrfs_set_bit_hook(struct inode *inode,
1459 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001460{
Josef Bacik9ed74f22009-09-11 16:12:44 -04001461
Chris Mason75eff682008-12-15 15:54:40 -05001462 /*
1463 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001464 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001465 * bit, which is only set or cleared with irqs on
1466 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001467 if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001468 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001469 u64 len = state->end + 1 - state->start;
Liu Bo83eea1f2012-07-10 05:28:39 -06001470 bool do_list = !btrfs_is_free_space_inode(inode);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001471
Josef Bacik9e0baf62011-07-15 15:16:44 +00001472 if (*bits & EXTENT_FIRST_DELALLOC) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001473 *bits &= ~EXTENT_FIRST_DELALLOC;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001474 } else {
1475 spin_lock(&BTRFS_I(inode)->lock);
1476 BTRFS_I(inode)->outstanding_extents++;
1477 spin_unlock(&BTRFS_I(inode)->lock);
1478 }
Josef Bacik287a0ab2010-03-19 18:07:23 +00001479
Chris Mason75eff682008-12-15 15:54:40 -05001480 spin_lock(&root->fs_info->delalloc_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001481 BTRFS_I(inode)->delalloc_bytes += len;
1482 root->fs_info->delalloc_bytes += len;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001483 if (do_list && list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
Chris Masonea8c2812008-08-04 23:17:27 -04001484 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1485 &root->fs_info->delalloc_inodes);
1486 }
Chris Mason75eff682008-12-15 15:54:40 -05001487 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001488 }
Chris Mason291d6732008-01-29 15:55:23 -05001489}
1490
Chris Masond352ac62008-09-29 15:18:18 -04001491/*
1492 * extent_io.c clear_bit_hook, see set_bit_hook for why
1493 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +00001494static void btrfs_clear_bit_hook(struct inode *inode,
1495 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -05001496{
Chris Mason75eff682008-12-15 15:54:40 -05001497 /*
1498 * set_bit and clear bit hooks normally require _irqsave/restore
Sergei Trofimovich27160b62011-05-20 20:20:32 +00001499 * but in this case, we are only testing for the DELALLOC
Chris Mason75eff682008-12-15 15:54:40 -05001500 * bit, which is only set or cleared with irqs on
1501 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001502 if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -05001503 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001504 u64 len = state->end + 1 - state->start;
Liu Bo83eea1f2012-07-10 05:28:39 -06001505 bool do_list = !btrfs_is_free_space_inode(inode);
Chris Masonbcbfce82008-04-22 13:26:47 -04001506
Josef Bacik9e0baf62011-07-15 15:16:44 +00001507 if (*bits & EXTENT_FIRST_DELALLOC) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001508 *bits &= ~EXTENT_FIRST_DELALLOC;
Josef Bacik9e0baf62011-07-15 15:16:44 +00001509 } else if (!(*bits & EXTENT_DO_ACCOUNTING)) {
1510 spin_lock(&BTRFS_I(inode)->lock);
1511 BTRFS_I(inode)->outstanding_extents--;
1512 spin_unlock(&BTRFS_I(inode)->lock);
1513 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001514
1515 if (*bits & EXTENT_DO_ACCOUNTING)
1516 btrfs_delalloc_release_metadata(inode, len);
1517
Josef Bacik0cb59c92010-07-02 12:14:14 -04001518 if (root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID
1519 && do_list)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001520 btrfs_free_reserved_data_space(inode, len);
Josef Bacik9ed74f22009-09-11 16:12:44 -04001521
Chris Mason75eff682008-12-15 15:54:40 -05001522 spin_lock(&root->fs_info->delalloc_lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001523 root->fs_info->delalloc_bytes -= len;
1524 BTRFS_I(inode)->delalloc_bytes -= len;
1525
Josef Bacik0cb59c92010-07-02 12:14:14 -04001526 if (do_list && BTRFS_I(inode)->delalloc_bytes == 0 &&
Chris Masonea8c2812008-08-04 23:17:27 -04001527 !list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1528 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
1529 }
Chris Mason75eff682008-12-15 15:54:40 -05001530 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason291d6732008-01-29 15:55:23 -05001531 }
Chris Mason291d6732008-01-29 15:55:23 -05001532}
1533
Chris Masond352ac62008-09-29 15:18:18 -04001534/*
1535 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1536 * we don't create bios that span stripes or chunks
1537 */
Chris Mason239b14b2008-03-24 15:02:07 -04001538int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -04001539 size_t size, struct bio *bio,
1540 unsigned long bio_flags)
Chris Mason239b14b2008-03-24 15:02:07 -04001541{
1542 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
1543 struct btrfs_mapping_tree *map_tree;
Chris Masona62b9402008-10-03 16:31:08 -04001544 u64 logical = (u64)bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -04001545 u64 length = 0;
1546 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -04001547 int ret;
1548
Chris Mason771ed682008-11-06 22:02:51 -05001549 if (bio_flags & EXTENT_BIO_COMPRESSED)
1550 return 0;
1551
Chris Masonf2d8d742008-04-21 10:03:05 -04001552 length = bio->bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -04001553 map_tree = &root->fs_info->mapping_tree;
1554 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -04001555 ret = btrfs_map_block(map_tree, READ, logical,
Chris Masonf1885912008-04-09 16:28:12 -04001556 &map_length, NULL, 0);
Jeff Mahoney3444a972011-10-03 23:23:13 -04001557 /* Will always return 0 or 1 with map_multi == NULL */
1558 BUG_ON(ret < 0);
Chris Masond3977122009-01-05 21:25:51 -05001559 if (map_length < length + size)
Chris Mason239b14b2008-03-24 15:02:07 -04001560 return 1;
Jeff Mahoney3444a972011-10-03 23:23:13 -04001561 return 0;
Chris Mason239b14b2008-03-24 15:02:07 -04001562}
1563
Chris Masond352ac62008-09-29 15:18:18 -04001564/*
1565 * in order to insert checksums into the metadata in large chunks,
1566 * we wait until bio submission time. All the pages in the bio are
1567 * checksummed and sums are attached onto the ordered extent record.
1568 *
1569 * At IO completion time the cums attached on the ordered extent record
1570 * are inserted into the btree
1571 */
Chris Masond3977122009-01-05 21:25:51 -05001572static int __btrfs_submit_bio_start(struct inode *inode, int rw,
1573 struct bio *bio, int mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001574 unsigned long bio_flags,
1575 u64 bio_offset)
Chris Mason065631f2008-02-20 12:07:25 -05001576{
Chris Mason065631f2008-02-20 12:07:25 -05001577 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason065631f2008-02-20 12:07:25 -05001578 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -04001579
Chris Masond20f7042008-12-08 16:58:54 -05001580 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001581 BUG_ON(ret); /* -ENOMEM */
Chris Mason4a69a412008-11-06 22:03:00 -05001582 return 0;
1583}
Chris Masone0156402008-04-16 11:15:20 -04001584
Chris Mason4a69a412008-11-06 22:03:00 -05001585/*
1586 * in order to insert checksums into the metadata in large chunks,
1587 * we wait until bio submission time. All the pages in the bio are
1588 * checksummed and sums are attached onto the ordered extent record.
1589 *
1590 * At IO completion time the cums attached on the ordered extent record
1591 * are inserted into the btree
1592 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001593static int __btrfs_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001594 int mirror_num, unsigned long bio_flags,
1595 u64 bio_offset)
Chris Mason4a69a412008-11-06 22:03:00 -05001596{
1597 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason8b712842008-06-11 16:50:36 -04001598 return btrfs_map_bio(root, rw, bio, mirror_num, 1);
Chris Mason44b8bd72008-04-16 11:14:51 -04001599}
1600
Chris Masond352ac62008-09-29 15:18:18 -04001601/*
Chris Masoncad321a2008-12-17 14:51:42 -05001602 * extent_io.c submission hook. This does the right thing for csum calculation
1603 * on write, or reading the csums from the tree before a read
Chris Masond352ac62008-09-29 15:18:18 -04001604 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001605static int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001606 int mirror_num, unsigned long bio_flags,
1607 u64 bio_offset)
Chris Mason44b8bd72008-04-16 11:14:51 -04001608{
1609 struct btrfs_root *root = BTRFS_I(inode)->root;
1610 int ret = 0;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001611 int skip_sum;
Jeff Mahoney04173412011-10-03 23:23:12 -04001612 int metadata = 0;
Chris Mason44b8bd72008-04-16 11:14:51 -04001613
Christoph Hellwig6cbff002009-04-17 10:37:41 +02001614 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masoncad321a2008-12-17 14:51:42 -05001615
Liu Bo83eea1f2012-07-10 05:28:39 -06001616 if (btrfs_is_free_space_inode(inode))
Jeff Mahoney04173412011-10-03 23:23:12 -04001617 metadata = 2;
1618
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001619 if (!(rw & REQ_WRITE)) {
Josef Bacik5fd02042012-05-02 14:00:54 -04001620 ret = btrfs_bio_wq_end_io(root->fs_info, bio, metadata);
1621 if (ret)
1622 return ret;
1623
Chris Masond20f7042008-12-08 16:58:54 -05001624 if (bio_flags & EXTENT_BIO_COMPRESSED) {
Chris Masonc8b97812008-10-29 14:49:59 -04001625 return btrfs_submit_compressed_read(inode, bio,
1626 mirror_num, bio_flags);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00001627 } else if (!skip_sum) {
1628 ret = btrfs_lookup_bio_sums(root, inode, bio, NULL);
1629 if (ret)
1630 return ret;
1631 }
Chris Mason4d1b5fb2008-08-20 09:44:52 -04001632 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001633 } else if (!skip_sum) {
Yan Zheng17d217f2008-12-12 10:03:38 -05001634 /* csum items have already been cloned */
1635 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1636 goto mapit;
Chris Mason19b9bdb2008-10-30 14:23:13 -04001637 /* we're doing a write, do the async checksumming */
1638 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
Chris Mason44b8bd72008-04-16 11:14:51 -04001639 inode, rw, bio, mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -04001640 bio_flags, bio_offset,
1641 __btrfs_submit_bio_start,
Chris Mason4a69a412008-11-06 22:03:00 -05001642 __btrfs_submit_bio_done);
Chris Mason19b9bdb2008-10-30 14:23:13 -04001643 }
1644
Chris Mason0b86a832008-03-24 15:01:56 -04001645mapit:
Chris Mason8b712842008-06-11 16:50:36 -04001646 return btrfs_map_bio(root, rw, bio, mirror_num, 0);
Chris Mason065631f2008-02-20 12:07:25 -05001647}
Chris Mason6885f302008-02-20 16:11:05 -05001648
Chris Masond352ac62008-09-29 15:18:18 -04001649/*
1650 * given a list of ordered sums record them in the inode. This happens
1651 * at IO completion time based on sums calculated at bio submission time.
1652 */
Chris Masonba1da2f2008-07-17 12:54:15 -04001653static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -04001654 struct inode *inode, u64 file_offset,
1655 struct list_head *list)
1656{
Chris Masone6dcd2d2008-07-17 12:53:50 -04001657 struct btrfs_ordered_sum *sum;
1658
Qinghuang Fengc6e30872009-01-21 10:59:08 -05001659 list_for_each_entry(sum, list, list) {
Chris Masond20f7042008-12-08 16:58:54 -05001660 btrfs_csum_file_blocks(trans,
1661 BTRFS_I(inode)->root->fs_info->csum_root, sum);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001662 }
1663 return 0;
1664}
1665
Josef Bacik2ac55d42010-02-03 19:33:23 +00001666int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end,
1667 struct extent_state **cached_state)
Chris Masonea8c2812008-08-04 23:17:27 -04001668{
Chris Masond3977122009-01-05 21:25:51 -05001669 if ((end & (PAGE_CACHE_SIZE - 1)) == 0)
Chris Mason771ed682008-11-06 22:02:51 -05001670 WARN_ON(1);
Chris Masonea8c2812008-08-04 23:17:27 -04001671 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001672 cached_state, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04001673}
1674
Chris Masond352ac62008-09-29 15:18:18 -04001675/* see btrfs_writepage_start_hook for details on why this is required */
Chris Mason247e7432008-07-17 12:53:51 -04001676struct btrfs_writepage_fixup {
1677 struct page *page;
1678 struct btrfs_work work;
1679};
1680
Christoph Hellwigb2950862008-12-02 09:54:17 -05001681static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
Chris Mason247e7432008-07-17 12:53:51 -04001682{
1683 struct btrfs_writepage_fixup *fixup;
1684 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001685 struct extent_state *cached_state = NULL;
Chris Mason247e7432008-07-17 12:53:51 -04001686 struct page *page;
1687 struct inode *inode;
1688 u64 page_start;
1689 u64 page_end;
Jeff Mahoney87826df2012-02-15 16:23:57 +01001690 int ret;
Chris Mason247e7432008-07-17 12:53:51 -04001691
1692 fixup = container_of(work, struct btrfs_writepage_fixup, work);
1693 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -04001694again:
Chris Mason247e7432008-07-17 12:53:51 -04001695 lock_page(page);
1696 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
1697 ClearPageChecked(page);
1698 goto out_page;
1699 }
1700
1701 inode = page->mapping->host;
1702 page_start = page_offset(page);
1703 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
1704
Josef Bacik2ac55d42010-02-03 19:33:23 +00001705 lock_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001706 &cached_state);
Chris Mason4a096752008-07-21 10:29:44 -04001707
1708 /* already ordered? We're done */
Chris Mason8b62b722009-09-02 16:53:46 -04001709 if (PagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001710 goto out;
Chris Mason4a096752008-07-21 10:29:44 -04001711
1712 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1713 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00001714 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start,
1715 page_end, &cached_state, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -04001716 unlock_page(page);
1717 btrfs_start_ordered_extent(inode, ordered, 1);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001718 btrfs_put_ordered_extent(ordered);
Chris Mason4a096752008-07-21 10:29:44 -04001719 goto again;
1720 }
Chris Mason247e7432008-07-17 12:53:51 -04001721
Jeff Mahoney87826df2012-02-15 16:23:57 +01001722 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
1723 if (ret) {
1724 mapping_set_error(page->mapping, ret);
1725 end_extent_writepage(page, ret, page_start, page_end);
1726 ClearPageChecked(page);
1727 goto out;
1728 }
1729
Josef Bacik2ac55d42010-02-03 19:33:23 +00001730 btrfs_set_extent_delalloc(inode, page_start, page_end, &cached_state);
Chris Mason247e7432008-07-17 12:53:51 -04001731 ClearPageChecked(page);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001732 set_page_dirty(page);
Chris Mason247e7432008-07-17 12:53:51 -04001733out:
Josef Bacik2ac55d42010-02-03 19:33:23 +00001734 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, page_end,
1735 &cached_state, GFP_NOFS);
Chris Mason247e7432008-07-17 12:53:51 -04001736out_page:
1737 unlock_page(page);
1738 page_cache_release(page);
Miao Xieb897abe2011-01-26 16:19:22 +08001739 kfree(fixup);
Chris Mason247e7432008-07-17 12:53:51 -04001740}
1741
1742/*
1743 * There are a few paths in the higher layers of the kernel that directly
1744 * set the page dirty bit without asking the filesystem if it is a
1745 * good idea. This causes problems because we want to make sure COW
1746 * properly happens and the data=ordered rules are followed.
1747 *
Chris Masonc8b97812008-10-29 14:49:59 -04001748 * In our case any range that doesn't have the ORDERED bit set
Chris Mason247e7432008-07-17 12:53:51 -04001749 * hasn't been properly setup for IO. We kick off an async process
1750 * to fix it up. The async helper will wait for ordered extents, set
1751 * the delalloc bit and make it safe to write the page.
1752 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001753static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
Chris Mason247e7432008-07-17 12:53:51 -04001754{
1755 struct inode *inode = page->mapping->host;
1756 struct btrfs_writepage_fixup *fixup;
1757 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason247e7432008-07-17 12:53:51 -04001758
Chris Mason8b62b722009-09-02 16:53:46 -04001759 /* this page is properly in the ordered list */
1760 if (TestClearPagePrivate2(page))
Chris Mason247e7432008-07-17 12:53:51 -04001761 return 0;
1762
1763 if (PageChecked(page))
1764 return -EAGAIN;
1765
1766 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
1767 if (!fixup)
1768 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -04001769
Chris Mason247e7432008-07-17 12:53:51 -04001770 SetPageChecked(page);
1771 page_cache_get(page);
1772 fixup->work.func = btrfs_writepage_fixup_worker;
1773 fixup->page = page;
1774 btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work);
Jeff Mahoney87826df2012-02-15 16:23:57 +01001775 return -EBUSY;
Chris Mason247e7432008-07-17 12:53:51 -04001776}
1777
Yan Zhengd899e052008-10-30 14:25:28 -04001778static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
1779 struct inode *inode, u64 file_pos,
1780 u64 disk_bytenr, u64 disk_num_bytes,
1781 u64 num_bytes, u64 ram_bytes,
1782 u8 compression, u8 encryption,
1783 u16 other_encoding, int extent_type)
1784{
1785 struct btrfs_root *root = BTRFS_I(inode)->root;
1786 struct btrfs_file_extent_item *fi;
1787 struct btrfs_path *path;
1788 struct extent_buffer *leaf;
1789 struct btrfs_key ins;
1790 u64 hint;
1791 int ret;
1792
1793 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07001794 if (!path)
1795 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -04001796
Chris Masonb9473432009-03-13 11:00:37 -04001797 path->leave_spinning = 1;
Chris Masona1ed8352009-09-11 12:27:37 -04001798
1799 /*
1800 * we may be replacing one extent in the tree with another.
1801 * The new extent is pinned in the extent map, and we don't want
1802 * to drop it from the cache until it is completely in the btree.
1803 *
1804 * So, tell btrfs_drop_extents to leave this extent in the cache.
1805 * the caller is expected to unpin it and allow it to be merged
1806 * with the others.
1807 */
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001808 ret = btrfs_drop_extents(trans, inode, file_pos, file_pos + num_bytes,
1809 &hint, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001810 if (ret)
1811 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04001812
Li Zefan33345d012011-04-20 10:31:50 +08001813 ins.objectid = btrfs_ino(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04001814 ins.offset = file_pos;
1815 ins.type = BTRFS_EXTENT_DATA_KEY;
1816 ret = btrfs_insert_empty_item(trans, root, path, &ins, sizeof(*fi));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001817 if (ret)
1818 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -04001819 leaf = path->nodes[0];
1820 fi = btrfs_item_ptr(leaf, path->slots[0],
1821 struct btrfs_file_extent_item);
1822 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
1823 btrfs_set_file_extent_type(leaf, fi, extent_type);
1824 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
1825 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
1826 btrfs_set_file_extent_offset(leaf, fi, 0);
1827 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
1828 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
1829 btrfs_set_file_extent_compression(leaf, fi, compression);
1830 btrfs_set_file_extent_encryption(leaf, fi, encryption);
1831 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
Chris Masonb9473432009-03-13 11:00:37 -04001832
1833 btrfs_unlock_up_safe(path, 1);
1834 btrfs_set_lock_blocking(leaf);
1835
Yan Zhengd899e052008-10-30 14:25:28 -04001836 btrfs_mark_buffer_dirty(leaf);
1837
1838 inode_add_bytes(inode, num_bytes);
Yan Zhengd899e052008-10-30 14:25:28 -04001839
1840 ins.objectid = disk_bytenr;
1841 ins.offset = disk_num_bytes;
1842 ins.type = BTRFS_EXTENT_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001843 ret = btrfs_alloc_reserved_file_extent(trans, root,
1844 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08001845 btrfs_ino(inode), file_pos, &ins);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001846out:
Yan Zhengd899e052008-10-30 14:25:28 -04001847 btrfs_free_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04001848
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001849 return ret;
Yan Zhengd899e052008-10-30 14:25:28 -04001850}
1851
Chris Mason5d13a982009-03-13 11:41:46 -04001852/*
1853 * helper function for btrfs_finish_ordered_io, this
1854 * just reads in some of the csum leaves to prime them into ram
1855 * before we start the transaction. It limits the amount of btree
1856 * reads required while inside the transaction.
1857 */
Chris Masond352ac62008-09-29 15:18:18 -04001858/* as ordered data IO finishes, this gets called so we can finish
1859 * an ordered extent if the range of bytes in the file it covers are
1860 * fully written.
1861 */
Josef Bacik5fd02042012-05-02 14:00:54 -04001862static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent)
Chris Masone6dcd2d2008-07-17 12:53:50 -04001863{
Josef Bacik5fd02042012-05-02 14:00:54 -04001864 struct inode *inode = ordered_extent->inode;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001865 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001866 struct btrfs_trans_handle *trans = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001867 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001868 struct extent_state *cached_state = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08001869 int compress_type = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001870 int ret;
Li Zefan82d59022011-04-20 10:33:24 +08001871 bool nolock;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001872
Liu Bo83eea1f2012-07-10 05:28:39 -06001873 nolock = btrfs_is_free_space_inode(inode);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001874
Josef Bacik5fd02042012-05-02 14:00:54 -04001875 if (test_bit(BTRFS_ORDERED_IOERR, &ordered_extent->flags)) {
1876 ret = -EIO;
1877 goto out;
1878 }
1879
Yan, Zhengc2167752009-11-12 09:34:21 +00001880 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001881 BUG_ON(!list_empty(&ordered_extent->list)); /* Logic error */
Yan, Zhengc2167752009-11-12 09:34:21 +00001882 ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent);
1883 if (!ret) {
Josef Bacik0cb59c92010-07-02 12:14:14 -04001884 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001885 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001886 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001887 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001888 if (IS_ERR(trans))
1889 return PTR_ERR(trans);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001890 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Chris Mason21151332011-11-10 20:39:08 -05001891 ret = btrfs_update_inode_fallback(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001892 if (ret) /* -ENOMEM or corruption */
1893 btrfs_abort_transaction(trans, root, ret);
Yan, Zhengc2167752009-11-12 09:34:21 +00001894 }
1895 goto out;
1896 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001897
Josef Bacik2ac55d42010-02-03 19:33:23 +00001898 lock_extent_bits(io_tree, ordered_extent->file_offset,
1899 ordered_extent->file_offset + ordered_extent->len - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001900 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001901
Josef Bacik0cb59c92010-07-02 12:14:14 -04001902 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001903 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001904 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04001905 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001906 if (IS_ERR(trans)) {
1907 ret = PTR_ERR(trans);
1908 trans = NULL;
1909 goto out_unlock;
1910 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001911 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
Yan, Zhengc2167752009-11-12 09:34:21 +00001912
Chris Masonc8b97812008-10-29 14:49:59 -04001913 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
Li Zefan261507a02010-12-17 14:21:50 +08001914 compress_type = ordered_extent->compress_type;
Yan Zhengd899e052008-10-30 14:25:28 -04001915 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Li Zefan261507a02010-12-17 14:21:50 +08001916 BUG_ON(compress_type);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001917 ret = btrfs_mark_extent_written(trans, inode,
Yan Zhengd899e052008-10-30 14:25:28 -04001918 ordered_extent->file_offset,
1919 ordered_extent->file_offset +
1920 ordered_extent->len);
Yan Zhengd899e052008-10-30 14:25:28 -04001921 } else {
Josef Bacik0af3d002010-06-21 14:48:16 -04001922 BUG_ON(root == root->fs_info->tree_root);
Yan Zhengd899e052008-10-30 14:25:28 -04001923 ret = insert_reserved_file_extent(trans, inode,
1924 ordered_extent->file_offset,
1925 ordered_extent->start,
1926 ordered_extent->disk_len,
1927 ordered_extent->len,
1928 ordered_extent->len,
Li Zefan261507a02010-12-17 14:21:50 +08001929 compress_type, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04001930 BTRFS_FILE_EXTENT_REG);
Chris Masona1ed8352009-09-11 12:27:37 -04001931 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
1932 ordered_extent->file_offset,
1933 ordered_extent->len);
Yan Zhengd899e052008-10-30 14:25:28 -04001934 }
Josef Bacik5fd02042012-05-02 14:00:54 -04001935
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001936 if (ret < 0) {
1937 btrfs_abort_transaction(trans, root, ret);
Josef Bacik5fd02042012-05-02 14:00:54 -04001938 goto out_unlock;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001939 }
Josef Bacik2ac55d42010-02-03 19:33:23 +00001940
Chris Masone6dcd2d2008-07-17 12:53:50 -04001941 add_pending_csums(trans, inode, ordered_extent->file_offset,
1942 &ordered_extent->list);
1943
Josef Bacik1ef30be2011-04-05 19:25:36 -04001944 ret = btrfs_ordered_update_i_size(inode, 0, ordered_extent);
Miao Xiea39f7522011-09-11 10:52:25 -04001945 if (!ret || !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
Chris Mason21151332011-11-10 20:39:08 -05001946 ret = btrfs_update_inode_fallback(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001947 if (ret) { /* -ENOMEM or corruption */
1948 btrfs_abort_transaction(trans, root, ret);
Josef Bacik5fd02042012-05-02 14:00:54 -04001949 goto out_unlock;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001950 }
Josef Bacik1ef30be2011-04-05 19:25:36 -04001951 }
1952 ret = 0;
Josef Bacik5fd02042012-05-02 14:00:54 -04001953out_unlock:
1954 unlock_extent_cached(io_tree, ordered_extent->file_offset,
1955 ordered_extent->file_offset +
1956 ordered_extent->len - 1, &cached_state, GFP_NOFS);
Yan, Zhengc2167752009-11-12 09:34:21 +00001957out:
Josef Bacik5b0e95b2011-10-06 08:58:24 -04001958 if (root != root->fs_info->tree_root)
Josef Bacik0cb59c92010-07-02 12:14:14 -04001959 btrfs_delalloc_release_metadata(inode, ordered_extent->len);
Josef Bacik5b0e95b2011-10-06 08:58:24 -04001960 if (trans) {
1961 if (nolock)
Josef Bacik0cb59c92010-07-02 12:14:14 -04001962 btrfs_end_transaction_nolock(trans, root);
Josef Bacik5b0e95b2011-10-06 08:58:24 -04001963 else
Josef Bacik0cb59c92010-07-02 12:14:14 -04001964 btrfs_end_transaction(trans, root);
1965 }
1966
Josef Bacik5fd02042012-05-02 14:00:54 -04001967 if (ret)
1968 clear_extent_uptodate(io_tree, ordered_extent->file_offset,
1969 ordered_extent->file_offset +
1970 ordered_extent->len - 1, NULL, GFP_NOFS);
1971
1972 /*
1973 * This needs to be dont to make sure anybody waiting knows we are done
1974 * upating everything for this ordered extent.
1975 */
1976 btrfs_remove_ordered_extent(inode, ordered_extent);
1977
Chris Masone6dcd2d2008-07-17 12:53:50 -04001978 /* once for us */
1979 btrfs_put_ordered_extent(ordered_extent);
1980 /* once for the tree */
1981 btrfs_put_ordered_extent(ordered_extent);
1982
Josef Bacik5fd02042012-05-02 14:00:54 -04001983 return ret;
1984}
1985
1986static void finish_ordered_fn(struct btrfs_work *work)
1987{
1988 struct btrfs_ordered_extent *ordered_extent;
1989 ordered_extent = container_of(work, struct btrfs_ordered_extent, work);
1990 btrfs_finish_ordered_io(ordered_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001991}
1992
Christoph Hellwigb2950862008-12-02 09:54:17 -05001993static int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
Chris Mason211f90e2008-07-18 11:56:15 -04001994 struct extent_state *state, int uptodate)
1995{
Josef Bacik5fd02042012-05-02 14:00:54 -04001996 struct inode *inode = page->mapping->host;
1997 struct btrfs_root *root = BTRFS_I(inode)->root;
1998 struct btrfs_ordered_extent *ordered_extent = NULL;
1999 struct btrfs_workers *workers;
2000
liubo1abe9b82011-03-24 11:18:59 +00002001 trace_btrfs_writepage_end_io_hook(page, start, end, uptodate);
2002
Chris Mason8b62b722009-09-02 16:53:46 -04002003 ClearPagePrivate2(page);
Josef Bacik5fd02042012-05-02 14:00:54 -04002004 if (!btrfs_dec_test_ordered_pending(inode, &ordered_extent, start,
2005 end - start + 1, uptodate))
2006 return 0;
2007
2008 ordered_extent->work.func = finish_ordered_fn;
2009 ordered_extent->work.flags = 0;
2010
Liu Bo83eea1f2012-07-10 05:28:39 -06002011 if (btrfs_is_free_space_inode(inode))
Josef Bacik5fd02042012-05-02 14:00:54 -04002012 workers = &root->fs_info->endio_freespace_worker;
2013 else
2014 workers = &root->fs_info->endio_write_workers;
2015 btrfs_queue_worker(workers, &ordered_extent->work);
2016
2017 return 0;
Chris Mason211f90e2008-07-18 11:56:15 -04002018}
2019
Chris Masond352ac62008-09-29 15:18:18 -04002020/*
Chris Masond352ac62008-09-29 15:18:18 -04002021 * when reads are done, we need to check csums to verify the data is correct
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002022 * if there's a match, we allow the bio to finish. If not, the code in
2023 * extent_io.c will try to find good copies for us.
Chris Masond352ac62008-09-29 15:18:18 -04002024 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05002025static int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002026 struct extent_state *state, int mirror)
Chris Mason07157aa2007-08-30 08:50:51 -04002027{
Chris Mason35ebb932007-10-30 16:56:53 -04002028 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -04002029 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05002030 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -04002031 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -05002032 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -04002033 int ret;
Chris Masonff79f812007-10-15 16:22:25 -04002034 struct btrfs_root *root = BTRFS_I(inode)->root;
2035 u32 csum = ~(u32)0;
Chris Masond1310b22008-01-24 16:13:08 -05002036
Chris Masond20f7042008-12-08 16:58:54 -05002037 if (PageChecked(page)) {
2038 ClearPageChecked(page);
2039 goto good;
2040 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002041
2042 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
Jan Schmidt08d2f342011-05-04 16:18:50 +02002043 goto good;
Chris Masond20f7042008-12-08 16:58:54 -05002044
Yan Zheng17d217f2008-12-12 10:03:38 -05002045 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
Chris Mason9655d292009-09-02 15:22:30 -04002046 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
Yan Zheng17d217f2008-12-12 10:03:38 -05002047 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM,
2048 GFP_NOFS);
2049 return 0;
2050 }
2051
Yanc2e639f2008-02-04 08:57:25 -05002052 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -05002053 private = state->private;
2054 ret = 0;
2055 } else {
2056 ret = get_state_private(io_tree, start, &private);
2057 }
Cong Wang7ac687d2011-11-25 23:14:28 +08002058 kaddr = kmap_atomic(page);
Chris Masond3977122009-01-05 21:25:51 -05002059 if (ret)
Chris Mason07157aa2007-08-30 08:50:51 -04002060 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05002061
Chris Masonff79f812007-10-15 16:22:25 -04002062 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
2063 btrfs_csum_final(csum, (char *)&csum);
Chris Masond3977122009-01-05 21:25:51 -05002064 if (csum != private)
Chris Mason07157aa2007-08-30 08:50:51 -04002065 goto zeroit;
Chris Masond3977122009-01-05 21:25:51 -05002066
Cong Wang7ac687d2011-11-25 23:14:28 +08002067 kunmap_atomic(kaddr);
Chris Masond20f7042008-12-08 16:58:54 -05002068good:
Chris Mason07157aa2007-08-30 08:50:51 -04002069 return 0;
2070
2071zeroit:
Chris Mason945d8962011-05-22 12:33:42 -04002072 printk_ratelimited(KERN_INFO "btrfs csum failed ino %llu off %llu csum %u "
Li Zefan33345d012011-04-20 10:31:50 +08002073 "private %llu\n",
2074 (unsigned long long)btrfs_ino(page->mapping->host),
Chris Mason193f2842009-04-27 07:29:05 -04002075 (unsigned long long)start, csum,
2076 (unsigned long long)private);
Chris Masondb945352007-10-15 16:15:53 -04002077 memset(kaddr + offset, 1, end - start + 1);
2078 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002079 kunmap_atomic(kaddr);
Chris Mason3b951512008-04-17 11:29:12 -04002080 if (private == 0)
2081 return 0;
Chris Mason7e383262008-04-09 16:28:12 -04002082 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -04002083}
Chris Masonb888db22007-08-27 16:49:44 -04002084
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002085struct delayed_iput {
2086 struct list_head list;
2087 struct inode *inode;
2088};
2089
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002090/* JDM: If this is fs-wide, why can't we add a pointer to
2091 * btrfs_inode instead and avoid the allocation? */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002092void btrfs_add_delayed_iput(struct inode *inode)
2093{
2094 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2095 struct delayed_iput *delayed;
2096
2097 if (atomic_add_unless(&inode->i_count, -1, 1))
2098 return;
2099
2100 delayed = kmalloc(sizeof(*delayed), GFP_NOFS | __GFP_NOFAIL);
2101 delayed->inode = inode;
2102
2103 spin_lock(&fs_info->delayed_iput_lock);
2104 list_add_tail(&delayed->list, &fs_info->delayed_iputs);
2105 spin_unlock(&fs_info->delayed_iput_lock);
2106}
2107
2108void btrfs_run_delayed_iputs(struct btrfs_root *root)
2109{
2110 LIST_HEAD(list);
2111 struct btrfs_fs_info *fs_info = root->fs_info;
2112 struct delayed_iput *delayed;
2113 int empty;
2114
2115 spin_lock(&fs_info->delayed_iput_lock);
2116 empty = list_empty(&fs_info->delayed_iputs);
2117 spin_unlock(&fs_info->delayed_iput_lock);
2118 if (empty)
2119 return;
2120
2121 down_read(&root->fs_info->cleanup_work_sem);
2122 spin_lock(&fs_info->delayed_iput_lock);
2123 list_splice_init(&fs_info->delayed_iputs, &list);
2124 spin_unlock(&fs_info->delayed_iput_lock);
2125
2126 while (!list_empty(&list)) {
2127 delayed = list_entry(list.next, struct delayed_iput, list);
2128 list_del(&delayed->list);
2129 iput(delayed->inode);
2130 kfree(delayed);
2131 }
2132 up_read(&root->fs_info->cleanup_work_sem);
2133}
2134
Yan, Zhengd68fc572010-05-16 10:49:58 -04002135enum btrfs_orphan_cleanup_state {
2136 ORPHAN_CLEANUP_STARTED = 1,
2137 ORPHAN_CLEANUP_DONE = 2,
2138};
2139
2140/*
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08002141 * This is called in transaction commit time. If there are no orphan
Yan, Zhengd68fc572010-05-16 10:49:58 -04002142 * files in the subvolume, it removes orphan item and frees block_rsv
2143 * structure.
2144 */
2145void btrfs_orphan_commit_root(struct btrfs_trans_handle *trans,
2146 struct btrfs_root *root)
2147{
Josef Bacik90290e12011-12-02 15:44:12 -05002148 struct btrfs_block_rsv *block_rsv;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002149 int ret;
2150
Josef Bacik8a35d952012-05-23 14:26:42 -04002151 if (atomic_read(&root->orphan_inodes) ||
Yan, Zhengd68fc572010-05-16 10:49:58 -04002152 root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE)
2153 return;
2154
Josef Bacik90290e12011-12-02 15:44:12 -05002155 spin_lock(&root->orphan_lock);
Josef Bacik8a35d952012-05-23 14:26:42 -04002156 if (atomic_read(&root->orphan_inodes)) {
Josef Bacik90290e12011-12-02 15:44:12 -05002157 spin_unlock(&root->orphan_lock);
2158 return;
2159 }
2160
2161 if (root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE) {
2162 spin_unlock(&root->orphan_lock);
2163 return;
2164 }
2165
2166 block_rsv = root->orphan_block_rsv;
2167 root->orphan_block_rsv = NULL;
2168 spin_unlock(&root->orphan_lock);
2169
Yan, Zhengd68fc572010-05-16 10:49:58 -04002170 if (root->orphan_item_inserted &&
2171 btrfs_root_refs(&root->root_item) > 0) {
2172 ret = btrfs_del_orphan_item(trans, root->fs_info->tree_root,
2173 root->root_key.objectid);
2174 BUG_ON(ret);
2175 root->orphan_item_inserted = 0;
2176 }
2177
Josef Bacik90290e12011-12-02 15:44:12 -05002178 if (block_rsv) {
2179 WARN_ON(block_rsv->size > 0);
2180 btrfs_free_block_rsv(root, block_rsv);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002181 }
2182}
2183
2184/*
Josef Bacik7b128762008-07-24 12:17:14 -04002185 * This creates an orphan entry for the given inode in case something goes
2186 * wrong in the middle of an unlink/truncate.
Yan, Zhengd68fc572010-05-16 10:49:58 -04002187 *
2188 * NOTE: caller of this function should reserve 5 units of metadata for
2189 * this function.
Josef Bacik7b128762008-07-24 12:17:14 -04002190 */
2191int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
2192{
2193 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002194 struct btrfs_block_rsv *block_rsv = NULL;
2195 int reserve = 0;
2196 int insert = 0;
2197 int ret;
Josef Bacik7b128762008-07-24 12:17:14 -04002198
Yan, Zhengd68fc572010-05-16 10:49:58 -04002199 if (!root->orphan_block_rsv) {
2200 block_rsv = btrfs_alloc_block_rsv(root);
Tsutomu Itohb5324022011-07-19 07:27:20 +00002201 if (!block_rsv)
2202 return -ENOMEM;
Josef Bacik7b128762008-07-24 12:17:14 -04002203 }
2204
Yan, Zhengd68fc572010-05-16 10:49:58 -04002205 spin_lock(&root->orphan_lock);
2206 if (!root->orphan_block_rsv) {
2207 root->orphan_block_rsv = block_rsv;
2208 } else if (block_rsv) {
2209 btrfs_free_block_rsv(root, block_rsv);
2210 block_rsv = NULL;
2211 }
Josef Bacik7b128762008-07-24 12:17:14 -04002212
Josef Bacik8a35d952012-05-23 14:26:42 -04002213 if (!test_and_set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2214 &BTRFS_I(inode)->runtime_flags)) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04002215#if 0
2216 /*
2217 * For proper ENOSPC handling, we should do orphan
2218 * cleanup when mounting. But this introduces backward
2219 * compatibility issue.
2220 */
2221 if (!xchg(&root->orphan_item_inserted, 1))
2222 insert = 2;
2223 else
2224 insert = 1;
2225#endif
2226 insert = 1;
Josef Bacik8a35d952012-05-23 14:26:42 -04002227 atomic_dec(&root->orphan_inodes);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002228 }
Josef Bacik7b128762008-07-24 12:17:14 -04002229
Josef Bacik72ac3c02012-05-23 14:13:11 -04002230 if (!test_and_set_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
2231 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04002232 reserve = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002233 spin_unlock(&root->orphan_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04002234
Yan, Zhengd68fc572010-05-16 10:49:58 -04002235 /* grab metadata reservation from transaction handle */
2236 if (reserve) {
2237 ret = btrfs_orphan_reserve_metadata(trans, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002238 BUG_ON(ret); /* -ENOSPC in reservation; Logic error? JDM */
Yan, Zhengd68fc572010-05-16 10:49:58 -04002239 }
2240
2241 /* insert an orphan item to track this unlinked/truncated file */
2242 if (insert >= 1) {
Li Zefan33345d012011-04-20 10:31:50 +08002243 ret = btrfs_insert_orphan_item(trans, root, btrfs_ino(inode));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002244 if (ret && ret != -EEXIST) {
Josef Bacik8a35d952012-05-23 14:26:42 -04002245 clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2246 &BTRFS_I(inode)->runtime_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002247 btrfs_abort_transaction(trans, root, ret);
2248 return ret;
2249 }
2250 ret = 0;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002251 }
2252
2253 /* insert an orphan item to track subvolume contains orphan files */
2254 if (insert >= 2) {
2255 ret = btrfs_insert_orphan_item(trans, root->fs_info->tree_root,
2256 root->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002257 if (ret && ret != -EEXIST) {
2258 btrfs_abort_transaction(trans, root, ret);
2259 return ret;
2260 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002261 }
2262 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002263}
2264
2265/*
2266 * We have done the truncate/delete so we can go ahead and remove the orphan
2267 * item for this particular inode.
2268 */
2269int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode)
2270{
2271 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002272 int delete_item = 0;
2273 int release_rsv = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002274 int ret = 0;
2275
Yan, Zhengd68fc572010-05-16 10:49:58 -04002276 spin_lock(&root->orphan_lock);
Josef Bacik8a35d952012-05-23 14:26:42 -04002277 if (test_and_clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2278 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04002279 delete_item = 1;
Josef Bacik7b128762008-07-24 12:17:14 -04002280
Josef Bacik72ac3c02012-05-23 14:13:11 -04002281 if (test_and_clear_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
2282 &BTRFS_I(inode)->runtime_flags))
Yan, Zhengd68fc572010-05-16 10:49:58 -04002283 release_rsv = 1;
Yan, Zhengd68fc572010-05-16 10:49:58 -04002284 spin_unlock(&root->orphan_lock);
2285
2286 if (trans && delete_item) {
Li Zefan33345d012011-04-20 10:31:50 +08002287 ret = btrfs_del_orphan_item(trans, root, btrfs_ino(inode));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002288 BUG_ON(ret); /* -ENOMEM or corruption (JDM: Recheck) */
Josef Bacik7b128762008-07-24 12:17:14 -04002289 }
2290
Josef Bacik8a35d952012-05-23 14:26:42 -04002291 if (release_rsv) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04002292 btrfs_orphan_release_metadata(inode);
Josef Bacik8a35d952012-05-23 14:26:42 -04002293 atomic_dec(&root->orphan_inodes);
2294 }
Josef Bacik7b128762008-07-24 12:17:14 -04002295
Yan, Zhengd68fc572010-05-16 10:49:58 -04002296 return 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002297}
2298
2299/*
2300 * this cleans up any orphans that may be left on the list from the last use
2301 * of this root.
2302 */
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002303int btrfs_orphan_cleanup(struct btrfs_root *root)
Josef Bacik7b128762008-07-24 12:17:14 -04002304{
2305 struct btrfs_path *path;
2306 struct extent_buffer *leaf;
Josef Bacik7b128762008-07-24 12:17:14 -04002307 struct btrfs_key key, found_key;
2308 struct btrfs_trans_handle *trans;
2309 struct inode *inode;
Josef Bacik8f6d7f42011-09-26 15:55:20 -04002310 u64 last_objectid = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002311 int ret = 0, nr_unlink = 0, nr_truncate = 0;
2312
Yan, Zhengd68fc572010-05-16 10:49:58 -04002313 if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002314 return 0;
Yan, Zhengc71bf092009-11-12 09:34:40 +00002315
2316 path = btrfs_alloc_path();
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002317 if (!path) {
2318 ret = -ENOMEM;
2319 goto out;
2320 }
Josef Bacik7b128762008-07-24 12:17:14 -04002321 path->reada = -1;
2322
2323 key.objectid = BTRFS_ORPHAN_OBJECTID;
2324 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
2325 key.offset = (u64)-1;
2326
Josef Bacik7b128762008-07-24 12:17:14 -04002327 while (1) {
2328 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002329 if (ret < 0)
2330 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04002331
2332 /*
2333 * if ret == 0 means we found what we were searching for, which
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002334 * is weird, but possible, so only screw with path if we didn't
Josef Bacik7b128762008-07-24 12:17:14 -04002335 * find the key and see if we have stuff that matches
2336 */
2337 if (ret > 0) {
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002338 ret = 0;
Josef Bacik7b128762008-07-24 12:17:14 -04002339 if (path->slots[0] == 0)
2340 break;
2341 path->slots[0]--;
2342 }
2343
2344 /* pull out the item */
2345 leaf = path->nodes[0];
Josef Bacik7b128762008-07-24 12:17:14 -04002346 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2347
2348 /* make sure the item matches what we want */
2349 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
2350 break;
2351 if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY)
2352 break;
2353
2354 /* release the path since we're done with it */
David Sterbab3b4aa72011-04-21 01:20:15 +02002355 btrfs_release_path(path);
Josef Bacik7b128762008-07-24 12:17:14 -04002356
2357 /*
2358 * this is where we are basically btrfs_lookup, without the
2359 * crossing root thing. we store the inode number in the
2360 * offset of the orphan item.
2361 */
Josef Bacik8f6d7f42011-09-26 15:55:20 -04002362
2363 if (found_key.offset == last_objectid) {
2364 printk(KERN_ERR "btrfs: Error removing orphan entry, "
2365 "stopping orphan cleanup\n");
2366 ret = -EINVAL;
2367 goto out;
2368 }
2369
2370 last_objectid = found_key.offset;
2371
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002372 found_key.objectid = found_key.offset;
2373 found_key.type = BTRFS_INODE_ITEM_KEY;
2374 found_key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +00002375 inode = btrfs_iget(root->fs_info->sb, &found_key, root, NULL);
Josef Bacika8c9e572011-09-21 16:55:59 -04002376 ret = PTR_RET(inode);
2377 if (ret && ret != -ESTALE)
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002378 goto out;
Josef Bacika8c9e572011-09-21 16:55:59 -04002379
Arne Jansenf8e9e0b2011-12-14 20:12:02 -05002380 if (ret == -ESTALE && root == root->fs_info->tree_root) {
2381 struct btrfs_root *dead_root;
2382 struct btrfs_fs_info *fs_info = root->fs_info;
2383 int is_dead_root = 0;
2384
2385 /*
2386 * this is an orphan in the tree root. Currently these
2387 * could come from 2 sources:
2388 * a) a snapshot deletion in progress
2389 * b) a free space cache inode
2390 * We need to distinguish those two, as the snapshot
2391 * orphan must not get deleted.
2392 * find_dead_roots already ran before us, so if this
2393 * is a snapshot deletion, we should find the root
2394 * in the dead_roots list
2395 */
2396 spin_lock(&fs_info->trans_lock);
2397 list_for_each_entry(dead_root, &fs_info->dead_roots,
2398 root_list) {
2399 if (dead_root->root_key.objectid ==
2400 found_key.objectid) {
2401 is_dead_root = 1;
2402 break;
2403 }
2404 }
2405 spin_unlock(&fs_info->trans_lock);
2406 if (is_dead_root) {
2407 /* prevent this orphan from being found again */
2408 key.offset = found_key.objectid - 1;
2409 continue;
2410 }
2411 }
Josef Bacika8c9e572011-09-21 16:55:59 -04002412 /*
2413 * Inode is already gone but the orphan item is still there,
2414 * kill the orphan item.
2415 */
2416 if (ret == -ESTALE) {
2417 trans = btrfs_start_transaction(root, 1);
2418 if (IS_ERR(trans)) {
2419 ret = PTR_ERR(trans);
2420 goto out;
2421 }
Josef Bacik8a35d952012-05-23 14:26:42 -04002422 printk(KERN_ERR "auto deleting %Lu\n",
2423 found_key.objectid);
Josef Bacika8c9e572011-09-21 16:55:59 -04002424 ret = btrfs_del_orphan_item(trans, root,
2425 found_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002426 BUG_ON(ret); /* -ENOMEM or corruption (JDM: Recheck) */
Josef Bacika8c9e572011-09-21 16:55:59 -04002427 btrfs_end_transaction(trans, root);
2428 continue;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002429 }
Josef Bacik7b128762008-07-24 12:17:14 -04002430
Josef Bacik7b128762008-07-24 12:17:14 -04002431 /*
2432 * add this inode to the orphan list so btrfs_orphan_del does
2433 * the proper thing when we hit it
2434 */
Josef Bacik8a35d952012-05-23 14:26:42 -04002435 set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2436 &BTRFS_I(inode)->runtime_flags);
Josef Bacik7b128762008-07-24 12:17:14 -04002437
Josef Bacik7b128762008-07-24 12:17:14 -04002438 /* if we have links, this was a truncate, lets do that */
2439 if (inode->i_nlink) {
Josef Bacika41ad392011-01-31 15:30:16 -05002440 if (!S_ISREG(inode->i_mode)) {
2441 WARN_ON(1);
2442 iput(inode);
2443 continue;
2444 }
Josef Bacik7b128762008-07-24 12:17:14 -04002445 nr_truncate++;
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002446 ret = btrfs_truncate(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04002447 } else {
2448 nr_unlink++;
2449 }
2450
2451 /* this will do delete_inode and everything for us */
2452 iput(inode);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002453 if (ret)
2454 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04002455 }
Miao Xie3254c872011-11-10 20:45:05 -05002456 /* release the path since we're done with it */
2457 btrfs_release_path(path);
2458
Yan, Zhengd68fc572010-05-16 10:49:58 -04002459 root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE;
2460
2461 if (root->orphan_block_rsv)
2462 btrfs_block_rsv_release(root, root->orphan_block_rsv,
2463 (u64)-1);
2464
2465 if (root->orphan_block_rsv || root->orphan_item_inserted) {
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002466 trans = btrfs_join_transaction(root);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002467 if (!IS_ERR(trans))
2468 btrfs_end_transaction(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -04002469 }
Josef Bacik7b128762008-07-24 12:17:14 -04002470
2471 if (nr_unlink)
2472 printk(KERN_INFO "btrfs: unlinked %d orphans\n", nr_unlink);
2473 if (nr_truncate)
2474 printk(KERN_INFO "btrfs: truncated %d orphans\n", nr_truncate);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05002475
2476out:
2477 if (ret)
2478 printk(KERN_CRIT "btrfs: could not do orphan cleanup %d\n", ret);
2479 btrfs_free_path(path);
2480 return ret;
Josef Bacik7b128762008-07-24 12:17:14 -04002481}
2482
Chris Masond352ac62008-09-29 15:18:18 -04002483/*
Chris Mason46a53cc2009-04-27 11:47:50 -04002484 * very simple check to peek ahead in the leaf looking for xattrs. If we
2485 * don't find any xattrs, we know there can't be any acls.
2486 *
2487 * slot is the slot the inode is in, objectid is the objectid of the inode
2488 */
2489static noinline int acls_after_inode_item(struct extent_buffer *leaf,
2490 int slot, u64 objectid)
2491{
2492 u32 nritems = btrfs_header_nritems(leaf);
2493 struct btrfs_key found_key;
2494 int scanned = 0;
2495
2496 slot++;
2497 while (slot < nritems) {
2498 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2499
2500 /* we found a different objectid, there must not be acls */
2501 if (found_key.objectid != objectid)
2502 return 0;
2503
2504 /* we found an xattr, assume we've got an acl */
2505 if (found_key.type == BTRFS_XATTR_ITEM_KEY)
2506 return 1;
2507
2508 /*
2509 * we found a key greater than an xattr key, there can't
2510 * be any acls later on
2511 */
2512 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
2513 return 0;
2514
2515 slot++;
2516 scanned++;
2517
2518 /*
2519 * it goes inode, inode backrefs, xattrs, extents,
2520 * so if there are a ton of hard links to an inode there can
2521 * be a lot of backrefs. Don't waste time searching too hard,
2522 * this is just an optimization
2523 */
2524 if (scanned >= 8)
2525 break;
2526 }
2527 /* we hit the end of the leaf before we found an xattr or
2528 * something larger than an xattr. We have to assume the inode
2529 * has acls
2530 */
2531 return 1;
2532}
2533
2534/*
Chris Masond352ac62008-09-29 15:18:18 -04002535 * read an inode from the btree into the in-memory inode
2536 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002537static void btrfs_read_locked_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002538{
2539 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002540 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002541 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -04002542 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -04002543 struct btrfs_root *root = BTRFS_I(inode)->root;
2544 struct btrfs_key location;
Chris Mason46a53cc2009-04-27 11:47:50 -04002545 int maybe_acls;
Josef Bacik618e21d2007-07-11 10:18:17 -04002546 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04002547 int ret;
Miao Xie2f7e33d2011-06-23 07:27:13 +00002548 bool filled = false;
2549
2550 ret = btrfs_fill_inode(inode, &rdev);
2551 if (!ret)
2552 filled = true;
Chris Mason39279cc2007-06-12 06:35:45 -04002553
2554 path = btrfs_alloc_path();
Mark Fasheh1748f842011-07-12 11:25:31 -07002555 if (!path)
2556 goto make_bad;
2557
Josef Bacikd90c7322011-05-17 09:50:54 -04002558 path->leave_spinning = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002559 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05002560
Chris Mason39279cc2007-06-12 06:35:45 -04002561 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002562 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04002563 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -04002564
Chris Mason5f39d392007-10-15 16:14:19 -04002565 leaf = path->nodes[0];
Miao Xie2f7e33d2011-06-23 07:27:13 +00002566
2567 if (filled)
2568 goto cache_acl;
2569
Chris Mason5f39d392007-10-15 16:14:19 -04002570 inode_item = btrfs_item_ptr(leaf, path->slots[0],
2571 struct btrfs_inode_item);
Chris Mason5f39d392007-10-15 16:14:19 -04002572 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
Miklos Szeredibfe86842011-10-28 14:13:29 +02002573 set_nlink(inode, btrfs_inode_nlink(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002574 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
2575 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
Chris Masondbe674a2008-07-17 12:54:05 -04002576 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002577
2578 tspec = btrfs_inode_atime(inode_item);
2579 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2580 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2581
2582 tspec = btrfs_inode_mtime(inode_item);
2583 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2584 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2585
2586 tspec = btrfs_inode_ctime(inode_item);
2587 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2588 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2589
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002590 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04002591 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04002592 inode->i_version = btrfs_inode_sequence(leaf, inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04002593 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04002594 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002595 rdev = btrfs_inode_rdev(leaf, inode_item);
2596
Josef Bacikaec74772008-07-24 12:12:38 -04002597 BTRFS_I(inode)->index_cnt = (u64)-1;
Yan Zhengd2fb3432008-12-11 16:30:39 -05002598 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Miao Xie2f7e33d2011-06-23 07:27:13 +00002599cache_acl:
Chris Mason46a53cc2009-04-27 11:47:50 -04002600 /*
2601 * try to precache a NULL acl entry for files that don't have
2602 * any xattrs or acls
2603 */
Li Zefan33345d012011-04-20 10:31:50 +08002604 maybe_acls = acls_after_inode_item(leaf, path->slots[0],
2605 btrfs_ino(inode));
Al Viro72c04902009-06-24 16:58:48 -04002606 if (!maybe_acls)
2607 cache_no_acl(inode);
Chris Mason46a53cc2009-04-27 11:47:50 -04002608
Chris Mason39279cc2007-06-12 06:35:45 -04002609 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002610
Chris Mason39279cc2007-06-12 06:35:45 -04002611 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04002612 case S_IFREG:
2613 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04002614 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05002615 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04002616 inode->i_fop = &btrfs_file_operations;
2617 inode->i_op = &btrfs_file_inode_operations;
2618 break;
2619 case S_IFDIR:
2620 inode->i_fop = &btrfs_dir_file_operations;
2621 if (root == root->fs_info->tree_root)
2622 inode->i_op = &btrfs_dir_ro_inode_operations;
2623 else
2624 inode->i_op = &btrfs_dir_inode_operations;
2625 break;
2626 case S_IFLNK:
2627 inode->i_op = &btrfs_symlink_inode_operations;
2628 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04002629 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04002630 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04002631 default:
Jim Owens0279b4c2009-02-04 09:29:13 -05002632 inode->i_op = &btrfs_special_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -04002633 init_special_inode(inode, inode->i_mode, rdev);
2634 break;
Chris Mason39279cc2007-06-12 06:35:45 -04002635 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +02002636
2637 btrfs_update_iflags(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002638 return;
2639
2640make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04002641 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002642 make_bad_inode(inode);
2643}
2644
Chris Masond352ac62008-09-29 15:18:18 -04002645/*
2646 * given a leaf and an inode, copy the inode fields into the leaf
2647 */
Chris Masone02119d2008-09-05 16:13:11 -04002648static void fill_inode_item(struct btrfs_trans_handle *trans,
2649 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04002650 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04002651 struct inode *inode)
2652{
Chris Mason5f39d392007-10-15 16:14:19 -04002653 btrfs_set_inode_uid(leaf, item, inode->i_uid);
2654 btrfs_set_inode_gid(leaf, item, inode->i_gid);
Chris Masondbe674a2008-07-17 12:54:05 -04002655 btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size);
Chris Mason5f39d392007-10-15 16:14:19 -04002656 btrfs_set_inode_mode(leaf, item, inode->i_mode);
2657 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
2658
2659 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
2660 inode->i_atime.tv_sec);
2661 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
2662 inode->i_atime.tv_nsec);
2663
2664 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
2665 inode->i_mtime.tv_sec);
2666 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
2667 inode->i_mtime.tv_nsec);
2668
2669 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
2670 inode->i_ctime.tv_sec);
2671 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
2672 inode->i_ctime.tv_nsec);
2673
Yan Zhenga76a3cd2008-10-09 11:46:29 -04002674 btrfs_set_inode_nbytes(leaf, item, inode_get_bytes(inode));
Chris Masone02119d2008-09-05 16:13:11 -04002675 btrfs_set_inode_generation(leaf, item, BTRFS_I(inode)->generation);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04002676 btrfs_set_inode_sequence(leaf, item, inode->i_version);
Chris Masone02119d2008-09-05 16:13:11 -04002677 btrfs_set_inode_transid(leaf, item, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04002678 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -05002679 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Josef Bacikd82a6f12011-05-11 15:26:06 -04002680 btrfs_set_inode_block_group(leaf, item, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002681}
2682
Chris Masond352ac62008-09-29 15:18:18 -04002683/*
2684 * copy everything in the in-memory inode into the btree.
2685 */
Chris Mason21151332011-11-10 20:39:08 -05002686static noinline int btrfs_update_inode_item(struct btrfs_trans_handle *trans,
Chris Masond3977122009-01-05 21:25:51 -05002687 struct btrfs_root *root, struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04002688{
2689 struct btrfs_inode_item *inode_item;
2690 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04002691 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002692 int ret;
2693
2694 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08002695 if (!path)
2696 return -ENOMEM;
2697
Chris Masonb9473432009-03-13 11:00:37 -04002698 path->leave_spinning = 1;
Miao Xie16cdcec2011-04-22 18:12:22 +08002699 ret = btrfs_lookup_inode(trans, root, path, &BTRFS_I(inode)->location,
2700 1);
Chris Mason39279cc2007-06-12 06:35:45 -04002701 if (ret) {
2702 if (ret > 0)
2703 ret = -ENOENT;
2704 goto failed;
2705 }
2706
Chris Masonb4ce94d2009-02-04 09:25:08 -05002707 btrfs_unlock_up_safe(path, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002708 leaf = path->nodes[0];
2709 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Miao Xie16cdcec2011-04-22 18:12:22 +08002710 struct btrfs_inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -04002711
Chris Masone02119d2008-09-05 16:13:11 -04002712 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002713 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002714 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002715 ret = 0;
2716failed:
Chris Mason39279cc2007-06-12 06:35:45 -04002717 btrfs_free_path(path);
2718 return ret;
2719}
2720
Chris Masond352ac62008-09-29 15:18:18 -04002721/*
Chris Mason21151332011-11-10 20:39:08 -05002722 * copy everything in the in-memory inode into the btree.
2723 */
2724noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
2725 struct btrfs_root *root, struct inode *inode)
2726{
2727 int ret;
2728
2729 /*
2730 * If the inode is a free space inode, we can deadlock during commit
2731 * if we put it into the delayed code.
2732 *
2733 * The data relocation inode should also be directly updated
2734 * without delay
2735 */
Liu Bo83eea1f2012-07-10 05:28:39 -06002736 if (!btrfs_is_free_space_inode(inode)
Chris Mason21151332011-11-10 20:39:08 -05002737 && root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID) {
Alexander Block8ea05e32012-07-25 17:35:53 +02002738 btrfs_update_root_times(trans, root);
2739
Chris Mason21151332011-11-10 20:39:08 -05002740 ret = btrfs_delayed_update_inode(trans, root, inode);
2741 if (!ret)
2742 btrfs_set_inode_last_trans(trans, inode);
2743 return ret;
2744 }
2745
2746 return btrfs_update_inode_item(trans, root, inode);
2747}
2748
2749static noinline int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans,
2750 struct btrfs_root *root, struct inode *inode)
2751{
2752 int ret;
2753
2754 ret = btrfs_update_inode(trans, root, inode);
2755 if (ret == -ENOSPC)
2756 return btrfs_update_inode_item(trans, root, inode);
2757 return ret;
2758}
2759
2760/*
Chris Masond352ac62008-09-29 15:18:18 -04002761 * unlink helper that gets used here in inode.c and in the tree logging
2762 * recovery code. It remove a link in a directory with a given name, and
2763 * also drops the back refs in the inode to the directory
2764 */
Al Viro92986792011-03-04 17:14:37 +00002765static int __btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2766 struct btrfs_root *root,
2767 struct inode *dir, struct inode *inode,
2768 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04002769{
2770 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04002771 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002772 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002773 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04002774 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04002775 u64 index;
Li Zefan33345d012011-04-20 10:31:50 +08002776 u64 ino = btrfs_ino(inode);
2777 u64 dir_ino = btrfs_ino(dir);
Chris Mason39279cc2007-06-12 06:35:45 -04002778
2779 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002780 if (!path) {
2781 ret = -ENOMEM;
Tsutomu Itoh554233a2011-02-03 03:16:25 +00002782 goto out;
Chris Mason54aa1f42007-06-22 14:16:25 -04002783 }
2784
Chris Masonb9473432009-03-13 11:00:37 -04002785 path->leave_spinning = 1;
Li Zefan33345d012011-04-20 10:31:50 +08002786 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Chris Mason39279cc2007-06-12 06:35:45 -04002787 name, name_len, -1);
2788 if (IS_ERR(di)) {
2789 ret = PTR_ERR(di);
2790 goto err;
2791 }
2792 if (!di) {
2793 ret = -ENOENT;
2794 goto err;
2795 }
Chris Mason5f39d392007-10-15 16:14:19 -04002796 leaf = path->nodes[0];
2797 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04002798 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04002799 if (ret)
2800 goto err;
David Sterbab3b4aa72011-04-21 01:20:15 +02002801 btrfs_release_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002802
Li Zefan33345d012011-04-20 10:31:50 +08002803 ret = btrfs_del_inode_ref(trans, root, name, name_len, ino,
2804 dir_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04002805 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05002806 printk(KERN_INFO "btrfs failed to delete reference to %.*s, "
Li Zefan33345d012011-04-20 10:31:50 +08002807 "inode %llu parent %llu\n", name_len, name,
2808 (unsigned long long)ino, (unsigned long long)dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002809 btrfs_abort_transaction(trans, root, ret);
Josef Bacikaec74772008-07-24 12:12:38 -04002810 goto err;
2811 }
2812
Miao Xie16cdcec2011-04-22 18:12:22 +08002813 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002814 if (ret) {
2815 btrfs_abort_transaction(trans, root, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04002816 goto err;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002817 }
Chris Mason39279cc2007-06-12 06:35:45 -04002818
Chris Masone02119d2008-09-05 16:13:11 -04002819 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
Li Zefan33345d012011-04-20 10:31:50 +08002820 inode, dir_ino);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002821 if (ret != 0 && ret != -ENOENT) {
2822 btrfs_abort_transaction(trans, root, ret);
2823 goto err;
2824 }
Chris Masone02119d2008-09-05 16:13:11 -04002825
2826 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
2827 dir, index);
Chris Mason6418c962010-10-30 07:34:24 -04002828 if (ret == -ENOENT)
2829 ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002830err:
2831 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002832 if (ret)
2833 goto out;
2834
2835 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04002836 inode_inc_iversion(inode);
2837 inode_inc_iversion(dir);
Chris Masone02119d2008-09-05 16:13:11 -04002838 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
Tsutomu Itohb9959292012-06-25 21:25:22 -06002839 ret = btrfs_update_inode(trans, root, dir);
Chris Masone02119d2008-09-05 16:13:11 -04002840out:
Chris Mason39279cc2007-06-12 06:35:45 -04002841 return ret;
2842}
2843
Al Viro92986792011-03-04 17:14:37 +00002844int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2845 struct btrfs_root *root,
2846 struct inode *dir, struct inode *inode,
2847 const char *name, int name_len)
2848{
2849 int ret;
2850 ret = __btrfs_unlink_inode(trans, root, dir, inode, name, name_len);
2851 if (!ret) {
2852 btrfs_drop_nlink(inode);
2853 ret = btrfs_update_inode(trans, root, inode);
2854 }
2855 return ret;
2856}
2857
2858
Yan, Zhenga22285a2010-05-16 10:48:46 -04002859/* helper to check if there is any shared block in the path */
2860static int check_path_shared(struct btrfs_root *root,
2861 struct btrfs_path *path)
2862{
2863 struct extent_buffer *eb;
2864 int level;
Dan Carpenter0e4dcbe2010-06-01 08:23:11 +00002865 u64 refs = 1;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002866
2867 for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
Josef Bacikdedefd72011-01-24 21:43:18 +00002868 int ret;
2869
Yan, Zhenga22285a2010-05-16 10:48:46 -04002870 if (!path->nodes[level])
2871 break;
2872 eb = path->nodes[level];
2873 if (!btrfs_block_can_be_shared(root, eb))
2874 continue;
2875 ret = btrfs_lookup_extent_info(NULL, root, eb->start, eb->len,
2876 &refs, NULL);
2877 if (refs > 1)
2878 return 1;
2879 }
Josef Bacikdedefd72011-01-24 21:43:18 +00002880 return 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002881}
2882
2883/*
2884 * helper to start transaction for unlink and rmdir.
2885 *
2886 * unlink and rmdir are special in btrfs, they do not always free space.
2887 * so in enospc case, we should make sure they will free space before
2888 * allowing them to use the global metadata reservation.
2889 */
2890static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir,
2891 struct dentry *dentry)
2892{
2893 struct btrfs_trans_handle *trans;
2894 struct btrfs_root *root = BTRFS_I(dir)->root;
2895 struct btrfs_path *path;
2896 struct btrfs_inode_ref *ref;
2897 struct btrfs_dir_item *di;
2898 struct inode *inode = dentry->d_inode;
2899 u64 index;
2900 int check_link = 1;
2901 int err = -ENOSPC;
2902 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08002903 u64 ino = btrfs_ino(inode);
2904 u64 dir_ino = btrfs_ino(dir);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002905
Josef Bacike70bea52011-10-11 14:18:24 -04002906 /*
2907 * 1 for the possible orphan item
2908 * 1 for the dir item
2909 * 1 for the dir index
2910 * 1 for the inode ref
2911 * 1 for the inode ref in the tree log
2912 * 2 for the dir entries in the log
2913 * 1 for the inode
2914 */
2915 trans = btrfs_start_transaction(root, 8);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002916 if (!IS_ERR(trans) || PTR_ERR(trans) != -ENOSPC)
2917 return trans;
2918
Li Zefan33345d012011-04-20 10:31:50 +08002919 if (ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhenga22285a2010-05-16 10:48:46 -04002920 return ERR_PTR(-ENOSPC);
2921
2922 /* check if there is someone else holds reference */
2923 if (S_ISDIR(inode->i_mode) && atomic_read(&inode->i_count) > 1)
2924 return ERR_PTR(-ENOSPC);
2925
2926 if (atomic_read(&inode->i_count) > 2)
2927 return ERR_PTR(-ENOSPC);
2928
2929 if (xchg(&root->fs_info->enospc_unlink, 1))
2930 return ERR_PTR(-ENOSPC);
2931
2932 path = btrfs_alloc_path();
2933 if (!path) {
2934 root->fs_info->enospc_unlink = 0;
2935 return ERR_PTR(-ENOMEM);
2936 }
2937
Josef Bacik3880a1b2011-10-14 14:46:51 -04002938 /* 1 for the orphan item */
2939 trans = btrfs_start_transaction(root, 1);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002940 if (IS_ERR(trans)) {
2941 btrfs_free_path(path);
2942 root->fs_info->enospc_unlink = 0;
2943 return trans;
2944 }
2945
2946 path->skip_locking = 1;
2947 path->search_commit_root = 1;
2948
2949 ret = btrfs_lookup_inode(trans, root, path,
2950 &BTRFS_I(dir)->location, 0);
2951 if (ret < 0) {
2952 err = ret;
2953 goto out;
2954 }
2955 if (ret == 0) {
2956 if (check_path_shared(root, path))
2957 goto out;
2958 } else {
2959 check_link = 0;
2960 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002961 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002962
2963 ret = btrfs_lookup_inode(trans, root, path,
2964 &BTRFS_I(inode)->location, 0);
2965 if (ret < 0) {
2966 err = ret;
2967 goto out;
2968 }
2969 if (ret == 0) {
2970 if (check_path_shared(root, path))
2971 goto out;
2972 } else {
2973 check_link = 0;
2974 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002975 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002976
2977 if (ret == 0 && S_ISREG(inode->i_mode)) {
2978 ret = btrfs_lookup_file_extent(trans, root, path,
Li Zefan33345d012011-04-20 10:31:50 +08002979 ino, (u64)-1, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002980 if (ret < 0) {
2981 err = ret;
2982 goto out;
2983 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002984 BUG_ON(ret == 0); /* Corruption */
Yan, Zhenga22285a2010-05-16 10:48:46 -04002985 if (check_path_shared(root, path))
2986 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +02002987 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002988 }
2989
2990 if (!check_link) {
2991 err = 0;
2992 goto out;
2993 }
2994
Li Zefan33345d012011-04-20 10:31:50 +08002995 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zhenga22285a2010-05-16 10:48:46 -04002996 dentry->d_name.name, dentry->d_name.len, 0);
2997 if (IS_ERR(di)) {
2998 err = PTR_ERR(di);
2999 goto out;
3000 }
3001 if (di) {
3002 if (check_path_shared(root, path))
3003 goto out;
3004 } else {
3005 err = 0;
3006 goto out;
3007 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003008 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003009
3010 ref = btrfs_lookup_inode_ref(trans, root, path,
3011 dentry->d_name.name, dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08003012 ino, dir_ino, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003013 if (IS_ERR(ref)) {
3014 err = PTR_ERR(ref);
3015 goto out;
3016 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003017 BUG_ON(!ref); /* Logic error */
Yan, Zhenga22285a2010-05-16 10:48:46 -04003018 if (check_path_shared(root, path))
3019 goto out;
3020 index = btrfs_inode_ref_index(path->nodes[0], ref);
David Sterbab3b4aa72011-04-21 01:20:15 +02003021 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003022
Miao Xie16cdcec2011-04-22 18:12:22 +08003023 /*
3024 * This is a commit root search, if we can lookup inode item and other
3025 * relative items in the commit root, it means the transaction of
3026 * dir/file creation has been committed, and the dir index item that we
3027 * delay to insert has also been inserted into the commit root. So
3028 * we needn't worry about the delayed insertion of the dir index item
3029 * here.
3030 */
Li Zefan33345d012011-04-20 10:31:50 +08003031 di = btrfs_lookup_dir_index_item(trans, root, path, dir_ino, index,
Yan, Zhenga22285a2010-05-16 10:48:46 -04003032 dentry->d_name.name, dentry->d_name.len, 0);
3033 if (IS_ERR(di)) {
3034 err = PTR_ERR(di);
3035 goto out;
3036 }
3037 BUG_ON(ret == -ENOENT);
3038 if (check_path_shared(root, path))
3039 goto out;
3040
3041 err = 0;
3042out:
3043 btrfs_free_path(path);
Josef Bacik3880a1b2011-10-14 14:46:51 -04003044 /* Migrate the orphan reservation over */
3045 if (!err)
3046 err = btrfs_block_rsv_migrate(trans->block_rsv,
3047 &root->fs_info->global_block_rsv,
Josef Bacik5a77d762011-11-01 14:32:23 -04003048 trans->bytes_reserved);
Josef Bacik3880a1b2011-10-14 14:46:51 -04003049
Yan, Zhenga22285a2010-05-16 10:48:46 -04003050 if (err) {
3051 btrfs_end_transaction(trans, root);
3052 root->fs_info->enospc_unlink = 0;
3053 return ERR_PTR(err);
3054 }
3055
3056 trans->block_rsv = &root->fs_info->global_block_rsv;
3057 return trans;
3058}
3059
3060static void __unlink_end_trans(struct btrfs_trans_handle *trans,
3061 struct btrfs_root *root)
3062{
3063 if (trans->block_rsv == &root->fs_info->global_block_rsv) {
Josef Bacik5a77d762011-11-01 14:32:23 -04003064 btrfs_block_rsv_release(root, trans->block_rsv,
3065 trans->bytes_reserved);
3066 trans->block_rsv = &root->fs_info->trans_block_rsv;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003067 BUG_ON(!root->fs_info->enospc_unlink);
3068 root->fs_info->enospc_unlink = 0;
3069 }
Josef Bacik7ad85bb2012-01-12 19:10:12 -05003070 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003071}
3072
Chris Mason39279cc2007-06-12 06:35:45 -04003073static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
3074{
Yan, Zhenga22285a2010-05-16 10:48:46 -04003075 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003076 struct btrfs_trans_handle *trans;
Josef Bacik7b128762008-07-24 12:17:14 -04003077 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04003078 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05003079 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003080
Yan, Zhenga22285a2010-05-16 10:48:46 -04003081 trans = __unlink_start_trans(dir, dentry);
3082 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003083 return PTR_ERR(trans);
Chris Mason5f39d392007-10-15 16:14:19 -04003084
Chris Mason12fcfd22009-03-24 10:24:20 -04003085 btrfs_record_unlink_dir(trans, dir, dentry->d_inode, 0);
3086
Chris Masone02119d2008-09-05 16:13:11 -04003087 ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
3088 dentry->d_name.name, dentry->d_name.len);
Tsutomu Itohb5324022011-07-19 07:27:20 +00003089 if (ret)
3090 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003091
Yan, Zhenga22285a2010-05-16 10:48:46 -04003092 if (inode->i_nlink == 0) {
Josef Bacik7b128762008-07-24 12:17:14 -04003093 ret = btrfs_orphan_add(trans, inode);
Tsutomu Itohb5324022011-07-19 07:27:20 +00003094 if (ret)
3095 goto out;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003096 }
Josef Bacik7b128762008-07-24 12:17:14 -04003097
Tsutomu Itohb5324022011-07-19 07:27:20 +00003098out:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003099 nr = trans->blocks_used;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003100 __unlink_end_trans(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003101 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003102 return ret;
3103}
3104
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003105int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
3106 struct btrfs_root *root,
3107 struct inode *dir, u64 objectid,
3108 const char *name, int name_len)
3109{
3110 struct btrfs_path *path;
3111 struct extent_buffer *leaf;
3112 struct btrfs_dir_item *di;
3113 struct btrfs_key key;
3114 u64 index;
3115 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08003116 u64 dir_ino = btrfs_ino(dir);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003117
3118 path = btrfs_alloc_path();
3119 if (!path)
3120 return -ENOMEM;
3121
Li Zefan33345d012011-04-20 10:31:50 +08003122 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003123 name, name_len, -1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003124 if (IS_ERR_OR_NULL(di)) {
3125 if (!di)
3126 ret = -ENOENT;
3127 else
3128 ret = PTR_ERR(di);
3129 goto out;
3130 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003131
3132 leaf = path->nodes[0];
3133 btrfs_dir_item_key_to_cpu(leaf, di, &key);
3134 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
3135 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003136 if (ret) {
3137 btrfs_abort_transaction(trans, root, ret);
3138 goto out;
3139 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003140 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003141
3142 ret = btrfs_del_root_ref(trans, root->fs_info->tree_root,
3143 objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08003144 dir_ino, &index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003145 if (ret < 0) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003146 if (ret != -ENOENT) {
3147 btrfs_abort_transaction(trans, root, ret);
3148 goto out;
3149 }
Li Zefan33345d012011-04-20 10:31:50 +08003150 di = btrfs_search_dir_index_item(root, path, dir_ino,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003151 name, name_len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003152 if (IS_ERR_OR_NULL(di)) {
3153 if (!di)
3154 ret = -ENOENT;
3155 else
3156 ret = PTR_ERR(di);
3157 btrfs_abort_transaction(trans, root, ret);
3158 goto out;
3159 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003160
3161 leaf = path->nodes[0];
3162 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02003163 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003164 index = key.offset;
3165 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003166 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003167
Miao Xie16cdcec2011-04-22 18:12:22 +08003168 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003169 if (ret) {
3170 btrfs_abort_transaction(trans, root, ret);
3171 goto out;
3172 }
Miao Xie16cdcec2011-04-22 18:12:22 +08003173
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003174 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04003175 inode_inc_iversion(dir);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003176 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
3177 ret = btrfs_update_inode(trans, root, dir);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003178 if (ret)
3179 btrfs_abort_transaction(trans, root, ret);
3180out:
Josef Bacik71d7aed2011-06-14 14:24:32 -04003181 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003182 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003183}
3184
Chris Mason39279cc2007-06-12 06:35:45 -04003185static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
3186{
3187 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05003188 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003189 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003190 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -05003191 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003192
Chris Mason3394e162008-11-17 20:42:26 -05003193 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE ||
Li Zefan33345d012011-04-20 10:31:50 +08003194 btrfs_ino(inode) == BTRFS_FIRST_FREE_OBJECTID)
Yan134d4512007-10-25 15:49:25 -04003195 return -ENOTEMPTY;
3196
Yan, Zhenga22285a2010-05-16 10:48:46 -04003197 trans = __unlink_start_trans(dir, dentry);
3198 if (IS_ERR(trans))
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003199 return PTR_ERR(trans);
Josef Bacik5df6a9f2009-11-10 21:23:48 -05003200
Li Zefan33345d012011-04-20 10:31:50 +08003201 if (unlikely(btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003202 err = btrfs_unlink_subvol(trans, root, dir,
3203 BTRFS_I(inode)->location.objectid,
3204 dentry->d_name.name,
3205 dentry->d_name.len);
3206 goto out;
3207 }
3208
Josef Bacik7b128762008-07-24 12:17:14 -04003209 err = btrfs_orphan_add(trans, inode);
3210 if (err)
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003211 goto out;
Josef Bacik7b128762008-07-24 12:17:14 -04003212
Chris Mason39279cc2007-06-12 06:35:45 -04003213 /* now the directory is empty */
Chris Masone02119d2008-09-05 16:13:11 -04003214 err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
3215 dentry->d_name.name, dentry->d_name.len);
Chris Masond3977122009-01-05 21:25:51 -05003216 if (!err)
Chris Masondbe674a2008-07-17 12:54:05 -04003217 btrfs_i_size_write(inode, 0);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003218out:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003219 nr = trans->blocks_used;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003220 __unlink_end_trans(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003221 btrfs_btree_balance_dirty(root, nr);
Chris Mason39544012007-12-12 14:38:19 -05003222
Chris Mason39279cc2007-06-12 06:35:45 -04003223 return err;
3224}
3225
Chris Mason323ac952008-10-01 19:05:46 -04003226/*
Chris Mason39279cc2007-06-12 06:35:45 -04003227 * this can truncate away extent items, csum items and directory items.
3228 * It starts at a high offset and removes keys until it can't find
Chris Masond352ac62008-09-29 15:18:18 -04003229 * any higher than new_size
Chris Mason39279cc2007-06-12 06:35:45 -04003230 *
3231 * csum items that cross the new i_size are truncated to the new size
3232 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04003233 *
3234 * min_type is the minimum key type to truncate down to. If set to 0, this
3235 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04003236 */
Yan, Zheng80825102009-11-12 09:35:36 +00003237int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
3238 struct btrfs_root *root,
3239 struct inode *inode,
3240 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003241{
Chris Mason39279cc2007-06-12 06:35:45 -04003242 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04003243 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04003244 struct btrfs_file_extent_item *fi;
Yan, Zheng80825102009-11-12 09:35:36 +00003245 struct btrfs_key key;
3246 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04003247 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04003248 u64 extent_num_bytes = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003249 u64 extent_offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003250 u64 item_end = 0;
Yan, Zheng80825102009-11-12 09:35:36 +00003251 u64 mask = root->sectorsize - 1;
3252 u32 found_type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -04003253 int found_extent;
3254 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05003255 int pending_del_nr = 0;
3256 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04003257 int extent_type = -1;
Yan, Zheng80825102009-11-12 09:35:36 +00003258 int ret;
3259 int err = 0;
Li Zefan33345d012011-04-20 10:31:50 +08003260 u64 ino = btrfs_ino(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003261
3262 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04003263
Mark Fasheh0eb0e192011-07-12 16:44:10 -07003264 path = btrfs_alloc_path();
3265 if (!path)
3266 return -ENOMEM;
3267 path->reada = -1;
3268
Josef Bacik0af3d002010-06-21 14:48:16 -04003269 if (root->ref_cows || root == root->fs_info->tree_root)
Zheng Yan5b21f2e2008-09-26 10:05:38 -04003270 btrfs_drop_extent_cache(inode, new_size & (~mask), (u64)-1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003271
Miao Xie16cdcec2011-04-22 18:12:22 +08003272 /*
3273 * This function is also used to drop the items in the log tree before
3274 * we relog the inode, so if root != BTRFS_I(inode)->root, it means
3275 * it is used to drop the loged items. So we shouldn't kill the delayed
3276 * items.
3277 */
3278 if (min_type == 0 && root == BTRFS_I(inode)->root)
3279 btrfs_kill_delayed_inode_items(inode);
3280
Li Zefan33345d012011-04-20 10:31:50 +08003281 key.objectid = ino;
Chris Mason39279cc2007-06-12 06:35:45 -04003282 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04003283 key.type = (u8)-1;
3284
Chris Mason85e21ba2008-01-29 15:11:36 -05003285search_again:
Chris Masonb9473432009-03-13 11:00:37 -04003286 path->leave_spinning = 1;
Chris Mason85e21ba2008-01-29 15:11:36 -05003287 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Yan, Zheng80825102009-11-12 09:35:36 +00003288 if (ret < 0) {
3289 err = ret;
3290 goto out;
3291 }
Chris Masond3977122009-01-05 21:25:51 -05003292
Chris Mason85e21ba2008-01-29 15:11:36 -05003293 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003294 /* there are no items in the tree for us to truncate, we're
3295 * done
3296 */
Yan, Zheng80825102009-11-12 09:35:36 +00003297 if (path->slots[0] == 0)
3298 goto out;
Chris Mason85e21ba2008-01-29 15:11:36 -05003299 path->slots[0]--;
3300 }
3301
Chris Masond3977122009-01-05 21:25:51 -05003302 while (1) {
Chris Mason39279cc2007-06-12 06:35:45 -04003303 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04003304 leaf = path->nodes[0];
3305 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3306 found_type = btrfs_key_type(&found_key);
Chris Mason39279cc2007-06-12 06:35:45 -04003307
Li Zefan33345d012011-04-20 10:31:50 +08003308 if (found_key.objectid != ino)
Chris Mason39279cc2007-06-12 06:35:45 -04003309 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003310
Chris Mason85e21ba2008-01-29 15:11:36 -05003311 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04003312 break;
3313
Chris Mason5f39d392007-10-15 16:14:19 -04003314 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04003315 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04003316 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04003317 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04003318 extent_type = btrfs_file_extent_type(leaf, fi);
3319 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04003320 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04003321 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04003322 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason179e29e2007-11-01 11:28:41 -04003323 item_end += btrfs_file_extent_inline_len(leaf,
Chris Masonc8b97812008-10-29 14:49:59 -04003324 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003325 }
Yan008630c2007-11-07 13:31:09 -05003326 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04003327 }
Yan, Zheng80825102009-11-12 09:35:36 +00003328 if (found_type > min_type) {
Chris Mason39279cc2007-06-12 06:35:45 -04003329 del_item = 1;
Yan, Zheng80825102009-11-12 09:35:36 +00003330 } else {
3331 if (item_end < new_size)
3332 break;
3333 if (found_key.offset >= new_size)
3334 del_item = 1;
3335 else
3336 del_item = 0;
3337 }
Chris Mason39279cc2007-06-12 06:35:45 -04003338 found_extent = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003339 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04003340 if (found_type != BTRFS_EXTENT_DATA_KEY)
3341 goto delete;
3342
3343 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04003344 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04003345 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Miao Xief70a9a6b2012-01-12 19:10:12 -05003346 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -04003347 u64 orig_num_bytes =
3348 btrfs_file_extent_num_bytes(leaf, fi);
Chris Masone02119d2008-09-05 16:13:11 -04003349 extent_num_bytes = new_size -
Chris Mason5f39d392007-10-15 16:14:19 -04003350 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -05003351 extent_num_bytes = extent_num_bytes &
3352 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04003353 btrfs_set_file_extent_num_bytes(leaf, fi,
3354 extent_num_bytes);
3355 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05003356 extent_num_bytes);
Chris Masone02119d2008-09-05 16:13:11 -04003357 if (root->ref_cows && extent_start != 0)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003358 inode_sub_bytes(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04003359 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003360 } else {
Chris Masondb945352007-10-15 16:15:53 -04003361 extent_num_bytes =
3362 btrfs_file_extent_disk_num_bytes(leaf,
3363 fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003364 extent_offset = found_key.offset -
3365 btrfs_file_extent_offset(leaf, fi);
3366
Chris Mason39279cc2007-06-12 06:35:45 -04003367 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05003368 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04003369 if (extent_start != 0) {
3370 found_extent = 1;
Chris Masone02119d2008-09-05 16:13:11 -04003371 if (root->ref_cows)
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003372 inode_sub_bytes(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04003373 }
3374 }
Chris Mason90692182008-02-08 13:49:28 -05003375 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003376 /*
3377 * we can't truncate inline items that have had
3378 * special encodings
3379 */
3380 if (!del_item &&
3381 btrfs_file_extent_compression(leaf, fi) == 0 &&
3382 btrfs_file_extent_encryption(leaf, fi) == 0 &&
3383 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003384 u32 size = new_size - found_key.offset;
3385
3386 if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003387 inode_sub_bytes(inode, item_end + 1 -
3388 new_size);
Chris Masone02119d2008-09-05 16:13:11 -04003389 }
3390 size =
3391 btrfs_file_extent_calc_inline_size(size);
Jeff Mahoney143bede2012-03-01 14:56:26 +01003392 btrfs_truncate_item(trans, root, path,
3393 size, 1);
Chris Masone02119d2008-09-05 16:13:11 -04003394 } else if (root->ref_cows) {
Yan Zhenga76a3cd2008-10-09 11:46:29 -04003395 inode_sub_bytes(inode, item_end + 1 -
3396 found_key.offset);
Chris Mason90692182008-02-08 13:49:28 -05003397 }
Chris Mason39279cc2007-06-12 06:35:45 -04003398 }
Chris Mason179e29e2007-11-01 11:28:41 -04003399delete:
Chris Mason39279cc2007-06-12 06:35:45 -04003400 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05003401 if (!pending_del_nr) {
3402 /* no pending yet, add ourselves */
3403 pending_del_slot = path->slots[0];
3404 pending_del_nr = 1;
3405 } else if (pending_del_nr &&
3406 path->slots[0] + 1 == pending_del_slot) {
3407 /* hop on the pending chunk */
3408 pending_del_nr++;
3409 pending_del_slot = path->slots[0];
3410 } else {
Chris Masond3977122009-01-05 21:25:51 -05003411 BUG();
Chris Mason85e21ba2008-01-29 15:11:36 -05003412 }
Chris Mason39279cc2007-06-12 06:35:45 -04003413 } else {
3414 break;
3415 }
Josef Bacik0af3d002010-06-21 14:48:16 -04003416 if (found_extent && (root->ref_cows ||
3417 root == root->fs_info->tree_root)) {
Chris Masonb9473432009-03-13 11:00:37 -04003418 btrfs_set_path_blocking(path);
Chris Mason39279cc2007-06-12 06:35:45 -04003419 ret = btrfs_free_extent(trans, root, extent_start,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003420 extent_num_bytes, 0,
3421 btrfs_header_owner(leaf),
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003422 ino, extent_offset, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04003423 BUG_ON(ret);
3424 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003425
Yan, Zheng80825102009-11-12 09:35:36 +00003426 if (found_type == BTRFS_INODE_ITEM_KEY)
3427 break;
3428
3429 if (path->slots[0] == 0 ||
3430 path->slots[0] != pending_del_slot) {
Li Zefan82d59022011-04-20 10:33:24 +08003431 if (root->ref_cows &&
3432 BTRFS_I(inode)->location.objectid !=
3433 BTRFS_FREE_INO_OBJECTID) {
Yan, Zheng80825102009-11-12 09:35:36 +00003434 err = -EAGAIN;
3435 goto out;
3436 }
3437 if (pending_del_nr) {
3438 ret = btrfs_del_items(trans, root, path,
3439 pending_del_slot,
3440 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003441 if (ret) {
3442 btrfs_abort_transaction(trans,
3443 root, ret);
3444 goto error;
3445 }
Yan, Zheng80825102009-11-12 09:35:36 +00003446 pending_del_nr = 0;
3447 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003448 btrfs_release_path(path);
Chris Mason85e21ba2008-01-29 15:11:36 -05003449 goto search_again;
Yan, Zheng80825102009-11-12 09:35:36 +00003450 } else {
3451 path->slots[0]--;
Chris Mason85e21ba2008-01-29 15:11:36 -05003452 }
Chris Mason39279cc2007-06-12 06:35:45 -04003453 }
Yan, Zheng80825102009-11-12 09:35:36 +00003454out:
Chris Mason85e21ba2008-01-29 15:11:36 -05003455 if (pending_del_nr) {
3456 ret = btrfs_del_items(trans, root, path, pending_del_slot,
3457 pending_del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003458 if (ret)
3459 btrfs_abort_transaction(trans, root, ret);
Chris Mason85e21ba2008-01-29 15:11:36 -05003460 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003461error:
Chris Mason39279cc2007-06-12 06:35:45 -04003462 btrfs_free_path(path);
Yan, Zheng80825102009-11-12 09:35:36 +00003463 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003464}
3465
Chris Masona52d9a82007-08-27 16:49:44 -04003466/*
3467 * taken from block_truncate_page, but does cow as it zeros out
3468 * any bytes left in the last page in the file.
3469 */
3470static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
3471{
3472 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -04003473 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003474 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
3475 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003476 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003477 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04003478 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04003479 pgoff_t index = from >> PAGE_CACHE_SHIFT;
3480 unsigned offset = from & (PAGE_CACHE_SIZE-1);
3481 struct page *page;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04003482 gfp_t mask = btrfs_alloc_write_mask(mapping);
Chris Masona52d9a82007-08-27 16:49:44 -04003483 int ret = 0;
3484 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003485 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04003486
3487 if ((offset & (blocksize - 1)) == 0)
3488 goto out;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003489 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003490 if (ret)
3491 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04003492
3493 ret = -ENOMEM;
Chris Mason211c17f2008-05-15 09:13:45 -04003494again:
Josef Bacik3b16a4e2011-09-21 15:05:58 -04003495 page = find_or_create_page(mapping, index, mask);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003496 if (!page) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003497 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Masona52d9a82007-08-27 16:49:44 -04003498 goto out;
Josef Bacik5d5e1032009-10-13 16:46:49 -04003499 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003500
3501 page_start = page_offset(page);
3502 page_end = page_start + PAGE_CACHE_SIZE - 1;
3503
Chris Masona52d9a82007-08-27 16:49:44 -04003504 if (!PageUptodate(page)) {
3505 ret = btrfs_readpage(NULL, page);
3506 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04003507 if (page->mapping != mapping) {
3508 unlock_page(page);
3509 page_cache_release(page);
3510 goto again;
3511 }
Chris Masona52d9a82007-08-27 16:49:44 -04003512 if (!PageUptodate(page)) {
3513 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04003514 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04003515 }
3516 }
Chris Mason211c17f2008-05-15 09:13:45 -04003517 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003518
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003519 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003520 set_page_extent_mapped(page);
3521
3522 ordered = btrfs_lookup_ordered_extent(inode, page_start);
3523 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003524 unlock_extent_cached(io_tree, page_start, page_end,
3525 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003526 unlock_page(page);
3527 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04003528 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003529 btrfs_put_ordered_extent(ordered);
3530 goto again;
3531 }
3532
Josef Bacik2ac55d42010-02-03 19:33:23 +00003533 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Josef Bacik5d5e1032009-10-13 16:46:49 -04003534 EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003535 0, 0, &cached_state, GFP_NOFS);
Josef Bacik5d5e1032009-10-13 16:46:49 -04003536
Josef Bacik2ac55d42010-02-03 19:33:23 +00003537 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
3538 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003539 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00003540 unlock_extent_cached(io_tree, page_start, page_end,
3541 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003542 goto out_unlock;
3543 }
3544
Chris Masone6dcd2d2008-07-17 12:53:50 -04003545 ret = 0;
3546 if (offset != PAGE_CACHE_SIZE) {
3547 kaddr = kmap(page);
3548 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
3549 flush_dcache_page(page);
3550 kunmap(page);
3551 }
Chris Mason247e7432008-07-17 12:53:51 -04003552 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003553 set_page_dirty(page);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003554 unlock_extent_cached(io_tree, page_start, page_end, &cached_state,
3555 GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04003556
Chris Mason89642222008-07-24 09:41:53 -04003557out_unlock:
Josef Bacik5d5e1032009-10-13 16:46:49 -04003558 if (ret)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003559 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason39279cc2007-06-12 06:35:45 -04003560 unlock_page(page);
3561 page_cache_release(page);
3562out:
3563 return ret;
3564}
3565
Josef Bacik695a0d02011-03-04 15:46:53 -05003566/*
3567 * This function puts in dummy file extents for the area we're creating a hole
3568 * for. So if we are truncating this file to a larger size we need to insert
3569 * these file extents so that btrfs_get_extent will return a EXTENT_MAP_HOLE for
3570 * the range between oldsize and size
3571 */
Josef Bacika41ad392011-01-31 15:30:16 -05003572int btrfs_cont_expand(struct inode *inode, loff_t oldsize, loff_t size)
Yan Zheng9036c102008-10-30 14:19:41 -04003573{
3574 struct btrfs_trans_handle *trans;
3575 struct btrfs_root *root = BTRFS_I(inode)->root;
3576 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003577 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003578 struct extent_state *cached_state = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04003579 u64 mask = root->sectorsize - 1;
Josef Bacika41ad392011-01-31 15:30:16 -05003580 u64 hole_start = (oldsize + mask) & ~mask;
Yan Zheng9036c102008-10-30 14:19:41 -04003581 u64 block_end = (size + mask) & ~mask;
3582 u64 last_byte;
3583 u64 cur_offset;
3584 u64 hole_size;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003585 int err = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003586
3587 if (size <= hole_start)
3588 return 0;
3589
Yan Zheng9036c102008-10-30 14:19:41 -04003590 while (1) {
3591 struct btrfs_ordered_extent *ordered;
3592 btrfs_wait_ordered_range(inode, hole_start,
3593 block_end - hole_start);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003594 lock_extent_bits(io_tree, hole_start, block_end - 1, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003595 &cached_state);
Yan Zheng9036c102008-10-30 14:19:41 -04003596 ordered = btrfs_lookup_ordered_extent(inode, hole_start);
3597 if (!ordered)
3598 break;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003599 unlock_extent_cached(io_tree, hole_start, block_end - 1,
3600 &cached_state, GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003601 btrfs_put_ordered_extent(ordered);
3602 }
3603
Yan Zheng9036c102008-10-30 14:19:41 -04003604 cur_offset = hole_start;
3605 while (1) {
3606 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
3607 block_end - cur_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003608 if (IS_ERR(em)) {
3609 err = PTR_ERR(em);
3610 break;
3611 }
Yan Zheng9036c102008-10-30 14:19:41 -04003612 last_byte = min(extent_map_end(em), block_end);
3613 last_byte = (last_byte + mask) & ~mask;
Yan, Zheng80825102009-11-12 09:35:36 +00003614 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
Chris Mason771ed682008-11-06 22:02:51 -05003615 u64 hint_byte = 0;
Yan Zheng9036c102008-10-30 14:19:41 -04003616 hole_size = last_byte - cur_offset;
Yan, Zheng80825102009-11-12 09:35:36 +00003617
Miao Xie36423202011-12-14 20:12:02 -05003618 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003619 if (IS_ERR(trans)) {
3620 err = PTR_ERR(trans);
Chris Mason771ed682008-11-06 22:02:51 -05003621 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003622 }
Yan, Zheng80825102009-11-12 09:35:36 +00003623
3624 err = btrfs_drop_extents(trans, inode, cur_offset,
3625 cur_offset + hole_size,
3626 &hint_byte, 1);
Miao Xie5b397372011-09-11 10:52:24 -04003627 if (err) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003628 btrfs_abort_transaction(trans, root, err);
Miao Xie5b397372011-09-11 10:52:24 -04003629 btrfs_end_transaction(trans, root);
Josef Bacik3893e332011-01-31 16:03:11 -05003630 break;
Miao Xie5b397372011-09-11 10:52:24 -04003631 }
Josef Bacik9ed74f22009-09-11 16:12:44 -04003632
Yan Zheng9036c102008-10-30 14:19:41 -04003633 err = btrfs_insert_file_extent(trans, root,
Li Zefan33345d012011-04-20 10:31:50 +08003634 btrfs_ino(inode), cur_offset, 0,
Yan Zheng9036c102008-10-30 14:19:41 -04003635 0, hole_size, 0, hole_size,
3636 0, 0, 0);
Miao Xie5b397372011-09-11 10:52:24 -04003637 if (err) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003638 btrfs_abort_transaction(trans, root, err);
Miao Xie5b397372011-09-11 10:52:24 -04003639 btrfs_end_transaction(trans, root);
Josef Bacik3893e332011-01-31 16:03:11 -05003640 break;
Miao Xie5b397372011-09-11 10:52:24 -04003641 }
Yan, Zheng80825102009-11-12 09:35:36 +00003642
Yan Zheng9036c102008-10-30 14:19:41 -04003643 btrfs_drop_extent_cache(inode, hole_start,
3644 last_byte - 1, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003645
Miao Xie36423202011-12-14 20:12:02 -05003646 btrfs_update_inode(trans, root, inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003647 btrfs_end_transaction(trans, root);
Yan Zheng9036c102008-10-30 14:19:41 -04003648 }
3649 free_extent_map(em);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003650 em = NULL;
Yan Zheng9036c102008-10-30 14:19:41 -04003651 cur_offset = last_byte;
Yan, Zheng80825102009-11-12 09:35:36 +00003652 if (cur_offset >= block_end)
Yan Zheng9036c102008-10-30 14:19:41 -04003653 break;
3654 }
3655
Yan, Zhenga22285a2010-05-16 10:48:46 -04003656 free_extent_map(em);
Josef Bacik2ac55d42010-02-03 19:33:23 +00003657 unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state,
3658 GFP_NOFS);
Yan Zheng9036c102008-10-30 14:19:41 -04003659 return err;
3660}
3661
Josef Bacika41ad392011-01-31 15:30:16 -05003662static int btrfs_setsize(struct inode *inode, loff_t newsize)
Yan, Zheng80825102009-11-12 09:35:36 +00003663{
Miao Xief4a2f4c2011-12-14 20:12:01 -05003664 struct btrfs_root *root = BTRFS_I(inode)->root;
3665 struct btrfs_trans_handle *trans;
Josef Bacika41ad392011-01-31 15:30:16 -05003666 loff_t oldsize = i_size_read(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003667 int ret;
3668
Josef Bacika41ad392011-01-31 15:30:16 -05003669 if (newsize == oldsize)
Yan, Zheng80825102009-11-12 09:35:36 +00003670 return 0;
3671
Josef Bacika41ad392011-01-31 15:30:16 -05003672 if (newsize > oldsize) {
Josef Bacika41ad392011-01-31 15:30:16 -05003673 truncate_pagecache(inode, oldsize, newsize);
3674 ret = btrfs_cont_expand(inode, oldsize, newsize);
Miao Xief4a2f4c2011-12-14 20:12:01 -05003675 if (ret)
Yan, Zheng80825102009-11-12 09:35:36 +00003676 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00003677
Miao Xief4a2f4c2011-12-14 20:12:01 -05003678 trans = btrfs_start_transaction(root, 1);
3679 if (IS_ERR(trans))
3680 return PTR_ERR(trans);
3681
3682 i_size_write(inode, newsize);
3683 btrfs_ordered_update_i_size(inode, i_size_read(inode), NULL);
3684 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik7ad85bb2012-01-12 19:10:12 -05003685 btrfs_end_transaction(trans, root);
Josef Bacika41ad392011-01-31 15:30:16 -05003686 } else {
Yan, Zheng80825102009-11-12 09:35:36 +00003687
Josef Bacika41ad392011-01-31 15:30:16 -05003688 /*
3689 * We're truncating a file that used to have good data down to
3690 * zero. Make sure it gets into the ordered flush list so that
3691 * any new writes get down to disk quickly.
3692 */
3693 if (newsize == 0)
Josef Bacik72ac3c02012-05-23 14:13:11 -04003694 set_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
3695 &BTRFS_I(inode)->runtime_flags);
Yan, Zheng80825102009-11-12 09:35:36 +00003696
Josef Bacika41ad392011-01-31 15:30:16 -05003697 /* we don't support swapfiles, so vmtruncate shouldn't fail */
3698 truncate_setsize(inode, newsize);
3699 ret = btrfs_truncate(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003700 }
3701
Josef Bacika41ad392011-01-31 15:30:16 -05003702 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00003703}
3704
Chris Mason39279cc2007-06-12 06:35:45 -04003705static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
3706{
3707 struct inode *inode = dentry->d_inode;
Li Zefanb83cc962010-12-20 16:04:08 +08003708 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003709 int err;
3710
Li Zefanb83cc962010-12-20 16:04:08 +08003711 if (btrfs_root_readonly(root))
3712 return -EROFS;
3713
Chris Mason39279cc2007-06-12 06:35:45 -04003714 err = inode_change_ok(inode, attr);
3715 if (err)
3716 return err;
3717
Chris Mason5a3f23d2009-03-31 13:27:11 -04003718 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
Josef Bacika41ad392011-01-31 15:30:16 -05003719 err = btrfs_setsize(inode, attr->ia_size);
Yan, Zheng80825102009-11-12 09:35:36 +00003720 if (err)
3721 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003722 }
Yan Zheng9036c102008-10-30 14:19:41 -04003723
Christoph Hellwig10257742010-06-04 11:30:02 +02003724 if (attr->ia_valid) {
3725 setattr_copy(inode, attr);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04003726 inode_inc_iversion(inode);
Josef Bacik22c44fe2011-11-30 10:45:38 -05003727 err = btrfs_dirty_inode(inode);
Josef Bacik33268ea2008-07-24 12:16:36 -04003728
Josef Bacik22c44fe2011-11-30 10:45:38 -05003729 if (!err && attr->ia_valid & ATTR_MODE)
Christoph Hellwig10257742010-06-04 11:30:02 +02003730 err = btrfs_acl_chmod(inode);
3731 }
3732
Chris Mason39279cc2007-06-12 06:35:45 -04003733 return err;
3734}
Chris Mason61295eb2008-01-14 16:24:38 -05003735
Al Virobd555972010-06-07 11:35:40 -04003736void btrfs_evict_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04003737{
3738 struct btrfs_trans_handle *trans;
3739 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik726c35f2011-09-26 15:46:06 -04003740 struct btrfs_block_rsv *rsv, *global_rsv;
Josef Bacik07127182011-08-19 10:29:59 -04003741 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003742 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04003743 int ret;
3744
liubo1abe9b82011-03-24 11:18:59 +00003745 trace_btrfs_inode_evict(inode);
3746
Chris Mason39279cc2007-06-12 06:35:45 -04003747 truncate_inode_pages(&inode->i_data, 0);
Josef Bacik0af3d002010-06-21 14:48:16 -04003748 if (inode->i_nlink && (btrfs_root_refs(&root->root_item) != 0 ||
Liu Bo83eea1f2012-07-10 05:28:39 -06003749 btrfs_is_free_space_inode(inode)))
Al Virobd555972010-06-07 11:35:40 -04003750 goto no_delete;
3751
Chris Mason39279cc2007-06-12 06:35:45 -04003752 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04003753 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003754 goto no_delete;
3755 }
Al Virobd555972010-06-07 11:35:40 -04003756 /* do we really want it for ->i_nlink > 0 and zero btrfs_root_refs? */
Chris Mason4a096752008-07-21 10:29:44 -04003757 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04003758
Yan, Zhengc71bf092009-11-12 09:34:40 +00003759 if (root->fs_info->log_root_recovering) {
Liu Bo6bf02312012-06-25 21:59:09 -06003760 BUG_ON(test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
Josef Bacik8a35d952012-05-23 14:26:42 -04003761 &BTRFS_I(inode)->runtime_flags));
Yan, Zhengc71bf092009-11-12 09:34:40 +00003762 goto no_delete;
3763 }
3764
Yan, Zheng76dda932009-09-21 16:00:26 -04003765 if (inode->i_nlink > 0) {
3766 BUG_ON(btrfs_root_refs(&root->root_item) != 0);
3767 goto no_delete;
3768 }
3769
Josef Bacik4289a662011-08-05 13:22:24 -04003770 rsv = btrfs_alloc_block_rsv(root);
3771 if (!rsv) {
3772 btrfs_orphan_del(NULL, inode);
3773 goto no_delete;
3774 }
Josef Bacik4a338542011-08-29 11:01:31 -04003775 rsv->size = min_size;
Josef Bacik726c35f2011-09-26 15:46:06 -04003776 global_rsv = &root->fs_info->global_block_rsv;
Josef Bacik4289a662011-08-05 13:22:24 -04003777
Chris Masondbe674a2008-07-17 12:54:05 -04003778 btrfs_i_size_write(inode, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003779
Josef Bacik4289a662011-08-05 13:22:24 -04003780 /*
3781 * This is a bit simpler than btrfs_truncate since
3782 *
3783 * 1) We've already reserved our space for our orphan item in the
3784 * unlink.
3785 * 2) We're going to delete the inode item, so we don't need to update
3786 * it at all.
3787 *
3788 * So we just need to reserve some slack space in case we add bytes when
3789 * doing the truncate.
3790 */
Yan, Zheng80825102009-11-12 09:35:36 +00003791 while (1) {
Miao Xieaa38a712011-11-18 17:43:00 +08003792 ret = btrfs_block_rsv_refill_noflush(root, rsv, min_size);
Yan, Zheng80825102009-11-12 09:35:36 +00003793
Josef Bacik726c35f2011-09-26 15:46:06 -04003794 /*
3795 * Try and steal from the global reserve since we will
3796 * likely not use this space anyway, we want to try as
3797 * hard as possible to get this to work.
3798 */
3799 if (ret)
3800 ret = btrfs_block_rsv_migrate(global_rsv, rsv, min_size);
3801
Yan, Zhengd68fc572010-05-16 10:49:58 -04003802 if (ret) {
Josef Bacik4289a662011-08-05 13:22:24 -04003803 printk(KERN_WARNING "Could not get space for a "
Josef Bacik482e6dc2011-08-19 10:31:56 -04003804 "delete, will truncate on mount %d\n", ret);
Josef Bacik4289a662011-08-05 13:22:24 -04003805 btrfs_orphan_del(NULL, inode);
3806 btrfs_free_block_rsv(root, rsv);
3807 goto no_delete;
Yan, Zhengd68fc572010-05-16 10:49:58 -04003808 }
3809
Josef Bacik4289a662011-08-05 13:22:24 -04003810 trans = btrfs_start_transaction(root, 0);
3811 if (IS_ERR(trans)) {
3812 btrfs_orphan_del(NULL, inode);
3813 btrfs_free_block_rsv(root, rsv);
3814 goto no_delete;
3815 }
3816
3817 trans->block_rsv = rsv;
3818
Yan, Zhengd68fc572010-05-16 10:49:58 -04003819 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
Yan, Zheng80825102009-11-12 09:35:36 +00003820 if (ret != -EAGAIN)
3821 break;
3822
3823 nr = trans->blocks_used;
3824 btrfs_end_transaction(trans, root);
3825 trans = NULL;
3826 btrfs_btree_balance_dirty(root, nr);
Josef Bacik7b128762008-07-24 12:17:14 -04003827 }
3828
Josef Bacik4289a662011-08-05 13:22:24 -04003829 btrfs_free_block_rsv(root, rsv);
3830
Yan, Zheng80825102009-11-12 09:35:36 +00003831 if (ret == 0) {
Josef Bacik4289a662011-08-05 13:22:24 -04003832 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00003833 ret = btrfs_orphan_del(trans, inode);
3834 BUG_ON(ret);
3835 }
Chris Mason85e21ba2008-01-29 15:11:36 -05003836
Josef Bacik4289a662011-08-05 13:22:24 -04003837 trans->block_rsv = &root->fs_info->trans_block_rsv;
Li Zefan581bb052011-04-20 10:06:11 +08003838 if (!(root == root->fs_info->tree_root ||
3839 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID))
Li Zefan33345d012011-04-20 10:31:50 +08003840 btrfs_return_ino(root, btrfs_ino(inode));
Li Zefan581bb052011-04-20 10:06:11 +08003841
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003842 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04003843 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003844 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003845no_delete:
Jan Karadbd57682012-05-03 14:48:02 +02003846 clear_inode(inode);
Yan, Zheng80825102009-11-12 09:35:36 +00003847 return;
Chris Mason39279cc2007-06-12 06:35:45 -04003848}
3849
3850/*
3851 * this returns the key found in the dir entry in the location pointer.
3852 * If no dir entries were found, location->objectid is 0.
3853 */
3854static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
3855 struct btrfs_key *location)
3856{
3857 const char *name = dentry->d_name.name;
3858 int namelen = dentry->d_name.len;
3859 struct btrfs_dir_item *di;
3860 struct btrfs_path *path;
3861 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04003862 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003863
3864 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07003865 if (!path)
3866 return -ENOMEM;
Chris Mason39544012007-12-12 14:38:19 -05003867
Li Zefan33345d012011-04-20 10:31:50 +08003868 di = btrfs_lookup_dir_item(NULL, root, path, btrfs_ino(dir), name,
Chris Mason39279cc2007-06-12 06:35:45 -04003869 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04003870 if (IS_ERR(di))
3871 ret = PTR_ERR(di);
Chris Masond3977122009-01-05 21:25:51 -05003872
David Sterbac7040052011-04-19 18:00:01 +02003873 if (IS_ERR_OR_NULL(di))
Chris Mason39544012007-12-12 14:38:19 -05003874 goto out_err;
Chris Masond3977122009-01-05 21:25:51 -05003875
Chris Mason5f39d392007-10-15 16:14:19 -04003876 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04003877out:
Chris Mason39279cc2007-06-12 06:35:45 -04003878 btrfs_free_path(path);
3879 return ret;
Chris Mason39544012007-12-12 14:38:19 -05003880out_err:
3881 location->objectid = 0;
3882 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04003883}
3884
3885/*
3886 * when we hit a tree root in a directory, the btrfs part of the inode
3887 * needs to be changed to reflect the root directory of the tree root. This
3888 * is kind of like crossing a mount point.
3889 */
3890static int fixup_tree_root_location(struct btrfs_root *root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003891 struct inode *dir,
3892 struct dentry *dentry,
3893 struct btrfs_key *location,
3894 struct btrfs_root **sub_root)
Chris Mason39279cc2007-06-12 06:35:45 -04003895{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003896 struct btrfs_path *path;
3897 struct btrfs_root *new_root;
3898 struct btrfs_root_ref *ref;
3899 struct extent_buffer *leaf;
3900 int ret;
3901 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003902
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003903 path = btrfs_alloc_path();
3904 if (!path) {
3905 err = -ENOMEM;
3906 goto out;
3907 }
Chris Mason39279cc2007-06-12 06:35:45 -04003908
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003909 err = -ENOENT;
3910 ret = btrfs_find_root_ref(root->fs_info->tree_root, path,
3911 BTRFS_I(dir)->root->root_key.objectid,
3912 location->objectid);
3913 if (ret) {
3914 if (ret < 0)
3915 err = ret;
3916 goto out;
3917 }
Chris Mason39279cc2007-06-12 06:35:45 -04003918
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003919 leaf = path->nodes[0];
3920 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
Li Zefan33345d012011-04-20 10:31:50 +08003921 if (btrfs_root_ref_dirid(leaf, ref) != btrfs_ino(dir) ||
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003922 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
3923 goto out;
3924
3925 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
3926 (unsigned long)(ref + 1),
3927 dentry->d_name.len);
3928 if (ret)
3929 goto out;
3930
David Sterbab3b4aa72011-04-21 01:20:15 +02003931 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003932
3933 new_root = btrfs_read_fs_root_no_name(root->fs_info, location);
3934 if (IS_ERR(new_root)) {
3935 err = PTR_ERR(new_root);
3936 goto out;
3937 }
3938
3939 if (btrfs_root_refs(&new_root->root_item) == 0) {
3940 err = -ENOENT;
3941 goto out;
3942 }
3943
3944 *sub_root = new_root;
3945 location->objectid = btrfs_root_dirid(&new_root->root_item);
3946 location->type = BTRFS_INODE_ITEM_KEY;
Chris Mason39279cc2007-06-12 06:35:45 -04003947 location->offset = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04003948 err = 0;
3949out:
3950 btrfs_free_path(path);
3951 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04003952}
3953
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003954static void inode_tree_add(struct inode *inode)
3955{
3956 struct btrfs_root *root = BTRFS_I(inode)->root;
3957 struct btrfs_inode *entry;
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003958 struct rb_node **p;
3959 struct rb_node *parent;
Li Zefan33345d012011-04-20 10:31:50 +08003960 u64 ino = btrfs_ino(inode);
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003961again:
3962 p = &root->inode_tree.rb_node;
3963 parent = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003964
Al Viro1d3382cb2010-10-23 15:19:20 -04003965 if (inode_unhashed(inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04003966 return;
3967
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003968 spin_lock(&root->inode_lock);
3969 while (*p) {
3970 parent = *p;
3971 entry = rb_entry(parent, struct btrfs_inode, rb_node);
3972
Li Zefan33345d012011-04-20 10:31:50 +08003973 if (ino < btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003974 p = &parent->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08003975 else if (ino > btrfs_ino(&entry->vfs_inode))
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003976 p = &parent->rb_right;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003977 else {
3978 WARN_ON(!(entry->vfs_inode.i_state &
Al Viroa4ffdde2010-06-02 17:38:30 -04003979 (I_WILL_FREE | I_FREEING)));
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003980 rb_erase(parent, &root->inode_tree);
3981 RB_CLEAR_NODE(parent);
3982 spin_unlock(&root->inode_lock);
3983 goto again;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003984 }
3985 }
3986 rb_link_node(&BTRFS_I(inode)->rb_node, parent, p);
3987 rb_insert_color(&BTRFS_I(inode)->rb_node, &root->inode_tree);
3988 spin_unlock(&root->inode_lock);
3989}
3990
3991static void inode_tree_del(struct inode *inode)
3992{
3993 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -04003994 int empty = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003995
From: Nick Piggin03e860b2009-08-21 10:09:44 +02003996 spin_lock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003997 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003998 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003999 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
Yan, Zheng76dda932009-09-21 16:00:26 -04004000 empty = RB_EMPTY_ROOT(&root->inode_tree);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004001 }
From: Nick Piggin03e860b2009-08-21 10:09:44 +02004002 spin_unlock(&root->inode_lock);
Yan, Zheng76dda932009-09-21 16:00:26 -04004003
Josef Bacik0af3d002010-06-21 14:48:16 -04004004 /*
4005 * Free space cache has inodes in the tree root, but the tree root has a
4006 * root_refs of 0, so this could end up dropping the tree root as a
4007 * snapshot, so we need the extra !root->fs_info->tree_root check to
4008 * make sure we don't drop it.
4009 */
4010 if (empty && btrfs_root_refs(&root->root_item) == 0 &&
4011 root != root->fs_info->tree_root) {
Yan, Zheng76dda932009-09-21 16:00:26 -04004012 synchronize_srcu(&root->fs_info->subvol_srcu);
4013 spin_lock(&root->inode_lock);
4014 empty = RB_EMPTY_ROOT(&root->inode_tree);
4015 spin_unlock(&root->inode_lock);
4016 if (empty)
4017 btrfs_add_dead_root(root);
4018 }
4019}
4020
Jeff Mahoney143bede2012-03-01 14:56:26 +01004021void btrfs_invalidate_inodes(struct btrfs_root *root)
Yan, Zheng76dda932009-09-21 16:00:26 -04004022{
4023 struct rb_node *node;
4024 struct rb_node *prev;
4025 struct btrfs_inode *entry;
4026 struct inode *inode;
4027 u64 objectid = 0;
4028
4029 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
4030
4031 spin_lock(&root->inode_lock);
4032again:
4033 node = root->inode_tree.rb_node;
4034 prev = NULL;
4035 while (node) {
4036 prev = node;
4037 entry = rb_entry(node, struct btrfs_inode, rb_node);
4038
Li Zefan33345d012011-04-20 10:31:50 +08004039 if (objectid < btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04004040 node = node->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08004041 else if (objectid > btrfs_ino(&entry->vfs_inode))
Yan, Zheng76dda932009-09-21 16:00:26 -04004042 node = node->rb_right;
4043 else
4044 break;
4045 }
4046 if (!node) {
4047 while (prev) {
4048 entry = rb_entry(prev, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08004049 if (objectid <= btrfs_ino(&entry->vfs_inode)) {
Yan, Zheng76dda932009-09-21 16:00:26 -04004050 node = prev;
4051 break;
4052 }
4053 prev = rb_next(prev);
4054 }
4055 }
4056 while (node) {
4057 entry = rb_entry(node, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08004058 objectid = btrfs_ino(&entry->vfs_inode) + 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04004059 inode = igrab(&entry->vfs_inode);
4060 if (inode) {
4061 spin_unlock(&root->inode_lock);
4062 if (atomic_read(&inode->i_count) > 1)
4063 d_prune_aliases(inode);
4064 /*
Al Viro45321ac2010-06-07 13:43:19 -04004065 * btrfs_drop_inode will have it removed from
Yan, Zheng76dda932009-09-21 16:00:26 -04004066 * the inode cache when its usage count
4067 * hits zero.
4068 */
4069 iput(inode);
4070 cond_resched();
4071 spin_lock(&root->inode_lock);
4072 goto again;
4073 }
4074
4075 if (cond_resched_lock(&root->inode_lock))
4076 goto again;
4077
4078 node = rb_next(node);
4079 }
4080 spin_unlock(&root->inode_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004081}
4082
Chris Masone02119d2008-09-05 16:13:11 -04004083static int btrfs_init_locked_inode(struct inode *inode, void *p)
4084{
4085 struct btrfs_iget_args *args = p;
4086 inode->i_ino = args->ino;
Chris Masone02119d2008-09-05 16:13:11 -04004087 BTRFS_I(inode)->root = args->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004088 return 0;
4089}
4090
4091static int btrfs_find_actor(struct inode *inode, void *opaque)
4092{
4093 struct btrfs_iget_args *args = opaque;
Li Zefan33345d012011-04-20 10:31:50 +08004094 return args->ino == btrfs_ino(inode) &&
Chris Masond3977122009-01-05 21:25:51 -05004095 args->root == BTRFS_I(inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004096}
4097
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004098static struct inode *btrfs_iget_locked(struct super_block *s,
4099 u64 objectid,
4100 struct btrfs_root *root)
Chris Mason39279cc2007-06-12 06:35:45 -04004101{
4102 struct inode *inode;
4103 struct btrfs_iget_args args;
4104 args.ino = objectid;
4105 args.root = root;
4106
4107 inode = iget5_locked(s, objectid, btrfs_find_actor,
4108 btrfs_init_locked_inode,
4109 (void *)&args);
4110 return inode;
4111}
4112
Balaji Rao1a54ef82008-07-21 02:01:04 +05304113/* Get an inode object given its location and corresponding root.
4114 * Returns in *is_new if the inode was read from disk
4115 */
4116struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
Josef Bacik73f73412009-12-04 17:38:27 +00004117 struct btrfs_root *root, int *new)
Balaji Rao1a54ef82008-07-21 02:01:04 +05304118{
4119 struct inode *inode;
4120
4121 inode = btrfs_iget_locked(s, location->objectid, root);
4122 if (!inode)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004123 return ERR_PTR(-ENOMEM);
Balaji Rao1a54ef82008-07-21 02:01:04 +05304124
4125 if (inode->i_state & I_NEW) {
4126 BTRFS_I(inode)->root = root;
4127 memcpy(&BTRFS_I(inode)->location, location, sizeof(*location));
4128 btrfs_read_locked_inode(inode);
Mark Fasheh1748f842011-07-12 11:25:31 -07004129 if (!is_bad_inode(inode)) {
4130 inode_tree_add(inode);
4131 unlock_new_inode(inode);
4132 if (new)
4133 *new = 1;
4134 } else {
Sergei Trofimoviche0b6d652011-09-11 10:52:24 -04004135 unlock_new_inode(inode);
4136 iput(inode);
4137 inode = ERR_PTR(-ESTALE);
Mark Fasheh1748f842011-07-12 11:25:31 -07004138 }
4139 }
4140
Balaji Rao1a54ef82008-07-21 02:01:04 +05304141 return inode;
4142}
4143
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004144static struct inode *new_simple_dir(struct super_block *s,
4145 struct btrfs_key *key,
4146 struct btrfs_root *root)
4147{
4148 struct inode *inode = new_inode(s);
4149
4150 if (!inode)
4151 return ERR_PTR(-ENOMEM);
4152
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004153 BTRFS_I(inode)->root = root;
4154 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
Josef Bacik72ac3c02012-05-23 14:13:11 -04004155 set_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004156
4157 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
Li Zefan848cce02012-02-21 17:04:28 +08004158 inode->i_op = &btrfs_dir_ro_inode_operations;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004159 inode->i_fop = &simple_dir_operations;
4160 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
4161 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
4162
4163 return inode;
4164}
4165
Chris Mason3de45862008-11-17 21:02:50 -05004166struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04004167{
Chris Masond3977122009-01-05 21:25:51 -05004168 struct inode *inode;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004169 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04004170 struct btrfs_root *sub_root = root;
4171 struct btrfs_key location;
Yan, Zheng76dda932009-09-21 16:00:26 -04004172 int index;
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004173 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004174
4175 if (dentry->d_name.len > BTRFS_NAME_LEN)
4176 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04004177
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004178 if (unlikely(d_need_lookup(dentry))) {
4179 memcpy(&location, dentry->d_fsdata, sizeof(struct btrfs_key));
4180 kfree(dentry->d_fsdata);
4181 dentry->d_fsdata = NULL;
Josef Bacika66e7cc2011-09-18 10:34:03 -04004182 /* This thing is hashed, drop it for now */
4183 d_drop(dentry);
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004184 } else {
4185 ret = btrfs_inode_by_name(dir, dentry, &location);
4186 }
Chris Mason5f39d392007-10-15 16:14:19 -04004187
Chris Mason39279cc2007-06-12 06:35:45 -04004188 if (ret < 0)
4189 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04004190
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004191 if (location.objectid == 0)
4192 return NULL;
4193
4194 if (location.type == BTRFS_INODE_ITEM_KEY) {
Josef Bacik73f73412009-12-04 17:38:27 +00004195 inode = btrfs_iget(dir->i_sb, &location, root, NULL);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004196 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004197 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004198
4199 BUG_ON(location.type != BTRFS_ROOT_ITEM_KEY);
4200
Yan, Zheng76dda932009-09-21 16:00:26 -04004201 index = srcu_read_lock(&root->fs_info->subvol_srcu);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004202 ret = fixup_tree_root_location(root, dir, dentry,
4203 &location, &sub_root);
4204 if (ret < 0) {
4205 if (ret != -ENOENT)
4206 inode = ERR_PTR(ret);
4207 else
4208 inode = new_simple_dir(dir->i_sb, &location, sub_root);
4209 } else {
Josef Bacik73f73412009-12-04 17:38:27 +00004210 inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04004211 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004212 srcu_read_unlock(&root->fs_info->subvol_srcu, index);
4213
Julia Lawall34d19ba2011-01-24 19:55:19 +00004214 if (!IS_ERR(inode) && root != sub_root) {
Yan, Zhengc71bf092009-11-12 09:34:40 +00004215 down_read(&root->fs_info->cleanup_work_sem);
4216 if (!(inode->i_sb->s_flags & MS_RDONLY))
Josef Bacik66b4ffd2011-01-31 16:22:42 -05004217 ret = btrfs_orphan_cleanup(sub_root);
Yan, Zhengc71bf092009-11-12 09:34:40 +00004218 up_read(&root->fs_info->cleanup_work_sem);
Josef Bacik66b4ffd2011-01-31 16:22:42 -05004219 if (ret)
4220 inode = ERR_PTR(ret);
Yan, Zhengc71bf092009-11-12 09:34:40 +00004221 }
4222
Chris Mason3de45862008-11-17 21:02:50 -05004223 return inode;
4224}
4225
Nick Pigginfe15ce42011-01-07 17:49:23 +11004226static int btrfs_dentry_delete(const struct dentry *dentry)
Yan, Zheng76dda932009-09-21 16:00:26 -04004227{
4228 struct btrfs_root *root;
Li Zefan848cce02012-02-21 17:04:28 +08004229 struct inode *inode = dentry->d_inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04004230
Li Zefan848cce02012-02-21 17:04:28 +08004231 if (!inode && !IS_ROOT(dentry))
4232 inode = dentry->d_parent->d_inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04004233
Li Zefan848cce02012-02-21 17:04:28 +08004234 if (inode) {
4235 root = BTRFS_I(inode)->root;
Yan, Zhengefefb142009-10-09 09:25:16 -04004236 if (btrfs_root_refs(&root->root_item) == 0)
4237 return 1;
Li Zefan848cce02012-02-21 17:04:28 +08004238
4239 if (btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
4240 return 1;
Yan, Zhengefefb142009-10-09 09:25:16 -04004241 }
Yan, Zheng76dda932009-09-21 16:00:26 -04004242 return 0;
4243}
4244
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004245static void btrfs_dentry_release(struct dentry *dentry)
4246{
4247 if (dentry->d_fsdata)
4248 kfree(dentry->d_fsdata);
4249}
4250
Chris Mason3de45862008-11-17 21:02:50 -05004251static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -04004252 unsigned int flags)
Chris Mason3de45862008-11-17 21:02:50 -05004253{
Josef Bacika66e7cc2011-09-18 10:34:03 -04004254 struct dentry *ret;
4255
4256 ret = d_splice_alias(btrfs_lookup_dentry(dir, dentry), dentry);
4257 if (unlikely(d_need_lookup(dentry))) {
4258 spin_lock(&dentry->d_lock);
4259 dentry->d_flags &= ~DCACHE_NEED_LOOKUP;
4260 spin_unlock(&dentry->d_lock);
4261 }
4262 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004263}
4264
Miao Xie16cdcec2011-04-22 18:12:22 +08004265unsigned char btrfs_filetype_table[] = {
Chris Mason39279cc2007-06-12 06:35:45 -04004266 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
4267};
4268
David Woodhousecbdf5a22008-08-06 19:42:33 +01004269static int btrfs_real_readdir(struct file *filp, void *dirent,
4270 filldir_t filldir)
Chris Mason39279cc2007-06-12 06:35:45 -04004271{
Chris Mason6da6aba2007-12-18 16:15:09 -05004272 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04004273 struct btrfs_root *root = BTRFS_I(inode)->root;
4274 struct btrfs_item *item;
4275 struct btrfs_dir_item *di;
4276 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04004277 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04004278 struct btrfs_path *path;
Miao Xie16cdcec2011-04-22 18:12:22 +08004279 struct list_head ins_list;
4280 struct list_head del_list;
Chris Mason39279cc2007-06-12 06:35:45 -04004281 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04004282 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04004283 int slot;
Chris Mason39279cc2007-06-12 06:35:45 -04004284 unsigned char d_type;
4285 int over = 0;
4286 u32 di_cur;
4287 u32 di_total;
4288 u32 di_len;
4289 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004290 char tmp_name[32];
4291 char *name_ptr;
4292 int name_len;
Miao Xie16cdcec2011-04-22 18:12:22 +08004293 int is_curr = 0; /* filp->f_pos points to the current index? */
Chris Mason39279cc2007-06-12 06:35:45 -04004294
4295 /* FIXME, use a real flag for deciding about the key type */
4296 if (root->fs_info->tree_root == root)
4297 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04004298
Chris Mason39544012007-12-12 14:38:19 -05004299 /* special case for "." */
4300 if (filp->f_pos == 0) {
Hidetoshi Seto3765fef2011-09-18 10:20:46 -04004301 over = filldir(dirent, ".", 1,
4302 filp->f_pos, btrfs_ino(inode), DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05004303 if (over)
4304 return 0;
4305 filp->f_pos = 1;
4306 }
Chris Mason39544012007-12-12 14:38:19 -05004307 /* special case for .., just use the back ref */
4308 if (filp->f_pos == 1) {
David Woodhouse5ecc7e52008-08-17 15:14:48 +01004309 u64 pino = parent_ino(filp->f_path.dentry);
Chris Mason39544012007-12-12 14:38:19 -05004310 over = filldir(dirent, "..", 2,
Hidetoshi Seto3765fef2011-09-18 10:20:46 -04004311 filp->f_pos, pino, DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05004312 if (over)
David Woodhouse49593bf2008-08-17 17:08:36 +01004313 return 0;
Chris Mason39544012007-12-12 14:38:19 -05004314 filp->f_pos = 2;
4315 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004316 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +08004317 if (!path)
4318 return -ENOMEM;
Chris Masonff5714c2011-05-28 07:00:39 -04004319
Josef Bacik026fd312011-05-13 10:32:11 -04004320 path->reada = 1;
David Woodhouse49593bf2008-08-17 17:08:36 +01004321
Miao Xie16cdcec2011-04-22 18:12:22 +08004322 if (key_type == BTRFS_DIR_INDEX_KEY) {
4323 INIT_LIST_HEAD(&ins_list);
4324 INIT_LIST_HEAD(&del_list);
4325 btrfs_get_delayed_items(inode, &ins_list, &del_list);
4326 }
4327
Chris Mason39279cc2007-06-12 06:35:45 -04004328 btrfs_set_key_type(&key, key_type);
4329 key.offset = filp->f_pos;
Li Zefan33345d012011-04-20 10:31:50 +08004330 key.objectid = btrfs_ino(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004331
Chris Mason39279cc2007-06-12 06:35:45 -04004332 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4333 if (ret < 0)
4334 goto err;
David Woodhouse49593bf2008-08-17 17:08:36 +01004335
4336 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04004337 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -04004338 slot = path->slots[0];
Li Zefanb9e03af2011-03-23 10:43:58 +08004339 if (slot >= btrfs_header_nritems(leaf)) {
4340 ret = btrfs_next_leaf(root, path);
4341 if (ret < 0)
4342 goto err;
4343 else if (ret > 0)
4344 break;
4345 continue;
Chris Mason39279cc2007-06-12 06:35:45 -04004346 }
Chris Mason3de45862008-11-17 21:02:50 -05004347
Chris Mason5f39d392007-10-15 16:14:19 -04004348 item = btrfs_item_nr(leaf, slot);
4349 btrfs_item_key_to_cpu(leaf, &found_key, slot);
4350
4351 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04004352 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004353 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04004354 break;
Chris Mason5f39d392007-10-15 16:14:19 -04004355 if (found_key.offset < filp->f_pos)
Li Zefanb9e03af2011-03-23 10:43:58 +08004356 goto next;
Miao Xie16cdcec2011-04-22 18:12:22 +08004357 if (key_type == BTRFS_DIR_INDEX_KEY &&
4358 btrfs_should_delete_dir_index(&del_list,
4359 found_key.offset))
4360 goto next;
Chris Mason5f39d392007-10-15 16:14:19 -04004361
4362 filp->f_pos = found_key.offset;
Miao Xie16cdcec2011-04-22 18:12:22 +08004363 is_curr = 1;
David Woodhouse49593bf2008-08-17 17:08:36 +01004364
Chris Mason39279cc2007-06-12 06:35:45 -04004365 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
4366 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04004367 di_total = btrfs_item_size(leaf, item);
David Woodhouse49593bf2008-08-17 17:08:36 +01004368
4369 while (di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04004370 struct btrfs_key location;
4371
Josef Bacik22a94d42011-03-16 16:47:17 -04004372 if (verify_dir_item(root, leaf, di))
4373 break;
4374
Chris Mason5f39d392007-10-15 16:14:19 -04004375 name_len = btrfs_dir_name_len(leaf, di);
David Woodhouse49593bf2008-08-17 17:08:36 +01004376 if (name_len <= sizeof(tmp_name)) {
Chris Mason5f39d392007-10-15 16:14:19 -04004377 name_ptr = tmp_name;
4378 } else {
4379 name_ptr = kmalloc(name_len, GFP_NOFS);
David Woodhouse49593bf2008-08-17 17:08:36 +01004380 if (!name_ptr) {
4381 ret = -ENOMEM;
4382 goto err;
4383 }
Chris Mason5f39d392007-10-15 16:14:19 -04004384 }
4385 read_extent_buffer(leaf, name_ptr,
4386 (unsigned long)(di + 1), name_len);
4387
4388 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
4389 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason3de45862008-11-17 21:02:50 -05004390
Josef Bacikb4aff1f2011-06-28 16:18:59 -04004391
Chris Mason3de45862008-11-17 21:02:50 -05004392 /* is this a reference to our own snapshot? If so
Arne Jansen8c9c2bf2012-02-25 09:09:30 +01004393 * skip it.
4394 *
4395 * In contrast to old kernels, we insert the snapshot's
4396 * dir item and dir index after it has been created, so
4397 * we won't find a reference to our own snapshot. We
4398 * still keep the following code for backward
4399 * compatibility.
Chris Mason3de45862008-11-17 21:02:50 -05004400 */
4401 if (location.type == BTRFS_ROOT_ITEM_KEY &&
4402 location.objectid == root->root_key.objectid) {
4403 over = 0;
4404 goto skip;
4405 }
Chris Mason5f39d392007-10-15 16:14:19 -04004406 over = filldir(dirent, name_ptr, name_len,
David Woodhouse49593bf2008-08-17 17:08:36 +01004407 found_key.offset, location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04004408 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04004409
Chris Mason3de45862008-11-17 21:02:50 -05004410skip:
Chris Mason5f39d392007-10-15 16:14:19 -04004411 if (name_ptr != tmp_name)
4412 kfree(name_ptr);
4413
Chris Mason39279cc2007-06-12 06:35:45 -04004414 if (over)
4415 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05004416 di_len = btrfs_dir_name_len(leaf, di) +
David Woodhouse49593bf2008-08-17 17:08:36 +01004417 btrfs_dir_data_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04004418 di_cur += di_len;
4419 di = (struct btrfs_dir_item *)((char *)di + di_len);
4420 }
Li Zefanb9e03af2011-03-23 10:43:58 +08004421next:
4422 path->slots[0]++;
Chris Mason39279cc2007-06-12 06:35:45 -04004423 }
David Woodhouse49593bf2008-08-17 17:08:36 +01004424
Miao Xie16cdcec2011-04-22 18:12:22 +08004425 if (key_type == BTRFS_DIR_INDEX_KEY) {
4426 if (is_curr)
4427 filp->f_pos++;
4428 ret = btrfs_readdir_delayed_dir_index(filp, dirent, filldir,
4429 &ins_list);
4430 if (ret)
4431 goto nopos;
4432 }
4433
David Woodhouse49593bf2008-08-17 17:08:36 +01004434 /* Reached end of directory/root. Bump pos past the last item. */
Yan Zheng5e591a02008-02-19 11:41:02 -05004435 if (key_type == BTRFS_DIR_INDEX_KEY)
Jan Engelhardt406266a2009-12-09 22:00:38 +00004436 /*
4437 * 32-bit glibc will use getdents64, but then strtol -
4438 * so the last number we can serve is this.
4439 */
4440 filp->f_pos = 0x7fffffff;
Yan Zheng5e591a02008-02-19 11:41:02 -05004441 else
4442 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04004443nopos:
4444 ret = 0;
4445err:
Miao Xie16cdcec2011-04-22 18:12:22 +08004446 if (key_type == BTRFS_DIR_INDEX_KEY)
4447 btrfs_put_delayed_items(&ins_list, &del_list);
Chris Mason39279cc2007-06-12 06:35:45 -04004448 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004449 return ret;
4450}
4451
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004452int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc)
Chris Mason39279cc2007-06-12 06:35:45 -04004453{
4454 struct btrfs_root *root = BTRFS_I(inode)->root;
4455 struct btrfs_trans_handle *trans;
4456 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04004457 bool nolock = false;
Chris Mason39279cc2007-06-12 06:35:45 -04004458
Josef Bacik72ac3c02012-05-23 14:13:11 -04004459 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Chris Mason4ca8b412008-08-05 13:30:48 -04004460 return 0;
4461
Liu Bo83eea1f2012-07-10 05:28:39 -06004462 if (btrfs_fs_closing(root->fs_info) && btrfs_is_free_space_inode(inode))
Li Zefan82d59022011-04-20 10:33:24 +08004463 nolock = true;
Josef Bacik0af3d002010-06-21 14:48:16 -04004464
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004465 if (wbc->sync_mode == WB_SYNC_ALL) {
Josef Bacik0af3d002010-06-21 14:48:16 -04004466 if (nolock)
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004467 trans = btrfs_join_transaction_nolock(root);
Josef Bacik0af3d002010-06-21 14:48:16 -04004468 else
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004469 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00004470 if (IS_ERR(trans))
4471 return PTR_ERR(trans);
Josef Bacik0af3d002010-06-21 14:48:16 -04004472 if (nolock)
4473 ret = btrfs_end_transaction_nolock(trans, root);
4474 else
4475 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004476 }
4477 return ret;
4478}
4479
4480/*
Chris Mason54aa1f42007-06-22 14:16:25 -04004481 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04004482 * inode changes. But, it is most likely to find the inode in cache.
4483 * FIXME, needs more benchmarking...there are no reasons other than performance
4484 * to keep or drop this code.
4485 */
Josef Bacik22c44fe2011-11-30 10:45:38 -05004486int btrfs_dirty_inode(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04004487{
4488 struct btrfs_root *root = BTRFS_I(inode)->root;
4489 struct btrfs_trans_handle *trans;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004490 int ret;
4491
Josef Bacik72ac3c02012-05-23 14:13:11 -04004492 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
Josef Bacik22c44fe2011-11-30 10:45:38 -05004493 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004494
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004495 trans = btrfs_join_transaction(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004496 if (IS_ERR(trans))
4497 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004498
4499 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04004500 if (ret && ret == -ENOSPC) {
4501 /* whoops, lets try again with the full transaction */
4502 btrfs_end_transaction(trans, root);
4503 trans = btrfs_start_transaction(root, 1);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004504 if (IS_ERR(trans))
4505 return PTR_ERR(trans);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004506
Chris Mason94b60442010-05-26 11:02:00 -04004507 ret = btrfs_update_inode(trans, root, inode);
Chris Mason94b60442010-05-26 11:02:00 -04004508 }
Chris Mason39279cc2007-06-12 06:35:45 -04004509 btrfs_end_transaction(trans, root);
Miao Xie16cdcec2011-04-22 18:12:22 +08004510 if (BTRFS_I(inode)->delayed_node)
4511 btrfs_balance_delayed_items(root);
Josef Bacik22c44fe2011-11-30 10:45:38 -05004512
4513 return ret;
4514}
4515
4516/*
4517 * This is a copy of file_update_time. We need this so we can return error on
4518 * ENOSPC for updating the inode in the case of file write and mmap writes.
4519 */
Josef Bacike41f9412012-03-26 09:46:47 -04004520static int btrfs_update_time(struct inode *inode, struct timespec *now,
4521 int flags)
Josef Bacik22c44fe2011-11-30 10:45:38 -05004522{
Alexander Block2bc5565282012-06-15 09:49:33 +02004523 struct btrfs_root *root = BTRFS_I(inode)->root;
4524
4525 if (btrfs_root_readonly(root))
4526 return -EROFS;
4527
Josef Bacike41f9412012-03-26 09:46:47 -04004528 if (flags & S_VERSION)
Josef Bacik22c44fe2011-11-30 10:45:38 -05004529 inode_inc_iversion(inode);
Josef Bacike41f9412012-03-26 09:46:47 -04004530 if (flags & S_CTIME)
4531 inode->i_ctime = *now;
4532 if (flags & S_MTIME)
4533 inode->i_mtime = *now;
4534 if (flags & S_ATIME)
4535 inode->i_atime = *now;
4536 return btrfs_dirty_inode(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004537}
4538
Chris Masond352ac62008-09-29 15:18:18 -04004539/*
4540 * find the highest existing sequence number in a directory
4541 * and then set the in-memory index_cnt variable to reflect
4542 * free sequence numbers
4543 */
Josef Bacikaec74772008-07-24 12:12:38 -04004544static int btrfs_set_inode_index_count(struct inode *inode)
4545{
4546 struct btrfs_root *root = BTRFS_I(inode)->root;
4547 struct btrfs_key key, found_key;
4548 struct btrfs_path *path;
4549 struct extent_buffer *leaf;
4550 int ret;
4551
Li Zefan33345d012011-04-20 10:31:50 +08004552 key.objectid = btrfs_ino(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004553 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
4554 key.offset = (u64)-1;
4555
4556 path = btrfs_alloc_path();
4557 if (!path)
4558 return -ENOMEM;
4559
4560 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4561 if (ret < 0)
4562 goto out;
4563 /* FIXME: we should be able to handle this */
4564 if (ret == 0)
4565 goto out;
4566 ret = 0;
4567
4568 /*
4569 * MAGIC NUMBER EXPLANATION:
4570 * since we search a directory based on f_pos we have to start at 2
4571 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
4572 * else has to start at 2
4573 */
4574 if (path->slots[0] == 0) {
4575 BTRFS_I(inode)->index_cnt = 2;
4576 goto out;
4577 }
4578
4579 path->slots[0]--;
4580
4581 leaf = path->nodes[0];
4582 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4583
Li Zefan33345d012011-04-20 10:31:50 +08004584 if (found_key.objectid != btrfs_ino(inode) ||
Josef Bacikaec74772008-07-24 12:12:38 -04004585 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
4586 BTRFS_I(inode)->index_cnt = 2;
4587 goto out;
4588 }
4589
4590 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
4591out:
4592 btrfs_free_path(path);
4593 return ret;
4594}
4595
Chris Masond352ac62008-09-29 15:18:18 -04004596/*
4597 * helper to find a free sequence number in a given directory. This current
4598 * code is very simple, later versions will do smarter things in the btree
4599 */
Chris Mason3de45862008-11-17 21:02:50 -05004600int btrfs_set_inode_index(struct inode *dir, u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04004601{
4602 int ret = 0;
4603
4604 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
Miao Xie16cdcec2011-04-22 18:12:22 +08004605 ret = btrfs_inode_delayed_dir_index_count(dir);
4606 if (ret) {
4607 ret = btrfs_set_inode_index_count(dir);
4608 if (ret)
4609 return ret;
4610 }
Josef Bacikaec74772008-07-24 12:12:38 -04004611 }
4612
Chris Mason00e4e6b2008-08-05 11:18:09 -04004613 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04004614 BTRFS_I(dir)->index_cnt++;
4615
4616 return ret;
4617}
4618
Chris Mason39279cc2007-06-12 06:35:45 -04004619static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
4620 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04004621 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05004622 const char *name, int name_len,
Al Viro175a4eb2011-07-26 03:30:54 -04004623 u64 ref_objectid, u64 objectid,
4624 umode_t mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04004625{
4626 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004627 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04004628 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04004629 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05004630 struct btrfs_inode_ref *ref;
4631 struct btrfs_key key[2];
4632 u32 sizes[2];
4633 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04004634 int ret;
4635 int owner;
4636
Chris Mason5f39d392007-10-15 16:14:19 -04004637 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07004638 if (!path)
4639 return ERR_PTR(-ENOMEM);
Chris Mason5f39d392007-10-15 16:14:19 -04004640
Chris Mason39279cc2007-06-12 06:35:45 -04004641 inode = new_inode(root->fs_info->sb);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004642 if (!inode) {
4643 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04004644 return ERR_PTR(-ENOMEM);
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004645 }
Chris Mason39279cc2007-06-12 06:35:45 -04004646
Li Zefan581bb052011-04-20 10:06:11 +08004647 /*
4648 * we have to initialize this early, so we can reclaim the inode
4649 * number if we fail afterwards in this function.
4650 */
4651 inode->i_ino = objectid;
4652
Josef Bacikaec74772008-07-24 12:12:38 -04004653 if (dir) {
liubo1abe9b82011-03-24 11:18:59 +00004654 trace_btrfs_inode_request(dir);
4655
Chris Mason3de45862008-11-17 21:02:50 -05004656 ret = btrfs_set_inode_index(dir, index);
Shen Feng09771432009-04-02 16:46:06 -04004657 if (ret) {
Yoshinori Sano8fb27642011-04-09 02:30:07 +00004658 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004659 iput(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04004660 return ERR_PTR(ret);
Shen Feng09771432009-04-02 16:46:06 -04004661 }
Josef Bacikaec74772008-07-24 12:12:38 -04004662 }
4663 /*
4664 * index_cnt is ignored for everything but a dir,
4665 * btrfs_get_inode_index_count has an explanation for the magic
4666 * number
4667 */
4668 BTRFS_I(inode)->index_cnt = 2;
Chris Mason39279cc2007-06-12 06:35:45 -04004669 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04004670 BTRFS_I(inode)->generation = trans->transid;
Josef Bacik76195852010-11-19 02:18:02 +00004671 inode->i_generation = BTRFS_I(inode)->generation;
Chris Masonb888db22007-08-27 16:49:44 -04004672
Al Viro569254b2011-07-24 17:08:40 -04004673 if (S_ISDIR(mode))
Chris Mason39279cc2007-06-12 06:35:45 -04004674 owner = 0;
4675 else
4676 owner = 1;
Chris Mason9c583092008-01-29 15:15:18 -05004677
4678 key[0].objectid = objectid;
4679 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
4680 key[0].offset = 0;
4681
4682 key[1].objectid = objectid;
4683 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
4684 key[1].offset = ref_objectid;
4685
4686 sizes[0] = sizeof(struct btrfs_inode_item);
4687 sizes[1] = name_len + sizeof(*ref);
4688
Chris Masonb9473432009-03-13 11:00:37 -04004689 path->leave_spinning = 1;
Chris Mason9c583092008-01-29 15:15:18 -05004690 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
4691 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04004692 goto fail;
4693
Dmitry Monakhovecc11fab2010-03-04 17:31:47 +03004694 inode_init_owner(inode, dir, mode);
Yan Zhenga76a3cd2008-10-09 11:46:29 -04004695 inode_set_bytes(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04004696 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04004697 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
4698 struct btrfs_inode_item);
Li Zefan293f7e02012-07-10 00:58:58 -06004699 memset_extent_buffer(path->nodes[0], 0, (unsigned long)inode_item,
4700 sizeof(*inode_item));
Chris Masone02119d2008-09-05 16:13:11 -04004701 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05004702
4703 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
4704 struct btrfs_inode_ref);
4705 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
Chris Mason00e4e6b2008-08-05 11:18:09 -04004706 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
Chris Mason9c583092008-01-29 15:15:18 -05004707 ptr = (unsigned long)(ref + 1);
4708 write_extent_buffer(path->nodes[0], name, ptr, name_len);
4709
Chris Mason5f39d392007-10-15 16:14:19 -04004710 btrfs_mark_buffer_dirty(path->nodes[0]);
4711 btrfs_free_path(path);
4712
Chris Mason39279cc2007-06-12 06:35:45 -04004713 location = &BTRFS_I(inode)->location;
4714 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04004715 location->offset = 0;
4716 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
4717
Christoph Hellwig6cbff002009-04-17 10:37:41 +02004718 btrfs_inherit_iflags(inode, dir);
4719
Al Viro569254b2011-07-24 17:08:40 -04004720 if (S_ISREG(mode)) {
Chris Mason94272162009-07-02 12:26:06 -04004721 if (btrfs_test_opt(root, NODATASUM))
4722 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
Liu Bo75e7cb72011-03-22 10:12:20 +00004723 if (btrfs_test_opt(root, NODATACOW) ||
4724 (BTRFS_I(dir)->flags & BTRFS_INODE_NODATACOW))
Chris Mason94272162009-07-02 12:26:06 -04004725 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
4726 }
4727
Chris Mason39279cc2007-06-12 06:35:45 -04004728 insert_inode_hash(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004729 inode_tree_add(inode);
liubo1abe9b82011-03-24 11:18:59 +00004730
4731 trace_btrfs_inode_new(inode);
Chris Mason1973f0f2011-06-24 13:13:29 -04004732 btrfs_set_inode_last_trans(trans, inode);
liubo1abe9b82011-03-24 11:18:59 +00004733
Alexander Block8ea05e32012-07-25 17:35:53 +02004734 btrfs_update_root_times(trans, root);
4735
Chris Mason39279cc2007-06-12 06:35:45 -04004736 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04004737fail:
Josef Bacikaec74772008-07-24 12:12:38 -04004738 if (dir)
4739 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04004740 btrfs_free_path(path);
Shen Feng09771432009-04-02 16:46:06 -04004741 iput(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004742 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004743}
4744
4745static inline u8 btrfs_inode_type(struct inode *inode)
4746{
4747 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
4748}
4749
Chris Masond352ac62008-09-29 15:18:18 -04004750/*
4751 * utility function to add 'inode' into 'parent_inode' with
4752 * a give name and a given sequence number.
4753 * if 'add_backref' is true, also insert a backref from the
4754 * inode to the parent directory.
4755 */
Chris Masone02119d2008-09-05 16:13:11 -04004756int btrfs_add_link(struct btrfs_trans_handle *trans,
4757 struct inode *parent_inode, struct inode *inode,
4758 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004759{
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004760 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004761 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04004762 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Li Zefan33345d012011-04-20 10:31:50 +08004763 u64 ino = btrfs_ino(inode);
4764 u64 parent_ino = btrfs_ino(parent_inode);
Chris Mason5f39d392007-10-15 16:14:19 -04004765
Li Zefan33345d012011-04-20 10:31:50 +08004766 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004767 memcpy(&key, &BTRFS_I(inode)->root->root_key, sizeof(key));
4768 } else {
Li Zefan33345d012011-04-20 10:31:50 +08004769 key.objectid = ino;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004770 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
4771 key.offset = 0;
4772 }
Chris Mason39279cc2007-06-12 06:35:45 -04004773
Li Zefan33345d012011-04-20 10:31:50 +08004774 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004775 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
4776 key.objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08004777 parent_ino, index, name, name_len);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004778 } else if (add_backref) {
Li Zefan33345d012011-04-20 10:31:50 +08004779 ret = btrfs_insert_inode_ref(trans, root, name, name_len, ino,
4780 parent_ino, index);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004781 }
4782
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004783 /* Nothing to clean up yet */
4784 if (ret)
4785 return ret;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04004786
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004787 ret = btrfs_insert_dir_item(trans, root, name, name_len,
4788 parent_inode, &key,
4789 btrfs_inode_type(inode), index);
4790 if (ret == -EEXIST)
4791 goto fail_dir_item;
4792 else if (ret) {
4793 btrfs_abort_transaction(trans, root, ret);
4794 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004795 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004796
4797 btrfs_i_size_write(parent_inode, parent_inode->i_size +
4798 name_len * 2);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04004799 inode_inc_iversion(parent_inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004800 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
4801 ret = btrfs_update_inode(trans, root, parent_inode);
4802 if (ret)
4803 btrfs_abort_transaction(trans, root, ret);
Chris Mason39279cc2007-06-12 06:35:45 -04004804 return ret;
Chris Masonfe66a052012-02-20 08:40:56 -05004805
4806fail_dir_item:
4807 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
4808 u64 local_index;
4809 int err;
4810 err = btrfs_del_root_ref(trans, root->fs_info->tree_root,
4811 key.objectid, root->root_key.objectid,
4812 parent_ino, &local_index, name, name_len);
4813
4814 } else if (add_backref) {
4815 u64 local_index;
4816 int err;
4817
4818 err = btrfs_del_inode_ref(trans, root, name, name_len,
4819 ino, parent_ino, &local_index);
4820 }
4821 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04004822}
4823
4824static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Josef Bacika1b075d2010-11-19 20:36:11 +00004825 struct inode *dir, struct dentry *dentry,
4826 struct inode *inode, int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04004827{
Josef Bacika1b075d2010-11-19 20:36:11 +00004828 int err = btrfs_add_link(trans, dir, inode,
4829 dentry->d_name.name, dentry->d_name.len,
4830 backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004831 if (err > 0)
4832 err = -EEXIST;
4833 return err;
4834}
4835
Josef Bacik618e21d2007-07-11 10:18:17 -04004836static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -04004837 umode_t mode, dev_t rdev)
Josef Bacik618e21d2007-07-11 10:18:17 -04004838{
4839 struct btrfs_trans_handle *trans;
4840 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004841 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04004842 int err;
4843 int drop_inode = 0;
4844 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05004845 unsigned long nr = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004846 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04004847
4848 if (!new_valid_dev(rdev))
4849 return -EINVAL;
4850
Josef Bacik9ed74f22009-09-11 16:12:44 -04004851 /*
4852 * 2 for inode item and ref
4853 * 2 for dir items
4854 * 1 for xattr if selinux is on
4855 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004856 trans = btrfs_start_transaction(root, 5);
4857 if (IS_ERR(trans))
4858 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05004859
Li Zefan581bb052011-04-20 10:06:11 +08004860 err = btrfs_find_free_ino(root, &objectid);
4861 if (err)
4862 goto out_unlock;
4863
Josef Bacikaec74772008-07-24 12:12:38 -04004864 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08004865 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04004866 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004867 if (IS_ERR(inode)) {
4868 err = PTR_ERR(inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04004869 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004870 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004871
Eric Paris2a7dba32011-02-01 11:05:39 -05004872 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04004873 if (err) {
4874 drop_inode = 1;
4875 goto out_unlock;
4876 }
4877
Casey Schauflerad19db72011-12-15 10:09:07 -05004878 /*
4879 * If the active LSM wants to access the inode during
4880 * d_instantiate it needs these. Smack checks to see
4881 * if the filesystem supports xattrs by looking at the
4882 * ops vector.
4883 */
4884
4885 inode->i_op = &btrfs_special_inode_operations;
Josef Bacika1b075d2010-11-19 20:36:11 +00004886 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Josef Bacik618e21d2007-07-11 10:18:17 -04004887 if (err)
4888 drop_inode = 1;
4889 else {
Josef Bacik618e21d2007-07-11 10:18:17 -04004890 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04004891 btrfs_update_inode(trans, root, inode);
Al Viro08c422c2011-12-23 07:58:13 -05004892 d_instantiate(dentry, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04004893 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004894out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004895 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05004896 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004897 btrfs_btree_balance_dirty(root, nr);
Josef Bacik618e21d2007-07-11 10:18:17 -04004898 if (drop_inode) {
4899 inode_dec_link_count(inode);
4900 iput(inode);
4901 }
Josef Bacik618e21d2007-07-11 10:18:17 -04004902 return err;
4903}
4904
Chris Mason39279cc2007-06-12 06:35:45 -04004905static int btrfs_create(struct inode *dir, struct dentry *dentry,
Al Viroebfc3b42012-06-10 18:05:36 -04004906 umode_t mode, bool excl)
Chris Mason39279cc2007-06-12 06:35:45 -04004907{
4908 struct btrfs_trans_handle *trans;
4909 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05004910 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04004911 int drop_inode = 0;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004912 int err;
Chris Mason1832a6d2007-12-21 16:27:21 -05004913 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004914 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004915 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004916
Josef Bacik9ed74f22009-09-11 16:12:44 -04004917 /*
4918 * 2 for inode item and ref
4919 * 2 for dir items
4920 * 1 for xattr if selinux is on
4921 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04004922 trans = btrfs_start_transaction(root, 5);
4923 if (IS_ERR(trans))
4924 return PTR_ERR(trans);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004925
Li Zefan581bb052011-04-20 10:06:11 +08004926 err = btrfs_find_free_ino(root, &objectid);
4927 if (err)
4928 goto out_unlock;
4929
Josef Bacikaec74772008-07-24 12:12:38 -04004930 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08004931 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04004932 mode, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004933 if (IS_ERR(inode)) {
4934 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004935 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04004936 }
Chris Mason39279cc2007-06-12 06:35:45 -04004937
Eric Paris2a7dba32011-02-01 11:05:39 -05004938 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04004939 if (err) {
4940 drop_inode = 1;
4941 goto out_unlock;
4942 }
4943
Casey Schauflerad19db72011-12-15 10:09:07 -05004944 /*
4945 * If the active LSM wants to access the inode during
4946 * d_instantiate it needs these. Smack checks to see
4947 * if the filesystem supports xattrs by looking at the
4948 * ops vector.
4949 */
4950 inode->i_fop = &btrfs_file_operations;
4951 inode->i_op = &btrfs_file_inode_operations;
4952
Josef Bacika1b075d2010-11-19 20:36:11 +00004953 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04004954 if (err)
4955 drop_inode = 1;
4956 else {
4957 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04004958 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05004959 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Al Viro08c422c2011-12-23 07:58:13 -05004960 d_instantiate(dentry, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04004961 }
Chris Mason39279cc2007-06-12 06:35:45 -04004962out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004963 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05004964 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04004965 if (drop_inode) {
4966 inode_dec_link_count(inode);
4967 iput(inode);
4968 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04004969 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04004970 return err;
4971}
4972
4973static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
4974 struct dentry *dentry)
4975{
4976 struct btrfs_trans_handle *trans;
4977 struct btrfs_root *root = BTRFS_I(dir)->root;
4978 struct inode *inode = old_dentry->d_inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04004979 u64 index;
Chris Mason1832a6d2007-12-21 16:27:21 -05004980 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04004981 int err;
4982 int drop_inode = 0;
4983
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00004984 /* do not allow sys_link's with other subvols of the same device */
4985 if (root->objectid != BTRFS_I(inode)->root->objectid)
Mark Fasheh3ab35642011-03-22 17:20:26 +00004986 return -EXDEV;
TARUISI Hiroaki4a8be422009-11-12 07:14:26 +00004987
Al Viroc055e992011-03-04 17:15:18 +00004988 if (inode->i_nlink == ~0U)
4989 return -EMLINK;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004990
Chris Mason3de45862008-11-17 21:02:50 -05004991 err = btrfs_set_inode_index(dir, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04004992 if (err)
4993 goto fail;
4994
Yan, Zhenga22285a2010-05-16 10:48:46 -04004995 /*
Miao Xie7e6b6462011-02-18 09:21:17 +00004996 * 2 items for inode and inode ref
Yan, Zhenga22285a2010-05-16 10:48:46 -04004997 * 2 items for dir items
Miao Xie7e6b6462011-02-18 09:21:17 +00004998 * 1 item for parent inode
Yan, Zhenga22285a2010-05-16 10:48:46 -04004999 */
Miao Xie7e6b6462011-02-18 09:21:17 +00005000 trans = btrfs_start_transaction(root, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005001 if (IS_ERR(trans)) {
5002 err = PTR_ERR(trans);
5003 goto fail;
5004 }
Chris Mason5f39d392007-10-15 16:14:19 -04005005
Miao Xie31534952011-04-13 13:19:21 +08005006 btrfs_inc_nlink(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -04005007 inode_inc_iversion(inode);
Miao Xie31534952011-04-13 13:19:21 +08005008 inode->i_ctime = CURRENT_TIME;
Al Viro7de9c6ee2010-10-23 11:11:40 -04005009 ihold(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04005010
Josef Bacika1b075d2010-11-19 20:36:11 +00005011 err = btrfs_add_nondir(trans, dir, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04005012
Yan, Zhenga5719522009-09-24 09:17:31 -04005013 if (err) {
Chris Mason39279cc2007-06-12 06:35:45 -04005014 drop_inode = 1;
Yan, Zhenga5719522009-09-24 09:17:31 -04005015 } else {
Al Viro10d9f302011-07-16 23:09:10 -04005016 struct dentry *parent = dentry->d_parent;
Yan, Zhenga5719522009-09-24 09:17:31 -04005017 err = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005018 if (err)
5019 goto fail;
Al Viro08c422c2011-12-23 07:58:13 -05005020 d_instantiate(dentry, inode);
Josef Bacik6a912212010-11-20 09:48:00 +00005021 btrfs_log_new_name(trans, inode, NULL, parent);
Yan, Zhenga5719522009-09-24 09:17:31 -04005022 }
Chris Mason39279cc2007-06-12 06:35:45 -04005023
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005024 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05005025 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05005026fail:
Chris Mason39279cc2007-06-12 06:35:45 -04005027 if (drop_inode) {
5028 inode_dec_link_count(inode);
5029 iput(inode);
5030 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005031 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04005032 return err;
5033}
5034
Al Viro18bb1db2011-07-26 01:41:39 -04005035static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Chris Mason39279cc2007-06-12 06:35:45 -04005036{
Chris Masonb9d86662008-05-02 16:13:49 -04005037 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04005038 struct btrfs_trans_handle *trans;
5039 struct btrfs_root *root = BTRFS_I(dir)->root;
5040 int err = 0;
5041 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04005042 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04005043 u64 index = 0;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005044 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04005045
Josef Bacik9ed74f22009-09-11 16:12:44 -04005046 /*
5047 * 2 items for inode and ref
5048 * 2 items for dir items
5049 * 1 for xattr if selinux is on
5050 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04005051 trans = btrfs_start_transaction(root, 5);
5052 if (IS_ERR(trans))
5053 return PTR_ERR(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04005054
Li Zefan581bb052011-04-20 10:06:11 +08005055 err = btrfs_find_free_ino(root, &objectid);
5056 if (err)
5057 goto out_fail;
5058
Josef Bacikaec74772008-07-24 12:12:38 -04005059 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08005060 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04005061 S_IFDIR | mode, &index);
Chris Mason39279cc2007-06-12 06:35:45 -04005062 if (IS_ERR(inode)) {
5063 err = PTR_ERR(inode);
5064 goto out_fail;
5065 }
Chris Mason5f39d392007-10-15 16:14:19 -04005066
Chris Mason39279cc2007-06-12 06:35:45 -04005067 drop_on_err = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -04005068
Eric Paris2a7dba32011-02-01 11:05:39 -05005069 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04005070 if (err)
5071 goto out_fail;
5072
Chris Mason39279cc2007-06-12 06:35:45 -04005073 inode->i_op = &btrfs_dir_inode_operations;
5074 inode->i_fop = &btrfs_dir_file_operations;
Chris Mason39279cc2007-06-12 06:35:45 -04005075
Chris Masondbe674a2008-07-17 12:54:05 -04005076 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04005077 err = btrfs_update_inode(trans, root, inode);
5078 if (err)
5079 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04005080
Josef Bacika1b075d2010-11-19 20:36:11 +00005081 err = btrfs_add_link(trans, dir, inode, dentry->d_name.name,
5082 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04005083 if (err)
5084 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04005085
Chris Mason39279cc2007-06-12 06:35:45 -04005086 d_instantiate(dentry, inode);
5087 drop_on_err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04005088
5089out_fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005090 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05005091 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04005092 if (drop_on_err)
5093 iput(inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04005094 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04005095 return err;
5096}
5097
Chris Masond352ac62008-09-29 15:18:18 -04005098/* helper for btfs_get_extent. Given an existing extent in the tree,
5099 * and an extent that you want to insert, deal with overlap and insert
5100 * the new extent into the tree.
5101 */
Chris Mason3b951512008-04-17 11:29:12 -04005102static int merge_extent_mapping(struct extent_map_tree *em_tree,
5103 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005104 struct extent_map *em,
5105 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04005106{
5107 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04005108
Chris Masone6dcd2d2008-07-17 12:53:50 -04005109 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
5110 start_diff = map_start - em->start;
5111 em->start = map_start;
5112 em->len = map_len;
Chris Masonc8b97812008-10-29 14:49:59 -04005113 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
5114 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04005115 em->block_start += start_diff;
Chris Masonc8b97812008-10-29 14:49:59 -04005116 em->block_len -= start_diff;
5117 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005118 return add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04005119}
5120
Chris Masonc8b97812008-10-29 14:49:59 -04005121static noinline int uncompress_inline(struct btrfs_path *path,
5122 struct inode *inode, struct page *page,
5123 size_t pg_offset, u64 extent_offset,
5124 struct btrfs_file_extent_item *item)
5125{
5126 int ret;
5127 struct extent_buffer *leaf = path->nodes[0];
5128 char *tmp;
5129 size_t max_size;
5130 unsigned long inline_size;
5131 unsigned long ptr;
Li Zefan261507a02010-12-17 14:21:50 +08005132 int compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04005133
5134 WARN_ON(pg_offset != 0);
Li Zefan261507a02010-12-17 14:21:50 +08005135 compress_type = btrfs_file_extent_compression(leaf, item);
Chris Masonc8b97812008-10-29 14:49:59 -04005136 max_size = btrfs_file_extent_ram_bytes(leaf, item);
5137 inline_size = btrfs_file_extent_inline_item_len(leaf,
5138 btrfs_item_nr(leaf, path->slots[0]));
5139 tmp = kmalloc(inline_size, GFP_NOFS);
Tsutomu Itoh8d413712011-04-25 19:43:52 -04005140 if (!tmp)
5141 return -ENOMEM;
Chris Masonc8b97812008-10-29 14:49:59 -04005142 ptr = btrfs_file_extent_inline_start(item);
5143
5144 read_extent_buffer(leaf, tmp, ptr, inline_size);
5145
Chris Mason5b050f02008-11-11 09:34:41 -05005146 max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size);
Li Zefan261507a02010-12-17 14:21:50 +08005147 ret = btrfs_decompress(compress_type, tmp, page,
5148 extent_offset, inline_size, max_size);
Chris Masonc8b97812008-10-29 14:49:59 -04005149 if (ret) {
Cong Wang7ac687d2011-11-25 23:14:28 +08005150 char *kaddr = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04005151 unsigned long copy_size = min_t(u64,
5152 PAGE_CACHE_SIZE - pg_offset,
5153 max_size - extent_offset);
5154 memset(kaddr + pg_offset, 0, copy_size);
Cong Wang7ac687d2011-11-25 23:14:28 +08005155 kunmap_atomic(kaddr);
Chris Masonc8b97812008-10-29 14:49:59 -04005156 }
5157 kfree(tmp);
5158 return 0;
5159}
5160
Chris Masond352ac62008-09-29 15:18:18 -04005161/*
5162 * a bit scary, this does extent mapping from logical file offset to the disk.
Chris Masond3977122009-01-05 21:25:51 -05005163 * the ugly parts come from merging extents from the disk with the in-ram
5164 * representation. This gets more complex because of the data=ordered code,
Chris Masond352ac62008-09-29 15:18:18 -04005165 * where the in-ram extents might be locked pending data=ordered completion.
5166 *
5167 * This also copies inline extents directly into the page.
5168 */
Chris Masond3977122009-01-05 21:25:51 -05005169
Chris Masona52d9a82007-08-27 16:49:44 -04005170struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05005171 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04005172 int create)
5173{
5174 int ret;
5175 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04005176 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04005177 u64 extent_start = 0;
5178 u64 extent_end = 0;
Li Zefan33345d012011-04-20 10:31:50 +08005179 u64 objectid = btrfs_ino(inode);
Chris Masona52d9a82007-08-27 16:49:44 -04005180 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04005181 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04005182 struct btrfs_root *root = BTRFS_I(inode)->root;
5183 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04005184 struct extent_buffer *leaf;
5185 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04005186 struct extent_map *em = NULL;
5187 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05005188 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04005189 struct btrfs_trans_handle *trans = NULL;
Li Zefan261507a02010-12-17 14:21:50 +08005190 int compress_type;
Chris Masona52d9a82007-08-27 16:49:44 -04005191
Chris Masona52d9a82007-08-27 16:49:44 -04005192again:
Chris Mason890871b2009-09-02 16:24:52 -04005193 read_lock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05005194 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04005195 if (em)
5196 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason890871b2009-09-02 16:24:52 -04005197 read_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05005198
Chris Masona52d9a82007-08-27 16:49:44 -04005199 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04005200 if (em->start > start || em->start + em->len <= start)
5201 free_extent_map(em);
5202 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05005203 free_extent_map(em);
5204 else
5205 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005206 }
David Sterba172ddd62011-04-21 00:48:27 +02005207 em = alloc_extent_map();
Chris Masona52d9a82007-08-27 16:49:44 -04005208 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05005209 err = -ENOMEM;
5210 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005211 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005212 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05005213 em->start = EXTENT_MAP_HOLE;
Chris Mason445a6942008-11-10 11:53:33 -05005214 em->orig_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05005215 em->len = (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -04005216 em->block_len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04005217
5218 if (!path) {
5219 path = btrfs_alloc_path();
Josef Bacik026fd312011-05-13 10:32:11 -04005220 if (!path) {
5221 err = -ENOMEM;
5222 goto out;
5223 }
5224 /*
5225 * Chances are we'll be called again, so go ahead and do
5226 * readahead
5227 */
5228 path->reada = 1;
Chris Masonf4219502008-07-22 11:18:09 -04005229 }
5230
Chris Mason179e29e2007-11-01 11:28:41 -04005231 ret = btrfs_lookup_file_extent(trans, root, path,
5232 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04005233 if (ret < 0) {
5234 err = ret;
5235 goto out;
5236 }
5237
5238 if (ret != 0) {
5239 if (path->slots[0] == 0)
5240 goto not_found;
5241 path->slots[0]--;
5242 }
5243
Chris Mason5f39d392007-10-15 16:14:19 -04005244 leaf = path->nodes[0];
5245 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04005246 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04005247 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04005248 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5249 found_type = btrfs_key_type(&found_key);
5250 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04005251 found_type != BTRFS_EXTENT_DATA_KEY) {
5252 goto not_found;
5253 }
5254
Chris Mason5f39d392007-10-15 16:14:19 -04005255 found_type = btrfs_file_extent_type(leaf, item);
5256 extent_start = found_key.offset;
Li Zefan261507a02010-12-17 14:21:50 +08005257 compress_type = btrfs_file_extent_compression(leaf, item);
Yan Zhengd899e052008-10-30 14:25:28 -04005258 if (found_type == BTRFS_FILE_EXTENT_REG ||
5259 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masona52d9a82007-08-27 16:49:44 -04005260 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04005261 btrfs_file_extent_num_bytes(leaf, item);
Yan Zheng9036c102008-10-30 14:19:41 -04005262 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
5263 size_t size;
5264 size = btrfs_file_extent_inline_len(leaf, item);
5265 extent_end = (extent_start + size + root->sectorsize - 1) &
5266 ~((u64)root->sectorsize - 1);
5267 }
5268
5269 if (start >= extent_end) {
5270 path->slots[0]++;
5271 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
5272 ret = btrfs_next_leaf(root, path);
5273 if (ret < 0) {
5274 err = ret;
5275 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04005276 }
Yan Zheng9036c102008-10-30 14:19:41 -04005277 if (ret > 0)
5278 goto not_found;
5279 leaf = path->nodes[0];
Chris Masona52d9a82007-08-27 16:49:44 -04005280 }
Yan Zheng9036c102008-10-30 14:19:41 -04005281 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5282 if (found_key.objectid != objectid ||
5283 found_key.type != BTRFS_EXTENT_DATA_KEY)
5284 goto not_found;
5285 if (start + len <= found_key.offset)
5286 goto not_found;
5287 em->start = start;
5288 em->len = found_key.offset - start;
5289 goto not_found_em;
5290 }
5291
Yan Zhengd899e052008-10-30 14:25:28 -04005292 if (found_type == BTRFS_FILE_EXTENT_REG ||
5293 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng9036c102008-10-30 14:19:41 -04005294 em->start = extent_start;
5295 em->len = extent_end - extent_start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005296 em->orig_start = extent_start -
5297 btrfs_file_extent_offset(leaf, item);
Chris Masondb945352007-10-15 16:15:53 -04005298 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
5299 if (bytenr == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04005300 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04005301 goto insert;
5302 }
Li Zefan261507a02010-12-17 14:21:50 +08005303 if (compress_type != BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04005304 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08005305 em->compress_type = compress_type;
Chris Masonc8b97812008-10-29 14:49:59 -04005306 em->block_start = bytenr;
5307 em->block_len = btrfs_file_extent_disk_num_bytes(leaf,
5308 item);
5309 } else {
5310 bytenr += btrfs_file_extent_offset(leaf, item);
5311 em->block_start = bytenr;
5312 em->block_len = em->len;
Yan Zhengd899e052008-10-30 14:25:28 -04005313 if (found_type == BTRFS_FILE_EXTENT_PREALLOC)
5314 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
Chris Masonc8b97812008-10-29 14:49:59 -04005315 }
Chris Masona52d9a82007-08-27 16:49:44 -04005316 goto insert;
5317 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04005318 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04005319 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04005320 size_t size;
5321 size_t extent_offset;
5322 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04005323
Chris Masona52d9a82007-08-27 16:49:44 -04005324 em->block_start = EXTENT_MAP_INLINE;
Chris Masonc8b97812008-10-29 14:49:59 -04005325 if (!page || create) {
Yan689f9342007-10-29 11:41:07 -04005326 em->start = extent_start;
Yan Zheng9036c102008-10-30 14:19:41 -04005327 em->len = extent_end - extent_start;
Yan689f9342007-10-29 11:41:07 -04005328 goto out;
5329 }
5330
Yan Zheng9036c102008-10-30 14:19:41 -04005331 size = btrfs_file_extent_inline_len(leaf, item);
5332 extent_offset = page_offset(page) + pg_offset - extent_start;
Chris Mason70dec802008-01-29 09:59:12 -05005333 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04005334 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04005335 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05005336 em->len = (copy_size + root->sectorsize - 1) &
5337 ~((u64)root->sectorsize - 1);
Yan Zhengff5b7ee2008-11-10 07:34:43 -05005338 em->orig_start = EXTENT_MAP_INLINE;
Li Zefan261507a02010-12-17 14:21:50 +08005339 if (compress_type) {
Chris Masonc8b97812008-10-29 14:49:59 -04005340 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Li Zefan261507a02010-12-17 14:21:50 +08005341 em->compress_type = compress_type;
5342 }
Yan689f9342007-10-29 11:41:07 -04005343 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04005344 if (create == 0 && !PageUptodate(page)) {
Li Zefan261507a02010-12-17 14:21:50 +08005345 if (btrfs_file_extent_compression(leaf, item) !=
5346 BTRFS_COMPRESS_NONE) {
Chris Masonc8b97812008-10-29 14:49:59 -04005347 ret = uncompress_inline(path, inode, page,
5348 pg_offset,
5349 extent_offset, item);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005350 BUG_ON(ret); /* -ENOMEM */
Chris Masonc8b97812008-10-29 14:49:59 -04005351 } else {
5352 map = kmap(page);
5353 read_extent_buffer(leaf, map + pg_offset, ptr,
5354 copy_size);
Chris Mason93c82d52009-09-11 12:36:29 -04005355 if (pg_offset + copy_size < PAGE_CACHE_SIZE) {
5356 memset(map + pg_offset + copy_size, 0,
5357 PAGE_CACHE_SIZE - pg_offset -
5358 copy_size);
5359 }
Chris Masonc8b97812008-10-29 14:49:59 -04005360 kunmap(page);
5361 }
Chris Mason179e29e2007-11-01 11:28:41 -04005362 flush_dcache_page(page);
5363 } else if (create && PageUptodate(page)) {
Jan Schmidt6bf7e082011-12-01 14:35:19 +01005364 BUG();
Chris Mason179e29e2007-11-01 11:28:41 -04005365 if (!trans) {
5366 kunmap(page);
5367 free_extent_map(em);
5368 em = NULL;
Chris Masonff5714c2011-05-28 07:00:39 -04005369
David Sterbab3b4aa72011-04-21 01:20:15 +02005370 btrfs_release_path(path);
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005371 trans = btrfs_join_transaction(root);
Chris Masonff5714c2011-05-28 07:00:39 -04005372
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005373 if (IS_ERR(trans))
5374 return ERR_CAST(trans);
Chris Mason179e29e2007-11-01 11:28:41 -04005375 goto again;
5376 }
Chris Masonc8b97812008-10-29 14:49:59 -04005377 map = kmap(page);
Chris Mason70dec802008-01-29 09:59:12 -05005378 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04005379 copy_size);
Chris Masonc8b97812008-10-29 14:49:59 -04005380 kunmap(page);
Chris Mason179e29e2007-11-01 11:28:41 -04005381 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04005382 }
Chris Masond1310b22008-01-24 16:13:08 -05005383 set_extent_uptodate(io_tree, em->start,
Arne Jansen507903b2011-04-06 10:02:20 +00005384 extent_map_end(em) - 1, NULL, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04005385 goto insert;
5386 } else {
Chris Masond3977122009-01-05 21:25:51 -05005387 printk(KERN_ERR "btrfs unknown found_type %d\n", found_type);
Chris Masona52d9a82007-08-27 16:49:44 -04005388 WARN_ON(1);
5389 }
5390not_found:
5391 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05005392 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04005393not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04005394 em->block_start = EXTENT_MAP_HOLE;
Yan Zheng9036c102008-10-30 14:19:41 -04005395 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -04005396insert:
David Sterbab3b4aa72011-04-21 01:20:15 +02005397 btrfs_release_path(path);
Chris Masond1310b22008-01-24 16:13:08 -05005398 if (em->start > start || extent_map_end(em) <= start) {
Chris Masond3977122009-01-05 21:25:51 -05005399 printk(KERN_ERR "Btrfs: bad extent! em: [%llu %llu] passed "
5400 "[%llu %llu]\n", (unsigned long long)em->start,
5401 (unsigned long long)em->len,
5402 (unsigned long long)start,
5403 (unsigned long long)len);
Chris Masona52d9a82007-08-27 16:49:44 -04005404 err = -EIO;
5405 goto out;
5406 }
Chris Masond1310b22008-01-24 16:13:08 -05005407
5408 err = 0;
Chris Mason890871b2009-09-02 16:24:52 -04005409 write_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005410 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04005411 /* it is possible that someone inserted the extent into the tree
5412 * while we had the lock dropped. It is also possible that
5413 * an overlapping map exists in the tree
5414 */
Chris Masona52d9a82007-08-27 16:49:44 -04005415 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04005416 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005417
5418 ret = 0;
5419
Chris Mason3b951512008-04-17 11:29:12 -04005420 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04005421 if (existing && (existing->start > start ||
5422 existing->start + existing->len <= start)) {
5423 free_extent_map(existing);
5424 existing = NULL;
5425 }
Chris Mason3b951512008-04-17 11:29:12 -04005426 if (!existing) {
5427 existing = lookup_extent_mapping(em_tree, em->start,
5428 em->len);
5429 if (existing) {
5430 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04005431 em, start,
5432 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04005433 free_extent_map(existing);
5434 if (err) {
5435 free_extent_map(em);
5436 em = NULL;
5437 }
5438 } else {
5439 err = -EIO;
Chris Mason3b951512008-04-17 11:29:12 -04005440 free_extent_map(em);
5441 em = NULL;
5442 }
5443 } else {
5444 free_extent_map(em);
5445 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005446 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04005447 }
Chris Masona52d9a82007-08-27 16:49:44 -04005448 }
Chris Mason890871b2009-09-02 16:24:52 -04005449 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04005450out:
liubo1abe9b82011-03-24 11:18:59 +00005451
5452 trace_btrfs_get_extent(root, em);
5453
Chris Masonf4219502008-07-22 11:18:09 -04005454 if (path)
5455 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04005456 if (trans) {
5457 ret = btrfs_end_transaction(trans, root);
Chris Masond3977122009-01-05 21:25:51 -05005458 if (!err)
Chris Masona52d9a82007-08-27 16:49:44 -04005459 err = ret;
5460 }
Chris Masona52d9a82007-08-27 16:49:44 -04005461 if (err) {
5462 free_extent_map(em);
Chris Masona52d9a82007-08-27 16:49:44 -04005463 return ERR_PTR(err);
5464 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005465 BUG_ON(!em); /* Error is always set */
Chris Masona52d9a82007-08-27 16:49:44 -04005466 return em;
5467}
5468
Chris Masonec29ed52011-02-23 16:23:20 -05005469struct extent_map *btrfs_get_extent_fiemap(struct inode *inode, struct page *page,
5470 size_t pg_offset, u64 start, u64 len,
5471 int create)
5472{
5473 struct extent_map *em;
5474 struct extent_map *hole_em = NULL;
5475 u64 range_start = start;
5476 u64 end;
5477 u64 found;
5478 u64 found_end;
5479 int err = 0;
5480
5481 em = btrfs_get_extent(inode, page, pg_offset, start, len, create);
5482 if (IS_ERR(em))
5483 return em;
5484 if (em) {
5485 /*
5486 * if our em maps to a hole, there might
5487 * actually be delalloc bytes behind it
5488 */
5489 if (em->block_start != EXTENT_MAP_HOLE)
5490 return em;
5491 else
5492 hole_em = em;
5493 }
5494
5495 /* check to see if we've wrapped (len == -1 or similar) */
5496 end = start + len;
5497 if (end < start)
5498 end = (u64)-1;
5499 else
5500 end -= 1;
5501
5502 em = NULL;
5503
5504 /* ok, we didn't find anything, lets look for delalloc */
5505 found = count_range_bits(&BTRFS_I(inode)->io_tree, &range_start,
5506 end, len, EXTENT_DELALLOC, 1);
5507 found_end = range_start + found;
5508 if (found_end < range_start)
5509 found_end = (u64)-1;
5510
5511 /*
5512 * we didn't find anything useful, return
5513 * the original results from get_extent()
5514 */
5515 if (range_start > end || found_end <= start) {
5516 em = hole_em;
5517 hole_em = NULL;
5518 goto out;
5519 }
5520
5521 /* adjust the range_start to make sure it doesn't
5522 * go backwards from the start they passed in
5523 */
5524 range_start = max(start,range_start);
5525 found = found_end - range_start;
5526
5527 if (found > 0) {
5528 u64 hole_start = start;
5529 u64 hole_len = len;
5530
David Sterba172ddd62011-04-21 00:48:27 +02005531 em = alloc_extent_map();
Chris Masonec29ed52011-02-23 16:23:20 -05005532 if (!em) {
5533 err = -ENOMEM;
5534 goto out;
5535 }
5536 /*
5537 * when btrfs_get_extent can't find anything it
5538 * returns one huge hole
5539 *
5540 * make sure what it found really fits our range, and
5541 * adjust to make sure it is based on the start from
5542 * the caller
5543 */
5544 if (hole_em) {
5545 u64 calc_end = extent_map_end(hole_em);
5546
5547 if (calc_end <= start || (hole_em->start > end)) {
5548 free_extent_map(hole_em);
5549 hole_em = NULL;
5550 } else {
5551 hole_start = max(hole_em->start, start);
5552 hole_len = calc_end - hole_start;
5553 }
5554 }
5555 em->bdev = NULL;
5556 if (hole_em && range_start > hole_start) {
5557 /* our hole starts before our delalloc, so we
5558 * have to return just the parts of the hole
5559 * that go until the delalloc starts
5560 */
5561 em->len = min(hole_len,
5562 range_start - hole_start);
5563 em->start = hole_start;
5564 em->orig_start = hole_start;
5565 /*
5566 * don't adjust block start at all,
5567 * it is fixed at EXTENT_MAP_HOLE
5568 */
5569 em->block_start = hole_em->block_start;
5570 em->block_len = hole_len;
5571 } else {
5572 em->start = range_start;
5573 em->len = found;
5574 em->orig_start = range_start;
5575 em->block_start = EXTENT_MAP_DELALLOC;
5576 em->block_len = found;
5577 }
5578 } else if (hole_em) {
5579 return hole_em;
5580 }
5581out:
5582
5583 free_extent_map(hole_em);
5584 if (err) {
5585 free_extent_map(em);
5586 return ERR_PTR(err);
5587 }
5588 return em;
5589}
5590
Josef Bacik4b46fce2010-05-23 11:00:55 -04005591static struct extent_map *btrfs_new_extent_direct(struct inode *inode,
Josef Bacik16d299a2011-04-06 14:53:07 -04005592 struct extent_map *em,
Josef Bacik4b46fce2010-05-23 11:00:55 -04005593 u64 start, u64 len)
5594{
5595 struct btrfs_root *root = BTRFS_I(inode)->root;
5596 struct btrfs_trans_handle *trans;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005597 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
5598 struct btrfs_key ins;
5599 u64 alloc_hint;
5600 int ret;
Josef Bacik16d299a2011-04-06 14:53:07 -04005601 bool insert = false;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005602
Josef Bacik16d299a2011-04-06 14:53:07 -04005603 /*
5604 * Ok if the extent map we looked up is a hole and is for the exact
5605 * range we want, there is no reason to allocate a new one, however if
5606 * it is not right then we need to free this one and drop the cache for
5607 * our range.
5608 */
5609 if (em->block_start != EXTENT_MAP_HOLE || em->start != start ||
5610 em->len != len) {
5611 free_extent_map(em);
5612 em = NULL;
5613 insert = true;
5614 btrfs_drop_extent_cache(inode, start, start + len - 1, 0);
5615 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005616
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005617 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005618 if (IS_ERR(trans))
5619 return ERR_CAST(trans);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005620
Chris Mason4cb53002011-05-24 15:35:30 -04005621 if (start <= BTRFS_I(inode)->disk_i_size && len < 64 * 1024)
5622 btrfs_add_inode_defrag(trans, inode);
5623
Josef Bacik4b46fce2010-05-23 11:00:55 -04005624 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
5625
5626 alloc_hint = get_extent_allocation_hint(inode, start, len);
5627 ret = btrfs_reserve_extent(trans, root, len, root->sectorsize, 0,
Josef Bacik81c9ad22012-01-18 10:56:06 -05005628 alloc_hint, &ins, 1);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005629 if (ret) {
5630 em = ERR_PTR(ret);
5631 goto out;
5632 }
5633
Josef Bacik4b46fce2010-05-23 11:00:55 -04005634 if (!em) {
David Sterba172ddd62011-04-21 00:48:27 +02005635 em = alloc_extent_map();
Josef Bacik16d299a2011-04-06 14:53:07 -04005636 if (!em) {
5637 em = ERR_PTR(-ENOMEM);
5638 goto out;
5639 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005640 }
5641
5642 em->start = start;
5643 em->orig_start = em->start;
5644 em->len = ins.offset;
5645
5646 em->block_start = ins.objectid;
5647 em->block_len = ins.offset;
5648 em->bdev = root->fs_info->fs_devices->latest_bdev;
Josef Bacik16d299a2011-04-06 14:53:07 -04005649
5650 /*
5651 * We need to do this because if we're using the original em we searched
5652 * for, we could have EXTENT_FLAG_VACANCY set, and we don't want that.
5653 */
5654 em->flags = 0;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005655 set_bit(EXTENT_FLAG_PINNED, &em->flags);
5656
Josef Bacik16d299a2011-04-06 14:53:07 -04005657 while (insert) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04005658 write_lock(&em_tree->lock);
5659 ret = add_extent_mapping(em_tree, em);
5660 write_unlock(&em_tree->lock);
5661 if (ret != -EEXIST)
5662 break;
5663 btrfs_drop_extent_cache(inode, start, start + em->len - 1, 0);
5664 }
5665
5666 ret = btrfs_add_ordered_extent_dio(inode, start, ins.objectid,
5667 ins.offset, ins.offset, 0);
5668 if (ret) {
5669 btrfs_free_reserved_extent(root, ins.objectid, ins.offset);
5670 em = ERR_PTR(ret);
5671 }
5672out:
5673 btrfs_end_transaction(trans, root);
5674 return em;
5675}
5676
Chris Mason46bfbb52010-05-26 11:04:10 -04005677/*
5678 * returns 1 when the nocow is safe, < 1 on error, 0 if the
5679 * block must be cow'd
5680 */
5681static noinline int can_nocow_odirect(struct btrfs_trans_handle *trans,
5682 struct inode *inode, u64 offset, u64 len)
5683{
5684 struct btrfs_path *path;
5685 int ret;
5686 struct extent_buffer *leaf;
5687 struct btrfs_root *root = BTRFS_I(inode)->root;
5688 struct btrfs_file_extent_item *fi;
5689 struct btrfs_key key;
5690 u64 disk_bytenr;
5691 u64 backref_offset;
5692 u64 extent_end;
5693 u64 num_bytes;
5694 int slot;
5695 int found_type;
5696
5697 path = btrfs_alloc_path();
5698 if (!path)
5699 return -ENOMEM;
5700
Li Zefan33345d012011-04-20 10:31:50 +08005701 ret = btrfs_lookup_file_extent(trans, root, path, btrfs_ino(inode),
Chris Mason46bfbb52010-05-26 11:04:10 -04005702 offset, 0);
5703 if (ret < 0)
5704 goto out;
5705
5706 slot = path->slots[0];
5707 if (ret == 1) {
5708 if (slot == 0) {
5709 /* can't find the item, must cow */
5710 ret = 0;
5711 goto out;
5712 }
5713 slot--;
5714 }
5715 ret = 0;
5716 leaf = path->nodes[0];
5717 btrfs_item_key_to_cpu(leaf, &key, slot);
Li Zefan33345d012011-04-20 10:31:50 +08005718 if (key.objectid != btrfs_ino(inode) ||
Chris Mason46bfbb52010-05-26 11:04:10 -04005719 key.type != BTRFS_EXTENT_DATA_KEY) {
5720 /* not our file or wrong item type, must cow */
5721 goto out;
5722 }
5723
5724 if (key.offset > offset) {
5725 /* Wrong offset, must cow */
5726 goto out;
5727 }
5728
5729 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
5730 found_type = btrfs_file_extent_type(leaf, fi);
5731 if (found_type != BTRFS_FILE_EXTENT_REG &&
5732 found_type != BTRFS_FILE_EXTENT_PREALLOC) {
5733 /* not a regular extent, must cow */
5734 goto out;
5735 }
5736 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
5737 backref_offset = btrfs_file_extent_offset(leaf, fi);
5738
5739 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
5740 if (extent_end < offset + len) {
5741 /* extent doesn't include our full range, must cow */
5742 goto out;
5743 }
5744
5745 if (btrfs_extent_readonly(root, disk_bytenr))
5746 goto out;
5747
5748 /*
5749 * look for other files referencing this extent, if we
5750 * find any we must cow
5751 */
Li Zefan33345d012011-04-20 10:31:50 +08005752 if (btrfs_cross_ref_exist(trans, root, btrfs_ino(inode),
Chris Mason46bfbb52010-05-26 11:04:10 -04005753 key.offset - backref_offset, disk_bytenr))
5754 goto out;
5755
5756 /*
5757 * adjust disk_bytenr and num_bytes to cover just the bytes
5758 * in this extent we are about to write. If there
5759 * are any csums in that range we have to cow in order
5760 * to keep the csums correct
5761 */
5762 disk_bytenr += backref_offset;
5763 disk_bytenr += offset - key.offset;
5764 num_bytes = min(offset + len, extent_end) - offset;
5765 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
5766 goto out;
5767 /*
5768 * all of the above have passed, it is safe to overwrite this extent
5769 * without cow
5770 */
5771 ret = 1;
5772out:
5773 btrfs_free_path(path);
5774 return ret;
5775}
5776
Josef Bacik4b46fce2010-05-23 11:00:55 -04005777static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock,
5778 struct buffer_head *bh_result, int create)
5779{
5780 struct extent_map *em;
5781 struct btrfs_root *root = BTRFS_I(inode)->root;
5782 u64 start = iblock << inode->i_blkbits;
5783 u64 len = bh_result->b_size;
Chris Mason46bfbb52010-05-26 11:04:10 -04005784 struct btrfs_trans_handle *trans;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005785
5786 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
5787 if (IS_ERR(em))
5788 return PTR_ERR(em);
5789
5790 /*
5791 * Ok for INLINE and COMPRESSED extents we need to fallback on buffered
5792 * io. INLINE is special, and we could probably kludge it in here, but
5793 * it's still buffered so for safety lets just fall back to the generic
5794 * buffered path.
5795 *
5796 * For COMPRESSED we _have_ to read the entire extent in so we can
5797 * decompress it, so there will be buffering required no matter what we
5798 * do, so go ahead and fallback to buffered.
5799 *
5800 * We return -ENOTBLK because thats what makes DIO go ahead and go back
5801 * to buffered IO. Don't blame me, this is the price we pay for using
5802 * the generic code.
5803 */
5804 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) ||
5805 em->block_start == EXTENT_MAP_INLINE) {
5806 free_extent_map(em);
5807 return -ENOTBLK;
5808 }
5809
5810 /* Just a good old fashioned hole, return */
5811 if (!create && (em->block_start == EXTENT_MAP_HOLE ||
5812 test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
5813 free_extent_map(em);
5814 /* DIO will do one hole at a time, so just unlock a sector */
5815 unlock_extent(&BTRFS_I(inode)->io_tree, start,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01005816 start + root->sectorsize - 1);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005817 return 0;
5818 }
5819
5820 /*
5821 * We don't allocate a new extent in the following cases
5822 *
5823 * 1) The inode is marked as NODATACOW. In this case we'll just use the
5824 * existing extent.
5825 * 2) The extent is marked as PREALLOC. We're good to go here and can
5826 * just use the extent.
5827 *
5828 */
Chris Mason46bfbb52010-05-26 11:04:10 -04005829 if (!create) {
5830 len = em->len - (start - em->start);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005831 goto map;
Chris Mason46bfbb52010-05-26 11:04:10 -04005832 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005833
5834 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
5835 ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
5836 em->block_start != EXTENT_MAP_HOLE)) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04005837 int type;
5838 int ret;
Chris Mason46bfbb52010-05-26 11:04:10 -04005839 u64 block_start;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005840
5841 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
5842 type = BTRFS_ORDERED_PREALLOC;
5843 else
5844 type = BTRFS_ORDERED_NOCOW;
Chris Mason46bfbb52010-05-26 11:04:10 -04005845 len = min(len, em->len - (start - em->start));
Josef Bacik4b46fce2010-05-23 11:00:55 -04005846 block_start = em->block_start + (start - em->start);
Chris Mason46bfbb52010-05-26 11:04:10 -04005847
5848 /*
5849 * we're not going to log anything, but we do need
5850 * to make sure the current transaction stays open
5851 * while we look for nocow cross refs
5852 */
Josef Bacik7a7eaa42011-04-13 12:54:33 -04005853 trans = btrfs_join_transaction(root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00005854 if (IS_ERR(trans))
Chris Mason46bfbb52010-05-26 11:04:10 -04005855 goto must_cow;
5856
5857 if (can_nocow_odirect(trans, inode, start, len) == 1) {
5858 ret = btrfs_add_ordered_extent_dio(inode, start,
5859 block_start, len, len, type);
5860 btrfs_end_transaction(trans, root);
5861 if (ret) {
5862 free_extent_map(em);
5863 return ret;
5864 }
5865 goto unlock;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005866 }
Chris Mason46bfbb52010-05-26 11:04:10 -04005867 btrfs_end_transaction(trans, root);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005868 }
Chris Mason46bfbb52010-05-26 11:04:10 -04005869must_cow:
5870 /*
5871 * this will cow the extent, reset the len in case we changed
5872 * it above
5873 */
5874 len = bh_result->b_size;
Josef Bacik16d299a2011-04-06 14:53:07 -04005875 em = btrfs_new_extent_direct(inode, em, start, len);
Chris Mason46bfbb52010-05-26 11:04:10 -04005876 if (IS_ERR(em))
5877 return PTR_ERR(em);
5878 len = min(len, em->len - (start - em->start));
5879unlock:
Chris Mason4845e442010-05-25 20:56:50 -04005880 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, start + len - 1,
5881 EXTENT_LOCKED | EXTENT_DELALLOC | EXTENT_DIRTY, 1,
5882 0, NULL, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005883map:
5884 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
5885 inode->i_blkbits;
Chris Mason46bfbb52010-05-26 11:04:10 -04005886 bh_result->b_size = len;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005887 bh_result->b_bdev = em->bdev;
5888 set_buffer_mapped(bh_result);
Josef Bacikc3473e82012-06-19 10:59:00 -04005889 if (create) {
5890 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
5891 set_buffer_new(bh_result);
5892
5893 /*
5894 * Need to update the i_size under the extent lock so buffered
5895 * readers will get the updated i_size when we unlock.
5896 */
5897 if (start + len > i_size_read(inode))
5898 i_size_write(inode, start + len);
5899 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04005900
5901 free_extent_map(em);
5902
5903 return 0;
5904}
5905
5906struct btrfs_dio_private {
5907 struct inode *inode;
5908 u64 logical_offset;
5909 u64 disk_bytenr;
5910 u64 bytes;
5911 u32 *csums;
5912 void *private;
Miao Xiee65e1532010-11-22 03:04:43 +00005913
5914 /* number of bios pending for this dio */
5915 atomic_t pending_bios;
5916
5917 /* IO errors */
5918 int errors;
5919
5920 struct bio *orig_bio;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005921};
5922
5923static void btrfs_endio_direct_read(struct bio *bio, int err)
5924{
Miao Xiee65e1532010-11-22 03:04:43 +00005925 struct btrfs_dio_private *dip = bio->bi_private;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005926 struct bio_vec *bvec_end = bio->bi_io_vec + bio->bi_vcnt - 1;
5927 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005928 struct inode *inode = dip->inode;
5929 struct btrfs_root *root = BTRFS_I(inode)->root;
5930 u64 start;
5931 u32 *private = dip->csums;
5932
5933 start = dip->logical_offset;
5934 do {
5935 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)) {
5936 struct page *page = bvec->bv_page;
5937 char *kaddr;
5938 u32 csum = ~(u32)0;
5939 unsigned long flags;
5940
5941 local_irq_save(flags);
Cong Wang7ac687d2011-11-25 23:14:28 +08005942 kaddr = kmap_atomic(page);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005943 csum = btrfs_csum_data(root, kaddr + bvec->bv_offset,
5944 csum, bvec->bv_len);
5945 btrfs_csum_final(csum, (char *)&csum);
Cong Wang7ac687d2011-11-25 23:14:28 +08005946 kunmap_atomic(kaddr);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005947 local_irq_restore(flags);
5948
5949 flush_dcache_page(bvec->bv_page);
5950 if (csum != *private) {
Li Zefan33345d012011-04-20 10:31:50 +08005951 printk(KERN_ERR "btrfs csum failed ino %llu off"
Josef Bacik4b46fce2010-05-23 11:00:55 -04005952 " %llu csum %u private %u\n",
Li Zefan33345d012011-04-20 10:31:50 +08005953 (unsigned long long)btrfs_ino(inode),
5954 (unsigned long long)start,
Josef Bacik4b46fce2010-05-23 11:00:55 -04005955 csum, *private);
5956 err = -EIO;
5957 }
5958 }
5959
5960 start += bvec->bv_len;
5961 private++;
5962 bvec++;
5963 } while (bvec <= bvec_end);
5964
5965 unlock_extent(&BTRFS_I(inode)->io_tree, dip->logical_offset,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01005966 dip->logical_offset + dip->bytes - 1);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005967 bio->bi_private = dip->private;
5968
5969 kfree(dip->csums);
5970 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04005971
5972 /* If we had a csum failure make sure to clear the uptodate flag */
5973 if (err)
5974 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005975 dio_end_io(bio, err);
5976}
5977
5978static void btrfs_endio_direct_write(struct bio *bio, int err)
5979{
5980 struct btrfs_dio_private *dip = bio->bi_private;
5981 struct inode *inode = dip->inode;
5982 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005983 struct btrfs_ordered_extent *ordered = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05005984 u64 ordered_offset = dip->logical_offset;
5985 u64 ordered_bytes = dip->bytes;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005986 int ret;
5987
5988 if (err)
5989 goto out_done;
Chris Mason163cf092010-11-28 19:56:33 -05005990again:
5991 ret = btrfs_dec_test_first_ordered_pending(inode, &ordered,
5992 &ordered_offset,
Josef Bacik5fd02042012-05-02 14:00:54 -04005993 ordered_bytes, !err);
Josef Bacik4b46fce2010-05-23 11:00:55 -04005994 if (!ret)
Chris Mason163cf092010-11-28 19:56:33 -05005995 goto out_test;
Josef Bacik4b46fce2010-05-23 11:00:55 -04005996
Josef Bacik5fd02042012-05-02 14:00:54 -04005997 ordered->work.func = finish_ordered_fn;
5998 ordered->work.flags = 0;
5999 btrfs_queue_worker(&root->fs_info->endio_write_workers,
6000 &ordered->work);
Chris Mason163cf092010-11-28 19:56:33 -05006001out_test:
6002 /*
6003 * our bio might span multiple ordered extents. If we haven't
6004 * completed the accounting for the whole dio, go back and try again
6005 */
6006 if (ordered_offset < dip->logical_offset + dip->bytes) {
6007 ordered_bytes = dip->logical_offset + dip->bytes -
6008 ordered_offset;
Josef Bacik5fd02042012-05-02 14:00:54 -04006009 ordered = NULL;
Chris Mason163cf092010-11-28 19:56:33 -05006010 goto again;
6011 }
Josef Bacik4b46fce2010-05-23 11:00:55 -04006012out_done:
6013 bio->bi_private = dip->private;
6014
Josef Bacik4b46fce2010-05-23 11:00:55 -04006015 kfree(dip);
Josef Bacikc0da7aa2011-03-22 11:05:07 -04006016
6017 /* If we had an error make sure to clear the uptodate flag */
6018 if (err)
6019 clear_bit(BIO_UPTODATE, &bio->bi_flags);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006020 dio_end_io(bio, err);
6021}
6022
Chris Masoneaf25d92010-05-25 09:48:28 -04006023static int __btrfs_submit_bio_start_direct_io(struct inode *inode, int rw,
6024 struct bio *bio, int mirror_num,
6025 unsigned long bio_flags, u64 offset)
6026{
6027 int ret;
6028 struct btrfs_root *root = BTRFS_I(inode)->root;
6029 ret = btrfs_csum_one_bio(root, inode, bio, offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006030 BUG_ON(ret); /* -ENOMEM */
Chris Masoneaf25d92010-05-25 09:48:28 -04006031 return 0;
6032}
6033
Miao Xiee65e1532010-11-22 03:04:43 +00006034static void btrfs_end_dio_bio(struct bio *bio, int err)
6035{
6036 struct btrfs_dio_private *dip = bio->bi_private;
6037
6038 if (err) {
Li Zefan33345d012011-04-20 10:31:50 +08006039 printk(KERN_ERR "btrfs direct IO failed ino %llu rw %lu "
Jan Beulich3dd14622010-12-07 14:54:09 +00006040 "sector %#Lx len %u err no %d\n",
Li Zefan33345d012011-04-20 10:31:50 +08006041 (unsigned long long)btrfs_ino(dip->inode), bio->bi_rw,
Jan Beulich3dd14622010-12-07 14:54:09 +00006042 (unsigned long long)bio->bi_sector, bio->bi_size, err);
Miao Xiee65e1532010-11-22 03:04:43 +00006043 dip->errors = 1;
6044
6045 /*
6046 * before atomic variable goto zero, we must make sure
6047 * dip->errors is perceived to be set.
6048 */
6049 smp_mb__before_atomic_dec();
6050 }
6051
6052 /* if there are more bios still pending for this dio, just exit */
6053 if (!atomic_dec_and_test(&dip->pending_bios))
6054 goto out;
6055
6056 if (dip->errors)
6057 bio_io_error(dip->orig_bio);
6058 else {
6059 set_bit(BIO_UPTODATE, &dip->orig_bio->bi_flags);
6060 bio_endio(dip->orig_bio, 0);
6061 }
6062out:
6063 bio_put(bio);
6064}
6065
6066static struct bio *btrfs_dio_bio_alloc(struct block_device *bdev,
6067 u64 first_sector, gfp_t gfp_flags)
6068{
6069 int nr_vecs = bio_get_nr_vecs(bdev);
6070 return btrfs_bio_alloc(bdev, first_sector, nr_vecs, gfp_flags);
6071}
6072
6073static inline int __btrfs_submit_dio_bio(struct bio *bio, struct inode *inode,
6074 int rw, u64 file_offset, int skip_sum,
Josef Bacik1ae39932011-04-06 14:41:34 -04006075 u32 *csums, int async_submit)
Miao Xiee65e1532010-11-22 03:04:43 +00006076{
6077 int write = rw & REQ_WRITE;
6078 struct btrfs_root *root = BTRFS_I(inode)->root;
6079 int ret;
6080
6081 bio_get(bio);
Josef Bacik5fd02042012-05-02 14:00:54 -04006082
6083 if (!write) {
6084 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
6085 if (ret)
6086 goto err;
6087 }
Miao Xiee65e1532010-11-22 03:04:43 +00006088
Josef Bacik1ae39932011-04-06 14:41:34 -04006089 if (skip_sum)
6090 goto map;
6091
6092 if (write && async_submit) {
Miao Xiee65e1532010-11-22 03:04:43 +00006093 ret = btrfs_wq_submit_bio(root->fs_info,
6094 inode, rw, bio, 0, 0,
6095 file_offset,
6096 __btrfs_submit_bio_start_direct_io,
6097 __btrfs_submit_bio_done);
6098 goto err;
Josef Bacik1ae39932011-04-06 14:41:34 -04006099 } else if (write) {
6100 /*
6101 * If we aren't doing async submit, calculate the csum of the
6102 * bio now.
6103 */
6104 ret = btrfs_csum_one_bio(root, inode, bio, file_offset, 1);
6105 if (ret)
6106 goto err;
Tsutomu Itohc2db1072011-03-01 06:48:31 +00006107 } else if (!skip_sum) {
6108 ret = btrfs_lookup_bio_sums_dio(root, inode, bio,
Miao Xiee65e1532010-11-22 03:04:43 +00006109 file_offset, csums);
Tsutomu Itohc2db1072011-03-01 06:48:31 +00006110 if (ret)
6111 goto err;
6112 }
Miao Xiee65e1532010-11-22 03:04:43 +00006113
Josef Bacik1ae39932011-04-06 14:41:34 -04006114map:
6115 ret = btrfs_map_bio(root, rw, bio, 0, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00006116err:
6117 bio_put(bio);
6118 return ret;
6119}
6120
6121static int btrfs_submit_direct_hook(int rw, struct btrfs_dio_private *dip,
6122 int skip_sum)
6123{
6124 struct inode *inode = dip->inode;
6125 struct btrfs_root *root = BTRFS_I(inode)->root;
6126 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
6127 struct bio *bio;
6128 struct bio *orig_bio = dip->orig_bio;
6129 struct bio_vec *bvec = orig_bio->bi_io_vec;
6130 u64 start_sector = orig_bio->bi_sector;
6131 u64 file_offset = dip->logical_offset;
6132 u64 submit_len = 0;
6133 u64 map_length;
6134 int nr_pages = 0;
6135 u32 *csums = dip->csums;
6136 int ret = 0;
Josef Bacik1ae39932011-04-06 14:41:34 -04006137 int async_submit = 0;
Josef Bacik98bc3142011-03-22 11:00:46 -04006138 int write = rw & REQ_WRITE;
Miao Xiee65e1532010-11-22 03:04:43 +00006139
Miao Xiee65e1532010-11-22 03:04:43 +00006140 map_length = orig_bio->bi_size;
6141 ret = btrfs_map_block(map_tree, READ, start_sector << 9,
6142 &map_length, NULL, 0);
6143 if (ret) {
Josef Bacik64728bb2011-04-25 19:43:52 -04006144 bio_put(orig_bio);
Miao Xiee65e1532010-11-22 03:04:43 +00006145 return -EIO;
6146 }
6147
Josef Bacik02f57c72011-04-06 14:25:44 -04006148 if (map_length >= orig_bio->bi_size) {
6149 bio = orig_bio;
6150 goto submit;
6151 }
6152
Josef Bacik1ae39932011-04-06 14:41:34 -04006153 async_submit = 1;
Josef Bacik02f57c72011-04-06 14:25:44 -04006154 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev, start_sector, GFP_NOFS);
6155 if (!bio)
6156 return -ENOMEM;
6157 bio->bi_private = dip;
6158 bio->bi_end_io = btrfs_end_dio_bio;
6159 atomic_inc(&dip->pending_bios);
6160
Miao Xiee65e1532010-11-22 03:04:43 +00006161 while (bvec <= (orig_bio->bi_io_vec + orig_bio->bi_vcnt - 1)) {
6162 if (unlikely(map_length < submit_len + bvec->bv_len ||
6163 bio_add_page(bio, bvec->bv_page, bvec->bv_len,
6164 bvec->bv_offset) < bvec->bv_len)) {
6165 /*
6166 * inc the count before we submit the bio so
6167 * we know the end IO handler won't happen before
6168 * we inc the count. Otherwise, the dip might get freed
6169 * before we're done setting it up
6170 */
6171 atomic_inc(&dip->pending_bios);
6172 ret = __btrfs_submit_dio_bio(bio, inode, rw,
6173 file_offset, skip_sum,
Josef Bacik1ae39932011-04-06 14:41:34 -04006174 csums, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00006175 if (ret) {
6176 bio_put(bio);
6177 atomic_dec(&dip->pending_bios);
6178 goto out_err;
6179 }
6180
Josef Bacik98bc3142011-03-22 11:00:46 -04006181 /* Write's use the ordered csums */
6182 if (!write && !skip_sum)
Miao Xiee65e1532010-11-22 03:04:43 +00006183 csums = csums + nr_pages;
6184 start_sector += submit_len >> 9;
6185 file_offset += submit_len;
6186
6187 submit_len = 0;
6188 nr_pages = 0;
6189
6190 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev,
6191 start_sector, GFP_NOFS);
6192 if (!bio)
6193 goto out_err;
6194 bio->bi_private = dip;
6195 bio->bi_end_io = btrfs_end_dio_bio;
6196
6197 map_length = orig_bio->bi_size;
6198 ret = btrfs_map_block(map_tree, READ, start_sector << 9,
6199 &map_length, NULL, 0);
6200 if (ret) {
6201 bio_put(bio);
6202 goto out_err;
6203 }
6204 } else {
6205 submit_len += bvec->bv_len;
6206 nr_pages ++;
6207 bvec++;
6208 }
6209 }
6210
Josef Bacik02f57c72011-04-06 14:25:44 -04006211submit:
Miao Xiee65e1532010-11-22 03:04:43 +00006212 ret = __btrfs_submit_dio_bio(bio, inode, rw, file_offset, skip_sum,
Josef Bacik1ae39932011-04-06 14:41:34 -04006213 csums, async_submit);
Miao Xiee65e1532010-11-22 03:04:43 +00006214 if (!ret)
6215 return 0;
6216
6217 bio_put(bio);
6218out_err:
6219 dip->errors = 1;
6220 /*
6221 * before atomic variable goto zero, we must
6222 * make sure dip->errors is perceived to be set.
6223 */
6224 smp_mb__before_atomic_dec();
6225 if (atomic_dec_and_test(&dip->pending_bios))
6226 bio_io_error(dip->orig_bio);
6227
6228 /* bio_end_io() will handle error, so we needn't return it */
6229 return 0;
6230}
6231
Josef Bacik4b46fce2010-05-23 11:00:55 -04006232static void btrfs_submit_direct(int rw, struct bio *bio, struct inode *inode,
6233 loff_t file_offset)
6234{
6235 struct btrfs_root *root = BTRFS_I(inode)->root;
6236 struct btrfs_dio_private *dip;
6237 struct bio_vec *bvec = bio->bi_io_vec;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006238 int skip_sum;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02006239 int write = rw & REQ_WRITE;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006240 int ret = 0;
6241
6242 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
6243
6244 dip = kmalloc(sizeof(*dip), GFP_NOFS);
6245 if (!dip) {
6246 ret = -ENOMEM;
6247 goto free_ordered;
6248 }
6249 dip->csums = NULL;
6250
Josef Bacik98bc3142011-03-22 11:00:46 -04006251 /* Write's use the ordered csum stuff, so we don't need dip->csums */
6252 if (!write && !skip_sum) {
Josef Bacik4b46fce2010-05-23 11:00:55 -04006253 dip->csums = kmalloc(sizeof(u32) * bio->bi_vcnt, GFP_NOFS);
6254 if (!dip->csums) {
Daniel J Bluemanb4966b72011-03-09 16:46:42 +00006255 kfree(dip);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006256 ret = -ENOMEM;
6257 goto free_ordered;
6258 }
6259 }
6260
6261 dip->private = bio->bi_private;
6262 dip->inode = inode;
6263 dip->logical_offset = file_offset;
6264
Josef Bacik4b46fce2010-05-23 11:00:55 -04006265 dip->bytes = 0;
6266 do {
6267 dip->bytes += bvec->bv_len;
6268 bvec++;
6269 } while (bvec <= (bio->bi_io_vec + bio->bi_vcnt - 1));
6270
Chris Mason46bfbb52010-05-26 11:04:10 -04006271 dip->disk_bytenr = (u64)bio->bi_sector << 9;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006272 bio->bi_private = dip;
Miao Xiee65e1532010-11-22 03:04:43 +00006273 dip->errors = 0;
6274 dip->orig_bio = bio;
6275 atomic_set(&dip->pending_bios, 0);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006276
6277 if (write)
6278 bio->bi_end_io = btrfs_endio_direct_write;
6279 else
6280 bio->bi_end_io = btrfs_endio_direct_read;
6281
Miao Xiee65e1532010-11-22 03:04:43 +00006282 ret = btrfs_submit_direct_hook(rw, dip, skip_sum);
6283 if (!ret)
Chris Masoneaf25d92010-05-25 09:48:28 -04006284 return;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006285free_ordered:
6286 /*
6287 * If this is a write, we need to clean up the reserved space and kill
6288 * the ordered extent.
6289 */
6290 if (write) {
6291 struct btrfs_ordered_extent *ordered;
Josef Bacik955256f2010-11-19 09:41:10 -05006292 ordered = btrfs_lookup_ordered_extent(inode, file_offset);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006293 if (!test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags) &&
6294 !test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags))
6295 btrfs_free_reserved_extent(root, ordered->start,
6296 ordered->disk_len);
6297 btrfs_put_ordered_extent(ordered);
6298 btrfs_put_ordered_extent(ordered);
6299 }
6300 bio_endio(bio, ret);
6301}
6302
Chris Mason5a5f79b2010-05-26 21:33:37 -04006303static ssize_t check_direct_IO(struct btrfs_root *root, int rw, struct kiocb *iocb,
6304 const struct iovec *iov, loff_t offset,
6305 unsigned long nr_segs)
6306{
6307 int seg;
Josef Bacika1b75f72011-04-08 15:51:18 +00006308 int i;
Chris Mason5a5f79b2010-05-26 21:33:37 -04006309 size_t size;
6310 unsigned long addr;
6311 unsigned blocksize_mask = root->sectorsize - 1;
6312 ssize_t retval = -EINVAL;
6313 loff_t end = offset;
6314
6315 if (offset & blocksize_mask)
6316 goto out;
6317
6318 /* Check the memory alignment. Blocks cannot straddle pages */
6319 for (seg = 0; seg < nr_segs; seg++) {
6320 addr = (unsigned long)iov[seg].iov_base;
6321 size = iov[seg].iov_len;
6322 end += size;
Josef Bacika1b75f72011-04-08 15:51:18 +00006323 if ((addr & blocksize_mask) || (size & blocksize_mask))
Chris Mason5a5f79b2010-05-26 21:33:37 -04006324 goto out;
Josef Bacika1b75f72011-04-08 15:51:18 +00006325
6326 /* If this is a write we don't need to check anymore */
6327 if (rw & WRITE)
6328 continue;
6329
6330 /*
6331 * Check to make sure we don't have duplicate iov_base's in this
6332 * iovec, if so return EINVAL, otherwise we'll get csum errors
6333 * when reading back.
6334 */
6335 for (i = seg + 1; i < nr_segs; i++) {
6336 if (iov[seg].iov_base == iov[i].iov_base)
6337 goto out;
6338 }
Chris Mason5a5f79b2010-05-26 21:33:37 -04006339 }
6340 retval = 0;
6341out:
6342 return retval;
6343}
Chris Mason16432982008-04-10 10:23:21 -04006344static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
6345 const struct iovec *iov, loff_t offset,
6346 unsigned long nr_segs)
6347{
Josef Bacik4b46fce2010-05-23 11:00:55 -04006348 struct file *file = iocb->ki_filp;
6349 struct inode *inode = file->f_mapping->host;
6350 struct btrfs_ordered_extent *ordered;
Chris Mason4845e442010-05-25 20:56:50 -04006351 struct extent_state *cached_state = NULL;
Josef Bacik4b46fce2010-05-23 11:00:55 -04006352 u64 lockstart, lockend;
6353 ssize_t ret;
Chris Mason4845e442010-05-25 20:56:50 -04006354 int writing = rw & WRITE;
6355 int write_bits = 0;
Chris Mason3f7c5792010-05-26 10:59:53 -04006356 size_t count = iov_length(iov, nr_segs);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006357
Chris Mason5a5f79b2010-05-26 21:33:37 -04006358 if (check_direct_IO(BTRFS_I(inode)->root, rw, iocb, iov,
6359 offset, nr_segs)) {
6360 return 0;
6361 }
6362
Josef Bacik4b46fce2010-05-23 11:00:55 -04006363 lockstart = offset;
Chris Mason3f7c5792010-05-26 10:59:53 -04006364 lockend = offset + count - 1;
6365
6366 if (writing) {
6367 ret = btrfs_delalloc_reserve_space(inode, count);
6368 if (ret)
6369 goto out;
6370 }
Chris Mason4845e442010-05-25 20:56:50 -04006371
Josef Bacik4b46fce2010-05-23 11:00:55 -04006372 while (1) {
Chris Mason4845e442010-05-25 20:56:50 -04006373 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006374 0, &cached_state);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006375 /*
6376 * We're concerned with the entire range that we're going to be
6377 * doing DIO to, so we need to make sure theres no ordered
6378 * extents in this range.
6379 */
6380 ordered = btrfs_lookup_ordered_range(inode, lockstart,
6381 lockend - lockstart + 1);
Josef Bacikc3473e82012-06-19 10:59:00 -04006382
6383 /*
6384 * We need to make sure there are no buffered pages in this
6385 * range either, we could have raced between the invalidate in
6386 * generic_file_direct_write and locking the extent. The
6387 * invalidate needs to happen so that reads after a write do not
6388 * get stale data.
6389 */
6390 if (!ordered && (!writing ||
6391 !test_range_bit(&BTRFS_I(inode)->io_tree,
6392 lockstart, lockend, EXTENT_UPTODATE, 0,
6393 cached_state)))
Josef Bacik4b46fce2010-05-23 11:00:55 -04006394 break;
Josef Bacikc3473e82012-06-19 10:59:00 -04006395
Chris Mason4845e442010-05-25 20:56:50 -04006396 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6397 &cached_state, GFP_NOFS);
Josef Bacikc3473e82012-06-19 10:59:00 -04006398
6399 if (ordered) {
6400 btrfs_start_ordered_extent(inode, ordered, 1);
6401 btrfs_put_ordered_extent(ordered);
6402 } else {
6403 /* Screw you mmap */
6404 ret = filemap_write_and_wait_range(file->f_mapping,
6405 lockstart,
6406 lockend);
6407 if (ret)
6408 goto out;
6409
6410 /*
6411 * If we found a page that couldn't be invalidated just
6412 * fall back to buffered.
6413 */
6414 ret = invalidate_inode_pages2_range(file->f_mapping,
6415 lockstart >> PAGE_CACHE_SHIFT,
6416 lockend >> PAGE_CACHE_SHIFT);
6417 if (ret) {
6418 if (ret == -EBUSY)
6419 ret = 0;
6420 goto out;
6421 }
6422 }
6423
Josef Bacik4b46fce2010-05-23 11:00:55 -04006424 cond_resched();
6425 }
6426
Chris Mason4845e442010-05-25 20:56:50 -04006427 /*
6428 * we don't use btrfs_set_extent_delalloc because we don't want
6429 * the dirty or uptodate bits
6430 */
6431 if (writing) {
6432 write_bits = EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING;
6433 ret = set_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01006434 EXTENT_DELALLOC, NULL, &cached_state,
Chris Mason4845e442010-05-25 20:56:50 -04006435 GFP_NOFS);
6436 if (ret) {
6437 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
6438 lockend, EXTENT_LOCKED | write_bits,
6439 1, 0, &cached_state, GFP_NOFS);
6440 goto out;
6441 }
6442 }
6443
6444 free_extent_state(cached_state);
6445 cached_state = NULL;
6446
Chris Mason5a5f79b2010-05-26 21:33:37 -04006447 ret = __blockdev_direct_IO(rw, iocb, inode,
6448 BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev,
6449 iov, offset, nr_segs, btrfs_get_blocks_direct, NULL,
6450 btrfs_submit_direct, 0);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006451
6452 if (ret < 0 && ret != -EIOCBQUEUED) {
Chris Mason4845e442010-05-25 20:56:50 -04006453 clear_extent_bit(&BTRFS_I(inode)->io_tree, offset,
6454 offset + iov_length(iov, nr_segs) - 1,
6455 EXTENT_LOCKED | write_bits, 1, 0,
6456 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006457 } else if (ret >= 0 && ret < iov_length(iov, nr_segs)) {
6458 /*
6459 * We're falling back to buffered, unlock the section we didn't
6460 * do IO on.
6461 */
Chris Mason4845e442010-05-25 20:56:50 -04006462 clear_extent_bit(&BTRFS_I(inode)->io_tree, offset + ret,
6463 offset + iov_length(iov, nr_segs) - 1,
6464 EXTENT_LOCKED | write_bits, 1, 0,
6465 &cached_state, GFP_NOFS);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006466 }
Chris Mason4845e442010-05-25 20:56:50 -04006467out:
6468 free_extent_state(cached_state);
Josef Bacik4b46fce2010-05-23 11:00:55 -04006469 return ret;
Chris Mason16432982008-04-10 10:23:21 -04006470}
6471
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006472static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
6473 __u64 start, __u64 len)
6474{
Chris Masonec29ed52011-02-23 16:23:20 -05006475 return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent_fiemap);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05006476}
6477
Chris Mason9ebefb182007-06-15 13:50:00 -04006478int btrfs_readpage(struct file *file, struct page *page)
6479{
Chris Masond1310b22008-01-24 16:13:08 -05006480 struct extent_io_tree *tree;
6481 tree = &BTRFS_I(page->mapping->host)->io_tree;
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02006482 return extent_read_full_page(tree, page, btrfs_get_extent, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04006483}
Chris Mason1832a6d2007-12-21 16:27:21 -05006484
Chris Mason39279cc2007-06-12 06:35:45 -04006485static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
6486{
Chris Masond1310b22008-01-24 16:13:08 -05006487 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04006488
6489
6490 if (current->flags & PF_MEMALLOC) {
6491 redirty_page_for_writepage(wbc, page);
6492 unlock_page(page);
6493 return 0;
6494 }
Chris Masond1310b22008-01-24 16:13:08 -05006495 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04006496 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
6497}
Chris Mason39279cc2007-06-12 06:35:45 -04006498
Chris Masonf4219502008-07-22 11:18:09 -04006499int btrfs_writepages(struct address_space *mapping,
6500 struct writeback_control *wbc)
Chris Masonb293f022007-11-01 19:45:34 -04006501{
Chris Masond1310b22008-01-24 16:13:08 -05006502 struct extent_io_tree *tree;
Chris Mason771ed682008-11-06 22:02:51 -05006503
Chris Masond1310b22008-01-24 16:13:08 -05006504 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04006505 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
6506}
6507
Chris Mason3ab2fb52007-11-08 10:59:22 -05006508static int
6509btrfs_readpages(struct file *file, struct address_space *mapping,
6510 struct list_head *pages, unsigned nr_pages)
6511{
Chris Masond1310b22008-01-24 16:13:08 -05006512 struct extent_io_tree *tree;
6513 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05006514 return extent_readpages(tree, mapping, pages, nr_pages,
6515 btrfs_get_extent);
6516}
Chris Masone6dcd2d2008-07-17 12:53:50 -04006517static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04006518{
Chris Masond1310b22008-01-24 16:13:08 -05006519 struct extent_io_tree *tree;
6520 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04006521 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04006522
Chris Masond1310b22008-01-24 16:13:08 -05006523 tree = &BTRFS_I(page->mapping->host)->io_tree;
6524 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05006525 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04006526 if (ret == 1) {
6527 ClearPagePrivate(page);
6528 set_page_private(page, 0);
6529 page_cache_release(page);
6530 }
6531 return ret;
6532}
Chris Mason39279cc2007-06-12 06:35:45 -04006533
Chris Masone6dcd2d2008-07-17 12:53:50 -04006534static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
6535{
Chris Mason98509cf2008-09-11 15:51:43 -04006536 if (PageWriteback(page) || PageDirty(page))
6537 return 0;
Yan Zhengb335b002009-02-12 10:06:04 -05006538 return __btrfs_releasepage(page, gfp_flags & GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006539}
6540
Chris Masona52d9a82007-08-27 16:49:44 -04006541static void btrfs_invalidatepage(struct page *page, unsigned long offset)
6542{
Josef Bacik5fd02042012-05-02 14:00:54 -04006543 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05006544 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006545 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006546 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006547 u64 page_start = page_offset(page);
6548 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006549
Chris Mason8b62b722009-09-02 16:53:46 -04006550 /*
6551 * we have the page locked, so new writeback can't start,
6552 * and the dirty bit won't be cleared while we are here.
6553 *
6554 * Wait for IO on this page so that we can safely clear
6555 * the PagePrivate2 bit and do ordered accounting
6556 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006557 wait_on_page_writeback(page);
Chris Mason8b62b722009-09-02 16:53:46 -04006558
Josef Bacik5fd02042012-05-02 14:00:54 -04006559 tree = &BTRFS_I(inode)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006560 if (offset) {
6561 btrfs_releasepage(page, GFP_NOFS);
6562 return;
6563 }
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006564 lock_extent_bits(tree, page_start, page_end, 0, &cached_state);
Josef Bacik5fd02042012-05-02 14:00:54 -04006565 ordered = btrfs_lookup_ordered_extent(inode,
Chris Masone6dcd2d2008-07-17 12:53:50 -04006566 page_offset(page));
6567 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04006568 /*
6569 * IO on this page will never be started, so we need
6570 * to account for any ordered extents now
6571 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006572 clear_extent_bit(tree, page_start, page_end,
6573 EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik32c00af2009-10-08 13:34:05 -04006574 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING, 1, 0,
Josef Bacik2ac55d42010-02-03 19:33:23 +00006575 &cached_state, GFP_NOFS);
Chris Mason8b62b722009-09-02 16:53:46 -04006576 /*
6577 * whoever cleared the private bit is responsible
6578 * for the finish_ordered_io
6579 */
Josef Bacik5fd02042012-05-02 14:00:54 -04006580 if (TestClearPagePrivate2(page) &&
6581 btrfs_dec_test_ordered_pending(inode, &ordered, page_start,
6582 PAGE_CACHE_SIZE, 1)) {
6583 btrfs_finish_ordered_io(ordered);
Chris Mason8b62b722009-09-02 16:53:46 -04006584 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006585 btrfs_put_ordered_extent(ordered);
Josef Bacik2ac55d42010-02-03 19:33:23 +00006586 cached_state = NULL;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006587 lock_extent_bits(tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006588 }
6589 clear_extent_bit(tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04006590 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik2ac55d42010-02-03 19:33:23 +00006591 EXTENT_DO_ACCOUNTING, 1, 1, &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006592 __btrfs_releasepage(page, GFP_NOFS);
6593
Chris Mason4a096752008-07-21 10:29:44 -04006594 ClearPageChecked(page);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04006595 if (PagePrivate(page)) {
Chris Mason9ad6b7b2008-04-18 16:11:30 -04006596 ClearPagePrivate(page);
6597 set_page_private(page, 0);
6598 page_cache_release(page);
6599 }
Chris Mason39279cc2007-06-12 06:35:45 -04006600}
6601
Chris Mason9ebefb182007-06-15 13:50:00 -04006602/*
6603 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
6604 * called from a page fault handler when a page is first dirtied. Hence we must
6605 * be careful to check for EOF conditions here. We set the page up correctly
6606 * for a written page which means we get ENOSPC checking when writing into
6607 * holes and correct delalloc and unwritten extent mapping on filesystems that
6608 * support these features.
6609 *
6610 * We are not allowed to take the i_mutex here so we have to play games to
6611 * protect against truncate races as the page could now be beyond EOF. Because
6612 * vmtruncate() writes the inode size before removing pages, once we have the
6613 * page lock we can determine safely if the page is beyond EOF. If it is not
6614 * beyond EOF, then the page is guaranteed safe against truncation until we
6615 * unlock the page.
6616 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07006617int btrfs_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Chris Mason9ebefb182007-06-15 13:50:00 -04006618{
Nick Pigginc2ec1752009-03-31 15:23:21 -07006619 struct page *page = vmf->page;
Chris Mason6da6aba2007-12-18 16:15:09 -05006620 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05006621 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006622 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
6623 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006624 struct extent_state *cached_state = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006625 char *kaddr;
6626 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04006627 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05006628 int ret;
Chris Mason9998eb72012-01-25 13:47:40 -05006629 int reserved = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04006630 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006631 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04006632
Jan Karab2b5ef52012-06-12 16:20:45 +02006633 sb_start_pagefault(inode->i_sb);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006634 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
Chris Mason9998eb72012-01-25 13:47:40 -05006635 if (!ret) {
Josef Bacike41f9412012-03-26 09:46:47 -04006636 ret = file_update_time(vma->vm_file);
Chris Mason9998eb72012-01-25 13:47:40 -05006637 reserved = 1;
6638 }
Nick Piggin56a76f82009-03-31 15:23:23 -07006639 if (ret) {
6640 if (ret == -ENOMEM)
6641 ret = VM_FAULT_OOM;
6642 else /* -ENOSPC, -EIO, etc */
6643 ret = VM_FAULT_SIGBUS;
Chris Mason9998eb72012-01-25 13:47:40 -05006644 if (reserved)
6645 goto out;
6646 goto out_noreserve;
Nick Piggin56a76f82009-03-31 15:23:23 -07006647 }
Chris Mason1832a6d2007-12-21 16:27:21 -05006648
Nick Piggin56a76f82009-03-31 15:23:23 -07006649 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006650again:
Chris Mason9ebefb182007-06-15 13:50:00 -04006651 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04006652 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006653 page_start = page_offset(page);
6654 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04006655
Chris Mason9ebefb182007-06-15 13:50:00 -04006656 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04006657 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04006658 /* page got truncated out from underneath us */
6659 goto out_unlock;
6660 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006661 wait_on_page_writeback(page);
6662
Jeff Mahoneyd0082372012-03-01 14:57:19 +01006663 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006664 set_page_extent_mapped(page);
6665
Chris Masoneb84ae02008-07-17 13:53:27 -04006666 /*
6667 * we can't set the delalloc bits if there are pending ordered
6668 * extents. Drop our locks and wait for them to finish
6669 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04006670 ordered = btrfs_lookup_ordered_extent(inode, page_start);
6671 if (ordered) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006672 unlock_extent_cached(io_tree, page_start, page_end,
6673 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006674 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04006675 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006676 btrfs_put_ordered_extent(ordered);
6677 goto again;
6678 }
6679
Josef Bacikfbf19082009-10-01 17:10:23 -04006680 /*
6681 * XXX - page_mkwrite gets called every time the page is dirtied, even
6682 * if it was already dirty, so for space accounting reasons we need to
6683 * clear any delalloc bits for the range we are fixing to save. There
6684 * is probably a better way to do this, but for now keep consistent with
6685 * prepare_pages in the normal write path.
6686 */
Josef Bacik2ac55d42010-02-03 19:33:23 +00006687 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
Josef Bacik32c00af2009-10-08 13:34:05 -04006688 EXTENT_DIRTY | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00006689 0, 0, &cached_state, GFP_NOFS);
Josef Bacikfbf19082009-10-01 17:10:23 -04006690
Josef Bacik2ac55d42010-02-03 19:33:23 +00006691 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
6692 &cached_state);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006693 if (ret) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00006694 unlock_extent_cached(io_tree, page_start, page_end,
6695 &cached_state, GFP_NOFS);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006696 ret = VM_FAULT_SIGBUS;
6697 goto out_unlock;
6698 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04006699 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04006700
6701 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04006702 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04006703 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04006704 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04006705 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04006706
Chris Masone6dcd2d2008-07-17 12:53:50 -04006707 if (zero_start != PAGE_CACHE_SIZE) {
6708 kaddr = kmap(page);
6709 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
6710 flush_dcache_page(page);
6711 kunmap(page);
6712 }
Chris Mason247e7432008-07-17 12:53:51 -04006713 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006714 set_page_dirty(page);
Chris Mason50a9b212009-09-11 12:33:12 -04006715 SetPageUptodate(page);
Chris Mason5a3f23d2009-03-31 13:27:11 -04006716
Chris Mason257c62e2009-10-13 13:21:08 -04006717 BTRFS_I(inode)->last_trans = root->fs_info->generation;
6718 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
6719
Josef Bacik2ac55d42010-02-03 19:33:23 +00006720 unlock_extent_cached(io_tree, page_start, page_end, &cached_state, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04006721
6722out_unlock:
Jan Karab2b5ef52012-06-12 16:20:45 +02006723 if (!ret) {
6724 sb_end_pagefault(inode->i_sb);
Chris Mason50a9b212009-09-11 12:33:12 -04006725 return VM_FAULT_LOCKED;
Jan Karab2b5ef52012-06-12 16:20:45 +02006726 }
Chris Mason9ebefb182007-06-15 13:50:00 -04006727 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05006728out:
Josef Bacikec39e182012-01-12 19:10:12 -05006729 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
Chris Mason9998eb72012-01-25 13:47:40 -05006730out_noreserve:
Jan Karab2b5ef52012-06-12 16:20:45 +02006731 sb_end_pagefault(inode->i_sb);
Chris Mason9ebefb182007-06-15 13:50:00 -04006732 return ret;
6733}
6734
Josef Bacika41ad392011-01-31 15:30:16 -05006735static int btrfs_truncate(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04006736{
6737 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikfcb80c22011-05-03 10:40:22 -04006738 struct btrfs_block_rsv *rsv;
Chris Mason39279cc2007-06-12 06:35:45 -04006739 int ret;
Josef Bacik3893e332011-01-31 16:03:11 -05006740 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006741 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04006742 unsigned long nr;
Chris Masondbe674a2008-07-17 12:54:05 -04006743 u64 mask = root->sectorsize - 1;
Josef Bacik07127182011-08-19 10:29:59 -04006744 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04006745
Josef Bacik5d5e1032009-10-13 16:46:49 -04006746 ret = btrfs_truncate_page(inode->i_mapping, inode->i_size);
6747 if (ret)
Josef Bacika41ad392011-01-31 15:30:16 -05006748 return ret;
Yan, Zheng80825102009-11-12 09:35:36 +00006749
Chris Mason4a096752008-07-21 10:29:44 -04006750 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
Yan, Zheng80825102009-11-12 09:35:36 +00006751 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04006752
Josef Bacikfcb80c22011-05-03 10:40:22 -04006753 /*
6754 * Yes ladies and gentelment, this is indeed ugly. The fact is we have
6755 * 3 things going on here
6756 *
6757 * 1) We need to reserve space for our orphan item and the space to
6758 * delete our orphan item. Lord knows we don't want to have a dangling
6759 * orphan item because we didn't reserve space to remove it.
6760 *
6761 * 2) We need to reserve space to update our inode.
6762 *
6763 * 3) We need to have something to cache all the space that is going to
6764 * be free'd up by the truncate operation, but also have some slack
6765 * space reserved in case it uses space during the truncate (thank you
6766 * very much snapshotting).
6767 *
6768 * And we need these to all be seperate. The fact is we can use alot of
6769 * space doing the truncate, and we have no earthly idea how much space
6770 * we will use, so we need the truncate reservation to be seperate so it
6771 * doesn't end up using space reserved for updating the inode or
6772 * removing the orphan item. We also need to be able to stop the
6773 * transaction and start a new one, which means we need to be able to
6774 * update the inode several times, and we have no idea of knowing how
6775 * many times that will be, so we can't just reserve 1 item for the
6776 * entirety of the opration, so that has to be done seperately as well.
6777 * Then there is the orphan item, which does indeed need to be held on
6778 * to for the whole operation, and we need nobody to touch this reserved
6779 * space except the orphan code.
6780 *
6781 * So that leaves us with
6782 *
6783 * 1) root->orphan_block_rsv - for the orphan deletion.
6784 * 2) rsv - for the truncate reservation, which we will steal from the
6785 * transaction reservation.
6786 * 3) fs_info->trans_block_rsv - this will have 1 items worth left for
6787 * updating the inode.
6788 */
6789 rsv = btrfs_alloc_block_rsv(root);
6790 if (!rsv)
6791 return -ENOMEM;
Josef Bacik4a338542011-08-29 11:01:31 -04006792 rsv->size = min_size;
Josef Bacikf0cd8462011-03-04 14:37:08 -05006793
Josef Bacik907cbce2011-08-08 13:46:15 -04006794 /*
Josef Bacik07127182011-08-19 10:29:59 -04006795 * 1 for the truncate slack space
Josef Bacik907cbce2011-08-08 13:46:15 -04006796 * 1 for the orphan item we're going to add
6797 * 1 for the orphan item deletion
6798 * 1 for updating the inode.
6799 */
Josef Bacikfcb80c22011-05-03 10:40:22 -04006800 trans = btrfs_start_transaction(root, 4);
6801 if (IS_ERR(trans)) {
6802 err = PTR_ERR(trans);
6803 goto out;
6804 }
Josef Bacikf0cd8462011-03-04 14:37:08 -05006805
Josef Bacik907cbce2011-08-08 13:46:15 -04006806 /* Migrate the slack space for the truncate to our reserve */
6807 ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv, rsv,
6808 min_size);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006809 BUG_ON(ret);
Josef Bacikf0cd8462011-03-04 14:37:08 -05006810
6811 ret = btrfs_orphan_add(trans, inode);
6812 if (ret) {
6813 btrfs_end_transaction(trans, root);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006814 goto out;
Josef Bacikf0cd8462011-03-04 14:37:08 -05006815 }
6816
Chris Mason5a3f23d2009-03-31 13:27:11 -04006817 /*
6818 * setattr is responsible for setting the ordered_data_close flag,
6819 * but that is only tested during the last file release. That
6820 * could happen well after the next commit, leaving a great big
6821 * window where new writes may get lost if someone chooses to write
6822 * to this file after truncating to zero
6823 *
6824 * The inode doesn't have any dirty data here, and so if we commit
6825 * this is a noop. If someone immediately starts writing to the inode
6826 * it is very likely we'll catch some of their writes in this
6827 * transaction, and the commit will find this file on the ordered
6828 * data list with good things to send down.
6829 *
6830 * This is a best effort solution, there is still a window where
6831 * using truncate to replace the contents of the file will
6832 * end up with a zero length file after a crash.
6833 */
Josef Bacik72ac3c02012-05-23 14:13:11 -04006834 if (inode->i_size == 0 && test_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
6835 &BTRFS_I(inode)->runtime_flags))
Chris Mason5a3f23d2009-03-31 13:27:11 -04006836 btrfs_add_ordered_operation(trans, root, inode);
6837
Yan, Zheng80825102009-11-12 09:35:36 +00006838 while (1) {
Josef Bacik36ba0222011-10-18 12:15:48 -04006839 ret = btrfs_block_rsv_refill(root, rsv, min_size);
Josef Bacik907cbce2011-08-08 13:46:15 -04006840 if (ret) {
6841 /*
6842 * This can only happen with the original transaction we
6843 * started above, every other time we shouldn't have a
6844 * transaction started yet.
6845 */
6846 if (ret == -EAGAIN)
6847 goto end_trans;
6848 err = ret;
6849 break;
6850 }
6851
Yan, Zhengd68fc572010-05-16 10:49:58 -04006852 if (!trans) {
Josef Bacik907cbce2011-08-08 13:46:15 -04006853 /* Just need the 1 for updating the inode */
6854 trans = btrfs_start_transaction(root, 1);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006855 if (IS_ERR(trans)) {
Josef Bacik7041ee92011-12-09 13:26:22 -05006856 ret = err = PTR_ERR(trans);
6857 trans = NULL;
6858 break;
Josef Bacikfcb80c22011-05-03 10:40:22 -04006859 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04006860 }
6861
Josef Bacik907cbce2011-08-08 13:46:15 -04006862 trans->block_rsv = rsv;
6863
Yan, Zheng80825102009-11-12 09:35:36 +00006864 ret = btrfs_truncate_inode_items(trans, root, inode,
6865 inode->i_size,
6866 BTRFS_EXTENT_DATA_KEY);
Josef Bacik3893e332011-01-31 16:03:11 -05006867 if (ret != -EAGAIN) {
6868 err = ret;
Yan, Zheng80825102009-11-12 09:35:36 +00006869 break;
Josef Bacik3893e332011-01-31 16:03:11 -05006870 }
Chris Mason39279cc2007-06-12 06:35:45 -04006871
Josef Bacikfcb80c22011-05-03 10:40:22 -04006872 trans->block_rsv = &root->fs_info->trans_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00006873 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05006874 if (ret) {
6875 err = ret;
6876 break;
6877 }
Josef Bacik907cbce2011-08-08 13:46:15 -04006878end_trans:
Yan, Zheng80825102009-11-12 09:35:36 +00006879 nr = trans->blocks_used;
6880 btrfs_end_transaction(trans, root);
Yan, Zhengd68fc572010-05-16 10:49:58 -04006881 trans = NULL;
Yan, Zheng80825102009-11-12 09:35:36 +00006882 btrfs_btree_balance_dirty(root, nr);
Yan, Zheng80825102009-11-12 09:35:36 +00006883 }
6884
6885 if (ret == 0 && inode->i_nlink > 0) {
Josef Bacikfcb80c22011-05-03 10:40:22 -04006886 trans->block_rsv = root->orphan_block_rsv;
Yan, Zheng80825102009-11-12 09:35:36 +00006887 ret = btrfs_orphan_del(trans, inode);
Josef Bacik3893e332011-01-31 16:03:11 -05006888 if (ret)
6889 err = ret;
Josef Bacikded5db92011-03-04 14:09:46 -05006890 } else if (ret && inode->i_nlink > 0) {
6891 /*
6892 * Failed to do the truncate, remove us from the in memory
6893 * orphan list.
6894 */
6895 ret = btrfs_orphan_del(NULL, inode);
Yan, Zheng80825102009-11-12 09:35:36 +00006896 }
6897
Chris Mason917c16b2011-11-08 14:49:59 -05006898 if (trans) {
6899 trans->block_rsv = &root->fs_info->trans_block_rsv;
6900 ret = btrfs_update_inode(trans, root, inode);
6901 if (ret && !err)
6902 err = ret;
Josef Bacik7b128762008-07-24 12:17:14 -04006903
Chris Mason917c16b2011-11-08 14:49:59 -05006904 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05006905 ret = btrfs_end_transaction(trans, root);
Chris Mason917c16b2011-11-08 14:49:59 -05006906 btrfs_btree_balance_dirty(root, nr);
6907 }
Josef Bacikfcb80c22011-05-03 10:40:22 -04006908
6909out:
6910 btrfs_free_block_rsv(root, rsv);
6911
Josef Bacik3893e332011-01-31 16:03:11 -05006912 if (ret && !err)
6913 err = ret;
Josef Bacika41ad392011-01-31 15:30:16 -05006914
Josef Bacik3893e332011-01-31 16:03:11 -05006915 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04006916}
6917
Sven Wegener3b963622008-06-09 21:57:42 -04006918/*
Chris Masond352ac62008-09-29 15:18:18 -04006919 * create a new subvolume directory/inode (helper for the ioctl).
6920 */
Yan Zhengd2fb3432008-12-11 16:30:39 -05006921int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
Josef Bacikd82a6f12011-05-11 15:26:06 -04006922 struct btrfs_root *new_root, u64 new_dirid)
Chris Mason39279cc2007-06-12 06:35:45 -04006923{
Chris Mason39279cc2007-06-12 06:35:45 -04006924 struct inode *inode;
Yan, Zheng76dda932009-09-21 16:00:26 -04006925 int err;
Chris Mason00e4e6b2008-08-05 11:18:09 -04006926 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04006927
Florian Albrechtskirchinger12fc9d02012-02-10 22:15:54 +01006928 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2,
6929 new_dirid, new_dirid,
6930 S_IFDIR | (~current_umask() & S_IRWXUGO),
6931 &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04006932 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04006933 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04006934 inode->i_op = &btrfs_dir_inode_operations;
6935 inode->i_fop = &btrfs_dir_file_operations;
6936
Miklos Szeredibfe86842011-10-28 14:13:29 +02006937 set_nlink(inode, 1);
Chris Masondbe674a2008-07-17 12:54:05 -04006938 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04006939
Yan, Zheng76dda932009-09-21 16:00:26 -04006940 err = btrfs_update_inode(trans, new_root, inode);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04006941
Yan, Zheng76dda932009-09-21 16:00:26 -04006942 iput(inode);
Mark Fashehce598972011-07-26 11:32:23 -07006943 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04006944}
6945
Chris Mason39279cc2007-06-12 06:35:45 -04006946struct inode *btrfs_alloc_inode(struct super_block *sb)
6947{
6948 struct btrfs_inode *ei;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006949 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04006950
6951 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
6952 if (!ei)
6953 return NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006954
6955 ei->root = NULL;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006956 ei->generation = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04006957 ei->last_trans = 0;
Chris Mason257c62e2009-10-13 13:21:08 -04006958 ei->last_sub_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04006959 ei->logged_trans = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006960 ei->delalloc_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006961 ei->disk_i_size = 0;
6962 ei->flags = 0;
Josef Bacik7709cde2011-08-04 10:25:02 -04006963 ei->csum_bytes = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006964 ei->index_cnt = (u64)-1;
6965 ei->last_unlink_trans = 0;
6966
Josef Bacik9e0baf62011-07-15 15:16:44 +00006967 spin_lock_init(&ei->lock);
6968 ei->outstanding_extents = 0;
6969 ei->reserved_extents = 0;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006970
Josef Bacik72ac3c02012-05-23 14:13:11 -04006971 ei->runtime_flags = 0;
Li Zefan261507a02010-12-17 14:21:50 +08006972 ei->force_compress = BTRFS_COMPRESS_NONE;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006973
Miao Xie16cdcec2011-04-22 18:12:22 +08006974 ei->delayed_node = NULL;
6975
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006976 inode = &ei->vfs_inode;
David Sterbaa8067e02011-04-21 00:34:43 +02006977 extent_map_tree_init(&ei->extent_tree);
David Sterbaf993c882011-04-20 23:35:57 +02006978 extent_io_tree_init(&ei->io_tree, &inode->i_data);
6979 extent_io_tree_init(&ei->io_failure_tree, &inode->i_data);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04006980 ei->io_tree.track_uptodate = 1;
6981 ei->io_failure_tree.track_uptodate = 1;
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006982 mutex_init(&ei->log_mutex);
Josef Bacikf2486792012-01-13 12:09:22 -05006983 mutex_init(&ei->delalloc_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006984 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006985 INIT_LIST_HEAD(&ei->delalloc_inodes);
Chris Mason5a3f23d2009-03-31 13:27:11 -04006986 INIT_LIST_HEAD(&ei->ordered_operations);
Yan, Zheng2ead6ae2010-05-16 10:46:25 -04006987 RB_CLEAR_NODE(&ei->rb_node);
6988
6989 return inode;
Chris Mason39279cc2007-06-12 06:35:45 -04006990}
6991
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11006992static void btrfs_i_callback(struct rcu_head *head)
6993{
6994 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11006995 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
6996}
6997
Chris Mason39279cc2007-06-12 06:35:45 -04006998void btrfs_destroy_inode(struct inode *inode)
6999{
Chris Masone6dcd2d2008-07-17 12:53:50 -04007000 struct btrfs_ordered_extent *ordered;
Chris Mason5a3f23d2009-03-31 13:27:11 -04007001 struct btrfs_root *root = BTRFS_I(inode)->root;
7002
Al Virob3d9b7a2012-06-09 13:51:19 -04007003 WARN_ON(!hlist_empty(&inode->i_dentry));
Chris Mason39279cc2007-06-12 06:35:45 -04007004 WARN_ON(inode->i_data.nrpages);
Josef Bacik9e0baf62011-07-15 15:16:44 +00007005 WARN_ON(BTRFS_I(inode)->outstanding_extents);
7006 WARN_ON(BTRFS_I(inode)->reserved_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04007007 WARN_ON(BTRFS_I(inode)->delalloc_bytes);
7008 WARN_ON(BTRFS_I(inode)->csum_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -04007009
Chris Mason5a3f23d2009-03-31 13:27:11 -04007010 /*
Josef Bacika6dbd422009-11-11 15:53:34 -05007011 * This can happen where we create an inode, but somebody else also
7012 * created the same inode and we need to destroy the one we already
7013 * created.
7014 */
7015 if (!root)
7016 goto free;
7017
7018 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04007019 * Make sure we're properly removed from the ordered operation
7020 * lists.
7021 */
7022 smp_mb();
7023 if (!list_empty(&BTRFS_I(inode)->ordered_operations)) {
7024 spin_lock(&root->fs_info->ordered_extent_lock);
7025 list_del_init(&BTRFS_I(inode)->ordered_operations);
7026 spin_unlock(&root->fs_info->ordered_extent_lock);
7027 }
7028
Josef Bacik8a35d952012-05-23 14:26:42 -04007029 if (test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
7030 &BTRFS_I(inode)->runtime_flags)) {
Li Zefan33345d012011-04-20 10:31:50 +08007031 printk(KERN_INFO "BTRFS: inode %llu still on the orphan list\n",
7032 (unsigned long long)btrfs_ino(inode));
Josef Bacik8a35d952012-05-23 14:26:42 -04007033 atomic_dec(&root->orphan_inodes);
Josef Bacik7b128762008-07-24 12:17:14 -04007034 }
Josef Bacik7b128762008-07-24 12:17:14 -04007035
Chris Masond3977122009-01-05 21:25:51 -05007036 while (1) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04007037 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
7038 if (!ordered)
7039 break;
7040 else {
Chris Masond3977122009-01-05 21:25:51 -05007041 printk(KERN_ERR "btrfs found ordered "
7042 "extent %llu %llu on inode cleanup\n",
7043 (unsigned long long)ordered->file_offset,
7044 (unsigned long long)ordered->len);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007045 btrfs_remove_ordered_extent(inode, ordered);
7046 btrfs_put_ordered_extent(ordered);
7047 btrfs_put_ordered_extent(ordered);
7048 }
7049 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007050 inode_tree_del(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007051 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
Josef Bacika6dbd422009-11-11 15:53:34 -05007052free:
Miao Xie16cdcec2011-04-22 18:12:22 +08007053 btrfs_remove_delayed_node(inode);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11007054 call_rcu(&inode->i_rcu, btrfs_i_callback);
Chris Mason39279cc2007-06-12 06:35:45 -04007055}
7056
Al Viro45321ac2010-06-07 13:43:19 -04007057int btrfs_drop_inode(struct inode *inode)
Yan, Zheng76dda932009-09-21 16:00:26 -04007058{
7059 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro45321ac2010-06-07 13:43:19 -04007060
Josef Bacik0af3d002010-06-21 14:48:16 -04007061 if (btrfs_root_refs(&root->root_item) == 0 &&
Liu Bo83eea1f2012-07-10 05:28:39 -06007062 !btrfs_is_free_space_inode(inode))
Al Viro45321ac2010-06-07 13:43:19 -04007063 return 1;
Yan, Zheng76dda932009-09-21 16:00:26 -04007064 else
Al Viro45321ac2010-06-07 13:43:19 -04007065 return generic_drop_inode(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04007066}
7067
Sven Wegener0ee0fda2008-07-30 16:54:26 -04007068static void init_once(void *foo)
Chris Mason39279cc2007-06-12 06:35:45 -04007069{
7070 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
7071
7072 inode_init_once(&ei->vfs_inode);
7073}
7074
7075void btrfs_destroy_cachep(void)
7076{
7077 if (btrfs_inode_cachep)
7078 kmem_cache_destroy(btrfs_inode_cachep);
7079 if (btrfs_trans_handle_cachep)
7080 kmem_cache_destroy(btrfs_trans_handle_cachep);
7081 if (btrfs_transaction_cachep)
7082 kmem_cache_destroy(btrfs_transaction_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04007083 if (btrfs_path_cachep)
7084 kmem_cache_destroy(btrfs_path_cachep);
Josef Bacikdc89e982011-01-28 17:05:48 -05007085 if (btrfs_free_space_cachep)
7086 kmem_cache_destroy(btrfs_free_space_cachep);
Chris Mason39279cc2007-06-12 06:35:45 -04007087}
7088
7089int btrfs_init_cachep(void)
7090{
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007091 btrfs_inode_cachep = kmem_cache_create("btrfs_inode_cache",
7092 sizeof(struct btrfs_inode), 0,
7093 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04007094 if (!btrfs_inode_cachep)
7095 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007096
7097 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle_cache",
7098 sizeof(struct btrfs_trans_handle), 0,
7099 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04007100 if (!btrfs_trans_handle_cachep)
7101 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007102
7103 btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction_cache",
7104 sizeof(struct btrfs_transaction), 0,
7105 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04007106 if (!btrfs_transaction_cachep)
7107 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007108
7109 btrfs_path_cachep = kmem_cache_create("btrfs_path_cache",
7110 sizeof(struct btrfs_path), 0,
7111 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04007112 if (!btrfs_path_cachep)
7113 goto fail;
Christoph Hellwig9601e3f2009-04-13 15:33:09 +02007114
Josef Bacikdc89e982011-01-28 17:05:48 -05007115 btrfs_free_space_cachep = kmem_cache_create("btrfs_free_space_cache",
7116 sizeof(struct btrfs_free_space), 0,
7117 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
7118 if (!btrfs_free_space_cachep)
7119 goto fail;
7120
Chris Mason39279cc2007-06-12 06:35:45 -04007121 return 0;
7122fail:
7123 btrfs_destroy_cachep();
7124 return -ENOMEM;
7125}
7126
7127static int btrfs_getattr(struct vfsmount *mnt,
7128 struct dentry *dentry, struct kstat *stat)
7129{
7130 struct inode *inode = dentry->d_inode;
David Sterbafadc0d82011-11-20 07:33:38 -05007131 u32 blocksize = inode->i_sb->s_blocksize;
7132
Chris Mason39279cc2007-06-12 06:35:45 -04007133 generic_fillattr(inode, stat);
Al Viro0ee5dc62011-07-07 15:44:25 -04007134 stat->dev = BTRFS_I(inode)->root->anon_dev;
Chris Masond6667462008-01-03 14:51:00 -05007135 stat->blksize = PAGE_CACHE_SIZE;
David Sterbafadc0d82011-11-20 07:33:38 -05007136 stat->blocks = (ALIGN(inode_get_bytes(inode), blocksize) +
7137 ALIGN(BTRFS_I(inode)->delalloc_bytes, blocksize)) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -04007138 return 0;
7139}
7140
Liu Bo75e7cb72011-03-22 10:12:20 +00007141/*
7142 * If a file is moved, it will inherit the cow and compression flags of the new
7143 * directory.
7144 */
7145static void fixup_inode_flags(struct inode *dir, struct inode *inode)
7146{
7147 struct btrfs_inode *b_dir = BTRFS_I(dir);
7148 struct btrfs_inode *b_inode = BTRFS_I(inode);
7149
7150 if (b_dir->flags & BTRFS_INODE_NODATACOW)
7151 b_inode->flags |= BTRFS_INODE_NODATACOW;
7152 else
7153 b_inode->flags &= ~BTRFS_INODE_NODATACOW;
7154
Liu Bobc178232012-06-14 02:23:18 -06007155 if (b_dir->flags & BTRFS_INODE_COMPRESS) {
Liu Bo75e7cb72011-03-22 10:12:20 +00007156 b_inode->flags |= BTRFS_INODE_COMPRESS;
Liu Bobc178232012-06-14 02:23:18 -06007157 b_inode->flags &= ~BTRFS_INODE_NOCOMPRESS;
7158 } else {
7159 b_inode->flags &= ~(BTRFS_INODE_COMPRESS |
7160 BTRFS_INODE_NOCOMPRESS);
7161 }
Liu Bo75e7cb72011-03-22 10:12:20 +00007162}
7163
Chris Masond3977122009-01-05 21:25:51 -05007164static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
7165 struct inode *new_dir, struct dentry *new_dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04007166{
7167 struct btrfs_trans_handle *trans;
7168 struct btrfs_root *root = BTRFS_I(old_dir)->root;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007169 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04007170 struct inode *new_inode = new_dentry->d_inode;
7171 struct inode *old_inode = old_dentry->d_inode;
7172 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04007173 u64 index = 0;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007174 u64 root_objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04007175 int ret;
Li Zefan33345d012011-04-20 10:31:50 +08007176 u64 old_ino = btrfs_ino(old_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007177
Li Zefan33345d012011-04-20 10:31:50 +08007178 if (btrfs_ino(new_dir) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
Yan, Zhengf679a842009-09-24 09:17:31 -04007179 return -EPERM;
7180
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007181 /* we only allow rename subvolume link between subvolumes */
Li Zefan33345d012011-04-20 10:31:50 +08007182 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
Chris Mason3394e162008-11-17 20:42:26 -05007183 return -EXDEV;
7184
Li Zefan33345d012011-04-20 10:31:50 +08007185 if (old_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
7186 (new_inode && btrfs_ino(new_inode) == BTRFS_FIRST_FREE_OBJECTID))
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007187 return -ENOTEMPTY;
7188
Chris Mason39279cc2007-06-12 06:35:45 -04007189 if (S_ISDIR(old_inode->i_mode) && new_inode &&
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007190 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
Chris Mason39279cc2007-06-12 06:35:45 -04007191 return -ENOTEMPTY;
Chris Mason5a3f23d2009-03-31 13:27:11 -04007192 /*
7193 * we're using rename to replace one file with another.
7194 * and the replacement file is large. Start IO on it now so
7195 * we don't add too much work to the end of the transaction
7196 */
Bartlomiej Zolnierkiewicz4baf8c92009-08-07 13:47:08 -04007197 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size &&
Chris Mason5a3f23d2009-03-31 13:27:11 -04007198 old_inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
7199 filemap_flush(old_inode->i_mapping);
7200
Yan, Zheng76dda932009-09-21 16:00:26 -04007201 /* close the racy window with snapshot create/destroy ioctl */
Li Zefan33345d012011-04-20 10:31:50 +08007202 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04007203 down_read(&root->fs_info->subvol_sem);
Yan, Zhenga22285a2010-05-16 10:48:46 -04007204 /*
7205 * We want to reserve the absolute worst case amount of items. So if
7206 * both inodes are subvols and we need to unlink them then that would
7207 * require 4 item modifications, but if they are both normal inodes it
7208 * would require 5 item modifications, so we'll assume their normal
7209 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
7210 * should cover the worst case number of items we'll modify.
7211 */
7212 trans = btrfs_start_transaction(root, 20);
Johann Lombardib44c59a2011-03-31 13:23:47 +00007213 if (IS_ERR(trans)) {
7214 ret = PTR_ERR(trans);
7215 goto out_notrans;
7216 }
Chris Mason5f39d392007-10-15 16:14:19 -04007217
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007218 if (dest != root)
7219 btrfs_record_root_in_trans(trans, dest);
7220
Yan, Zhenga5719522009-09-24 09:17:31 -04007221 ret = btrfs_set_inode_index(new_dir, &index);
7222 if (ret)
7223 goto out_fail;
Chris Mason5a3f23d2009-03-31 13:27:11 -04007224
Li Zefan33345d012011-04-20 10:31:50 +08007225 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007226 /* force full log commit if subvolume involved. */
7227 root->fs_info->last_trans_log_full_commit = trans->transid;
7228 } else {
Yan, Zhenga5719522009-09-24 09:17:31 -04007229 ret = btrfs_insert_inode_ref(trans, dest,
7230 new_dentry->d_name.name,
7231 new_dentry->d_name.len,
Li Zefan33345d012011-04-20 10:31:50 +08007232 old_ino,
7233 btrfs_ino(new_dir), index);
Yan, Zhenga5719522009-09-24 09:17:31 -04007234 if (ret)
7235 goto out_fail;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007236 /*
7237 * this is an ugly little race, but the rename is required
7238 * to make sure that if we crash, the inode is either at the
7239 * old name or the new one. pinning the log transaction lets
7240 * us make sure we don't allow a log commit to come in after
7241 * we unlink the name but before we add the new name back in.
7242 */
7243 btrfs_pin_log_trans(root);
7244 }
Chris Mason12fcfd22009-03-24 10:24:20 -04007245 /*
Chris Mason5a3f23d2009-03-31 13:27:11 -04007246 * make sure the inode gets flushed if it is replacing
7247 * something.
7248 */
Li Zefan33345d012011-04-20 10:31:50 +08007249 if (new_inode && new_inode->i_size && S_ISREG(old_inode->i_mode))
Chris Mason5a3f23d2009-03-31 13:27:11 -04007250 btrfs_add_ordered_operation(trans, root, old_inode);
Chris Mason5a3f23d2009-03-31 13:27:11 -04007251
Josef Bacik0c4d2d92012-04-05 15:03:02 -04007252 inode_inc_iversion(old_dir);
7253 inode_inc_iversion(new_dir);
7254 inode_inc_iversion(old_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007255 old_dir->i_ctime = old_dir->i_mtime = ctime;
7256 new_dir->i_ctime = new_dir->i_mtime = ctime;
7257 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04007258
Chris Mason12fcfd22009-03-24 10:24:20 -04007259 if (old_dentry->d_parent != new_dentry->d_parent)
7260 btrfs_record_unlink_dir(trans, old_dir, old_inode, 1);
7261
Li Zefan33345d012011-04-20 10:31:50 +08007262 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007263 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
7264 ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid,
7265 old_dentry->d_name.name,
7266 old_dentry->d_name.len);
7267 } else {
Al Viro92986792011-03-04 17:14:37 +00007268 ret = __btrfs_unlink_inode(trans, root, old_dir,
7269 old_dentry->d_inode,
7270 old_dentry->d_name.name,
7271 old_dentry->d_name.len);
7272 if (!ret)
7273 ret = btrfs_update_inode(trans, root, old_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007274 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007275 if (ret) {
7276 btrfs_abort_transaction(trans, root, ret);
7277 goto out_fail;
7278 }
Chris Mason39279cc2007-06-12 06:35:45 -04007279
7280 if (new_inode) {
Josef Bacik0c4d2d92012-04-05 15:03:02 -04007281 inode_inc_iversion(new_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007282 new_inode->i_ctime = CURRENT_TIME;
Li Zefan33345d012011-04-20 10:31:50 +08007283 if (unlikely(btrfs_ino(new_inode) ==
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007284 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
7285 root_objectid = BTRFS_I(new_inode)->location.objectid;
7286 ret = btrfs_unlink_subvol(trans, dest, new_dir,
7287 root_objectid,
7288 new_dentry->d_name.name,
7289 new_dentry->d_name.len);
7290 BUG_ON(new_inode->i_nlink == 0);
7291 } else {
7292 ret = btrfs_unlink_inode(trans, dest, new_dir,
7293 new_dentry->d_inode,
7294 new_dentry->d_name.name,
7295 new_dentry->d_name.len);
7296 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007297 if (!ret && new_inode->i_nlink == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04007298 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007299 BUG_ON(ret);
Josef Bacik7b128762008-07-24 12:17:14 -04007300 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007301 if (ret) {
7302 btrfs_abort_transaction(trans, root, ret);
7303 goto out_fail;
7304 }
Chris Mason39279cc2007-06-12 06:35:45 -04007305 }
Josef Bacikaec74772008-07-24 12:12:38 -04007306
Liu Bo75e7cb72011-03-22 10:12:20 +00007307 fixup_inode_flags(new_dir, old_inode);
7308
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007309 ret = btrfs_add_link(trans, new_dir, old_inode,
7310 new_dentry->d_name.name,
Yan, Zhenga5719522009-09-24 09:17:31 -04007311 new_dentry->d_name.len, 0, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007312 if (ret) {
7313 btrfs_abort_transaction(trans, root, ret);
7314 goto out_fail;
7315 }
Chris Mason39279cc2007-06-12 06:35:45 -04007316
Li Zefan33345d012011-04-20 10:31:50 +08007317 if (old_ino != BTRFS_FIRST_FREE_OBJECTID) {
Al Viro10d9f302011-07-16 23:09:10 -04007318 struct dentry *parent = new_dentry->d_parent;
Josef Bacik6a912212010-11-20 09:48:00 +00007319 btrfs_log_new_name(trans, old_inode, old_dir, parent);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -04007320 btrfs_end_log_trans(root);
7321 }
Chris Mason39279cc2007-06-12 06:35:45 -04007322out_fail:
Josef Bacik7ad85bb2012-01-12 19:10:12 -05007323 btrfs_end_transaction(trans, root);
Johann Lombardib44c59a2011-03-31 13:23:47 +00007324out_notrans:
Li Zefan33345d012011-04-20 10:31:50 +08007325 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
Yan, Zheng76dda932009-09-21 16:00:26 -04007326 up_read(&root->fs_info->subvol_sem);
Josef Bacik9ed74f22009-09-11 16:12:44 -04007327
Chris Mason39279cc2007-06-12 06:35:45 -04007328 return ret;
7329}
7330
Chris Masond352ac62008-09-29 15:18:18 -04007331/*
7332 * some fairly slow code that needs optimization. This walks the list
7333 * of all the inodes with pending delalloc and forces them to disk.
7334 */
Yan, Zheng24bbcf02009-11-12 09:36:34 +00007335int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput)
Chris Masonea8c2812008-08-04 23:17:27 -04007336{
7337 struct list_head *head = &root->fs_info->delalloc_inodes;
7338 struct btrfs_inode *binode;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007339 struct inode *inode;
Chris Masonea8c2812008-08-04 23:17:27 -04007340
Yan Zhengc146afa2008-11-12 14:34:12 -05007341 if (root->fs_info->sb->s_flags & MS_RDONLY)
7342 return -EROFS;
7343
Chris Mason75eff682008-12-15 15:54:40 -05007344 spin_lock(&root->fs_info->delalloc_lock);
Chris Masond3977122009-01-05 21:25:51 -05007345 while (!list_empty(head)) {
Chris Masonea8c2812008-08-04 23:17:27 -04007346 binode = list_entry(head->next, struct btrfs_inode,
7347 delalloc_inodes);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007348 inode = igrab(&binode->vfs_inode);
7349 if (!inode)
7350 list_del_init(&binode->delalloc_inodes);
Chris Mason75eff682008-12-15 15:54:40 -05007351 spin_unlock(&root->fs_info->delalloc_lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007352 if (inode) {
Chris Mason8c8bee1d2008-09-29 11:19:10 -04007353 filemap_flush(inode->i_mapping);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00007354 if (delay_iput)
7355 btrfs_add_delayed_iput(inode);
7356 else
7357 iput(inode);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04007358 }
7359 cond_resched();
Chris Mason75eff682008-12-15 15:54:40 -05007360 spin_lock(&root->fs_info->delalloc_lock);
Chris Masonea8c2812008-08-04 23:17:27 -04007361 }
Chris Mason75eff682008-12-15 15:54:40 -05007362 spin_unlock(&root->fs_info->delalloc_lock);
Chris Mason8c8bee1d2008-09-29 11:19:10 -04007363
7364 /* the filemap_flush will queue IO into the worker threads, but
7365 * we have to make sure the IO is actually started and that
7366 * ordered extents get created before we return
7367 */
7368 atomic_inc(&root->fs_info->async_submit_draining);
Chris Masond3977122009-01-05 21:25:51 -05007369 while (atomic_read(&root->fs_info->nr_async_submits) ||
Chris Mason771ed682008-11-06 22:02:51 -05007370 atomic_read(&root->fs_info->async_delalloc_pages)) {
Chris Mason8c8bee1d2008-09-29 11:19:10 -04007371 wait_event(root->fs_info->async_submit_wait,
Chris Mason771ed682008-11-06 22:02:51 -05007372 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
7373 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
Chris Mason8c8bee1d2008-09-29 11:19:10 -04007374 }
7375 atomic_dec(&root->fs_info->async_submit_draining);
Chris Masonea8c2812008-08-04 23:17:27 -04007376 return 0;
7377}
7378
Chris Mason39279cc2007-06-12 06:35:45 -04007379static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
7380 const char *symname)
7381{
7382 struct btrfs_trans_handle *trans;
7383 struct btrfs_root *root = BTRFS_I(dir)->root;
7384 struct btrfs_path *path;
7385 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05007386 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04007387 int err;
7388 int drop_inode = 0;
7389 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04007390 u64 index = 0 ;
Chris Mason39279cc2007-06-12 06:35:45 -04007391 int name_len;
7392 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04007393 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04007394 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04007395 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05007396 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007397
7398 name_len = strlen(symname) + 1;
7399 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
7400 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05007401
Josef Bacik9ed74f22009-09-11 16:12:44 -04007402 /*
7403 * 2 items for inode item and ref
7404 * 2 items for dir items
7405 * 1 item for xattr if selinux is on
7406 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04007407 trans = btrfs_start_transaction(root, 5);
7408 if (IS_ERR(trans))
7409 return PTR_ERR(trans);
Chris Mason1832a6d2007-12-21 16:27:21 -05007410
Li Zefan581bb052011-04-20 10:06:11 +08007411 err = btrfs_find_free_ino(root, &objectid);
7412 if (err)
7413 goto out_unlock;
7414
Josef Bacikaec74772008-07-24 12:12:38 -04007415 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Li Zefan33345d012011-04-20 10:31:50 +08007416 dentry->d_name.len, btrfs_ino(dir), objectid,
Josef Bacikd82a6f12011-05-11 15:26:06 -04007417 S_IFLNK|S_IRWXUGO, &index);
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04007418 if (IS_ERR(inode)) {
7419 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007420 goto out_unlock;
Tsutomu Itoh7cf96da2011-04-25 19:43:53 -04007421 }
Chris Mason39279cc2007-06-12 06:35:45 -04007422
Eric Paris2a7dba32011-02-01 11:05:39 -05007423 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
Josef Bacik33268ea2008-07-24 12:16:36 -04007424 if (err) {
7425 drop_inode = 1;
7426 goto out_unlock;
7427 }
7428
Casey Schauflerad19db72011-12-15 10:09:07 -05007429 /*
7430 * If the active LSM wants to access the inode during
7431 * d_instantiate it needs these. Smack checks to see
7432 * if the filesystem supports xattrs by looking at the
7433 * ops vector.
7434 */
7435 inode->i_fop = &btrfs_file_operations;
7436 inode->i_op = &btrfs_file_inode_operations;
7437
Josef Bacika1b075d2010-11-19 20:36:11 +00007438 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04007439 if (err)
7440 drop_inode = 1;
7441 else {
7442 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04007443 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05007444 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04007445 }
Chris Mason39279cc2007-06-12 06:35:45 -04007446 if (drop_inode)
7447 goto out_unlock;
7448
7449 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07007450 if (!path) {
7451 err = -ENOMEM;
7452 drop_inode = 1;
7453 goto out_unlock;
7454 }
Li Zefan33345d012011-04-20 10:31:50 +08007455 key.objectid = btrfs_ino(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04007456 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04007457 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
7458 datasize = btrfs_file_extent_calc_inline_size(name_len);
7459 err = btrfs_insert_empty_item(trans, root, path, &key,
7460 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04007461 if (err) {
7462 drop_inode = 1;
Julia Lawallb0839162011-05-14 07:10:51 +00007463 btrfs_free_path(path);
Chris Mason54aa1f42007-06-22 14:16:25 -04007464 goto out_unlock;
7465 }
Chris Mason5f39d392007-10-15 16:14:19 -04007466 leaf = path->nodes[0];
7467 ei = btrfs_item_ptr(leaf, path->slots[0],
7468 struct btrfs_file_extent_item);
7469 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
7470 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04007471 BTRFS_FILE_EXTENT_INLINE);
Chris Masonc8b97812008-10-29 14:49:59 -04007472 btrfs_set_file_extent_encryption(leaf, ei, 0);
7473 btrfs_set_file_extent_compression(leaf, ei, 0);
7474 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
7475 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
7476
Chris Mason39279cc2007-06-12 06:35:45 -04007477 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04007478 write_extent_buffer(leaf, symname, ptr, name_len);
7479 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04007480 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04007481
Chris Mason39279cc2007-06-12 06:35:45 -04007482 inode->i_op = &btrfs_symlink_inode_operations;
7483 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04007484 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Yan Zhengd899e052008-10-30 14:25:28 -04007485 inode_set_bytes(inode, name_len);
Chris Masondbe674a2008-07-17 12:54:05 -04007486 btrfs_i_size_write(inode, name_len - 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04007487 err = btrfs_update_inode(trans, root, inode);
7488 if (err)
7489 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04007490
7491out_unlock:
Al Viro08c422c2011-12-23 07:58:13 -05007492 if (!err)
7493 d_instantiate(dentry, inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04007494 nr = trans->blocks_used;
Josef Bacik7ad85bb2012-01-12 19:10:12 -05007495 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04007496 if (drop_inode) {
7497 inode_dec_link_count(inode);
7498 iput(inode);
7499 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04007500 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04007501 return err;
7502}
Chris Mason16432982008-04-10 10:23:21 -04007503
Josef Bacik0af3d002010-06-21 14:48:16 -04007504static int __btrfs_prealloc_file_range(struct inode *inode, int mode,
7505 u64 start, u64 num_bytes, u64 min_size,
7506 loff_t actual_len, u64 *alloc_hint,
7507 struct btrfs_trans_handle *trans)
Yan Zhengd899e052008-10-30 14:25:28 -04007508{
Yan Zhengd899e052008-10-30 14:25:28 -04007509 struct btrfs_root *root = BTRFS_I(inode)->root;
7510 struct btrfs_key ins;
Yan Zhengd899e052008-10-30 14:25:28 -04007511 u64 cur_offset = start;
Josef Bacik55a61d12010-11-22 18:50:32 +00007512 u64 i_size;
Yan Zhengd899e052008-10-30 14:25:28 -04007513 int ret = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04007514 bool own_trans = true;
Yan Zhengd899e052008-10-30 14:25:28 -04007515
Josef Bacik0af3d002010-06-21 14:48:16 -04007516 if (trans)
7517 own_trans = false;
Yan Zhengd899e052008-10-30 14:25:28 -04007518 while (num_bytes > 0) {
Josef Bacik0af3d002010-06-21 14:48:16 -04007519 if (own_trans) {
7520 trans = btrfs_start_transaction(root, 3);
7521 if (IS_ERR(trans)) {
7522 ret = PTR_ERR(trans);
7523 break;
7524 }
Yan Zhengd899e052008-10-30 14:25:28 -04007525 }
Yan, Zheng5a303d52009-11-12 09:34:52 +00007526
Yan, Zhengefa56462010-05-16 10:49:59 -04007527 ret = btrfs_reserve_extent(trans, root, num_bytes, min_size,
Josef Bacik81c9ad22012-01-18 10:56:06 -05007528 0, *alloc_hint, &ins, 1);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007529 if (ret) {
Josef Bacik0af3d002010-06-21 14:48:16 -04007530 if (own_trans)
7531 btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04007532 break;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007533 }
7534
Yan Zhengd899e052008-10-30 14:25:28 -04007535 ret = insert_reserved_file_extent(trans, inode,
7536 cur_offset, ins.objectid,
7537 ins.offset, ins.offset,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00007538 ins.offset, 0, 0, 0,
Yan Zhengd899e052008-10-30 14:25:28 -04007539 BTRFS_FILE_EXTENT_PREALLOC);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007540 if (ret) {
7541 btrfs_abort_transaction(trans, root, ret);
7542 if (own_trans)
7543 btrfs_end_transaction(trans, root);
7544 break;
7545 }
Chris Masona1ed8352009-09-11 12:27:37 -04007546 btrfs_drop_extent_cache(inode, cur_offset,
7547 cur_offset + ins.offset -1, 0);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007548
Yan Zhengd899e052008-10-30 14:25:28 -04007549 num_bytes -= ins.offset;
7550 cur_offset += ins.offset;
Yan, Zhengefa56462010-05-16 10:49:59 -04007551 *alloc_hint = ins.objectid + ins.offset;
Yan, Zheng5a303d52009-11-12 09:34:52 +00007552
Josef Bacik0c4d2d92012-04-05 15:03:02 -04007553 inode_inc_iversion(inode);
Yan Zhengd899e052008-10-30 14:25:28 -04007554 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +02007555 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
Yan Zhengd899e052008-10-30 14:25:28 -04007556 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
Yan, Zhengefa56462010-05-16 10:49:59 -04007557 (actual_len > inode->i_size) &&
7558 (cur_offset > inode->i_size)) {
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00007559 if (cur_offset > actual_len)
Josef Bacik55a61d12010-11-22 18:50:32 +00007560 i_size = actual_len;
Aneesh Kumar K.Vd1ea6a62010-01-20 07:28:54 +00007561 else
Josef Bacik55a61d12010-11-22 18:50:32 +00007562 i_size = cur_offset;
7563 i_size_write(inode, i_size);
7564 btrfs_ordered_update_i_size(inode, i_size, NULL);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007565 }
7566
Yan Zhengd899e052008-10-30 14:25:28 -04007567 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007568
7569 if (ret) {
7570 btrfs_abort_transaction(trans, root, ret);
7571 if (own_trans)
7572 btrfs_end_transaction(trans, root);
7573 break;
7574 }
Yan Zhengd899e052008-10-30 14:25:28 -04007575
Josef Bacik0af3d002010-06-21 14:48:16 -04007576 if (own_trans)
7577 btrfs_end_transaction(trans, root);
Yan, Zheng5a303d52009-11-12 09:34:52 +00007578 }
Yan Zhengd899e052008-10-30 14:25:28 -04007579 return ret;
7580}
7581
Josef Bacik0af3d002010-06-21 14:48:16 -04007582int btrfs_prealloc_file_range(struct inode *inode, int mode,
7583 u64 start, u64 num_bytes, u64 min_size,
7584 loff_t actual_len, u64 *alloc_hint)
7585{
7586 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
7587 min_size, actual_len, alloc_hint,
7588 NULL);
7589}
7590
7591int btrfs_prealloc_file_range_trans(struct inode *inode,
7592 struct btrfs_trans_handle *trans, int mode,
7593 u64 start, u64 num_bytes, u64 min_size,
7594 loff_t actual_len, u64 *alloc_hint)
7595{
7596 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
7597 min_size, actual_len, alloc_hint, trans);
7598}
7599
Chris Masone6dcd2d2008-07-17 12:53:50 -04007600static int btrfs_set_page_dirty(struct page *page)
7601{
Chris Masone6dcd2d2008-07-17 12:53:50 -04007602 return __set_page_dirty_nobuffers(page);
7603}
7604
Al Viro10556cb2011-06-20 19:28:19 -04007605static int btrfs_permission(struct inode *inode, int mask)
Yanfdebe2b2008-01-14 13:26:08 -05007606{
Li Zefanb83cc962010-12-20 16:04:08 +08007607 struct btrfs_root *root = BTRFS_I(inode)->root;
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +00007608 umode_t mode = inode->i_mode;
Li Zefanb83cc962010-12-20 16:04:08 +08007609
Jeff Mahoneycb6db4e2011-08-15 17:27:21 +00007610 if (mask & MAY_WRITE &&
7611 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) {
7612 if (btrfs_root_readonly(root))
7613 return -EROFS;
7614 if (BTRFS_I(inode)->flags & BTRFS_INODE_READONLY)
7615 return -EACCES;
7616 }
Al Viro2830ba72011-06-20 19:16:29 -04007617 return generic_permission(inode, mask);
Yanfdebe2b2008-01-14 13:26:08 -05007618}
Chris Mason39279cc2007-06-12 06:35:45 -04007619
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007620static const struct inode_operations btrfs_dir_inode_operations = {
Chris Mason3394e162008-11-17 20:42:26 -05007621 .getattr = btrfs_getattr,
Chris Mason39279cc2007-06-12 06:35:45 -04007622 .lookup = btrfs_lookup,
7623 .create = btrfs_create,
7624 .unlink = btrfs_unlink,
7625 .link = btrfs_link,
7626 .mkdir = btrfs_mkdir,
7627 .rmdir = btrfs_rmdir,
7628 .rename = btrfs_rename,
7629 .symlink = btrfs_symlink,
7630 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04007631 .mknod = btrfs_mknod,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007632 .setxattr = btrfs_setxattr,
7633 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05007634 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007635 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05007636 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007637 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04007638};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007639static const struct inode_operations btrfs_dir_ro_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007640 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05007641 .permission = btrfs_permission,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007642 .get_acl = btrfs_get_acl,
Chris Mason39279cc2007-06-12 06:35:45 -04007643};
Yan, Zheng76dda932009-09-21 16:00:26 -04007644
Alexey Dobriyan828c0952009-10-01 15:43:56 -07007645static const struct file_operations btrfs_dir_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007646 .llseek = generic_file_llseek,
7647 .read = generic_read_dir,
David Woodhousecbdf5a22008-08-06 19:42:33 +01007648 .readdir = btrfs_real_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04007649 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04007650#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04007651 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04007652#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04007653 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -04007654 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -04007655};
7656
Chris Masond1310b22008-01-24 16:13:08 -05007657static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04007658 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05007659 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04007660 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04007661 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04007662 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04007663 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05007664 .set_bit_hook = btrfs_set_bit_hook,
7665 .clear_bit_hook = btrfs_clear_bit_hook,
Josef Bacik9ed74f22009-09-11 16:12:44 -04007666 .merge_extent_hook = btrfs_merge_extent_hook,
7667 .split_extent_hook = btrfs_split_extent_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04007668};
7669
Chris Mason35054392009-01-21 13:11:13 -05007670/*
7671 * btrfs doesn't support the bmap operation because swapfiles
7672 * use bmap to make a mapping of extents in the file. They assume
7673 * these extents won't change over the life of the file and they
7674 * use the bmap result to do IO directly to the drive.
7675 *
7676 * the btrfs bmap call would return logical addresses that aren't
7677 * suitable for IO and they also will change frequently as COW
7678 * operations happen. So, swapfile + btrfs == corruption.
7679 *
7680 * For now we're avoiding this by dropping bmap.
7681 */
Alexey Dobriyan7f094102009-09-21 17:01:10 -07007682static const struct address_space_operations btrfs_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04007683 .readpage = btrfs_readpage,
7684 .writepage = btrfs_writepage,
Chris Masonb293f022007-11-01 19:45:34 -04007685 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05007686 .readpages = btrfs_readpages,
Chris Mason16432982008-04-10 10:23:21 -04007687 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04007688 .invalidatepage = btrfs_invalidatepage,
7689 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04007690 .set_page_dirty = btrfs_set_page_dirty,
Andi Kleen465fdd92009-09-16 11:50:18 +02007691 .error_remove_page = generic_error_remove_page,
Chris Mason39279cc2007-06-12 06:35:45 -04007692};
7693
Alexey Dobriyan7f094102009-09-21 17:01:10 -07007694static const struct address_space_operations btrfs_symlink_aops = {
Chris Mason39279cc2007-06-12 06:35:45 -04007695 .readpage = btrfs_readpage,
7696 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04007697 .invalidatepage = btrfs_invalidatepage,
7698 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04007699};
7700
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007701static const struct inode_operations btrfs_file_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007702 .getattr = btrfs_getattr,
7703 .setattr = btrfs_setattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007704 .setxattr = btrfs_setxattr,
7705 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05007706 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007707 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05007708 .permission = btrfs_permission,
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05007709 .fiemap = btrfs_fiemap,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007710 .get_acl = btrfs_get_acl,
Josef Bacike41f9412012-03-26 09:46:47 -04007711 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -04007712};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007713static const struct inode_operations btrfs_special_inode_operations = {
Josef Bacik618e21d2007-07-11 10:18:17 -04007714 .getattr = btrfs_getattr,
7715 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05007716 .permission = btrfs_permission,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007717 .setxattr = btrfs_setxattr,
7718 .getxattr = btrfs_getxattr,
Josef Bacik33268ea2008-07-24 12:16:36 -04007719 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04007720 .removexattr = btrfs_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007721 .get_acl = btrfs_get_acl,
Josef Bacike41f9412012-03-26 09:46:47 -04007722 .update_time = btrfs_update_time,
Josef Bacik618e21d2007-07-11 10:18:17 -04007723};
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -07007724static const struct inode_operations btrfs_symlink_inode_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04007725 .readlink = generic_readlink,
7726 .follow_link = page_follow_link_light,
7727 .put_link = page_put_link,
Li Zefanf2095612010-11-19 02:05:24 +00007728 .getattr = btrfs_getattr,
Josef Bacik22c44fe2011-11-30 10:45:38 -05007729 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05007730 .permission = btrfs_permission,
Jim Owens0279b4c2009-02-04 09:29:13 -05007731 .setxattr = btrfs_setxattr,
7732 .getxattr = btrfs_getxattr,
7733 .listxattr = btrfs_listxattr,
7734 .removexattr = btrfs_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02007735 .get_acl = btrfs_get_acl,
Josef Bacike41f9412012-03-26 09:46:47 -04007736 .update_time = btrfs_update_time,
Chris Mason39279cc2007-06-12 06:35:45 -04007737};
Yan, Zheng76dda932009-09-21 16:00:26 -04007738
Alexey Dobriyan82d339d2009-10-09 09:54:36 -04007739const struct dentry_operations btrfs_dentry_operations = {
Yan, Zheng76dda932009-09-21 16:00:26 -04007740 .d_delete = btrfs_dentry_delete,
Josef Bacikb4aff1f2011-06-28 16:18:59 -04007741 .d_release = btrfs_dentry_release,
Yan, Zheng76dda932009-09-21 16:00:26 -04007742};